analyze_summary
Summarize dependency analysis with counts of circular dependencies, hotspots, unused files, islands, and minimum dependents. Use for quick codebase health checks.
Instructions
Get a summary of all dependency analyses.
Purpose: Quick overview of codebase dependency health.
Returns: Object with counts: {circular_dependencies, hotspots, unused_files, islands, min_dependents}
Use this when:
Getting a quick health check of the codebase
Understanding overall dependency structure
Deciding which specific analysis to run next
IMPORTANT: Only considers static imports (string literals). Dynamic imports are filtered. See CLAUDE.md section "Dependency/Import Extraction" for details.
Example output: {"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) |