@kbediako/codex-orchestrator 0.1.25 → 0.1.26
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/README.md +2 -2
- package/dist/orchestrator/src/cli/doctor.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,7 +89,7 @@ Delegation guard profile:
|
|
|
89
89
|
## Delegation + RLM flow
|
|
90
90
|
|
|
91
91
|
RLM (Recursive Language Model) is the long-horizon loop used by the `rlm` pipeline (`codex-orchestrator rlm "<goal>"` or `codex-orchestrator start rlm --goal "<goal>"`). Delegated runs only enter RLM when the child is launched with the `rlm` pipeline (or the rlm runner directly). In auto mode it resolves to symbolic when delegated, when `RLM_CONTEXT_PATH` is set, or when the context exceeds `RLM_SYMBOLIC_MIN_BYTES`; otherwise it stays iterative. The runner writes state to `.runs/<task-id>/cli/<run-id>/rlm/state.json` and stops when the validator passes or budgets are exhausted.
|
|
92
|
-
Symbolic subcalls can optionally use collab tools. Fast path: `codex-orchestrator rlm --collab "<goal>"` (sets `RLM_SYMBOLIC_COLLAB=1` and implies symbolic mode). Collab requires `collab=true` in `codex features list`. Collab tool calls parsed from `codex exec --json --enable collab` are stored in `manifest.collab_tool_calls` (bounded by `CODEX_ORCHESTRATOR_COLLAB_MAX_EVENTS`, set to `0` to disable). `codex-orchestrator codex setup` remains available when you want a managed/pinned CLI path.
|
|
92
|
+
Symbolic subcalls can optionally use collab tools. Fast path: `codex-orchestrator rlm --collab auto "<goal>"` (sets `RLM_SYMBOLIC_COLLAB=1` and implies symbolic mode). Collab requires `collab=true` in `codex features list`. Collab tool calls parsed from `codex exec --json --enable collab` are stored in `manifest.collab_tool_calls` (bounded by `CODEX_ORCHESTRATOR_COLLAB_MAX_EVENTS`, set to `0` to disable). `codex-orchestrator codex setup` remains available when you want a managed/pinned CLI path.
|
|
93
93
|
|
|
94
94
|
### Delegation flow
|
|
95
95
|
```mermaid
|
|
@@ -178,7 +178,7 @@ codex-orchestrator doctor --usage
|
|
|
178
178
|
- Bootstrap + wire everything: `codex-orchestrator setup --yes`
|
|
179
179
|
- Validate + measure adoption locally: `codex-orchestrator doctor --usage --format json`
|
|
180
180
|
- Delegation: `codex-orchestrator doctor --apply --yes`, then enable for a Codex run with: `codex -c 'mcp_servers.delegation.enabled=true' ...`
|
|
181
|
-
- Collab (symbolic RLM subagents): `codex-orchestrator rlm "<goal>"
|
|
181
|
+
- Collab (symbolic RLM subagents): `codex-orchestrator rlm --collab auto "<goal>"` (requires collab feature enabled in Codex)
|
|
182
182
|
- Cloud: set `CODEX_CLOUD_ENV_ID` (and optional `CODEX_CLOUD_BRANCH`), then run: `codex-orchestrator start <pipeline> --cloud --target <stage-id>`
|
|
183
183
|
|
|
184
184
|
Print DevTools MCP setup guidance:
|
|
@@ -97,7 +97,7 @@ export function runDoctor(cwd = process.cwd()) {
|
|
|
97
97
|
status: collabStatus,
|
|
98
98
|
enabled: collabEnabled,
|
|
99
99
|
enablement: [
|
|
100
|
-
'Enable collab for symbolic RLM runs with: codex-orchestrator rlm --collab "<goal>"',
|
|
100
|
+
'Enable collab for symbolic RLM runs with: codex-orchestrator rlm --collab auto "<goal>"',
|
|
101
101
|
'Or set: RLM_SYMBOLIC_COLLAB=1 (implies symbolic mode when using --collab).',
|
|
102
102
|
'If collab is disabled in codex features: codex features enable collab'
|
|
103
103
|
]
|