sigmap 1.5.0 → 1.5.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/README.md +5 -3
- package/gen-context.js +8 -3
- package/package.json +1 -1
- package/src/config/defaults.js +7 -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,14 +18,14 @@
|
|
|
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 -->
|
|
25
25
|
[](https://manojmallick.github.io/sigmap)
|
|
26
26
|
[](CHANGELOG.md)
|
|
27
27
|
[](CONTRIBUTING.md)
|
|
28
|
-
[](
|
|
28
|
+
[](https://marketplace.visualstudio.com/items?itemName=manojmallick.sigmap)
|
|
29
29
|
|
|
30
30
|
</div>
|
|
31
31
|
|
|
@@ -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
|
@@ -35,7 +35,12 @@ __factories["./src/config/defaults"] = function(module, exports) {
|
|
|
35
35
|
outputs: ['copilot'],
|
|
36
36
|
|
|
37
37
|
// Directories to scan (relative to project root)
|
|
38
|
-
srcDirs: [
|
|
38
|
+
srcDirs: [
|
|
39
|
+
'src', 'app', 'lib', 'packages', 'services', 'api',
|
|
40
|
+
'server', 'client', 'web', 'frontend', 'backend',
|
|
41
|
+
'desktop', 'mobile', 'shared', 'common', 'core',
|
|
42
|
+
'workers', 'functions', 'lambda', 'cmd',
|
|
43
|
+
],
|
|
39
44
|
|
|
40
45
|
// Directory/file names to exclude entirely
|
|
41
46
|
exclude: [
|
|
@@ -2539,7 +2544,7 @@ __factories["./src/mcp/server"] = function(module, exports) {
|
|
|
2539
2544
|
|
|
2540
2545
|
const SERVER_INFO = {
|
|
2541
2546
|
name: 'sigmap',
|
|
2542
|
-
version: '1.
|
|
2547
|
+
version: '1.5.0',
|
|
2543
2548
|
description: 'SigMap MCP server — code signatures on demand',
|
|
2544
2549
|
};
|
|
2545
2550
|
|
|
@@ -3219,7 +3224,7 @@ const path = require('path');
|
|
|
3219
3224
|
const os = require('os');
|
|
3220
3225
|
const { execSync } = require('child_process');
|
|
3221
3226
|
|
|
3222
|
-
const VERSION = '1.
|
|
3227
|
+
const VERSION = '1.5.2';
|
|
3223
3228
|
const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
|
|
3224
3229
|
|
|
3225
3230
|
// ---------------------------------------------------------------------------
|
package/package.json
CHANGED
package/src/config/defaults.js
CHANGED
|
@@ -12,7 +12,13 @@ const DEFAULTS = {
|
|
|
12
12
|
outputs: ['copilot'],
|
|
13
13
|
|
|
14
14
|
// Directories to scan (relative to project root)
|
|
15
|
-
srcDirs: [
|
|
15
|
+
srcDirs: [
|
|
16
|
+
'src', 'app', 'lib', 'packages', 'services', 'api',
|
|
17
|
+
// common monorepo / multi-project top-level names
|
|
18
|
+
'server', 'client', 'web', 'frontend', 'backend',
|
|
19
|
+
'desktop', 'mobile', 'shared', 'common', 'core',
|
|
20
|
+
'workers', 'functions', 'lambda', 'cmd',
|
|
21
|
+
],
|
|
16
22
|
|
|
17
23
|
// Directory/file names to exclude entirely
|
|
18
24
|
exclude: [
|
package/src/mcp/server.js
CHANGED