Elevator pitch ArchiView auto-maps your codebase structure, dependency flows, and complexity metrics into interactive visual reports—all locally, no external APIs.
Industry Developer Tools & Code Analysis
Problem
- Large codebases lack clear visual architecture documentation.
- Manual dependency tracking becomes unmaintainable as projects grow.
Solution
- Automated AST parsing extracts imports and calculates complexity metrics.
- Interactive D3.js visualizations reveal dependency graphs and hotspots instantly.
Tools
analyze-project: Traverses codebase, extracts imports and complexity scores (returns dependency graph JSON)generate-report: Renders interactive HTML visualization from dependency datadetect-cycles: Identifies circular dependencies and bottleneck modulesexport-metrics: Outputs architecture health summary (coupling, cohesion, complexity)
Widgets
/visualize: Interactive D3 dependency graph with module filtering and zoom/metrics: Real-time complexity dashboard and architecture health scorecard
Conversation starters
- "Show me the dependency graph for my src/ folder and highlight circular imports."
- "Generate an architecture report that identifies the most complex modules in my project."