sigmap 3.1.0-alpha.1 → 3.2.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 CHANGED
@@ -18,14 +18,14 @@ Format: [Semantic Versioning](https://semver.org/)
18
18
  - Download from GitHub Releases: `sigmap-darwin-arm64`, `sigmap-darwin-x64`, `sigmap-linux-x64`, `sigmap-win32-x64.exe`
19
19
  - SHA-256 checksums in `sigmap-checksums.txt` attached to every release
20
20
  - **`scripts/build-binary.mjs`** — reproducible local binary build for the current platform
21
- - **`scripts/verify-binary.mjs`** — smoke tests `--version`, `--help`, `generate`, `health`, `report` against a fixture repo
21
+ - **`scripts/verify-binary.mjs`** — smoke tests `--version`, `--help`, default generate, `--health`, `--report` against a fixture repo
22
22
  - **`.github/workflows/release-binaries.yml`** — GHA matrix builds all 4 targets on tag push; attaches artifacts to the GitHub Release
23
23
  - **`test/fixtures/binary-smoke/`** — minimal fixture project used by CI smoke tests
24
24
  - **`docs/binaries.md`** — install guide covering download, `chmod +x`, macOS Gatekeeper, Windows SmartScreen, and checksum verification
25
25
 
26
26
  ### Technical
27
27
  - Uses [Node.js SEA](https://nodejs.org/api/single-executable-applications.html) (Node 20 `--experimental-sea-config` + `postject`)
28
- - `gen-context.js` required no changes existing `requireSourceOrBundled()` fallback and DEFAULTS fallback in `writeInitConfig()` are both SEA-compatible
28
+ - `gen-context.js` was updated to include previously-missing `src/` modules (`todos`, `coverage`, `prdiff`) in the SEA bundle; existing `requireSourceOrBundled()` fallback and DEFAULTS fallback in `writeInitConfig()` remain SEA-compatible
29
29
  - Binary builds run natively per OS in GHA (no cross-compilation)
30
30
  - `release-attach` job waits for the npm-publish Release to exist before uploading binary assets
31
31
 
package/README.md CHANGED
@@ -239,7 +239,7 @@ sigmap --benchmark --json # machine-readable benchmark results
239
239
  ```bash
240
240
  # macOS / Linux
241
241
  chmod +x ./sigmap-darwin-arm64
242
- ./sigmap-darwin-arm64 generate
242
+ ./sigmap-darwin-arm64
243
243
  ```
244
244
 
245
245
  See [docs/binaries.md](docs/binaries.md) for Gatekeeper / SmartScreen notes and checksum verification.
package/gen-context.js CHANGED
@@ -3700,7 +3700,7 @@ __factories["./src/mcp/server"] = function(module, exports) {
3700
3700
 
3701
3701
  const SERVER_INFO = {
3702
3702
  name: 'sigmap',
3703
- version: '2.10.0',
3703
+ version: '3.2.0',
3704
3704
  description: 'SigMap MCP server — code signatures on demand',
3705
3705
  };
3706
3706
 
@@ -5049,7 +5049,7 @@ const path = require('path');
5049
5049
  const os = require('os');
5050
5050
  const { execSync } = require('child_process');
5051
5051
 
5052
- const VERSION = '3.0.1';
5052
+ const VERSION = '3.2.0';
5053
5053
  const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
5054
5054
 
5055
5055
  function requireSourceOrBundled(key) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigmap",
3
- "version": "3.1.0-alpha.1",
3
+ "version": "3.2.0",
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
  "exports": {
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: '3.0.1',
21
+ version: '3.2.0',
22
22
  description: 'SigMap MCP server — code signatures on demand',
23
23
  };
24
24