Most issues resolve in under a minute. Start with the first section that matches your symptom.
Issue 1
sigmap or node gen-context.js to create it.node --version to confirm.Issue 2
.github/copilot-instructions.md in the workspace root — not a subdirectory. Verify: ls .github/copilot-instructions.mdCLAUDE.md by adding "claude" to the outputs array in your config, then rerun.Issue 3
sigmap --report shows only 60–70% reduction instead of the typical 90–97%.dist/, build/ output, or generated code — these contain many signatures that add bulk without adding information.sigmap --init to generate a starter .contextignore, then add exclusions for any test or generated directories in your project.Issue 4
sigmap --setup once. It installs a .git/hooks/post-commit hook that regenerates context automatically.Issue 5
sigmap --report shows files dropped: N — meaning important files are being cut to stay within the token budget.maxTokens in gen-context.config.json (e.g. 8000 or 10000) to give the budget more headroom..contextignore to remove low-value files from the index."strategy": "per-module" or "strategy": "hot-cold" to load only the relevant portion of the codebase.sigmap --report --json to see which specific files are consuming the most tokens, then target those first.Issue 6
tools/list returns an empty array.node /path/to/gen-context.js --version in a terminal. If it errors, the path is wrong.Issue 7
npm install -g sigmapsigmap.scriptPath option shown below.Issue 8
[REDACTED] in the output..contextignore rule to exclude that specific file from the index entirely."secretScan": false in your config — but only do this if you are certain there are no real secrets in your source directories.ghp_ / gho_), JWT (eyJ...), database connection string, SSH private key header, Stripe key (sk_live_), Twilio key, generic password / api_key assignments in code.Issue 9
packages/ or apps/.gen-context.config.json: set "monorepo": true. SigMap will then generate a separate context section per package.sigmap --monorepo as a one-off flag without touching the config file.packages/, apps/, or services/.Issue 10
sigmap --watch was running fine, but after the machine slept and woke, file changes are no longer picked up.ulimit -n 10000sigmap --setup — it regenerates on every commit and is not affected by sleep/wake cycles.Still stuck?
Run the health check and share the output in a GitHub issue — it includes everything needed to diagnose the problem.
sigmap --health --json at github.com/manojmallick/sigmap/issues. Include your OS, Node.js version, and a brief description of the symptom.What's next