@canonmsg/codex-plugin 0.23.4 → 0.23.5

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.
Files changed (2) hide show
  1. package/README.md +49 -15
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -14,6 +14,7 @@ npm install -g @canonmsg/codex-plugin
14
14
  codex login status
15
15
 
16
16
  # Register (approve in Canon when prompted)
17
+ export CANON_ENVIRONMENT_ID=canon-prod-v1
17
18
  canon-codex-register --name "My Codex" --description "My local coding agent" --phone "+15551234567"
18
19
 
19
20
  # Run inside a project and keep the host process running
@@ -39,30 +40,51 @@ canon-necromance revive my-codex
39
40
 
40
41
  Do not run registration again unless Canon tells you the saved API key is invalid. If you registered multiple profiles, relaunch the same one with `CANON_AGENT=<profile> canon-codex --cwd /path/to/project`.
41
42
 
43
+ `canon-codex-setup` reprints these steps and the optional flags at any time.
44
+
42
45
  Public docs: <https://canonmail.com/agents/integrations>. Coding-host concepts: <https://canonmail.com/agents/coding-agents>.
43
46
 
44
- You do not need a git repo for host mode. The plugin passes `--skip-git-repo-check` to Codex, so any readable working directory is valid.
47
+ You do not need a git repo for host mode. Any readable working directory is valid.
45
48
 
46
- ## What v1 supports
49
+ ## What the host supports
47
50
 
48
51
  - Canon messages routed into Codex turns
49
- - One Codex thread per Canon conversation
50
- - Resume by thread ID across turns
52
+ - One Codex thread per Canon conversation, resumed by thread ID across turns
53
+ - Queued input while a turn is running
51
54
  - RTDB session state and activity heartbeat
52
55
  - Interrupt by terminating the active Codex turn
53
56
  - Tool/running status surfaced while Codex is working
57
+ - Reasoning-effort selection, resolved against what the active model accepts
58
+
59
+ ## Transports
60
+
61
+ The host picks a transport at startup and logs the choice as
62
+ `Codex transport: app-server` or `Codex transport: exec --json`.
54
63
 
55
- ## Current limitation
64
+ `codex app-server` is preferred and is selected when `codex app-server --help`
65
+ succeeds. On it Canon additionally routes native plan mode and plan review,
66
+ compact, rich cards, blocking approval gates, runtime questions, live message
67
+ deltas, and model/effort discovery from the runtime.
56
68
 
57
- The stable `codex exec --json` surface exposes thinking state, tool activity, and completed assistant-message previews, but not token-by-token text deltas. v1 therefore publishes live progress and assistant-message snapshots without claiming true token streaming.
69
+ `codex exec --json` is the fallback for older Codex CLIs. It reports thinking
70
+ state, tool activity, and completed assistant-message previews, but not
71
+ token-by-token deltas, and it cannot block on approvals — Canon labels the
72
+ session with that warning rather than implying a gate it does not have. Without
73
+ discovery it also offers no model picker and a fixed effort list.
58
74
 
59
- Current Canon control truth for Codex host mode:
75
+ Set `CANON_CODEX_TRANSPORT=exec` or `CANON_CODEX_TRANSPORT=app-server` to skip
76
+ the probe when it misfires.
60
77
 
61
- - model is live-visible, but current changes apply on the next turn rather than mid-turn
78
+ Canon control truth for Codex host mode:
79
+
80
+ - model is live-visible, but changes apply on the next turn rather than mid-turn
81
+ - reasoning effort is live-editable and also applies on the next turn; the option list comes from the active model
62
82
  - workspace selection is setup-only
63
83
  - execution mode selection is setup-only
64
- - the current `Execution policy`/permission choice is setup-only
65
- - advanced Codex-only controls such as effort, sandbox policy, approval reviewer, or apps/plugins inventory are not exposed on the current transport unless the runtime can actually report them
84
+ - the `Execution policy`/permission choice is session-creation-only; mid-session change requests are ignored and the applied value is re-published
85
+
86
+ The runtime descriptor the host publishes is the authoritative capability list;
87
+ what Canon renders always comes from it, not from this file.
66
88
 
67
89
  ## Working directory
68
90
 
@@ -85,14 +107,23 @@ Worktree mode is project isolation, not an operating-system sandbox. The Codex C
85
107
  Useful flags:
86
108
 
87
109
  ```bash
88
- canon-codex --cwd /path/to/project --model gpt-5.5 --full-auto
110
+ canon-codex --cwd /path/to/project --model <model-id> --full-auto
89
111
  ```
90
112
 
91
- Codex also supports `--add-dir /extra/path` for additional writable directories passed through to `codex exec`. Canon does not yet render those extra directories as workspace choices.
113
+ Canon hardcodes no model IDs: on the app-server transport the picker is built
114
+ from what the local Codex runtime reports, and `--model` pins the default. A
115
+ model your installed Codex CLI does not know fails early with an upgrade
116
+ message.
92
117
 
93
- `gpt-5.5` requires a recent local Codex CLI. Older CLIs fail early with an upgrade message; upgrade Codex or choose a model supported by your installed CLI.
118
+ `--add-dir /extra/path` adds a writable directory: the exec transport passes it
119
+ through to `codex exec`, the app-server transport adds it to the thread's
120
+ writable roots. Canon does not render those extra directories as workspace
121
+ choices.
94
122
 
95
- Recent Codex CLI releases no longer accept `--ask-for-approval` with `codex exec`. If you previously launched Canon with `--sandbox workspace-write --ask-for-approval never`, switch to `--full-auto`.
123
+ `--ask-for-approval` is rejected by Canon itself the host exits with an error
124
+ pointing at `--full-auto`, `--sandbox`, or Canon permission modes. If you
125
+ previously launched with `--sandbox workspace-write --ask-for-approval never`,
126
+ switch to `--full-auto`.
96
127
 
97
128
  Do not start Canon with `--sandbox danger-full-access` as an unlabeled default. Use `--dangerously-bypass-approvals-and-sandbox` only when you intentionally want Canon to advertise the owner-only Bypass policy.
98
129
 
@@ -125,7 +156,7 @@ canon-codex --cwd /path/to/project --codex-bin /absolute/path/to/codex
125
156
  If Canon rejects authenticated requests with `401 Invalid API key`, the stored Canon profile needs a fresh key. Reconnect the same profile to overwrite `~/.canon/agents.json`, then restart or revive the host:
126
157
 
127
158
  ```bash
128
- canon-codex-register --name "My Codex" --description "My local coding agent" --phone "+15551234567" --profile my-codex
159
+ CANON_ENVIRONMENT_ID=canon-prod-v1 canon-codex-register --name "My Codex" --description "My local coding agent" --phone "+15551234567" --profile my-codex
129
160
  ```
130
161
 
131
162
  If Codex reports API-key quota errors while another local tool on the same machine uses OpenAI API keys, check Codex's own stored login state:
@@ -147,10 +178,13 @@ Restart `canon-codex` after changing the Codex login state.
147
178
  ## Multiple agents
148
179
 
149
180
  ```bash
181
+ export CANON_ENVIRONMENT_ID=canon-prod-v1
150
182
  canon-codex-register --name "Frontend" --description "React work" --phone "+1..." --profile frontend
151
183
  CANON_AGENT=frontend canon-codex --cwd ~/projects/frontend
152
184
  ```
153
185
 
186
+ With more than one registered profile, `CANON_AGENT` is required — the host refuses to guess and lists the available profiles instead.
187
+
154
188
  ## Development
155
189
 
156
190
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canonmsg/codex-plugin",
3
- "version": "0.23.4",
3
+ "version": "0.23.5",
4
4
  "description": "Canon host integration for Codex CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,9 +29,9 @@
29
29
  "prepack": "npm run build"
30
30
  },
31
31
  "dependencies": {
32
- "@canonmsg/agent-sdk": "^7.1.2",
33
- "@canonmsg/coding-agent-host": "^0.3.0",
34
- "@canonmsg/core": "^8.1.0"
32
+ "@canonmsg/agent-sdk": "^7.1.3",
33
+ "@canonmsg/coding-agent-host": "^0.3.1",
34
+ "@canonmsg/core": "^8.2.0"
35
35
  },
36
36
  "engines": {
37
37
  "node": ">=18.0.0"