analyze_git_repository
Analyze Git repositories to detect stateful code patterns in .NET or Java projects and receive remediation guidance for migrating to stateless architectures.
Instructions
Analyze a Git repository for stateful code patterns in .NET or Java projects
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gitUrl | Yes | Git repository URL (HTTPS or SSH) | |
| sshKeyId | No | SSH key ID for private repositories (optional) |
Input Schema (JSON Schema)
{
"properties": {
"gitUrl": {
"description": "Git repository URL (HTTPS or SSH)",
"type": "string"
},
"sshKeyId": {
"description": "SSH key ID for private repositories (optional)",
"type": "string"
}
},
"required": [
"gitUrl"
],
"type": "object"
}