sigmap 1.5.1 → 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 CHANGED
@@ -25,7 +25,7 @@
25
25
  [![Docs](https://img.shields.io/badge/docs-live-7c6af7?logo=github-pages)](https://manojmallick.github.io/sigmap)
26
26
  [![Changelog](https://img.shields.io/badge/changelog-CHANGELOG.md-blue)](CHANGELOG.md)
27
27
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
28
- [![VS Code](https://img.shields.io/badge/VS%20Code-extension-0078d4?logo=visual-studio-code)](vscode-extension/)
28
+ [![VS Code](https://img.shields.io/badge/VS%20Code-extension-0078d4?logo=visual-studio-code)](https://marketplace.visualstudio.com/items?itemName=manojmallick.sigmap)
29
29
 
30
30
  </div>
31
31
 
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: ['src', 'app', 'lib', 'packages', 'services', 'api'],
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: [
@@ -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.5.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigmap",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Zero-dependency AI context engine — 97% token reduction. No npm install. Runs on Node 18+.",
5
5
  "main": "gen-context.js",
6
6
  "bin": {
@@ -12,7 +12,13 @@ const DEFAULTS = {
12
12
  outputs: ['copilot'],
13
13
 
14
14
  // Directories to scan (relative to project root)
15
- srcDirs: ['src', 'app', 'lib', 'packages', 'services', 'api'],
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
@@ -18,7 +18,7 @@ const { readContext, searchSignatures, getMap, createCheckpoint, getRouting, exp
18
18
 
19
19
  const SERVER_INFO = {
20
20
  name: 'sigmap',
21
- version: '1.5.1',
21
+ version: '1.5.2',
22
22
  description: 'SigMap MCP server — code signatures on demand',
23
23
  };
24
24