analyze_summary
Get an aggregate overview of codebase dependency health, including counts of circular dependencies, hotspots, unused files, and islands, to decide which analysis to drill into.
Instructions
One-call overview of codebase dependency health. Prefer this over running find_circular + find_hotspots + find_unused + find_islands individually — returns aggregate counts so the agent can decide which specific analysis to drill into. Returns {circular_dependencies, hotspots, unused_files, islands, min_dependents}. Only static imports are considered. On "Index not found" / "stale" error, call index_project, then retry.
Example: {"circular_dependencies": 17, "hotspots": 10, "unused_files": 82, "islands": 81, "min_dependents": 2}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| min_dependents | No | Minimum number of dependents for hotspots (default: 2) |