Static code intelligence for AI-assisted development. Generates a dense CODEBASE.ctx from your source files — no API calls, pure local compute.
# Add to your Claude Code skills
git clone https://github.com/pietrotommasini2022/repo-compassStatic code intelligence for AI-assisted development. Run one command, get a dense CODEBASE.ctx file that tells an AI everything it needs to know about your codebase — in under 2000 tokens.
repo-compass scan walks your source files, extracts exports, resolves imports, builds a module dependency graph, and writes CODEBASE.ctx to the repo root. No API calls. No AI. Pure local compute.
src/commands/scan.ts [★3] :: scanCommand:variable
> src/analyzers/entrypoints.ts,src/analyzers/source-files.ts,src/analyzers/graph-builder.ts
src/analyzers/file-analyzer.ts [★4] :: analyzeFile(root:string,relativePath:string):FileAnalysis
> src/types.ts
src/types.ts [★6] :: ExportItem:type | ResolvedImport:type | FileAnalysis:type | ModuleGraph:type | normalizePath(p:string):string
An AI reading this file understands your entire codebase structure — what each module exports, which modules are central (★), and how data flows between them — in a single read.
npm install -g repo-compass
cd your-project
repo-compass scan
Generates CODEBASE.ctx in the current directory. Open it, paste it to any AI, or use the Claude Code skill (see below).
--all Skip confirmation prompt for large repos (>300 files)
The /repo-compass slash command is installed automatically when you install the package globally. No extra setup needed.
In any Claude Code session:
/repo-compass
Claude runs the CLI, reads CODEBASE.ctx, and instantly has full codebase context — without reading individual files or consuming thousands of tokens.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
Manual install: if you installed via a local clone or need to reinstall the skill, run
node scripts/postinstall.cjsfrom the package root, or copy.claude/commands/repo-compass.mdto~/.claude/commands/.
Languages: TypeScript, JavaScript (ESM + CJS), Python
Extracts:
module.exports patterns__all__Graph:
.js → .ts NodeNext convention)Project detection:
pnpm-workspace.yaml, package.json workspacessrc/, lib/, app/, pages/, and more__init__.pycli | library | app | unknownAbove 300 files, CODEBASE.ctx switches to compact mode: only core modules (★) get full import/export detail. Leaf files appear as a single line. This keeps the file readable and useful even on large codebases.
You'll be prompted before scanning large repos. Use --all to skip.
A typical 50-file project generates a CODEBASE.ctx of ~1000 tokens. Reading individual source files for the same coverage would cost 20–50×. At 300 files, compact mode keeps output under 6000 tokens while preserving full fidelity for the modules that matter.
MIT