analyze_complexity
Measure and evaluate code complexity by analyzing specific files within a project. Outputs detailed complexity metrics to enhance codebase understanding and maintainability.
Instructions
Analyze code complexity.
Args:
project: Project name
file_path: Path to the file
Returns:
Complexity metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | ||
project | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
},
"project": {
"title": "Project",
"type": "string"
}
},
"required": [
"project",
"file_path"
],
"title": "analyze_complexityArguments",
"type": "object"
}