Auto-detects your project. Configures semantic search, architectural boundary enforcement, and a verify loop. Any language. Any team size.
Each layer is independent and automatically configured based on what the installer detects in your project.
.editorconfig for AI tools — every agent reads this before touching your code, so it knows your architecture and module boundaries without re-explaining every session. Auto-generated from your detected project structure.CLAUDE.md with correct build commands and conventions. Understand-Anything builds a visual knowledge graph with /understand-diff for blast-radius analysis before every commit. Supermemory gives Claude persistent cross-session memory.tsc --noEmit + linter + tests before presenting output — self-correcting instead of handing you broken code. Closes the generate → verify → self-correct loop.retriv) with AST-aware chunking that splits at function/class/method boundaries (code-chunk). Add when building a custom search pipeline. Up to 30% better recall than vector-only.npm run check:deps:graph.These tools are registered in Claude Code's MCP config automatically. Claude calls them on its own — you don't have to ask.
tsc --noEmit + linter, returns errors with line numbersEverything committed to git so your entire team gets the same AI setup on git pull.
check:deps and check:deps:graph (SVG dependency visualisation) to your existing package.json.Context files, MCP servers, and pre-commit hooks are configured for all agents automatically.
$ curl -fsSL https://raw.githubusercontent.com/MasoomChoudhury/super-codebase-context/main/install.sh | bash
.context/index.md.dependency-cruiser.cjsfrom/to path patterns to your actual folder structure, then verify everything passes.$ npm run check:deps ✓ No architectural violations found
# Inside Claude Code /understand-anything ✓ Knowledge graph built (247 nodes, 891 edges)
$ git add .context/ CLAUDE.md .dependency-cruiser.cjs .contextignore $ git commit -m "chore: add codebase-setup AI stack" $ git push