generate_analysis_script
Create bash or PowerShell scripts to analyze .NET and Java projects for stateful code patterns, providing remediation guidance for stateless architecture migration.
Instructions
Generate a bash or PowerShell script for offline analysis
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scriptType | Yes | Type of script to generate |
Input Schema (JSON Schema)
{
"properties": {
"scriptType": {
"description": "Type of script to generate",
"enum": [
"bash",
"powershell"
],
"type": "string"
}
},
"required": [
"scriptType"
],
"type": "object"
}