sigmap 7.25.0 → 7.25.2

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 CHANGED
@@ -10,6 +10,30 @@ Format: [Semantic Versioning](https://semver.org/)
10
10
 
11
11
  ---
12
12
 
13
+ ## [7.25.2] — 2026-06-22
14
+
15
+ Patch release — **Trust Hygiene (H2):** reproducible bundle build. Completes the v7.25.x "Trust Hygiene" milestone (H1+H2+H3+H4 all shipped).
16
+
17
+ ### Added
18
+ - **Reproducible bundle build (#369):** `scripts/build-bundle.mjs` (`npm run build:bundle`) deterministically regenerates the embedded `__factories` of `gen-context.js` from `src/` + `packages/adapters/` — sorted and de-duplicated — between two markers, leaving the preamble and the hand-written CLI core byte-identical. `build:bundle --check` asserts the committed bundle equals a fresh build and is wired into `prepublishOnly` and CI (next to the existing standalone `bundle-smoke` test on Node 18/20/22). A new `bundle-repro` test pins byte-for-byte reproducibility.
19
+
20
+ ### Fixed
21
+ - **Duplicate / missing bundled modules (#369):** the bundle carried a duplicate `./src/eval/llm-ablation` factory (124 blocks for 115 `src/` modules) because `check-bundle --fix` prepended on each run; it now regenerates the whole section via `build-bundle`, so duplicates can't recur. The `willow` adapter — silently never embedded (the integrity check only verified `src/`) — is now bundled. The canonical bundle is **125 modules, one factory each**.
22
+
23
+ ---
24
+
25
+ ## [7.25.1] — 2026-06-21
26
+
27
+ 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).
28
+
29
+ ### Added
30
+ - **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.
31
+
32
+ ### Fixed
33
+ - **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.
34
+
35
+ ---
36
+
13
37
  ## [7.25.0] — 2026-06-21
14
38
 
15
39
  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
@@ -92,7 +92,7 @@ Ask → Rank → Context → Validate → Judge → Learn
92
92
  <!--SM:benchmarkBlock-->
93
93
  ```
94
94
  Benchmark : sigmap-v7.25-main (21 repositories, including R language)
95
- Date : 2026-06-21
95
+ Date : 2026-06-22
96
96
 
97
97
  Hit@5 : 75.6% (baseline 13.6% — 5.6× lift)
98
98
  Token reduction: 97.0% (across 21 repos)
@@ -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** — 10 on-demand tools for Claude Code and Cursor:
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