get_file_skeleton
Returns the AST skeleton for a single source file, including exports, imports, class members, and doc comments. Use this to get detailed structure of one specific file after narrowing down from the repository index.
Instructions
Returns the AST skeleton for a single specific source file. The skeleton includes: all exports with signatures, imports, class members, and doc comments. Use this when you need the details of one specific file after narrowing down from get_repo_index. For multiple related files, prefer get_folder_skeleton — it is one round trip.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Exact file path as it appears in the repository. Example: 'src/app/api/auth/route.ts'. Use the path from get_repo_index output. |