Skip to content

CLI reference

All commands and flags accepted by sigmap (or node gen-context.js).

If you are new to the product, start with the workflow pages first:

Daily workflow

Command / FlagDescription
ask "<query>"Unified intent→rank→cost→risk pipeline in one command
ask "<query>" --followupReuse previous session context for follow-up queries (session carry-forward)
ask "<query>" --package <name>Scope retrieval to a specific monorepo workspace package
ask "<query>" --globalDisable package scoping; search entire repo (monorepo override)
plan "<goal>"Analyze change impact and plan modifications — returns files grouped by confidence
judge --response <f> --context <f>Rule-based groundedness scoring for LLM responses
validateValidate config and coverage; optional query symbol check
learnBoost, penalize, or reset learned file ranking weights
weightsShow learned file multipliers or emit them as JSON
weights --export [file]Write learned weights JSON to file or stdout for team sharing
weights --import <file>Merge or replace local weights from a portable JSON file
bench --submitFormat local + canonical benchmark results as a shareable community block
compareCLI wrapper for retrieval benchmark vs baseline
sharePrint shareable one-liner with live benchmark numbers

Team, CI, and observability

Command / FlagDescription
`roots [--explain--json
historyShow usage log + benchmark trend sparklines (hit@5, token reduction)
learnBoost, penalize, or reset learned file ranking weights
weightsShow learned file multipliers or emit them as JSON
suggest-profileAuto-detect context profile from git state
explain <file>Why a file is included or excluded from context
syncWrite all adapter outputs + llm.txt + llms.txt
--watchWatch for file changes and regenerate incrementally
--setupAuto-wire MCP for Claude, Cursor, Windsurf, Zed, VS Code, OpenCode, Gemini CLI, Codex CLI; install git hook; start watcher
--diffGenerate context only for changed files (shows risk score per file)
--diff --stagedGenerate context only for staged files
--mcpStart the stdio MCP server
--query <text>Rank files by relevance to a free-text query (TF-IDF)
--output <file>Write context to a custom path (persisted to config)
--cost [--model <name>]Per-model token/dollar cost comparison
--coverageEnable test coverage annotation (✓/✗ per function) without editing config
--ci [--min-coverage N]CI exit gate — exits 1 when coverage < threshold
--analyzePer-file breakdown of signatures, tokens, and extractor
--reportToken reduction + coverage score + module heatmap
--report --jsonMachine-readable JSON report with coverage object
--report --paperLaTeX/markdown tables for academic export
--healthComposite 0–100 health score + coverage grade
--health --jsonMachine-readable health output with coverage fields
--monorepoGenerate a separate context section per package
--eachRun a command in each monorepo package
--routingPrint the model routing table
--format cacheWrap output in Anthropic cache_control breakpoints
--trackLog each run to .context/usage.ndjson
--initScaffold gen-context.config.json and .contextignore
--benchmarkRun retrieval evaluation tasks
--impact <file>Trace every file that transitively imports the given file
--suggest-tool <task>Classify a task into fast / balanced / powerful model tier
--versionPrint version and exit
--helpPrint help and exit

ask

Unified pipeline: intent detection → ranked mini-context → coverage check → cost estimate → risk level, all in one command.

bash
sigmap ask "fix the login bug"
sigmap ask "explain the rank function" --json
────────────────────────────────────────────
 sigmap ask  "fix the login bug"
 Intent    : debug
 Context   : 1,823 tokens  →  .context/query-context.md
 Coverage  : 97%
 Risk      : LOW
 Cost      : $0.0005/query  (was $0.032 · saved 98%)
────────────────────────────────────────────

With --json the output is a machine-readable object with intent, coverage, cost, riskLevel, and rankedFiles.

When coverage drops below 70%, a warning is emitted on stderr pointing to sigmap validate.

ask --followup

Carry context across follow-up queries in a session. When you use --followup, SigMap loads the previous session's context (saved automatically after each ask run) and applies a +0.2 boost to files that were in the top-5 from the previous query. If the intent differs from the previous session (topic switch), the boost is reduced to +0.1 to reflect the new direction.

Sessions automatically expire after 4 hours. Session state is saved to .context/session.json.

bash
sigmap ask "explain the auth module"
# ... work with the results
sigmap ask "how are tokens validated?" --followup
sigmap ask "add rate limiting to auth" --followup --json

The follow-up query reuses high-scoring files from the previous session without re-ranking the entire codebase, making iterative exploration faster.

OptionDescription
--followupLoad and merge previous session context (4-hour TTL)

Session intent detection: if the new query's intent (debug/explain/refactor/etc.) matches the previous session, boost is +0.2; if intent changes, boost is +0.1.

ask --package (monorepo scoping)

Scope retrieval to a specific workspace package in a monorepo. When used, SigMap searches only within the named package directory, applying a +0.30 score boost to matching files inside that package. Useful for large monorepos where unrelated packages create noise.

If the workspace package does not exist, SigMap falls back to global search with a warning.

bash
# Explicitly scope to the payments package
sigmap ask "add payment gateway" --package payments

# Scope to a specific package and use --json for integration
sigmap ask "fix checkout flow" --package checkout --json
OptionDescription
--package <name>Scope to workspace package by directory name (e.g., --package payments targets packages/payments/)

ask --global (disable package scoping)

Disable automatic package scoping. By default, SigMap infers the target package from query tokens (e.g., "rate limiting payments" → packages/payments/). Use --global to search the entire repo without inference.

bash
# Disable scoping even if tokens match a package name
sigmap ask "what packages import this module" --global

# Global search in monorepo
sigmap ask "find all auth handlers" --global --json
OptionDescription
--globalDisable automatic package inference; search entire repo

plan

Analyze change impact and plan modifications to your codebase. Given a goal or change description, sigmap plan returns files grouped by confidence level (inspect-first vs likely-to-change), estimated impact radius, and tests affected by the change.

bash
sigmap plan "add rate limiting to the API"
sigmap plan "refactor the auth middleware" --json
────────────────────────────────────────────
 Goal: add rate limiting to the API
 Intent: integrate
────────────────────────────────────────────

 Inspect first (high confidence):
   → src/middleware/rate-limiter.js
   → src/config/limits.json
   → src/auth/service.js

 Likely to change (medium confidence):
   → src/routes/api.js
   → src/utils/cache.js
   → src/models/request-log.js
────────────────────────────────────────────

--json output includes goal, intent, inspectFirst array, likelyToChange array, and affectedTests count.

OptionDescription
--jsonEmit structured JSON with goal, intent, file arrays, and test impact

judge

Rule-based groundedness scoring for LLM responses. Measures token overlap between the response and the source context to detect off-context answers. Zero dependencies, no LLM API required.

bash
sigmap judge --response response.txt --context .context/copilot-instructions.md
sigmap judge --response response.txt --context .context/copilot-instructions.md --json
sigmap judge --response response.txt --context .context/query-context.md --learn
────────────────────────────────────────────
 sigmap judge
 Groundedness       : 0.72
 Support level      : pass
 Unsupported symbols: none
────────────────────────────────────────────

JSON output:

json
{ "groundedness": 0.72, "supportLevel": "high", "reasons": [], "learning": null }

With --learn, judge becomes an opt-in feedback loop. It reads file headings from the context file (### path in generated context or ## path in .context/query-context.md) and applies a small learned boost or penalty when groundedness is confidently high or low.

OptionDescription
--response <file>Path to the LLM response text file (required)
--context <file>Path to the context/source file (required)
--threshold <n>Minimum score to pass (default: 0.25)
--learnApply opt-in learned boosts/penalties to files referenced by context headings
--jsonEmit JSON instead of human-readable output

Exit code 0 = pass, 1 = fail. Use in CI to gate on response quality.


learn

Manual feedback loop for the ranker. Learned weights live in .context/weights.json and are always local to the repo.

bash
sigmap learn --good src/auth/service.js
sigmap learn --bad src/legacy/old-api.js
sigmap learn --good src/auth/service.js --bad src/legacy/old-api.js
sigmap learn --reset

Each non-reset mutation decays existing weights first, then applies boosts/penalties in one transaction. Paths outside the repo are ignored, missing files are skipped with warnings, and the command exits non-zero if no valid file paths remain.


weights

Show the learned multiplier table used by sigmap ask, sigmap --query, sigmap validate --query, and MCP query_context. Export and import weights for team sharing or CI seeding.

bash
sigmap weights
sigmap weights --json
sigmap weights --export weights.json
sigmap weights --export              # prints JSON to stdout (pipe-friendly)
sigmap weights --import weights.json
sigmap weights --import weights.json --replace

Human output is sorted highest boost first and includes a reset hint. JSON output emits the exact .context/weights.json object.

OptionDescription
--jsonPrint weights as JSON (same format as export)
--export [file]Write weights JSON to file, or stdout if no path given
--import <file>Merge imported weights into local store (preserves existing entries)
--import <file> --replaceReplace local weights entirely with the imported set

Imported values are sanitized (path traversal rejected) and clamped to [0.30, 3.0].


--coverage

Enable test coverage annotation at runtime without editing gen-context.config.json. Adds (tested) or (untested) markers to each function signature in the generated context.

bash
sigmap --coverage
sigmap --coverage --adapter claude

Equivalent to setting testCoverage: true in config, but applied only for the current run. Useful for PR reviews and one-off audits.


validate

Validates your SigMap configuration and measures context coverage. Checks that every srcDir exists, exclude patterns are safe, maxTokens is in a sensible range, and that ≥ 70% of your source files are in context. Optionally checks that PascalCase and camelCase symbols in a query appear in the top-5 ranked results.

bash
sigmap validate
sigmap validate --json
sigmap validate --query "loginUser validateToken"
[sigmap] ✓ config valid  coverage: 97%

JSON output includes valid, issues, warnings, and coverage fields. Exits 1 when hard issues are found.


roots

Auto-detect source root directories for your project using intelligent multi-signal analysis: language detection, framework identification, file density, git activity, and manifest files. Returns a ranked list with confidence levels (high/medium/low) and detailed scoring explanation. Supports 17 languages and 50+ frameworks (Next.js, Django, Rails, Spring Boot, Flutter, Go, Rust, etc.). Also detects monorepos and enumerates all sub-packages.

Useful when you're unsure which directories to include in srcDirs config, or when setting up SigMap in a new project.

bash
sigmap roots --explain
sigmap roots --json
sigmap roots --fix

--explain (default) Shows detected languages, frameworks, confidence level, selected root directories, and scoring details:

sigmap roots --explain

Detected languages   : TypeScript (tsconfig.json), JavaScript (.ts/.tsx files)
Detected frameworks  : Next.js (next.config.js), React (package.json dep)
Monorepo             : no

Selected roots:
  1. app/        — confidence: high — score: 8.5 (framework match +3.0, density +2.5, entrypoint +1.5)
  2. src/        — confidence: high — score: 7.2 (density +2.5, symbols +2.0)
  3. lib/        — confidence: medium — score: 4.1 (git activity +2.0, density +2.1)
  4. components/ — confidence: low   — score: 2.0

Explanation: Next.js app detected; app/ and src/ are primary Next.js directories with high confidence. lib/ has recent git activity. Max roots capped at 6.

--json Outputs structured JSON:

{
  "roots": ["app", "src", "lib"],
  "languages": [{ "name": "typescript", "weight": 3.5 }, ...],
  "frameworks": [{ "name": "nextjs", "confidence": 0.95 }, ...],
  "confidence": "high",
  "isMonorepo": false,
  "explanation": [...]
}

--fix Interactive mode: prompts you to review and correct the detected roots, then writes the corrected list to gen-context.config.json:

Detected roots: app, src, lib

✏️  Edit and confirm (or type new dirs). Press Enter to accept:
> app, src, lib, utils

Writing to gen-context.config.json...
✓ Updated srcDirs: ["app", "src", "lib", "utils"]

history

Display the last N usage log entries as a table with Unicode sparklines for token trend, retrieval hit@5, and token-reduction benchmark history. Requires tracking: true in gen-context.config.json (or --track on each run) for usage rows; benchmark rows appear automatically once any benchmark script has run.

bash
sigmap history
sigmap history --last 20
sigmap history --json
──────────────────────────────────────────────────────────────
 sigmap history  (last 10 runs)
──────────────────────────────────────────────────────────────
 Date                     Files  Tokens Reduction Budget?
 ──────────────────────── ───── ─────── ───────── ───────
 2026-04-16 14:22:01         76    4103    -93.7%      no
 ...
──────────────────────────────────────────────────────────────
 Token trend: ▁▂▃▄▃▄▅▆▇█
 hit@5 trend: ▃▄▅▆▇█  90.5% (latest)
 tok reduce : ▅▆▇█▇█  97.2% (latest)
──────────────────────────────────────────────────────────────

The hit@5 and tok reduce rows appear only when .context/benchmark-history.ndjson exists — it is created automatically the first time you run any of the benchmark scripts (run-retrieval-benchmark.mjs, run-benchmark.mjs, or run-task-benchmark.mjs). The dashboard hit@5 trend chart reads from the same file.

With --json returns a raw JSON array of usage log entries.


suggest-profile

Read the last git commit message and staged files, then recommend the best context profile.

bash
sigmap suggest-profile
sigmap suggest-profile --short   # prints only the profile name
[sigmap] suggested profile: --profile debug
  Reason: commit: "fix: null pointer in UserService.findById"

Profiles: debug, architecture, review, default.


compare

Human-readable CLI wrapper for the retrieval benchmark. Runs SigMap vs a random baseline and shows hit@5, token counts, and lift multiplier.

bash
sigmap compare
sigmap compare --json
────────────────────────────────────────────
 SigMap vs Baseline
────────────────────────────────────────────
 hit@5         78.9% vs 13.6%   (5.8× lift)
 Avg prompts   1.69 vs 2.84
 Token story   96.9% overall reduction
────────────────────────────────────────────

share

Print a shareable one-liner with live benchmark numbers and copy it to the clipboard.

bash
sigmap share
Generated with SigMap — zero-dependency AI context engine
96.9% fewer tokens · 78.9% retrieval hit@5 · 40.6% fewer prompts
https://sigmap.dev
[sigmap] Copied to clipboard.

bench

Community benchmark submission helper. Reads version.json for canonical release metrics and .context/benchmark-history.ndjson for local run history, then formats a shareable block suitable for pasting into a GitHub Discussion.

bash
sigmap bench --submit
sigmap bench --submit --json
────────────────────────────────────────────────────────
 SigMap Community Benchmark Submission
────────────────────────────────────────────────────────
 SigMap version : 6.8.0
 Benchmark ID   : sigmap-v6.10-main
 Submitted      : 2026-05-03
────────────────────────────────────────────────────────
 Canonical metrics (official release):
 hit@5          : 80.0%
 token reduction: 96.8%
────────────────────────────────────────────────────────
 Local run metrics: none yet — run node scripts/run-retrieval-benchmark.mjs
────────────────────────────────────────────────────────
 Paste the block above into a GitHub Discussion to share your results.
 https://github.com/manojmallick/sigmap/discussions
────────────────────────────────────────────────────────

When local benchmark history exists (.context/benchmark-history.ndjson), the local hit@5 and token-reduction numbers are appended automatically.

JSON output (--json) returns a machine-readable object:

json
{
  "sigmapVersion": "6.8.0",
  "benchmarkId": "sigmap-v6.10-main",
  "canonicalHitAt5": 80.0,
  "canonicalReduction": 96.8,
  "local": null,
  "submittedAt": "2026-05-03"
}
OptionDescription
--submitRequired flag — formats the submission block
--jsonEmit machine-readable JSON instead of human-readable text

--output

Write the generated context to a custom file path instead of the default adapter location. The path is persisted to gen-context.config.json as customOutput so subsequent --query runs find it automatically.

bash
sigmap --output .context/ai-context.md
sigmap --adapter claude --output shared/sigs.md

Priority order for --query context resolution:

  1. --output <file> flag
  2. --adapter <name> flag
  3. customOutput in config
  4. Probe all known adapter output paths

--cost

Print per-model token/dollar cost comparison for the current project — raw source vs SigMap output.

bash
sigmap --cost
sigmap --cost --model gpt-4o
sigmap --cost --json
[sigmap] cost estimate (4,103 tokens after SigMap):
  gpt-4o-mini    $0.000062  (was $0.012 · 99.5% saved)
  claude-3-haiku $0.000103  (was $0.020 · 99.5% saved)
  gpt-4o         $0.000205  (was $0.040 · 99.5% saved)
  claude-sonnet  $0.000411  (was $0.080 · 99.5% saved)
  claude-opus-4  $0.001236  (was $0.240 · 99.5% saved)

Supported models: gpt-4, gpt-4o, gpt-4o-mini, claude-3-5-sonnet, claude-3-haiku, claude-opus-4, gemini-1.5-pro.


--ci

CI exit gate for coverage. Exits 0 when coverage ≥ threshold, exits 1 otherwise. Uses sig-index size vs total source file count — the same budget-aware metric as sigmap validate.

bash
sigmap --ci                    # default threshold: 80%
sigmap --ci --min-coverage 90
sigmap --ci --json
[sigmap] CI gate: coverage 97% ≥ 80% — PASS

JSON output:

json
{ "pass": true, "coverage": 97, "threshold": 80 }

Add to .github/workflows/ci.yml:

yaml
- run: npx sigmap --ci --min-coverage 80

--watch

Start the file watcher. Every file save triggers an incremental regeneration. Press Ctrl+C to stop.

bash
sigmap --watch
[sigmap] watching src/ app/ lib/ ...
[sigmap] ✓ regenerated in 43ms  (src/api/users.ts changed)

--setup

One-command setup. Auto-wires the SigMap MCP server into all detected AI editor config files, installs a git post-commit hook, and starts the file watcher.

Supported editors (v6.2.0) — 10 targets:

EditorConfig file written
Claude Code.claude/settings.jsonmcpServers.sigmap
Cursor.cursor/mcp.jsonmcpServers.sigmap
Windsurf (project).windsurf/mcp.jsonmcpServers.sigmap
Windsurf (global)~/.codeium/windsurf/mcp_config.jsonmcpServers.sigmap
Zed~/.config/zed/settings.jsoncontext_servers.sigmap
VS Code (GitHub Copilot 1.99+).vscode/mcp.jsonmcpServers.sigmap
OpenCode (project)opencode.jsonmcpServers.sigmap
OpenCode (global)~/.config/opencode/config.jsonmcpServers.sigmap
Gemini CLI~/.gemini/settings.jsonmcpServers.sigmap
Codex CLI~/.codex/config.yamlmcpServers.sigmap (YAML)

Neovim users: --setup does not write Neovim config (Neovim uses a Lua plugin instead of a JSON config file). Install the sigmap.nvim plugin directly — see neovim-plugin/README.md.

Each target is only written if the file already exists — --setup will not create IDE config files. Running --setup again is safe: existing sigmap entries are never overwritten (idempotent).

bash
sigmap --setup
[sigmap] registered MCP server in .claude/settings.json
[sigmap] registered MCP server in .cursor/mcp.json
[sigmap] registered MCP server in .windsurf/mcp.json
[sigmap] registered MCP server in .vscode/mcp.json
[sigmap] registered MCP server in opencode.json
[sigmap] registered MCP server in ~/.gemini/settings.json
[sigmap] registered MCP server in ~/.codex/config.yaml
[sigmap] registered context server in ~/.config/zed/settings.json
[sigmap] installed .git/hooks/post-commit
[sigmap] watching for changes (Ctrl+C to stop)…

After registration --setup also prints manual snippets for all tools so you can configure any editor not listed above:

[sigmap] MCP / context server config snippets:
  Claude / Cursor / Windsurf / VS Code / OpenCode / Gemini CLI:
  { "mcpServers": { "sigmap": { "command": "node", "args": ["./gen-context.js", "--mcp"] } } }
  Zed (~/.config/zed/settings.json):
  { "context_servers": { "sigmap": { "command": { "path": "node", "args": ["./gen-context.js", "--mcp"] } } } }
  Codex CLI (~/.codex/config.yaml):
  mcpServers:
    sigmap:
      command: node
      args:
        - ./gen-context.js
        - --mcp

--diff

Generate context only for files changed in the current git working tree. Ideal for PR reviews and CI jobs.

bash
sigmap --diff

--diff --staged restricts to staged files only, making it a perfect pre-commit check:

bash
sigmap --diff --staged

Both modes automatically fall back to a full generate when run outside a git repository or when no files have changed.

Risk score (v4.0)

Every --diff run prints a risk classification for each changed file:

  • +2 if the file exports public functions (export / module.exports)
  • +2 if the file has more than 3 downstream dependents (reverse-dependency BFS)
  • +1 if the file is a route/page/controller
  • +1 if the file is a config/env/settings file
  • Total 0–1 → LOW · 2–3 → MEDIUM · 4+ → HIGH
[sigmap] Risk: Changed files (3):
  src/auth/service.ts         [HIGH]    — exports public API, 5 downstream dependents
  src/config/database.ts      [MEDIUM]  — config file
  src/utils/format.ts         [LOW]     — no dependents, internal utility

You can also pass a specific base ref:

bash
sigmap --diff HEAD~3
sigmap --diff main

--mcp

Start the stdio MCP server implementing the Model Context Protocol. Used by Claude Code, Cursor, Windsurf, and Zed. Do not call this directly — wire it via sigmap --setup or the IDE config (see MCP setup).

bash
node gen-context.js --mcp

--query

Rank all files by relevance to a free-text query using zero-dependency TF-IDF scoring.

bash
sigmap --query "authentication flow"
[sigmap] query: "authentication flow"

  score  file
  0.94   src/auth/service.ts
  0.87   src/auth/middleware.ts
  0.72   src/api/users.ts
  0.61   src/guards/jwt.guard.ts

Machine-readable output:

bash
sigmap --query "authentication flow" --json

Write a focused mini-context (top-5 ranked files) to .context/query-context.md:

bash
sigmap --query "authentication flow" --context

--analyze

Per-file breakdown showing signatures extracted, token count, extractor language, and test coverage status.

bash
sigmap --analyze

Add --slow to re-time each extractor and flag files taking over 50ms:

bash
sigmap --analyze --slow

--diagnose-extractors self-tests all extractors against their fixture files:

bash
sigmap --diagnose-extractors

--report

Print a token reduction summary with coverage score and module heatmap (v4.0).

bash
sigmap --report
[sigmap] report:
  version         : 5.9.0
  files processed : 76
  files dropped   : 0
  input tokens    : ~65,227
  output tokens   : ~4,103
  budget limit    : 4000 (auto-scaled)
  reduction       : 93.7%
  coverage        : A (97%)  — 76 of 76 code files included
                    (2 non-code files skipped — json, md, config)
  confidence      : HIGH

  Module Coverage:
    src                ████████████████ 100% (64/64 files)
    packages           ██████████████░░  86% (12/14 files)

Machine-readable JSON (suitable for CI dashboards):

bash
sigmap --report --json

Paper-ready LaTeX/Markdown tables:

bash
sigmap --report --paper

--health

Run the composite health check. Returns a 0–100 score, letter grade, coverage score, and optional cache stats (if sigCache is enabled).

bash
sigmap --health
[sigmap] health:
  score           : 80/100 (grade B)
  file access     : A (97%)  — 76 of 78 files accessible in srcDirs
  strategy        : full
  token reduction : 93.7%
  sig-cache       : 142 entries, 1.2 KB
  days since regen: 0
  total runs      : 1

Machine-readable:

bash
sigmap --health --json
json
{
  "score": 80,
  "grade": "B",
  "coverage": 97,
  "coverageGrade": "A",
  "coverageConfidence": "HIGH",
  "coverageTotalFiles": 78,
  "coverageIncludedFiles": 76,
  "tokens": 4103,
  "reduction": 93.7,
  "cacheStats": {
    "entries": 142,
    "sizeKb": 1.2
  }
}

--suggest-tool

Classify a task description into the appropriate model tier: fast, balanced, or powerful.

bash
sigmap --suggest-tool "Fix the null pointer in UserService.findById"
[sigmap] task: "Fix the null pointer in UserService.findById"
[sigmap] → balanced  (business logic, 1× cost)

--monorepo

Generate a separate context section per package in a monorepo. Supports packages/, apps/, and services/ directory layouts.

bash
sigmap --monorepo

Can also be set permanently in config with "monorepo": true.


--each

Run a command inside each monorepo package, similar to lerna run or pnpm -r.

bash
sigmap --each "node gen-context.js --diff"

--routing

Print the model routing table — a per-file classification of fast, balanced, or powerful based on complexity scoring.

bash
sigmap --routing

--format cache

Wrap the output in Anthropic cache_control breakpoints so the stable signatures become a cached prefix.

bash
sigmap --format cache

See Repomix integration for an example of using this with the two-layer strategy.


--track

Log each run to .context/usage.ndjson for monitoring and audit. View history with sigmap history.

bash
sigmap --track

--init

Scaffold a starter gen-context.config.json and .contextignore in the current directory.

bash
sigmap --init

--benchmark

Run retrieval evaluation tasks from a JSONL task file. Outputs hit@5, MRR, and precision@5.

bash
sigmap --benchmark
sigmap --benchmark --repo /path/to/external/repo

--impact

Trace every file that transitively imports the given file. Shows blast-radius awareness for change impact.

bash
sigmap --impact src/auth/service.ts
sigmap --impact src/auth/service.ts --json

--version

bash
sigmap --version
# 5.9.0

--help

bash
sigmap --help

Made in Amsterdam, Netherlands 🇳🇱

MIT License