@essentialai/cogent-bridge 3.12.3 → 3.12.4
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 +7 -0
- package/README.md +11 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.12.4 — 2026-07-30
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **Codex plugin now also ships the bundled bridge** (no npx cold-start) — same fresh-install fix as 3.12.3, extended to Codex (`node ${CLAUDE_PLUGIN_ROOT}/bridge/cogent-bridge.mjs`, `COGENT_PLATFORM=codex`).
|
|
7
|
+
- FAQ + README: recovery steps for anyone who hit the pre-3.12.3 npx-timeout install state.
|
|
8
|
+
|
|
9
|
+
|
|
3
10
|
## 3.12.3 — 2026-07-30
|
|
4
11
|
|
|
5
12
|
### Fixed — CRITICAL: fresh install could never complete (cold npx > 30s MCP budget)
|
package/README.md
CHANGED
|
@@ -245,6 +245,17 @@ To override defaults, set environment variables in your `.mcp.json`:
|
|
|
245
245
|
|
|
246
246
|
## Troubleshooting
|
|
247
247
|
|
|
248
|
+
### Fresh install: Cogent tools aren't available / `/cogent:register` can't run
|
|
249
|
+
|
|
250
|
+
Fixed in **3.12.3**. Older versions launched the bridge via `npx`, whose first-run download
|
|
251
|
+
could exceed Claude Code's MCP startup budget, so the tools never loaded (and the interrupted
|
|
252
|
+
download could corrupt the npx cache). The plugin now ships a self-contained bundle and starts
|
|
253
|
+
instantly. If you already hit the broken state, run once then fully quit + relaunch:
|
|
254
|
+
|
|
255
|
+
```bash
|
|
256
|
+
rm -rf ~/.npm/_npx && claude plugin marketplace update && claude plugin update cogent@cogent
|
|
257
|
+
```
|
|
258
|
+
|
|
248
259
|
### NVM/PATH: "npx not found" or server fails to start
|
|
249
260
|
|
|
250
261
|
MCP servers are spawned as subprocesses and may not inherit your NVM configuration.
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "io.github.eaisdevelopment/cogent",
|
|
4
4
|
"title": "Cogent Bridge from Essential AI Solutions (essentialai.uk)",
|
|
5
5
|
"description": "MCP bridge for inter-session communication between Claude Code instances",
|
|
6
|
-
"version": "3.12.
|
|
6
|
+
"version": "3.12.4",
|
|
7
7
|
"repository": {
|
|
8
8
|
"url": "https://github.com/eaisdevelopment/cogent",
|
|
9
9
|
"source": "github"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"identifier": "@essentialai/cogent-bridge",
|
|
15
|
-
"version": "3.12.
|
|
15
|
+
"version": "3.12.4",
|
|
16
16
|
"runtimeHint": "npx",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|