- Add 60 new agents across all 10 categories (75 -> 135) - Add 95 new plugins with command files (25 -> 120) - Update all agents to use model: opus - Update README with complete plugin/agent tables - Update marketplace.json with all 120 plugins
643 B
643 B
Generate a dependency map showing how modules and files relate to each other in the codebase.
Steps
- Scan all source files and extract import/require statements.
- Build a dependency graph:
- Classify modules by role:
- Calculate module metrics:
- Identify high-risk areas:
- Generate a visual map in text or Mermaid format.
Format
Core Modules (high fan-in):
- <module>: imported by <N> files
Dependency Chains:
Rules
- Only map first-party code, not node_modules or third-party packages.
- Flag circular dependencies as issues that need resolution.
- Highlight modules that are single points of failure.