generate_outline
Create a structured code outline for TypeScript, JavaScript, or Python files, displaying classes, functions, and imports to simplify code analysis and navigation.
Instructions
Generate a code outline for a file, showing its structure (classes, functions, imports, etc). Supports TypeScript/JavaScript and Python files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the file to analyze |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the file to analyze",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}