get_folder_skeleton
Retrieve compact AST skeletons for all source files under a folder path to understand module structure without reading raw code. Reduces token usage significantly.
Instructions
Returns compact AST skeletons for all source files under a given folder path prefix. Use this to understand a module or feature area without reading raw source files. Skeletons include: exports, function signatures, type definitions, and doc comments. Cost: ~50 tokens per file — much cheaper than raw source code. Tip: call get_repo_index first to discover valid folder paths.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder | Yes | Folder path prefix to fetch skeletons for. Example: 'src/auth', 'lib/utils'. Do NOT include a trailing slash. |