Quick start
This page is the fastest path to the real v5.5 workflow.
1. Install or run directly
bash
npx sigmapYou can also install globally:
bash
npm install -g sigmap
sigmap2. Generate the base context
bash
sigmapThat writes the default context file and builds the signature index your tools will use.
3. Ask a real question
bash
sigmap ask "explain the auth flow"This creates a focused context file for the current task instead of forcing the model to reason over the whole repo.
4. Validate the coverage
bash
sigmap validate --query "auth login token"If coverage is low, fix that before trusting the answer.
5. Judge the answer
Save the model answer to a file, then score its groundedness:
bash
sigmap judge --response response.txt --context .context/query-context.mdThat tells you whether the answer looks supported by the supplied code context.
Optional automation
If you want SigMap to stay fresh in the background:
bash
sigmap --setup
sigmap --watch--setup installs the git hook and MCP config. --watch is best during active coding.
Optional local learning
If a file was especially helpful or misleading, reinforce that locally:
bash
sigmap learn --good src/auth/service.js
sigmap weightsNext steps
- Daily workflow: ask, validate, judge, learning
- Reference: CLI, Config
- Integrations: MCP server, Repomix integration
- Proof: Benchmark overview