sigmap 7.23.0 → 7.24.0

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,15 @@ Format: [Semantic Versioning](https://semver.org/)
10
10
 
11
11
  ---
12
12
 
13
+ ## [7.24.0] — 2026-06-19
14
+
15
+ Minor release — redesign the §9 ablation corpus so it measures grounding, not guard precision.
16
+
17
+ ### Changed
18
+ - **§9 ablation corpus → checkable repo-fact questions (#356):** the previous "write a minimal example that requires X" tasks inherently elicited placeholder scaffolding (`src/main.js`, `minimal.js`, real modules referenced by basename), which a string-based guard cannot distinguish from claimed repo files — so the metric measured guard precision, not grounding. A 100-task run confirmed grounding drives *genuine* invented-file hallucinations to ~0 while with-arm scaffolding noise masked it (9 → 7). `scripts/gen-ablation-corpus.mjs` now generates fact questions — *"which file defines `<name>`, and what are its parameters?"* — where a wrong file path is an unambiguous, checkable hallucination and the prompt forbids example code. The grounded arm (given exact signatures grouped by file) answers correctly; the ungrounded arm must guess. Task ids `call-` → `fact-`; 100 real-symbol tasks; a regression test pins the methodology. Run: `npm run benchmark:llm-ablation -- --runs 5 --save`.
19
+
20
+ ---
21
+
13
22
  ## [7.23.0] — 2026-06-19
14
23
 
15
24
  Minor release — make the §9 LLM ablation produce a statistically stable number.
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.23.0',
8105
+ version: '7.24.0',
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.23.0';
13808
+ const VERSION = '7.24.0';
13809
13809
  const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
13810
13810
 
13811
13811
  function requireSourceOrBundled(key) {
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.23.0 | Benchmark: sigmap-v7.0-main (2026-06-19)
12
+ # Version: 7.24.0 | Benchmark: sigmap-v7.0-main (2026-06-19)
13
13
  # Source: auto-generated from package.json, version.json, src/mcp/tools.js, src/config/defaults.js
14
14
  # Regenerate: npm run generate:llms | Validate: npm run validate:llms
15
15
 
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.23.0 | Benchmark: sigmap-v7.0-main (2026-06-19)
12
+ # Version: 7.24.0 | Benchmark: sigmap-v7.0-main (2026-06-19)
13
13
  # Source: auto-generated from package.json, version.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.23.0",
3
+ "version": "7.24.0",
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": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigmap-cli",
3
- "version": "7.23.0",
3
+ "version": "7.24.0",
4
4
  "description": "SigMap CLI wrapper — thin adapter for programmatic CLI invocation",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigmap-core",
3
- "version": "7.23.0",
3
+ "version": "7.24.0",
4
4
  "description": "SigMap core library — zero-dependency code signature extraction, retrieval, and security scanning",
5
5
  "main": "index.js",
6
6
  "keywords": [
package/src/mcp/server.js CHANGED
@@ -18,7 +18,7 @@ const { readContext, searchSignatures, getMap, createCheckpoint, getRouting, exp
18
18
 
19
19
  const SERVER_INFO = {
20
20
  name: 'sigmap',
21
- version: '7.23.0',
21
+ version: '7.24.0',
22
22
  description: 'SigMap MCP server — code signatures on demand',
23
23
  };
24
24