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

推荐订阅源

爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
宝玉的分享
宝玉的分享
V
V2EX
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
美团技术团队
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
B
Blog RSS Feed

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
Add opt-in ACP commentary relay · openclaw/openclaw@0c27295
2026-06-04 · via Recent Commits to openclaw:main

@@ -485,6 +485,83 @@ describe("startAcpSpawnParentStreamRelay", () => {

485485

relay.dispose();

486486

});

487487488+

it("relays commentary-phase assistant text when enabled", () => {

489+

const relay = startAcpSpawnParentStreamRelay({

490+

runId: "run-commentary-enabled",

491+

parentSessionKey: "agent:main:main",

492+

childSessionKey: "agent:codex:acp:child-commentary-enabled",

493+

agentId: "codex",

494+

streamFlushMs: 10,

495+

noOutputNoticeMs: 120_000,

496+

assistantCommentary: true,

497+

});

498+499+

emitAgentEvent({

500+

runId: "run-commentary-enabled",

501+

stream: "assistant",

502+

data: {

503+

delta: "checking thread context; then post a tight progress reply here.",

504+

phase: "commentary",

505+

},

506+

});

507+

vi.advanceTimersByTime(15);

508+509+

const texts = collectedTexts();

510+

expectTextWithFragment(

511+

texts,

512+

"codex: checking thread context; then post a tight progress reply here.",

513+

);

514+

relay.dispose();

515+

});

516+517+

it("classifies opted-in commentary as visible output for stall notices", () => {

518+

const relay = startAcpSpawnParentStreamRelay({

519+

runId: "run-commentary-visible-stall",

520+

parentSessionKey: "agent:main:main",

521+

childSessionKey: "agent:codex:acp:child-commentary-visible-stall",

522+

agentId: "codex",

523+

streamFlushMs: 1,

524+

noOutputNoticeMs: 1_000,

525+

noOutputPollMs: 250,

526+

assistantCommentary: true,

527+

});

528+529+

emitAgentEvent({

530+

runId: "run-commentary-visible-stall",

531+

stream: "acp",

532+

data: {

533+

phase: "prompt_submitted",

534+

at: Date.now(),

535+

proxyEnvKeys: [],

536+

},

537+

});

538+

emitAgentEvent({

539+

runId: "run-commentary-visible-stall",

540+

stream: "acp",

541+

data: {

542+

phase: "runtime_event",

543+

eventType: "status",

544+

text: "connecting to upstream",

545+

},

546+

});

547+

emitAgentEvent({

548+

runId: "run-commentary-visible-stall",

549+

stream: "assistant",

550+

data: {

551+

delta: "checking active files before patching.",

552+

phase: "commentary",

553+

},

554+

});

555+

vi.advanceTimersByTime(5);

556+

vi.advanceTimersByTime(1_500);

557+558+

const texts = collectedTexts();

559+

expectTextWithFragment(texts, "codex: checking active files before patching.");

560+

expectNoTextWithFragment(texts, "has ACP runtime activity but no visible assistant output");

561+

expectTextWithFragment(texts, "has produced no visible output for 1s");

562+

relay.dispose();

563+

});

564+488565

it("still relays final_answer assistant text after suppressed commentary", () => {

489566

const relay = startAcpSpawnParentStreamRelay({

490567

runId: "run-final",