get_file_summary
Summarize file details, including line count, function/class definitions, import statements, and complexity metrics, to analyze and understand code structure efficiently.
Instructions
Get a summary of a specific file, including:
- Line count
- Function/class definitions (for supported languages)
- Import statements
- Basic complexity metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
}
},
"required": [
"file_path"
],
"title": "get_file_summaryArguments",
"type": "object"
}