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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
博客园 - 叶小钗
The Cloudflare Blog
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
小众软件
小众软件
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享

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
fix(agents): classify ACP no-output stalls · openclaw/ope...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -37,6 +37,20 @@ function toFiniteNumber(value: unknown): number | undefined {

3737

return typeof value === "number" && Number.isFinite(value) ? value : undefined;

3838

}

393940+

function normalizeStringArray(value: unknown): string[] {

41+

if (!Array.isArray(value)) {

42+

return [];

43+

}

44+

return value.filter((item): item is string => typeof item === "string" && item.length > 0);

45+

}

46+47+

function formatProxyEnvSummary(keys: string[]): string {

48+

if (keys.length === 0) {

49+

return "proxy env: none";

50+

}

51+

return `proxy env: ${keys.join(", ")}`;

52+

}

53+4054

function resolveAcpStreamLogPathFromSessionFile(sessionFile: string, sessionId: string): string {

4155

const baseDir = path.dirname(path.resolve(sessionFile));

4256

return path.join(baseDir, `${sessionId}.acp-stream.jsonl`);

@@ -243,6 +257,11 @@ export function startAcpSpawnParentStreamRelay(params: {

243257

let pendingText = "";

244258

let lastProgressAt = Date.now();

245259

let stallNotified = false;

260+

let promptSubmittedAt: number | undefined;

261+

let firstRuntimeEventAt: number | undefined;

262+

let firstVisibleOutputAt: number | undefined;

263+

let lastRuntimeEventType: string | undefined;

264+

let proxyEnvKeysAtPrompt: string[] = [];

246265

let flushTimer: NodeJS.Timeout | undefined;

247266

let relayLifetimeTimer: NodeJS.Timeout | undefined;

248267

@@ -284,6 +303,34 @@ export function startAcpSpawnParentStreamRelay(params: {

284303

flushTimer.unref?.();

285304

};

286305306+

const buildNoOutputNotice = () => {

307+

const seconds = Math.round(noOutputNoticeMs / 1000);

308+

if (!promptSubmittedAt) {

309+

return {

310+

summary: `No prompt submission observed for ${seconds}s after child start.`,

311+

text: `${relayLabel} session started but no prompt submission was observed for ${seconds}s.`,

312+

};

313+

}

314+

if (!firstRuntimeEventAt) {

315+

const proxySummary = formatProxyEnvSummary(proxyEnvKeysAtPrompt);

316+

return {

317+

summary: `Prompt submitted but no ACP runtime event for ${seconds}s (${proxySummary}).`,

318+

text: `${relayLabel} prompt was submitted but no ACP runtime event arrived for ${seconds}s (${proxySummary}). Check upstream connectivity, auth, or proxy/network access in the gateway child environment.`,

319+

};

320+

}

321+

if (!firstVisibleOutputAt) {

322+

const lastEvent = lastRuntimeEventType ? ` Last ACP event: ${lastRuntimeEventType}.` : "";

323+

return {

324+

summary: `ACP runtime active but no visible assistant output for ${seconds}s.${lastEvent}`,

325+

text: `${relayLabel} has ACP runtime activity but no visible assistant output for ${seconds}s.${lastEvent} It may be working, blocked on a tool, or failing before visible output.`,

326+

};

327+

}

328+

return {

329+

summary: `No visible output for ${seconds}s. It may be waiting for input.`,

330+

text: `${relayLabel} has produced no visible output for ${seconds}s. It may be waiting for interactive input.`,

331+

};

332+

};

333+287334

const noOutputWatcherTimer = setInterval(() => {

288335

if (disposed || noOutputNoticeMs <= 0) {

289336

return;

@@ -295,17 +342,15 @@ export function startAcpSpawnParentStreamRelay(params: {

295342

return;

296343

}

297344

stallNotified = true;

345+

const notice = buildNoOutputNotice();

298346

recordTaskRunProgressByRunId({

299347

runId,

300348

runtime: "acp",

301349

sessionKey: params.childSessionKey,

302350

lastEventAt: Date.now(),

303-

eventSummary: `No output for ${Math.round(noOutputNoticeMs / 1000)}s. It may be waiting for input.`,

351+

eventSummary: notice.summary,

304352

});

305-

emit(

306-

`${relayLabel} has produced no output for ${Math.round(noOutputNoticeMs / 1000)}s. It may be waiting for interactive input.`,

307-

`${contextPrefix}:stall`,

308-

);

353+

emit(notice.text, `${contextPrefix}:stall`);

309354

}, noOutputPollMs);

310355

noOutputWatcherTimer.unref?.();

311356

@@ -365,6 +410,7 @@ export function startAcpSpawnParentStreamRelay(params: {

365410

}

366411367412

lastProgressAt = Date.now();

413+

firstVisibleOutputAt ??= lastProgressAt;

368414

pendingText += delta;

369415

if (pendingText.length > STREAM_BUFFER_MAX_CHARS) {

370416

pendingText = pendingText.slice(-STREAM_BUFFER_MAX_CHARS);

@@ -377,6 +423,34 @@ export function startAcpSpawnParentStreamRelay(params: {

377423

return;

378424

}

379425426+

if (event.stream === "acp") {

427+

const data = event.data as

428+

| {

429+

phase?: unknown;

430+

at?: unknown;

431+

eventType?: unknown;

432+

proxyEnvKeys?: unknown;

433+

}

434+

| undefined;

435+

const phase = normalizeOptionalString(data?.phase);

436+

logEvent("acp", { phase: phase ?? "unknown", data: event.data });

437+

if (phase === "prompt_submitted") {

438+

const at = toFiniteNumber(data?.at) ?? Date.now();

439+

promptSubmittedAt ??= at;

440+

proxyEnvKeysAtPrompt = normalizeStringArray(data?.proxyEnvKeys);

441+

lastProgressAt = Date.now();

442+

return;

443+

}

444+

if (phase === "runtime_event") {

445+

const eventType = normalizeOptionalString(data?.eventType);

446+

firstRuntimeEventAt ??= Date.now();

447+

lastRuntimeEventType = eventType;

448+

lastProgressAt = Date.now();

449+

return;

450+

}

451+

return;

452+

}

453+380454

if (event.stream !== "lifecycle") {

381455

return;

382456

}