Complement, not compete

SigMap
+ Repomix

Two tools, two layers, one strategy. SigMap keeps signatures always fresh. Repomix provides full-depth context for complex sessions. You need both.

"SigMap for daily always-on context; Repomix for deep one-off sessions โ€” use both."

Side by side

Different tools, different jobs

Each tool is optimised for a specific workflow. They stack, not compete.

Always-on signatures
Runs automatically on every save and every commit. Extracts function and class signatures from 21 languages. Writes a compact context file under 4K tokens that every AI coding agent reads at session start.
  • Automatic โ€” zero manual steps after --setup
  • Under 4,000 tokens for any codebase
  • Signatures only โ€” shapes, not bodies
  • Secret scanning before every write
  • MCP server for on-demand module pulls
  • Self-healing CI โ€” auto-regenerates on drift
MIT ยท zero deps ยท v1.0.0
Deep session context
Packs your entire codebase into a single XML or Markdown file using token-efficient compression. Purpose-built for deep one-off sessions where the agent needs full file contents, not just signatures.
  • Manual โ€” run when you need full depth
  • Full file contents, compressed
  • XML or Markdown output format
  • Broader language support via Tree-sitter
  • Repomix Cloud for team sharing
  • 15,000+ GitHub stars, active community
Together they cover every workflow
SigMap handles the 90% โ€” daily coding sessions where you need fast, always-fresh context. Repomix handles the 10% โ€” architectural decisions, large-scale refactors, and debugging sessions that need every line.
sigmap (daily)
+
repomix (deep sessions)
=
full coverage

Architecture

The two-layer caching strategy

Stack both tools for maximum token and cost efficiency. Layer 1 is stable and cached. Layer 2 is fresh and lightweight.

L1
Layer 1 โ€” Stable Repomix prefix (cached)
Run Repomix once at the start of a deep session. The compressed codebase becomes a stable prefix in the prompt. Using Anthropic's cache_control breakpoints (or OpenAI's equivalent), this prefix is computed once and reused across every request in the session. The codebase rarely changes within a single session โ€” this cache hit rate is typically 95%+.
repomix --compress cache_control: ephemeral 60% cost reduction
L2
Layer 2 โ€” Fresh SigMap signatures (dynamic)
SigMap regenerates on every save. Its compact signature output sits above the Repomix prefix and tells the agent which files changed since the session started. The signatures identify where to look; the cached Repomix context provides the depth. Under 4K tokens, always fresh, always accurate.
node gen-context.js --watch < 4K tokens always fresh
Combined workflow
# Session start โ€” run once
$ npx repomix --compress --output .context/repomix.md
[repomix] packed 247 files โ†’ 28,400 tokens (compressed)
 
# Always running โ€” background watcher
$ node gen-context.js --watch &
[sigmap] watching src/ app/ lib/ ...
 
# Query with both layers
$ cat .context/repomix.md .github/copilot-instructions.md \
| claude --cache "Fix the UserService.findById bug"
 
# Result: 28,400 tokens cached (L1) + 3,847 tokens fresh (L2)
L1 cache hit rate: 97% โ† pay once per session
L2 tokens: 3,847 โ† always current
Effective cost: -76% vs uncached full context

Use case guide

Which tool for which task

A simple decision table. When in doubt, run SigMap first.

Task Use Why
Daily coding session sigmap Auto-updated signatures are enough for navigation and autocomplete context
Fix a specific bug sigmap MCP search_signatures finds the relevant files in <200 tokens
Add a feature to existing code sigmap Signatures show the interface; bodies aren't needed to extend
Architecture review repomix Agent needs full file contents to reason about system design
Large-scale refactor both Repomix for full depth, SigMap to track what changes in real-time
Onboarding a new codebase both Repomix for full understanding, SigMap to keep the session lean
CI token budget check sigmap --report --json outputs machine-readable stats for CI dashboards
Sharing context with a team repomix Repomix Cloud handles team sharing; SigMap output goes in git
Security audit sigmap Secret scanning redacts credentials before any output is written

Prompt cache format

Cache control payload

Use node gen-context.js --format cache to generate the Anthropic cache_control JSON structure. The stable signatures become a cached prefix โ€” pay once, reuse across every request.

{
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "# Code signatures\n\n## src/api/users.ts\nexport class UserService\n async findById(id: string): Promise<User>\n...",
"cache_control": { "type": "ephemeral" } โ† cache breakpoint
},
{
"type": "text",
"text": "Fix the race condition in UserService.findById" โ† user task
}
]
}
]
}
Cache economics on a 100-request session
1ร—
Cache write (full cost)
99ร—
Cache reads (10% cost)
โˆ’60%
Session API cost

Shared config

One ignore file for both tools

The .contextignore file uses the same gitignore syntax as .repomixignore. Symlink them to maintain a single exclusion list for both tools.

.contextignore
# SigMap exclusions
node_modules/
dist/
build/
*.generated.*
*.pb.*
coverage/
*.test.*
*.spec.*
.repomixignore (symlink)
# Symlink to .contextignore
# ln -s .contextignore .repomixignore
 
# Same exclusion list.
# One source of truth.
# Both tools respect it.
Setup shared ignore file
# Create .contextignore once
$ node gen-context.js --init
โœ“ wrote .contextignore.example โ† copy and customise
 
# Symlink for Repomix
$ ln -s .contextignore .repomixignore
 
# Both tools now share one exclusion list
$ node gen-context.js โ† respects .contextignore
$ npx repomix โ† respects .repomixignore (same file)

GitHub Action

Run both in CI

The example GitHub Action runs SigMap on every push, checks the token budget, and makes the Repomix output available as a CI artifact.

.github/workflows/context.yml
name: AI Context
on: [push, pull_request]
 
jobs:
context:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: {node-version: '22'}
 
- name: Generate SigMap signatures
run: node gen-context.js --report --json > context-report.json
 
- name: Check token budget
run: |
tokens=$(jq .outputTokens context-report.json)
if [ $tokens -gt 6000 ]; then exit 1; fi
 
- name: Run Repomix (deep context artifact)
run: npx repomix --compress --output repomix-context.md
 
- uses: actions/upload-artifact@v4
with:
name: ai-context
path: |
.github/copilot-instructions.md
repomix-context.md

Get started

Both tools, five minutes

Install SigMap in 90 seconds. Then add Repomix for deep sessions. You'll never go back to manually managing context.

Install SigMap โ†’ โ˜… Repomix on GitHub