@essentialai/cogent-bridge 3.20.2 → 3.20.3

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.20.3 — 2026-08-20
4
+
5
+ ### Fixed — `cogent-codex` ran codex in the WRONG directory (shared-daemon cwd leak)
6
+ - The app-server daemon is a **machine-wide singleton** rooted at whatever directory it
7
+ first started in. A plain `codex --remote` attaches to that daemon and inherits the
8
+ **daemon's** cwd — so launching `cogent-codex` from project B while the daemon started in
9
+ project A ran codex against **project A's files** (wrong, and unsafe).
10
+ - Fix: `cogent-codex` now passes codex's `-C, --cd <DIR>` set to **the directory you launched
11
+ from**, pinning each session's working root correctly regardless of the daemon's cwd. A
12
+ `-C`/`--cd` you supply yourself still wins. Verified end-to-end (launch from `/tmp` → codex
13
+ rooted at `/tmp`, not the daemon's dir).
14
+ - Workaround on older versions: `cogent-codex -C "$(pwd)"`.
15
+
3
16
  ## 3.20.2 — 2026-08-17
4
17
 
5
18
  ### Fixed — Codex real-time wake now works with zero config (auto-detect the app-server rail)
package/README.md CHANGED
@@ -28,8 +28,8 @@ codex mcp add cogent \
28
28
 
29
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
30
 
31
- > If your Codex CLI supports plugins (0.133.0+), you can also use:
32
- > `codex plugin marketplace add eaisdevelopment/cogent && codex plugin add cogent@cogent`
31
+ > **On OpenAI Codex?** See [OpenAI Codex](#openai-codex) below one command
32
+ > (`curl -fsSL https://cogent.tools/install.sh | sh`) installs everything, including real-time wake.
33
33
 
34
34
  Restart Claude Code. Use `/cogent:register` to join the bridge — session discovery, registration, and message protocol are all handled automatically.
35
35
 
@@ -61,6 +61,26 @@ Restart Claude Code in both repos. The bridge tools are now available.
61
61
 
62
62
  ### OpenAI Codex
63
63
 
64
+ **Recommended — real-time wake.** A codex agent open in an interactive TUI can't be resumed in real
65
+ time by default (it holds an exclusive thread writer since 0.145), so peer messages queue to its next
66
+ turn. **One command installs everything** — the plugin **and** the `cogent-codex` launcher:
67
+
68
+ ```bash
69
+ curl -fsSL https://cogent.tools/install.sh | sh
70
+ ```
71
+
72
+ Then start Codex with **`cogent-codex`** (instead of `codex`) and `/cogent:register`. `cogent-codex`
73
+ runs Codex under a shared app-server daemon so a peer's message reaches you **mid-session** — the
74
+ bridge auto-detects the rail, **no env var or config needed** (since 3.20.2). See
75
+ [docs/codex-realtime-wake.md](docs/codex-realtime-wake.md) for the three rails (auto / app-server / headless).
76
+
77
+ > **Homebrew / nvm Node?** You can instead `npm install -g @essentialai/cogent-bridge` then
78
+ > `cogent-codex`. On **system Node** whose npm global prefix is root-owned (`/usr`), `npm install -g`
79
+ > fails with `EACCES` — use the installer above (it installs into your HOME, no sudo).
80
+
81
+ **Tools only (no real-time launcher).** If you just want the `cogent_*` tools (peers answered at your
82
+ next turn, not in real time), register the MCP server directly — works on all Codex CLI versions:
83
+
64
84
  ```bash
65
85
  codex mcp add cogent \
66
86
  --env COGENT_ENDPOINT=https://cogent.tools \
@@ -68,17 +88,7 @@ codex mcp add cogent \
68
88
  -- npx -y @essentialai/cogent-bridge
69
89
  ```
70
90
 
71
- Restart Codex. Use `cogent_register_peer` to join the bridge.
72
-
73
- > If your Codex CLI supports plugins (0.133.0+), you can also use:
74
- > `codex plugin marketplace add eaisdevelopment/cogent && codex plugin add cogent@cogent`
75
-
76
- > **Codex real-time replies (0.145+):** a codex agent open in an interactive TUI
77
- > can't be resumed in real time by default (it holds an exclusive thread writer).
78
- > To have it answer peers in real time, launch it with `cogent-codex` instead of
79
- > `codex` and set `COGENT_CODEX_WAKE=app-server`. See
80
- > [docs/codex-realtime-wake.md](docs/codex-realtime-wake.md) for the three rails
81
- > (default / app-server / headless).
91
+ …or, on Codex CLI 0.133.0+, the plugin: `codex plugin marketplace add eaisdevelopment/cogent && codex plugin add cogent@cogent`. Then use `cogent_register_peer` (or `/cogent:register`).
82
92
 
83
93
  ## Local vs Cloud mode
84
94
 
@@ -1,4 +1,16 @@
1
1
  #!/usr/bin/env node
2
2
  /** Whether an ensureDaemon() error is the "managed codex build missing" case. */
3
3
  export declare function isManagedCodexMissing(err: unknown): boolean;
4
+ /**
5
+ * Build the `codex --remote` argv, pinning the working root to THIS launch directory.
6
+ *
7
+ * WHY (critical): the app-server daemon is a shared, machine-wide singleton rooted at
8
+ * whatever directory it FIRST started in. A plain `codex --remote` TUI inherits the
9
+ * DAEMON's cwd — so launching cogent-codex from project B, while the daemon started in
10
+ * project A, would run codex against project A's files (wrong, and unsafe). codex's
11
+ * global `-C, --cd <DIR>` sets the working root per-session (verified: `--remote -C /x`
12
+ * roots the conversation at /x regardless of the daemon's cwd), so we pin it to the
13
+ * caller's cwd. A user-supplied `-C`/`--cd` always wins (we don't add ours).
14
+ */
15
+ export declare function buildRemoteArgs(sock: string, passthrough: string[], cwd: string): string[];
4
16
  //# sourceMappingURL=cogent-codex.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"cogent-codex.d.ts","sourceRoot":"","sources":["../../src/bin/cogent-codex.ts"],"names":[],"mappings":";AAmEA,iFAAiF;AACjF,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAE3D"}
1
+ {"version":3,"file":"cogent-codex.d.ts","sourceRoot":"","sources":["../../src/bin/cogent-codex.ts"],"names":[],"mappings":";AAqEA,iFAAiF;AACjF,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAE3D;AAiCD;;;;;;;;;;GAUG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAI1F"}
@@ -14,7 +14,9 @@
14
14
  * 1. ensures codex's managed build (the daemon needs it) — installing it on first
15
15
  * run with a single Y/n confirmation if it is missing;
16
16
  * 2. ensures the app-server daemon (idempotent);
17
- * 3. execs `codex --remote unix://<sock>` with all your args passed through.
17
+ * 3. execs `codex --remote unix://<sock> -C <this dir>` with your args passed through
18
+ * (the `-C` pins the working root to where you launched — the shared daemon's own
19
+ * cwd must never leak in; see buildRemoteArgs).
18
20
  * The bridge then AUTO-DETECTS the app-server rail from its process ancestry (in
19
21
  * `--remote` mode the daemon, not the codex TUI, spawns the plugin MCP) — so
20
22
  * real-time wake needs NO env flag or config. If any of the above can't happen
@@ -96,6 +98,22 @@ function installManagedCodex() {
96
98
  log(`managed-codex install did not complete (exit ${res.status ?? "?"}).`);
97
99
  return false;
98
100
  }
101
+ /**
102
+ * Build the `codex --remote` argv, pinning the working root to THIS launch directory.
103
+ *
104
+ * WHY (critical): the app-server daemon is a shared, machine-wide singleton rooted at
105
+ * whatever directory it FIRST started in. A plain `codex --remote` TUI inherits the
106
+ * DAEMON's cwd — so launching cogent-codex from project B, while the daemon started in
107
+ * project A, would run codex against project A's files (wrong, and unsafe). codex's
108
+ * global `-C, --cd <DIR>` sets the working root per-session (verified: `--remote -C /x`
109
+ * roots the conversation at /x regardless of the daemon's cwd), so we pin it to the
110
+ * caller's cwd. A user-supplied `-C`/`--cd` always wins (we don't add ours).
111
+ */
112
+ export function buildRemoteArgs(sock, passthrough, cwd) {
113
+ const userSetCwd = passthrough.some((a) => a.startsWith("-C") || a.startsWith("--cd"));
114
+ const cwdArgs = userSetCwd ? [] : ["-C", cwd];
115
+ return ["--remote", `unix://${sock}`, ...cwdArgs, ...passthrough];
116
+ }
99
117
  /** Spawn codex with the given args, inherit the terminal, propagate its exit code. */
100
118
  function handOff(codexBin, args) {
101
119
  const child = spawn(codexBin, args, { stdio: "inherit" });
@@ -146,7 +164,9 @@ async function main() {
146
164
  const sock = await resolveDaemonSock();
147
165
  if (sock) {
148
166
  log("real-time peer wake ON.");
149
- handOff(codexBin, ["--remote", `unix://${sock}`, ...passthrough]);
167
+ // Pin the working root to THIS dir — the shared daemon's cwd must NOT leak in. See
168
+ // buildRemoteArgs.
169
+ handOff(codexBin, buildRemoteArgs(sock, passthrough, process.cwd()));
150
170
  }
151
171
  else {
152
172
  handOff(codexBin, passthrough);
@@ -1 +1 @@
1
- {"version":3,"file":"cogent-codex.js","sourceRoot":"","sources":["../../src/bin/cogent-codex.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"cogent-codex.js","sourceRoot":"","sources":["../../src/bin/cogent-codex.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@essentialai/cogent-bridge",
3
- "version": "3.20.2",
3
+ "version": "3.20.3",
4
4
  "description": "MCP server for inter-Claude-Code session communication bridge",
5
5
  "type": "module",
6
6
  "workspaces": [
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.20.2",
6
+ "version": "3.20.3",
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.20.2",
15
+ "version": "3.20.3",
16
16
  "runtimeHint": "npx",
17
17
  "transport": {
18
18
  "type": "stdio"