sigmap 2.9.0 → 2.9.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 +32 -18
- package/README.md +24 -0
- package/gen-context.js +1 -1
- package/package.json +1 -1
- 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
|
@@ -6,26 +6,40 @@ Format: [Semantic Versioning](https://semver.org/)
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
## [2.9.
|
|
9
|
+
## [2.9.1] — 2026-04-06 · JetBrains Marketplace Publishing
|
|
10
10
|
|
|
11
|
-
###
|
|
12
|
-
- **JetBrains
|
|
13
|
-
- **
|
|
14
|
-
- **
|
|
15
|
-
- **
|
|
16
|
-
- **
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
-
|
|
11
|
+
### Added
|
|
12
|
+
- **JetBrains Marketplace publishing** — automated publishing job in GitHub Actions workflow
|
|
13
|
+
- **Gradle wrapper** — gradlew, gradlew.bat for consistent JetBrains plugin builds
|
|
14
|
+
- **Publishing guide** — comprehensive [docs/JETBRAINS_PUBLISH.md](docs/JETBRAINS_PUBLISH.md)
|
|
15
|
+
- **JetBrains Marketplace badge** — added to README.md
|
|
16
|
+
- **One-time token setup** — documented in publishing guide
|
|
17
|
+
|
|
18
|
+
### Details
|
|
19
|
+
- GitHub Actions workflow now includes `publish-jetbrains` job
|
|
20
|
+
- Publishes to JetBrains Marketplace alongside npm, GitHub Packages, VS Code, and Open VSX
|
|
21
|
+
- Requires `JETBRAINS_PUBLISH_TOKEN` secret for automated publishing
|
|
22
|
+
- Full publishing guide with manual instructions and troubleshooting
|
|
20
23
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## [2.9.0] — 2026-04-05 · IDE Expansion: JetBrains Plugin
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
- **JetBrains plugin** — native support for all JetBrains IDEs (IntelliJ IDEA, WebStorm, PyCharm, GoLand, RubyMine, etc.)
|
|
30
|
+
- **Plugin descriptor** — `jetbrains-plugin/src/main/resources/META-INF/plugin.xml` with 3 actions + status bar widget
|
|
31
|
+
- **Kotlin sources** — 5 action implementations (RegenerateAction, OpenContextFileAction, ViewRoadmapAction, HealthStatusBar, Factory)
|
|
32
|
+
- **Toolbar actions** — "Regenerate Context" (Ctrl+Alt+G), "Open Context File", "View Roadmap"
|
|
33
|
+
- **Status bar widget** — shows health grade (A-F) and time since last regeneration; updates every 60s
|
|
34
|
+
- **Gradle build** — `jetbrains-plugin/build.gradle.kts` with IntelliJ Platform 2024.1+ compatibility
|
|
35
|
+
- **Setup documentation** — [docs/JETBRAINS_SETUP.md](docs/JETBRAINS_SETUP.md) with installation guide, features, troubleshooting
|
|
36
|
+
- **Integration tests** — `test/integration/jetbrains.test.js` with 11 structure validation tests
|
|
37
|
+
|
|
38
|
+
### Details
|
|
39
|
+
- Compatible with IntelliJ IDEA 2024.1 - 2024.3 (Community & Ultimate)
|
|
40
|
+
- One-click context regeneration from IDE toolbar
|
|
41
|
+
- Automatic status bar updates every 60 seconds
|
|
42
|
+
- Full Kotlin/Gradle plugin with proper plugin.xml structure
|
|
29
43
|
|
|
30
44
|
---
|
|
31
45
|
|
package/README.md
CHANGED
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
[](CHANGELOG.md)
|
|
27
27
|
[](CONTRIBUTING.md)
|
|
28
28
|
[](https://marketplace.visualstudio.com/items?itemName=manojmallick.sigmap)
|
|
29
|
+
[](https://plugins.jetbrains.com/plugin/sigmap)
|
|
29
30
|
[](https://open-vsx.org/extension/manojmallick/sigmap)
|
|
30
31
|
|
|
31
32
|
</div>
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
| [What it does](#-what-it-does) | Token reduction table, pipeline overview |
|
|
40
41
|
| [Quick start](#-quick-start) | Get running in 60 seconds |
|
|
41
42
|
| [VS Code extension](#-vs-code-extension) | Status bar, stale alerts, commands |
|
|
43
|
+
| [JetBrains plugin](#-jetbrains-plugin) | IntelliJ IDEA, WebStorm, PyCharm support |
|
|
42
44
|
| [Languages supported](#-languages-supported) | 21 languages |
|
|
43
45
|
| [Context strategies](#-context-strategies) | full / per-module / hot-cold |
|
|
44
46
|
| [MCP server](#-mcp-server) | 8 on-demand tools |
|
|
@@ -198,6 +200,28 @@ The `vscode-extension/` directory contains a first-party VS Code extension that
|
|
|
198
200
|
|
|
199
201
|
Activate on startup (`onStartupFinished`) — loads within 3 s, never blocks editor startup.
|
|
200
202
|
|
|
203
|
+
**Install:** [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=manojmallick.sigmap) | [Open VSX Registry](https://open-vsx.org/extension/manojmallick/sigmap)
|
|
204
|
+
|
|
205
|
+
---
|
|
206
|
+
|
|
207
|
+
## 🔧 JetBrains plugin
|
|
208
|
+
|
|
209
|
+
> Introduced in v2.9 — brings SigMap to IntelliJ IDEA, WebStorm, PyCharm, and all JetBrains IDEs.
|
|
210
|
+
|
|
211
|
+
The `jetbrains-plugin/` directory contains a Kotlin-based plugin for JetBrains IDEs with the same core features as the VS Code extension.
|
|
212
|
+
|
|
213
|
+
| Feature | Detail |
|
|
214
|
+
|---|---|
|
|
215
|
+
| **Status bar widget** | Shows health grade (`A`-`F`) + time since last regen; updates every 60 s |
|
|
216
|
+
| **Regenerate action** | `Tools → SigMap → Regenerate Context` or **Ctrl+Alt+G** — runs `node gen-context.js` |
|
|
217
|
+
| **Open context action** | `Tools → SigMap → Open Context File` — opens `.github/copilot-instructions.md` |
|
|
218
|
+
| **View roadmap action** | `Tools → SigMap → View Roadmap` — opens roadmap in browser |
|
|
219
|
+
| **One-click regen** | Click status bar widget to regenerate context instantly |
|
|
220
|
+
|
|
221
|
+
Compatible with **IntelliJ IDEA 2024.1+** (Community & Ultimate), **WebStorm**, **PyCharm**, **GoLand**, **RubyMine**, **PhpStorm**, and all other IntelliJ-based IDEs.
|
|
222
|
+
|
|
223
|
+
**Install:** [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/sigmap) | [Manual setup guide](docs/JETBRAINS_SETUP.md)
|
|
224
|
+
|
|
201
225
|
---
|
|
202
226
|
|
|
203
227
|
## 🌐 Languages supported
|
package/gen-context.js
CHANGED
|
@@ -4304,7 +4304,7 @@ const path = require('path');
|
|
|
4304
4304
|
const os = require('os');
|
|
4305
4305
|
const { execSync } = require('child_process');
|
|
4306
4306
|
|
|
4307
|
-
const VERSION = '2.9.
|
|
4307
|
+
const VERSION = '2.9.1';
|
|
4308
4308
|
const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
|
|
4309
4309
|
|
|
4310
4310
|
function requireSourceOrBundled(key) {
|
package/package.json
CHANGED
package/src/mcp/server.js
CHANGED