@essentialai/cogent-bridge 3.5.6 → 3.5.7
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 +14 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.5.7 — 2026-07-01
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **Plugin now pins the exact bridge version, so `plugin update` actually updates the bridge.**
|
|
7
|
+
The plugin's `.mcp.json` spawned `npx -y @essentialai/cogent-bridge` with NO version — a bare
|
|
8
|
+
`npx <pkg>` reuses whatever build is already in the `~/.npm/_npx` cache and does not re-fetch,
|
|
9
|
+
so updating the plugin (skill) left the MCP-server BINARY stale (agents kept registering an old
|
|
10
|
+
`clientVersion` even after `claude plugin update` + restart). Both plugin manifests now pin
|
|
11
|
+
`@essentialai/cogent-bridge@3.5.7`; because each release bumps this pin, `claude plugin update
|
|
12
|
+
cogent` (then restart) pulls the plugin whose config names the exact matching bridge — plugin
|
|
13
|
+
and bridge move together, deterministically, with no manual npx-cache clearing. See
|
|
14
|
+
`plugin/.mcp.json`, `codex-plugin/.mcp.json`. (Release convention: bump the mcp.json pin every
|
|
15
|
+
release — added to the release skill.)
|
|
16
|
+
|
|
3
17
|
## 3.5.6 — 2026-07-01
|
|
4
18
|
|
|
5
19
|
### Added
|
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.5.
|
|
6
|
+
"version": "3.5.7",
|
|
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.5.
|
|
15
|
+
"version": "3.5.7",
|
|
16
16
|
"runtimeHint": "npx",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|