sigmap 8.26.0 → 8.26.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 +12 -0
- package/gen-context.js +2 -2
- package/llms-full.txt +1 -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
|
+
## [8.26.1] — 2026-08-18
|
|
14
|
+
|
|
15
|
+
Patch release — **"Trust Quick Wins II" (G1)**: the extraction layer gets the same honesty treatment the benchmarks got in v8.19.
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- **`KNOWN_LIMITATIONS.md` + README extraction-honesty tiers (#520, PR #521):** one page stating plainly what each extractor tier can and cannot do — Tier 1 AST (Python via `python_ast.py`, regex fallback without `python3`), Tier 2 anchored regex (the 11 `withAnchor` brace languages, doc hints on 6), Tier 3 pattern/heuristic (the rest + generic fallback) — plus the truncation caps (25 signatures/file, 8 members/block) and what falls off, the nested-paren regex gap (the stated G4/D1 precondition), and the honest `verify` implication: a real symbol missing from the index flags `fake-symbol` at **medium** confidence — a conservative false positive, never a silent pass. README carries a compact "Extraction honesty" tier label linking the page. A 6-check guard test drift-locks the doc's counts to `version.json` and cross-checks the Tier-2 count against the extractors that actually call `withAnchor`.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- 6 new guard checks (133 test files). No runtime code changed; the npm tarball is unaffected.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
13
25
|
## [8.26.0] — 2026-08-18
|
|
14
26
|
|
|
15
27
|
Minor release — **"Agent Economy III" (v8.26, F3+F4)**: the optimal SigMap usage loop ships as installable agent skills in every client's native format — completing the Agent Economy pillar (F1 budget → F2 tune → F3+F4 skills).
|
package/README.md
CHANGED
|
@@ -397,6 +397,18 @@ All implemented with zero external dependencies.
|
|
|
397
397
|
|
|
398
398
|
[Full language table →](https://sigmap.io/guide/generalization.html)
|
|
399
399
|
|
|
400
|
+
### Extraction honesty
|
|
401
|
+
|
|
402
|
+
Not all 33 languages get the same depth — and we say so plainly:
|
|
403
|
+
|
|
404
|
+
| Tier | Coverage | Depth |
|
|
405
|
+
|------|----------|-------|
|
|
406
|
+
| **AST** | Python (`python3` on PATH; regex fallback without) | Full parse |
|
|
407
|
+
| **Anchored regex** | 11 brace languages (JS, TS, Go, Rust, Java, Kotlin, Swift, PHP, Scala, Dart, C#) | Declarations + `:start-end` line anchors; doc hints on 6 |
|
|
408
|
+
| **Pattern/heuristic** | Everything else + generic fallback | Line-oriented patterns |
|
|
409
|
+
|
|
410
|
+
Caps: 25 signatures/file · 8 members/block. Full details, known regex gaps, and what they mean for `verify`: **[KNOWN_LIMITATIONS.md](KNOWN_LIMITATIONS.md)**.
|
|
411
|
+
|
|
400
412
|
---
|
|
401
413
|
|
|
402
414
|
## License
|
package/gen-context.js
CHANGED
|
@@ -15195,7 +15195,7 @@ __factories["./src/mcp/server"] = function(module, exports) {
|
|
|
15195
15195
|
|
|
15196
15196
|
const SERVER_INFO = {
|
|
15197
15197
|
name: 'sigmap',
|
|
15198
|
-
version: '8.26.
|
|
15198
|
+
version: '8.26.1',
|
|
15199
15199
|
description: 'SigMap MCP server — code signatures on demand',
|
|
15200
15200
|
};
|
|
15201
15201
|
|
|
@@ -20807,7 +20807,7 @@ function __tryGit(args, opts = {}) {
|
|
|
20807
20807
|
catch (_) { return ''; }
|
|
20808
20808
|
}
|
|
20809
20809
|
|
|
20810
|
-
const VERSION = '8.26.
|
|
20810
|
+
const VERSION = '8.26.1';
|
|
20811
20811
|
const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
|
|
20812
20812
|
|
|
20813
20813
|
function requireSourceOrBundled(key) {
|
package/llms-full.txt
CHANGED
|
@@ -11,7 +11,7 @@ ranking keeps the relevant context in scope (cutting tokens ~97% as a side
|
|
|
11
11
|
effect), with no LLM calls, embeddings, or vector database. Works with Claude,
|
|
12
12
|
Cursor, GitHub Copilot, Aider, Windsurf, local LLMs, and MCP.
|
|
13
13
|
|
|
14
|
-
# Version: 8.26.
|
|
14
|
+
# Version: 8.26.1 | Benchmark: sigmap-v8.26-main (2026-08-17)
|
|
15
15
|
# Source: auto-generated from package.json, version.json, benchmarks/latest.json, src/mcp/tools.js, src/config/defaults.js
|
|
16
16
|
# Regenerate: npm run generate:llms | Validate: npm run validate:llms
|
|
17
17
|
|
package/llms.txt
CHANGED
|
@@ -11,7 +11,7 @@ ranking keeps the relevant context in scope (cutting tokens ~97% as a side
|
|
|
11
11
|
effect), with no LLM calls, embeddings, or vector database. Works with Claude,
|
|
12
12
|
Cursor, GitHub Copilot, Aider, Windsurf, local LLMs, and MCP.
|
|
13
13
|
|
|
14
|
-
# Version: 8.26.
|
|
14
|
+
# Version: 8.26.1 | Benchmark: sigmap-v8.26-main (2026-08-17)
|
|
15
15
|
# Source: auto-generated from package.json, version.json, benchmarks/latest.json, src/mcp/tools.js, src/config/defaults.js
|
|
16
16
|
# Regenerate: npm run generate:llms | Validate: npm run validate:llms
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sigmap",
|
|
3
|
-
"version": "8.26.
|
|
3
|
+
"version": "8.26.1",
|
|
4
4
|
"description": "The deterministic, verifiable grounding layer for AI code work — a zero-dependency signature-and-evidence map that grounds Claude, Cursor, Copilot, Aider, Windsurf, local LLMs & MCP agents against your real code (repo + installed libraries) so they stop hallucinating files, imports & APIs. Runs offline via npx; byte-stable output; ~97% token reduction as proof.",
|
|
5
5
|
"main": "packages/core/index.js",
|
|
6
6
|
"exports": {
|
package/src/mcp/server.js
CHANGED