Fewer prompts to finish the task
Latest saved run: 2.84 prompts without SigMap vs 1.66 with SigMap. That is a 40.6% reduction across 90 real coding tasks.
Task benchmark →
Zero-dependency AI context engine. 78.9% hit@5 · 97.9% token reduction · Ask → Validate → Judge → Learn.
| I am… | Go to |
|---|---|
| New to SigMap | Quick start |
| Using it daily | ask · validate · judge |
| Setting up a team / CI | Config · Strategies |
| Using open-source agents (OpenCode, Aider, Cline) | Open-source agents guide |
| Running local LLMs (Ollama, llama.cpp, vLLM) | Local LLMs guide — zero cost, full privacy |
| Integrating with MCP, Claude, or Cursor | MCP setup |
| Evaluating for a monorepo | Strategies · Generalization |
| Comparing against embeddings or RAG | Compare alternatives |
Step 1: Generate context for your project
npx sigmapStep 2: Ask for relevant files (query-specific context)
sigmap ask "explain the auth flow"
# Outputs: ranked file list + .context/query-context.md (ready to paste)Step 3: Copy context to your AI assistant
.context/query-context.mdStep 4: Save the AI response
# Copy the AI's answer into a file
echo "Paste AI response here..." > response.txtStep 5: Validate coverage (optional)
sigmap validate --query "auth login token"
# Check if coverage is high enough to trust the responseStep 6: Judge groundedness
sigmap judge --response response.txt --context .context/query-context.md
# Score: shows if the answer is grounded in your codeThat flow gives you: a compact signature map · a focused query context · a coverage sanity check · a groundedness score for the answer.
SigMap is no longer just "shrink the context file." Every step has a purpose:
See the full end-to-end walkthrough to watch this in action on a real repo.
| Metric | Without SigMap | With SigMap |
|---|---|---|
| Task success proxy | 10% | 52.2% |
| Prompts per task | 2.84 | 1.66 |
| Retrieval hit@5 | 13.6% | 78.9% (78.9% graph-boosted) |
| Overall token reduction | — | 97.9% |
| GPT-4o overflow repos | 16/21 | 0/21 |
Latest saved benchmark run: 2026-05-11 (v6.10.6).
| If you want to prove... | Open |
|---|---|
| SigMap reduces token load dramatically | Token benchmark |
| SigMap finds the right file more often | Retrieval benchmark |
| SigMap reduces retries and wrong-context answers | Task benchmark |
| SigMap keeps large repos inside model limits | Quality benchmark |