sigmap 7.25.0 → 7.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +19 -1
- package/gen-context.js +7 -2
- package/llms-full.txt +6 -1
- package/llms.txt +1 -1
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/core/package.json +1 -1
- package/src/mcp/server.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@ Format: [Semantic Versioning](https://semver.org/)
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
+
## [7.25.1] — 2026-06-21
|
|
14
|
+
|
|
15
|
+
Patch release — **Trust Hygiene (H4):** document the real CLI / MCP / adapter surface. Completes the v7.25.x milestone's documentation goals (only H2, the reproducible bundle build, remains).
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- **Document the shipped surface (#366):** `sigmap --help` now lists the five wired-but-undocumented commands — `conventions`, `scaffold`, `verify-plan`, `review-pr`, and `create` (the grounded-creation pipeline). The README gains a "Grounded creation & guardrails" section, lists all 15 MCP tools, and adds the `willow` adapter to the integrations table. A new `surface-docs` test pins the documented surface to source (`--help` must list the commands, README's MCP count must equal `TOOLS.length`, every `listAdapters()` entry must appear in the README table), so the docs can never silently undersell the product again.
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- **MCP tool undercount (#366):** the README advertised "10 on-demand tools" while the server ships **15** — corrected and now gated by the `surface-docs` test.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
13
25
|
## [7.25.0] — 2026-06-21
|
|
14
26
|
|
|
15
27
|
Minor release — **Trust Hygiene (H1 + H3):** one generated source of benchmark truth, gated in CI. First installment of the v7.25.x milestone.
|
package/README.md
CHANGED
|
@@ -169,6 +169,7 @@ volta install sigmap
|
|
|
169
169
|
| `openai` | `.github/openai-context.md` | OpenAI API, Aider, local Ollama/llama.cpp |
|
|
170
170
|
| `gemini` | `.github/gemini-context.md` | Google Gemini |
|
|
171
171
|
| `codex` | `AGENTS.md` | OpenAI Codex (legacy) |
|
|
172
|
+
| `willow` | _Willow MCP store (HTTP POST — no file)_ | [Willow](https://github.com/rudi193-cmd/willow-1.9) knowledge store |
|
|
172
173
|
|
|
173
174
|
```bash
|
|
174
175
|
sigmap --adapter copilot # default — works with Copilot, OpenCode
|
|
@@ -190,12 +191,29 @@ Use SigMap with open-source tools and fully self-hosted setups:
|
|
|
190
191
|
| **JetBrains** | [Marketplace](https://plugins.jetbrains.com/plugin/31109-sigmap--ai-context-engine/) | [github.com/manojmallick/sigmap-jetbrains](https://github.com/manojmallick/sigmap-jetbrains) | IntelliJ IDEA, WebStorm, PyCharm, GoLand — tool window + actions |
|
|
191
192
|
| **Neovim** | lazy.nvim / packer / vim-plug | [github.com/manojmallick/sigmap.nvim](https://github.com/manojmallick/sigmap.nvim) | `:SigMap`, `:SigMapQuery` float window, statusline widget |
|
|
192
193
|
|
|
193
|
-
**MCP server** —
|
|
194
|
+
**MCP server** — 15 on-demand tools for Claude Code and Cursor:
|
|
194
195
|
|
|
195
196
|
```bash
|
|
196
197
|
sigmap --mcp
|
|
197
198
|
```
|
|
198
199
|
|
|
200
|
+
Tools: `read_context`, `search_signatures`, `get_map`, `create_checkpoint`, `get_routing`, `explain_file`, `list_modules`, `query_context`, `get_impact`, `get_lines`, `read_memory`, `get_callee_signatures`, plus the live-index notifications `sigmap_notify_file_created`, `sigmap_notify_symbol_added`, and `sigmap_notify_file_deleted`. Full reference: [llms-full.txt](llms-full.txt).
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
## Grounded creation & guardrails
|
|
205
|
+
|
|
206
|
+
Verify AI work against the live index instead of trusting it blind:
|
|
207
|
+
|
|
208
|
+
```bash
|
|
209
|
+
sigmap conventions # extract the repo's file-naming / export / test conventions
|
|
210
|
+
sigmap scaffold "<name>" # propose a convention-matched file/dir (refuses if conventions conflict)
|
|
211
|
+
sigmap verify-plan <plan.md> # check a plan: do the files/symbols exist? blast radius? scope?
|
|
212
|
+
sigmap verify-ai-output <answer.md> # flag fabricated files/imports/symbols/tests in an AI answer
|
|
213
|
+
sigmap review-pr # audit a diff: scope drift, god-node edits, missing tests, security files
|
|
214
|
+
sigmap create "<task>" # run the whole pipeline: scaffold → verify-plan → verify-ai-output → review-pr
|
|
215
|
+
```
|
|
216
|
+
|
|
199
217
|
---
|
|
200
218
|
|
|
201
219
|
## Try it
|
package/gen-context.js
CHANGED
|
@@ -8102,7 +8102,7 @@ __factories["./src/mcp/server"] = function(module, exports) {
|
|
|
8102
8102
|
|
|
8103
8103
|
const SERVER_INFO = {
|
|
8104
8104
|
name: 'sigmap',
|
|
8105
|
-
version: '7.25.
|
|
8105
|
+
version: '7.25.1',
|
|
8106
8106
|
description: 'SigMap MCP server — code signatures on demand',
|
|
8107
8107
|
};
|
|
8108
8108
|
|
|
@@ -13805,7 +13805,7 @@ function __tryGit(args, opts = {}) {
|
|
|
13805
13805
|
catch (_) { return ''; }
|
|
13806
13806
|
}
|
|
13807
13807
|
|
|
13808
|
-
const VERSION = '7.25.
|
|
13808
|
+
const VERSION = '7.25.1';
|
|
13809
13809
|
const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
|
|
13810
13810
|
|
|
13811
13811
|
function requireSourceOrBundled(key) {
|
|
@@ -15603,6 +15603,11 @@ Usage:
|
|
|
15603
15603
|
${cmd} verify-ai-output <answer.md> Flag fake files/tests/imports/symbols/npm-scripts in an AI answer
|
|
15604
15604
|
${cmd} verify-ai-output <answer.md> --json Hallucination report as JSON (exits 1 if issues)
|
|
15605
15605
|
${cmd} verify-ai-output <answer.md> --report Write a standalone HTML report (red/amber/green)
|
|
15606
|
+
${cmd} conventions Extract repo file-naming/export/test conventions (--conflicts, --inject, --report, --fix)
|
|
15607
|
+
${cmd} scaffold "<name>" Propose a convention-matched file/dir scaffold (--ext, --threshold, --force, --json)
|
|
15608
|
+
${cmd} verify-plan <plan.md|-> Check a plan vs the live index — files/symbols exist, blast radius, scope (--json)
|
|
15609
|
+
${cmd} review-pr Audit a diff — scope drift, god-node edits, missing tests, security files (--staged, --json)
|
|
15610
|
+
${cmd} create "<task>" Grounded-creation pipeline: scaffold → verify-plan → verify-ai-output → review-pr (--staged)
|
|
15606
15611
|
${cmd} squeeze <file|-> Minimize a pasted stacktrace/CI-log/JSON blob (--json for stats)
|
|
15607
15612
|
${cmd} ask "<query>" --squeeze Auto-accept input minimization (no prompt; for scripts/CI)
|
|
15608
15613
|
${cmd} ask "<query>" --no-squeeze Disable input minimization entirely
|
package/llms-full.txt
CHANGED
|
@@ -9,7 +9,7 @@ the files relevant to the task — cutting tokens ~97% while keeping answers
|
|
|
9
9
|
grounded. Deterministic, offline, no embeddings or vector database. Works with
|
|
10
10
|
Claude, Cursor, GitHub Copilot, Aider, Windsurf, local LLMs, and MCP.
|
|
11
11
|
|
|
12
|
-
# Version: 7.25.
|
|
12
|
+
# Version: 7.25.1 | Benchmark: sigmap-v7.25-main (2026-06-21)
|
|
13
13
|
# Source: auto-generated from package.json, version.json, benchmarks/latest.json, src/mcp/tools.js, src/config/defaults.js
|
|
14
14
|
# Regenerate: npm run generate:llms | Validate: npm run validate:llms
|
|
15
15
|
|
|
@@ -100,6 +100,11 @@ sigmap --impact <file> --depth <n> BFS depth limit (default 3, 0=unlimited
|
|
|
100
100
|
sigmap verify-ai-output <answer.md> Flag fake files/tests/imports/symbols/npm-scripts in an AI answer
|
|
101
101
|
sigmap verify-ai-output <answer.md> --json Hallucination report as JSON (exits 1 if issues)
|
|
102
102
|
sigmap verify-ai-output <answer.md> --report Write a standalone HTML report (red/amber/green)
|
|
103
|
+
sigmap conventions Extract repo file-naming/export/test conventions (--conflicts, --inject, --report, --fix)
|
|
104
|
+
sigmap scaffold "<name>" Propose a convention-matched file/dir scaffold (--ext, --threshold, --force, --json)
|
|
105
|
+
sigmap verify-plan <plan.md|-> Check a plan vs the live index — files/symbols exist, blast radius, scope (--json)
|
|
106
|
+
sigmap review-pr Audit a diff — scope drift, god-node edits, missing tests, security files (--staged, --json)
|
|
107
|
+
sigmap create "<task>" Grounded-creation pipeline: scaffold → verify-plan → verify-ai-output → review-pr (--staged)
|
|
103
108
|
sigmap squeeze <file|-> Minimize a pasted stacktrace/CI-log/JSON blob (--json for stats)
|
|
104
109
|
sigmap ask "<query>" --squeeze Auto-accept input minimization (no prompt; for scripts/CI)
|
|
105
110
|
sigmap ask "<query>" --no-squeeze Disable input minimization entirely
|
package/llms.txt
CHANGED
|
@@ -9,7 +9,7 @@ the files relevant to the task — cutting tokens ~97% while keeping answers
|
|
|
9
9
|
grounded. Deterministic, offline, no embeddings or vector database. Works with
|
|
10
10
|
Claude, Cursor, GitHub Copilot, Aider, Windsurf, local LLMs, and MCP.
|
|
11
11
|
|
|
12
|
-
# Version: 7.25.
|
|
12
|
+
# Version: 7.25.1 | Benchmark: sigmap-v7.25-main (2026-06-21)
|
|
13
13
|
# Source: auto-generated from package.json, version.json, benchmarks/latest.json, src/mcp/tools.js, src/config/defaults.js
|
|
14
14
|
# Regenerate: npm run generate:llms | Validate: npm run validate:llms
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sigmap",
|
|
3
|
-
"version": "7.25.
|
|
3
|
+
"version": "7.25.1",
|
|
4
4
|
"description": "97% token reduction for AI coding. Extracts function & class signatures with TF-IDF ranking to feed only the right files to Claude, Cursor, Copilot, Aider, Windsurf, local LLMs & MCP. Zero dependencies, runs offline via npx.",
|
|
5
5
|
"main": "packages/core/index.js",
|
|
6
6
|
"exports": {
|
package/src/mcp/server.js
CHANGED