sigmap 6.3.0 → 6.4.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 +13 -0
- package/README.md +1 -3
- package/gen-context.js +2 -2
- 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,19 @@ Format: [Semantic Versioning](https://semver.org/)
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
+
## [6.4.0] — 2026-04-23
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- **Docs version labels** — homepage hero badge now shows Release (v6.4.0) and Benchmark (sigmap-v6.0-main) as separate labels instead of a single conflated "Latest: v6.0" pill
|
|
18
|
+
- **Generalization benchmark** — upgraded all v5.9-main references in `docs-vp/guide/generalization.md` to v6.0-main snapshot
|
|
19
|
+
- **README overclaim fix** — removed "every time" from the comparison table; trimmed top demo block from 4 commands to 2
|
|
20
|
+
- **v6.3.0 release notes** — added release note callout blocks to benchmark, retrieval-benchmark, and task-benchmark docs
|
|
21
|
+
- **MCP docs** — added v6.3 native tool registration callout to `docs-vp/guide/mcp.md`
|
|
22
|
+
- **Content-consistency test** — new `test/content/v640-trust-sync.sh` bash script with 11 checks catches version/copy regressions
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
13
26
|
## [6.3.0] — 2026-04-22
|
|
14
27
|
|
|
15
28
|
### Added
|
package/README.md
CHANGED
|
@@ -21,8 +21,6 @@
|
|
|
21
21
|
```bash
|
|
22
22
|
npx sigmap
|
|
23
23
|
sigmap ask "Where is auth handled?"
|
|
24
|
-
sigmap validate
|
|
25
|
-
sigmap judge
|
|
26
24
|
```
|
|
27
25
|
|
|
28
26
|
Zero config. Zero dependencies. Under 10 seconds.
|
|
@@ -52,7 +50,7 @@ Works with Copilot, Claude, Cursor, Windsurf, and any LLM.
|
|
|
52
50
|
|
|
53
51
|
| Without SigMap | With SigMap |
|
|
54
52
|
|---|---|
|
|
55
|
-
| ❌ Guessing which files are relevant | ✅
|
|
53
|
+
| ❌ Guessing which files are relevant | ✅ Right file in context — 80% of the time |
|
|
56
54
|
| ❌ Sending the full repo to your AI | ✅ Minimal context — only what matters |
|
|
57
55
|
| ❌ Embeddings / vector DB required | ✅ Grounded answers, no infra needed |
|
|
58
56
|
|
package/gen-context.js
CHANGED
|
@@ -5387,7 +5387,7 @@ __factories["./src/mcp/server"] = function(module, exports) {
|
|
|
5387
5387
|
|
|
5388
5388
|
const SERVER_INFO = {
|
|
5389
5389
|
name: 'sigmap',
|
|
5390
|
-
version: '6.
|
|
5390
|
+
version: '6.4.0',
|
|
5391
5391
|
description: 'SigMap MCP server — code signatures on demand',
|
|
5392
5392
|
};
|
|
5393
5393
|
|
|
@@ -7222,7 +7222,7 @@ const path = require('path');
|
|
|
7222
7222
|
const os = require('os');
|
|
7223
7223
|
const { execSync } = require('child_process');
|
|
7224
7224
|
|
|
7225
|
-
const VERSION = '6.
|
|
7225
|
+
const VERSION = '6.4.0';
|
|
7226
7226
|
const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
|
|
7227
7227
|
|
|
7228
7228
|
function requireSourceOrBundled(key) {
|
package/package.json
CHANGED
package/src/mcp/server.js
CHANGED