explore_area
Explore a directory in one call: get code outline, imports, test files, and recent git changes. Defaults to outline and changes; include imports and tests as needed.
Instructions
One-call exploration of a directory: outline (all symbols), imports (external deps + who imports this area), tests (matching test files), recent git changes. Use INSTEAD OF separate outline + related_files + git log calls. Default since v0.30.0 returns only outline+changes — telemetry showed the all-4 default producing negative token reduction for small areas. Opt into imports/tests explicitly via include when you need them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Directory path (or file path — will use its parent directory) | |
| include | No | Sections to include. Default: ["outline","changes"]. Add "imports" for dep graph, "tests" to map test files — both can be heavy on large areas. |