Stats
Links
Categories
Architecture visualization and diff analysis
npx claudepluginhub rhedbull/prismArchitecture visualization — diff and impact analysis for codebases
3D architecture visualizer for codebases. Builds a call graph from source code and renders it as an interactive layered view in the browser.
/prism-diff, /prism-impact, and /prism-rebuild commandspip install -e .
# Build the call graph
callgraph build <path-to-repo> -o .callgraph
# Start the 3D viewer
callgraph serve
# Compare two graph snapshots
callgraph diff <dir-a> <dir-b> -o .callgraph --ref-a main --ref-b HEAD
# Apply an architectural plan
callgraph plan plan.json --graph-dir . -o .callgraph
Install as a plugin to get /prism-diff and /prism-impact commands:
claude plugin marketplace add rHedBull/prism
claude plugin install prism
/prism-diff <ref> — compare callgraph between git refs/prism-impact <spec.md> — visualize structural impact of a planned change/prism-rebuild — rebuild callgraph, generate semantic data, and restart the viewerpip install -e ".[dev]"
pytest tests/ -v