sigmap 1.5.0 → 1.5.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/README.md +4 -2
- package/gen-context.js +2 -2
- package/package.json +1 -1
- package/src/mcp/server.js +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
<!-- Status -->
|
|
13
|
-
[](https://www.npmjs.com/package/sigmap)
|
|
14
14
|
[](https://github.com/manojmallick/sigmap/tree/main/test)
|
|
15
15
|
[](package.json)
|
|
16
16
|
[](https://github.com/manojmallick/sigmap/commits/main)
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<!-- Meta -->
|
|
19
19
|
[](LICENSE)
|
|
20
20
|
[](https://nodejs.org)
|
|
21
|
-
[](https://www.npmjs.com/package/sigmap)
|
|
22
22
|
[](https://github.com/manojmallick/sigmap/stargazers)
|
|
23
23
|
|
|
24
24
|
<!-- Links -->
|
|
@@ -48,6 +48,8 @@
|
|
|
48
48
|
| [Project structure](#-project-structure) | File-by-file map |
|
|
49
49
|
| [Principles](#-principles) | Design decisions |
|
|
50
50
|
|
|
51
|
+
> 📖 **New to SigMap?** Read the **[Complete Getting Started Guide](docs/GETTING_STARTED.md)** — token savings walkthrough, every command, VS Code plugin, and CI setup.
|
|
52
|
+
|
|
51
53
|
---
|
|
52
54
|
|
|
53
55
|
## 🔍 What it does
|
package/gen-context.js
CHANGED
|
@@ -2539,7 +2539,7 @@ __factories["./src/mcp/server"] = function(module, exports) {
|
|
|
2539
2539
|
|
|
2540
2540
|
const SERVER_INFO = {
|
|
2541
2541
|
name: 'sigmap',
|
|
2542
|
-
version: '1.
|
|
2542
|
+
version: '1.5.0',
|
|
2543
2543
|
description: 'SigMap MCP server — code signatures on demand',
|
|
2544
2544
|
};
|
|
2545
2545
|
|
|
@@ -3219,7 +3219,7 @@ const path = require('path');
|
|
|
3219
3219
|
const os = require('os');
|
|
3220
3220
|
const { execSync } = require('child_process');
|
|
3221
3221
|
|
|
3222
|
-
const VERSION = '1.
|
|
3222
|
+
const VERSION = '1.5.1';
|
|
3223
3223
|
const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
|
|
3224
3224
|
|
|
3225
3225
|
// ---------------------------------------------------------------------------
|
package/package.json
CHANGED
package/src/mcp/server.js
CHANGED