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

推荐订阅源

Martin Fowler
Martin Fowler
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
L
LangChain Blog
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园_首页
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
美团技术团队
V
V2EX

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
build(plugins): externalize acpx release packages · openc...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -39,10 +39,15 @@ directly to existing OpenClaw channel conversations, use

39394040

## Does this work out of the box?

414142-

Usually yes. Fresh installs ship the bundled `acpx` runtime plugin enabled

43-

by default with a plugin-local pinned `acpx` binary that OpenClaw probes

44-

and self-repairs immediately after the Gateway HTTP listener is live. Run

45-

`/acp doctor` for a readiness check.

42+

Yes, after installing the official ACP runtime plugin:

43+44+

```bash

45+

openclaw plugins install @openclaw/acpx

46+

openclaw config set plugins.entries.acpx.enabled true

47+

```

48+49+

Source checkouts can use the local `extensions/acpx` workspace plugin after

50+

`pnpm install`. Run `/acp doctor` for a readiness check.

46514752

OpenClaw only teaches agents about ACP spawning when ACP is **truly

4853

usable**: ACP must be enabled, dispatch must not be disabled, the current

@@ -53,8 +58,8 @@ an unavailable backend.

53585459

<AccordionGroup>

5560

<Accordion title="First-run gotchas">

56-

- If `plugins.allow` is set, it is a restrictive plugin inventory and **must** include `acpx`; otherwise the bundled default is intentionally blocked and `/acp doctor` reports the missing allowlist entry.

57-

- The bundled Codex ACP adapter is staged with the `acpx` plugin and launched locally when possible.

61+

- If `plugins.allow` is set, it is a restrictive plugin inventory and **must** include `acpx`; otherwise the installed ACP backend is intentionally blocked and `/acp doctor` reports the missing allowlist entry.

62+

- The Codex ACP adapter is staged with the `acpx` plugin and launched locally when possible.

5863

- Other target harness adapters may still be fetched on demand with `npx` the first time you use them.

5964

- Vendor auth still has to exist on the host for that harness.

6065

- If the host has no npm or network access, first-run adapter fetches fail until caches are pre-warmed or the adapter is installed another way.

@@ -86,7 +91,7 @@ should call those tools directly.

86918792

## Supported harness targets

889389-

With the bundled `acpx` backend, use these harness ids as `/acp spawn <id>`

94+

With the `acpx` backend, use these harness ids as `/acp spawn <id>`

9095

or `sessions_spawn({ runtime: "acp", agentId: "<id>" })` targets:

91969297

| Harness id | Typical backend | Notes |

@@ -232,7 +237,7 @@ See also [Sub-agents](/tools/subagents).

232237

For Claude Code through ACP, the stack is:

233238234239

1. OpenClaw ACP session control plane.

235-

2. Bundled `acpx` runtime plugin.

240+

2. Official `@openclaw/acpx` runtime plugin.

236241

3. Claude ACP adapter.

237242

4. Claude-side runtime/session machinery.

238243