@essentialai/cogent-bridge 3.19.0 → 3.19.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 +18 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.19.1 — 2026-08-13
|
|
4
|
+
|
|
5
|
+
### Fixed — Codex plugin now launches the bridge via `npx` (the bundled path never worked on Codex)
|
|
6
|
+
- **The real "codex cogent pain" — `⚠ MCP client for cogent failed to start … connection closed:
|
|
7
|
+
initialize response` — is fixed.** The Codex plugin's `.mcp.json` ran
|
|
8
|
+
`node ${CLAUDE_PLUGIN_ROOT}/bridge/cogent-bridge.mjs`, but **Codex 0.147 does not implement the
|
|
9
|
+
Agent Plugins spec for a plugin-bundled stdio MCP server**: it does not substitute `${PLUGIN_ROOT}`
|
|
10
|
+
in `args`/`cwd`, does not inject `PLUGIN_ROOT`/`PLUGIN_DATA` into the MCP child's env, and does not
|
|
11
|
+
resolve a `./`-command against the plugin root. It passed `${CLAUDE_PLUGIN_ROOT}/…` **literally** as
|
|
12
|
+
a relative arg (joined to the user cwd) → `MODULE_NOT_FOUND` → the server never started. Proven on a
|
|
13
|
+
Mac and on Linux (isolated `CODEX_HOME` trace) — cross-confirmed independently by a Codex-side peer.
|
|
14
|
+
- **Fix:** `codex-plugin/.mcp.json` now uses a **bare command** — `npx -y @essentialai/cogent-bridge@3.19.1`
|
|
15
|
+
— which is spec-conformant and needs no `PLUGIN_ROOT`. Verified on Codex 0.147: warm start → bridge
|
|
16
|
+
ready ~2 s, native `cogent_*` tools available. (Claude Code's `plugin/.mcp.json` keeps the bundled
|
|
17
|
+
`${CLAUDE_PLUGIN_ROOT}` form, which Claude Code expands correctly.)
|
|
18
|
+
- **Bridge `src/` is byte-identical to 3.19.0** — the version bump keeps the plugin-pin lockstep and
|
|
19
|
+
cache-busts the Codex `npx` pull. No relay/wire change.
|
|
20
|
+
|
|
3
21
|
## 3.19.0 — 2026-08-13
|
|
4
22
|
|
|
5
23
|
### Security — a cloud-configured agent that has not joined a channel no longer touches host-global local state
|
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.19.
|
|
6
|
+
"version": "3.19.1",
|
|
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.19.
|
|
15
|
+
"version": "3.19.1",
|
|
16
16
|
"runtimeHint": "npx",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|