@essentialai/cogent-bridge 3.19.1 → 3.19.2
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 +17 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.19.2 — 2026-08-13
|
|
4
|
+
|
|
5
|
+
### Fixed — Codex plugin cold-starts instantly (zero-dependency `npx` package)
|
|
6
|
+
- **Follow-up to 3.19.1.** The npx fix in 3.19.1 worked once `npx` was warm, but a **cold** first
|
|
7
|
+
install lacked the cogent tools for ~10 s: `npx @essentialai/cogent-bridge` installs the full
|
|
8
|
+
package's runtime deps (nodemailer, imapflow, ws, MCP SDK…), which can exceed Codex's short
|
|
9
|
+
plugin-MCP startup window on a cold machine. Proven on Mac (`codex plugin add` → first cold session
|
|
10
|
+
`COGENT_TOOL_MISSING`; warm → `OK`).
|
|
11
|
+
- **Fix:** new **zero-dependency** npm package `@essentialai/cogent-bridge-bundled` whose `bin` **is**
|
|
12
|
+
the self-contained bundle (`cogent-bridge.mjs`, all deps inlined by esbuild). `codex-plugin/.mcp.json`
|
|
13
|
+
now runs `npx -y @essentialai/cogent-bridge-bundled@<version>`. With no dependencies to install,
|
|
14
|
+
cold `npx` just fetches one ~250 kB tarball and runs (~2–3 s) → fits Codex's window → cogent tools
|
|
15
|
+
present on the **first** turn, even cold. Kept in lockstep with the bridge by the build
|
|
16
|
+
(`scripts/build-bundle.mjs` copies the bundle into the package) + a release-skill assert.
|
|
17
|
+
- Functionally identical to `@essentialai/cogent-bridge` (same bridge, same version). Claude Code's
|
|
18
|
+
`plugin/.mcp.json` still uses the bundled `${CLAUDE_PLUGIN_ROOT}` form. Bridge `src/` unchanged.
|
|
19
|
+
|
|
3
20
|
## 3.19.1 — 2026-08-13
|
|
4
21
|
|
|
5
22
|
### Fixed — Codex plugin now launches the bridge via `npx` (the bundled path never worked on Codex)
|
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.2",
|
|
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.2",
|
|
16
16
|
"runtimeHint": "npx",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|