sigmap 3.2.0 → 3.2.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/CHANGELOG.md +10 -0
- package/README.md +85 -0
- package/gen-context.js +2 -2
- package/package.json +3 -2
- 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
|
@@ -8,6 +8,16 @@ Format: [Semantic Versioning](https://semver.org/)
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
### Fixed
|
|
12
|
+
- **IDE command resolution parity (VS Code/Open VSX/JetBrains)** · [#34](https://github.com/manojmallick/sigmap/issues/34)
|
|
13
|
+
- Unified resolver now checks both `sigmap` and `gen-context` executables with consistent fallback order.
|
|
14
|
+
- Improved cross-platform probing for local workspace bins, Volta/nvm/npm-global installs, and OS-specific command lookup (`where` on Windows, shell lookup on macOS/Linux).
|
|
15
|
+
- JetBrains plugin now resolves commands more reliably outside Node-only projects and provides OS-aware install guidance when command lookup fails.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- **Installation guidance for plugin users**
|
|
19
|
+
- Updated VS Code/Open VSX and JetBrains setup docs to include all supported install paths: npm global, npm local, npx, standalone binaries in PATH, and project-local `gen-context.js`.
|
|
20
|
+
|
|
11
21
|
---
|
|
12
22
|
|
|
13
23
|
## [3.2.0] — Planned — Phase A: Cross-Platform Standalone Binaries
|
package/README.md
CHANGED
|
@@ -117,6 +117,91 @@ Available from any directory on your machine.
|
|
|
117
117
|
|
|
118
118
|
</details>
|
|
119
119
|
|
|
120
|
+
<details>
|
|
121
|
+
<summary><strong>Standalone binaries — no Node.js, no npm</strong></summary>
|
|
122
|
+
|
|
123
|
+
Download from the latest release:
|
|
124
|
+
|
|
125
|
+
- <https://github.com/manojmallick/sigmap/releases/latest>
|
|
126
|
+
|
|
127
|
+
Available assets:
|
|
128
|
+
|
|
129
|
+
- `sigmap-darwin-arm64` (macOS Apple Silicon)
|
|
130
|
+
- `sigmap-linux-x64` (Linux x64)
|
|
131
|
+
- `sigmap-win32-x64.exe` (Windows x64)
|
|
132
|
+
- `sigmap-checksums.txt` (SHA-256 checksums)
|
|
133
|
+
|
|
134
|
+
<details>
|
|
135
|
+
<summary><strong>macOS / Linux</strong></summary>
|
|
136
|
+
|
|
137
|
+
Run directly:
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
chmod +x ./sigmap-darwin-arm64 # or ./sigmap-linux-x64
|
|
141
|
+
./sigmap-darwin-arm64 --help
|
|
142
|
+
./sigmap-darwin-arm64
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
Make it globally available in Bash/Zsh (no `./` needed):
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
# 1) Pick a user bin dir and move/rename the binary
|
|
149
|
+
mkdir -p "$HOME/.local/bin"
|
|
150
|
+
mv ./sigmap-darwin-arm64 "$HOME/.local/bin/sigmap" # or sigmap-linux-x64
|
|
151
|
+
chmod +x "$HOME/.local/bin/sigmap"
|
|
152
|
+
|
|
153
|
+
# 2) Add to PATH in your shell profile
|
|
154
|
+
echo 'export PATH="$HOME/.local/bin:$PATH"' >> "$HOME/.zshrc" # zsh
|
|
155
|
+
# echo 'export PATH="$HOME/.local/bin:$PATH"' >> "$HOME/.bashrc" # bash
|
|
156
|
+
|
|
157
|
+
# 3) Reload shell and verify
|
|
158
|
+
source "$HOME/.zshrc" # or: source "$HOME/.bashrc"
|
|
159
|
+
sigmap --version
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
</details>
|
|
163
|
+
|
|
164
|
+
<details>
|
|
165
|
+
<summary><strong>Windows (PowerShell)</strong></summary>
|
|
166
|
+
|
|
167
|
+
Run directly:
|
|
168
|
+
|
|
169
|
+
```powershell
|
|
170
|
+
.\sigmap-win32-x64.exe --help
|
|
171
|
+
.\sigmap-win32-x64.exe
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
Make it globally available:
|
|
175
|
+
|
|
176
|
+
```powershell
|
|
177
|
+
# 1) Create a user bin directory and rename the binary
|
|
178
|
+
New-Item -ItemType Directory -Force "$HOME\bin" | Out-Null
|
|
179
|
+
Move-Item .\sigmap-win32-x64.exe "$HOME\bin\sigmap.exe"
|
|
180
|
+
|
|
181
|
+
# 2) Add user bin to PATH (current user)
|
|
182
|
+
[Environment]::SetEnvironmentVariable(
|
|
183
|
+
"Path",
|
|
184
|
+
$env:Path + ";$HOME\bin",
|
|
185
|
+
"User"
|
|
186
|
+
)
|
|
187
|
+
|
|
188
|
+
# 3) Restart PowerShell and verify
|
|
189
|
+
sigmap --version
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
</details>
|
|
193
|
+
|
|
194
|
+
Optional checksum verification:
|
|
195
|
+
|
|
196
|
+
```bash
|
|
197
|
+
shasum -a 256 sigmap-darwin-arm64
|
|
198
|
+
# Compare with sigmap-checksums.txt
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
Full guide: [docs/binaries.md](docs/binaries.md)
|
|
202
|
+
|
|
203
|
+
</details>
|
|
204
|
+
|
|
120
205
|
<details>
|
|
121
206
|
<summary><strong>npm local — per-project, version-pinned</strong></summary>
|
|
122
207
|
|
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: '3.2.
|
|
3703
|
+
version: '3.2.1',
|
|
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.2.
|
|
5052
|
+
const VERSION = '3.2.1';
|
|
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.2.
|
|
3
|
+
"version": "3.2.1",
|
|
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": {
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"map": "node gen-project-map.js",
|
|
28
28
|
"mcp": "node gen-context.js --mcp",
|
|
29
29
|
"build:binary": "node scripts/build-binary.mjs",
|
|
30
|
-
"verify:binary": "node scripts/verify-binary.mjs"
|
|
30
|
+
"verify:binary": "node scripts/verify-binary.mjs",
|
|
31
|
+
"version:sync": "node scripts/sync-versions.mjs"
|
|
31
32
|
},
|
|
32
33
|
"files": [
|
|
33
34
|
"gen-context.js",
|
package/src/mcp/server.js
CHANGED