analyze_code
Parse and evaluate code structure and dependencies in specified files or directories to identify relationships and improve code organization.
Instructions
Analyze code structure and dependencies
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | Programming language | |
path | Yes | File or directory to analyze |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "Programming language",
"type": "string"
},
"path": {
"description": "File or directory to analyze",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}