@essentialai/cogent-bridge 3.11.1 → 3.12.0
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 +19 -0
- package/README.md +9 -1
- package/package.json +3 -2
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.12.0 — 2026-07-28
|
|
4
|
+
|
|
5
|
+
### Added — Git-free / no-Xcode install
|
|
6
|
+
- **New package `@essentialai/cogent-plugin`** — the full Claude Code plugin (skills +
|
|
7
|
+
slash-commands + MCP server) published to npm so it installs **without git**, avoiding the
|
|
8
|
+
multi-GB Xcode Command Line Tools prompt on a fresh Mac. Content is synced from the canonical
|
|
9
|
+
`plugin/` dir at `prepack` time (single source of truth); `files` whitelist + `npm pack --dry-run`
|
|
10
|
+
keep the tarball asset-only.
|
|
11
|
+
- **Hosted install assets on `cogent.tools`** — `GET /marketplace.json` (npm-source marketplace,
|
|
12
|
+
no git) and `GET /install.sh` (POSIX bootstrap: prebuilt Node from nodejs.org if missing, no
|
|
13
|
+
Homebrew/Xcode) served by the landing Hono app.
|
|
14
|
+
- **Docs repointed** — README + landing `#start` + How-To now lead with the git-free command
|
|
15
|
+
`claude plugin marketplace add https://cogent.tools/marketplace.json && claude plugin install cogent@cogent`;
|
|
16
|
+
the git URL is kept as the developer alternative. Codex parity is a separate follow-up.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- **Bridge `@essentialai/cogent-bridge` republished at 3.12.0 (code unchanged from 3.11.1)** so the
|
|
20
|
+
plugin `.mcp.json` pin `@3.12.0` resolves — the whole plugin line moves to 3.12.0 in lockstep.
|
|
21
|
+
|
|
3
22
|
## 3.11.1 — 2026-07-24
|
|
4
23
|
|
|
5
24
|
### Changed
|
package/README.md
CHANGED
|
@@ -11,7 +11,11 @@ MCP server for inter-agent communication between Claude Code, OpenAI Codex, and
|
|
|
11
11
|
### Install via Plugin Marketplace (Recommended)
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
# Claude Code
|
|
14
|
+
# Claude Code — recommended: no git, no Xcode (works on a fresh Mac)
|
|
15
|
+
claude plugin marketplace add https://cogent.tools/marketplace.json
|
|
16
|
+
claude plugin install cogent@cogent
|
|
17
|
+
|
|
18
|
+
# Claude Code — alternative (developers with git installed):
|
|
15
19
|
claude plugin marketplace add https://github.com/eaisdevelopment/cogent.git
|
|
16
20
|
claude plugin install cogent@cogent
|
|
17
21
|
|
|
@@ -22,6 +26,8 @@ codex mcp add cogent \
|
|
|
22
26
|
-- npx -y @essentialai/cogent-bridge
|
|
23
27
|
```
|
|
24
28
|
|
|
29
|
+
> **New Mac?** Install Node from [nodejs.org](https://nodejs.org) (the installer) — **not** Homebrew, which pulls in the Xcode Command Line Tools. The recommended command above needs no git at all.
|
|
30
|
+
|
|
25
31
|
> If your Codex CLI supports plugins (0.133.0+), you can also use:
|
|
26
32
|
> `codex plugin marketplace add eaisdevelopment/cogent && codex plugin add cogent@cogent`
|
|
27
33
|
|
|
@@ -49,6 +55,8 @@ Or use the CLI:
|
|
|
49
55
|
claude mcp add --transport stdio cogent -- npx -y @essentialai/cogent-bridge
|
|
50
56
|
```
|
|
51
57
|
|
|
58
|
+
This is also git-free (`npx` fetches over HTTPS), but it installs the **MCP server only** — the `cogent_*` tools without the bundled skills and `/cogent:*` slash-commands. For the full experience use the recommended plugin command above.
|
|
59
|
+
|
|
52
60
|
Restart Claude Code in both repos. The bridge tools are now available.
|
|
53
61
|
|
|
54
62
|
### OpenAI Codex
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@essentialai/cogent-bridge",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"description": "MCP server for inter-Claude-Code session communication bridge",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"workspaces": [
|
|
7
7
|
"cogent",
|
|
8
|
-
"slack-adapter"
|
|
8
|
+
"slack-adapter",
|
|
9
|
+
"cogent-plugin"
|
|
9
10
|
],
|
|
10
11
|
"main": "dist/index.js",
|
|
11
12
|
"bin": {
|
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.
|
|
6
|
+
"version": "3.12.0",
|
|
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.
|
|
15
|
+
"version": "3.12.0",
|
|
16
16
|
"runtimeHint": "npx",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|