explain_remediation
Get detailed remediation guidance for stateful code patterns in .NET and Java projects to help migrate applications to stateless architectures.
Instructions
Get detailed remediation guidance for a specific stateful pattern
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | Yes | Pattern category (e.g., "Session State", "Static Mutable Field") |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Pattern category (e.g., \"Session State\", \"Static Mutable Field\")",
"type": "string"
}
},
"required": [
"category"
],
"type": "object"
}