Files
Rohit Ghumare c3f43d8b61 Expand toolkit to 135 agents, 120 plugins, 796 total files
- 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
2026-02-04 21:08:28 +00:00

643 B

Generate a dependency map showing how modules and files relate to each other in the codebase.

Steps

  1. Scan all source files and extract import/require statements.
  2. Build a dependency graph:
  3. Classify modules by role:
  4. Calculate module metrics:
  5. Identify high-risk areas:
  6. 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.