惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
I
InfoQ
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
GbyAI
GbyAI
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
美团技术团队
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
M
MIT News - Artificial intelligence
D
Docker
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs
博客园 - 叶小钗

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
Remove codex-cli backend and migrate to Codex runtime · o...
steipete · 2026-05-14 · via Recent Commits to openclaw:main

@@ -2,7 +2,7 @@

22

summary: "CLI backends: local AI CLI fallback with optional MCP tool bridge"

33

read_when:

44

- You want a reliable fallback when API providers fail

5-

- You are running Codex CLI or other local AI CLIs and want to reuse them

5+

- You are running local AI CLIs and want to reuse them

66

- You want to understand the MCP loopback bridge for CLI backend tool access

77

title: "CLI backends"

88

---

@@ -31,11 +31,11 @@ thread/conversation binding, and persistent external coding sessions, use

31313232

## Beginner-friendly quick start

333334-

You can use Codex CLI **without any config** (the bundled OpenAI plugin

34+

You can use Claude Code CLI **without any config** (the bundled Anthropic plugin

3535

registers a default backend):

36363737

```bash

38-

openclaw agent --message "hi" --model codex-cli/gpt-5.5

38+

openclaw agent --message "hi" --model claude-cli/claude-sonnet-4-6

3939

```

40404141

If your gateway runs under launchd/systemd and PATH is minimal, add just the

@@ -46,8 +46,8 @@ command path:

4646

agents: {

4747

defaults: {

4848

cliBackends: {

49-

"codex-cli": {

50-

command: "/opt/homebrew/bin/codex",

49+

"claude-cli": {

50+

command: "/opt/homebrew/bin/claude",

5151

},

5252

},

5353

},

@@ -72,11 +72,11 @@ Add a CLI backend to your fallback list so it only runs when primary models fail

7272

defaults: {

7373

model: {

7474

primary: "anthropic/claude-opus-4-6",

75-

fallbacks: ["codex-cli/gpt-5.5"],

75+

fallbacks: ["claude-cli/claude-sonnet-4-6"],

7676

},

7777

models: {

7878

"anthropic/claude-opus-4-6": { alias: "Opus" },

79-

"codex-cli/gpt-5.5": {},

79+

"claude-cli/claude-sonnet-4-6": {},

8080

},

8181

},

8282

},

@@ -97,7 +97,7 @@ All CLI backends live under:

9797

agents.defaults.cliBackends

9898

```

9999100-

Each entry is keyed by a **provider id** (e.g. `codex-cli`, `my-cli`).

100+

Each entry is keyed by a **provider id** (e.g. `claude-cli`, `my-cli`).

101101

The provider id becomes the left side of your model ref:

102102103103

```

@@ -111,9 +111,6 @@ The provider id becomes the left side of your model ref:

111111

agents: {

112112

defaults: {

113113

cliBackends: {

114-

"codex-cli": {

115-

command: "/opt/homebrew/bin/codex",

116-

},

117114

"my-cli": {

118115

command: "my-cli",

119116

args: ["--json"],

@@ -149,7 +146,7 @@ The provider id becomes the left side of your model ref:

149146150147

## How it works

151148152-

1. **Selects a backend** based on the provider prefix (`codex-cli/...`).

149+

1. **Selects a backend** based on the provider prefix (`claude-cli/...`).

153150

2. **Builds a system prompt** using the same OpenClaw prompt + workspace context.

154151

3. **Executes the CLI** with a session id (if supported) so history stays consistent.

155152

The bundled `claude-cli` backend keeps a Claude stdio process alive per

@@ -164,12 +161,6 @@ told us OpenClaw-style Claude CLI usage is allowed again, so OpenClaw treats

164161

a new policy.

165162

</Note>

166163167-

The bundled OpenAI `codex-cli` backend passes OpenClaw's system prompt through

168-

Codex's `model_instructions_file` config override (`-c

169-

model_instructions_file="..."`). Codex does not expose a Claude-style

170-

`--append-system-prompt` flag, so OpenClaw writes the assembled prompt to a

171-

temporary file for each fresh Codex CLI session.

172-173164

The bundled Anthropic `claude-cli` backend receives the OpenClaw skills snapshot

174165

two ways: the compact OpenClaw skills catalog in the appended system prompt, and

175166

a temporary Claude Code plugin passed with `--plugin-dir`. The plugin contains

@@ -292,7 +283,7 @@ load local files from plain paths.

292283

- `output: "json"` (default) tries to parse JSON and extract text + session id.

293284

- For Gemini CLI JSON output, OpenClaw reads reply text from `response` and

294285

usage from `stats` when `usage` is missing or empty.

295-

- `output: "jsonl"` parses JSONL streams (for example Codex CLI `--json`) and extracts the final agent message plus session

286+

- `output: "jsonl"` parses JSONL streams and extracts the final agent message plus session

296287

identifiers when present.

297288

- `output: "text"` treats stdout as the final response.

298289

@@ -304,16 +295,19 @@ Input modes:

304295305296

## Defaults (plugin-owned)

306297307-

The bundled OpenAI plugin also registers a default for `codex-cli`:

298+

Bundled CLI backend defaults live with their owning plugin. For example,

299+

Anthropic owns `claude-cli` and Google owns `google-gemini-cli`. OpenAI Codex

300+

agent runs use the Codex app-server harness through `openai/*`; OpenClaw no

301+

longer registers a bundled `codex-cli` backend.

308302309-

- `command: "codex"`

310-

- `args: ["exec","--json","--color","never","--sandbox","workspace-write","--skip-git-repo-check"]`

311-

- `resumeArgs: ["exec","resume","{sessionId}","-c","sandbox_mode=\"workspace-write\"","--skip-git-repo-check"]`

303+

The bundled Anthropic plugin registers a default for `claude-cli`:

304+305+

- `command: "claude"`

306+

- `args: ["-p","--output-format","stream-json","--include-partial-messages","--verbose", ...]`

312307

- `output: "jsonl"`

313-

- `resumeOutput: "text"`

308+

- `input: "stdin"`

314309

- `modelArg: "--model"`

315-

- `imageArg: "--image"`

316-

- `sessionMode: "existing"`

310+

- `sessionMode: "always"`

317311318312

The bundled Google plugin also registers a default for `google-gemini-cli`:

319313

@@ -383,9 +377,6 @@ opt into a generated MCP config overlay with `bundleMcp: true`.

383377

Current bundled behavior:

384378385379

- `claude-cli`: generated strict MCP config file

386-

- `codex-cli`: inline config overrides for `mcp_servers`; the generated

387-

OpenClaw loopback server is marked with Codex's per-server tool approval mode

388-

so MCP calls cannot stall on local approval prompts

389380

- `google-gemini-cli`: generated Gemini system settings file

390381391382

When bundle MCP is enabled, OpenClaw:

@@ -414,16 +405,13 @@ children and Streamable HTTP/SSE streams do not outlive the run.

414405

- **Streaming is backend-specific.** Some backends stream JSONL; others buffer

415406

until exit.

416407

- **Structured outputs** depend on the CLI's JSON format.

417-

- **Codex CLI sessions** resume via text output (no JSONL), which is less

418-

structured than the initial `--json` run. OpenClaw sessions still work

419-

normally.

420408421409

## Troubleshooting

422410423411

- **CLI not found**: set `command` to a full path.

424412

- **Wrong model name**: use `modelAliases` to map `provider/model` → CLI model.

425413

- **No session continuity**: ensure `sessionArg` is set and `sessionMode` is not

426-

`none` (Codex CLI currently cannot resume with JSON output).

414+

`none`.

427415

- **Images ignored**: set `imageArg` (and verify CLI supports file paths).

428416429417

## Related