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

推荐订阅源

Google DeepMind News
Google DeepMind News
G
Google Developers Blog
博客园 - 三生石上(FineUI控件)
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Hugging Face - Blog
Hugging Face - Blog
C
Check Point Blog
V
V2EX
Vercel News
Vercel News
U
Unit 42
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
J
Java Code Geeks
WordPress大学
WordPress大学
罗磊的独立博客
I
InfoQ
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
M
MIT News - Artificial intelligence
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG

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(cron): preserve structured denial failures · openclaw...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -84,6 +84,7 @@ import { redactRunIdentifier, resolveRunWorkspaceDir } from "../workspace-run.js

8484

import { runPostCompactionSideEffects } from "./compaction-hooks.js";

8585

import { buildEmbeddedCompactionRuntimeContext } from "./compaction-runtime-context.js";

8686

import { runContextEngineMaintenance } from "./context-engine-maintenance.js";

87+

import { resolveEmbeddedRunFailureSignal } from "./failure-signal.js";

8788

import { resolveGlobalLane, resolveSessionLane } from "./lanes.js";

8889

import { log } from "./logger.js";

8990

import { resolveModelAsync } from "./model.js";

@@ -1853,6 +1854,10 @@ export async function runEmbeddedPiAgent(

18531854

toolMetas: attempt.toolMetas,

18541855

hadFailure: Boolean(attempt.lastToolError),

18551856

});

1857+

const failureSignal = resolveEmbeddedRunFailureSignal({

1858+

trigger: params.trigger,

1859+

lastToolError: attempt.lastToolError,

1860+

});

1856186118571862

// Timeout aborts can leave the run without any assistant payloads.

18581863

// Emit an explicit timeout error instead of silently completing, so

@@ -1893,6 +1898,7 @@ export async function runEmbeddedPiAgent(

18931898

replayInvalid,

18941899

livenessState,

18951900

toolSummary: attemptToolSummary,

1901+

...(failureSignal ? { failureSignal } : {}),

18961902

agentHarnessResultClassification: attempt.agentHarnessResultClassification,

18971903

},

18981904

didSendViaMessagingTool: attempt.didSendViaMessagingTool,

@@ -2070,6 +2076,7 @@ export async function runEmbeddedPiAgent(

20702076

replayInvalid,

20712077

livenessState,

20722078

toolSummary: attemptToolSummary,

2079+

...(failureSignal ? { failureSignal } : {}),

20732080

agentHarnessResultClassification: attempt.agentHarnessResultClassification,

20742081

},

20752082

didSendViaMessagingTool: attempt.didSendViaMessagingTool,

@@ -2119,6 +2126,7 @@ export async function runEmbeddedPiAgent(

21192126

replayInvalid,

21202127

livenessState,

21212128

toolSummary: attemptToolSummary,

2129+

...(failureSignal ? { failureSignal } : {}),

21222130

agentHarnessResultClassification: attempt.agentHarnessResultClassification,

21232131

},

21242132

didSendViaMessagingTool: attempt.didSendViaMessagingTool,

@@ -2227,6 +2235,7 @@ export async function runEmbeddedPiAgent(

22272235

replayInvalid,

22282236

livenessState,

22292237

toolSummary: attemptToolSummary,

2238+

...(failureSignal ? { failureSignal } : {}),

22302239

agentHarnessResultClassification: attempt.agentHarnessResultClassification,

22312240

},

22322241

didSendViaMessagingTool: attempt.didSendViaMessagingTool,

@@ -2334,6 +2343,7 @@ export async function runEmbeddedPiAgent(

23342343

...(params.blockReplyBreak ? { blockStreaming: params.blockReplyBreak } : {}),

23352344

},

23362345

toolSummary: attemptToolSummary,

2346+

...(failureSignal ? { failureSignal } : {}),

23372347

completion: {

23382348

...(stopReason ? { stopReason } : {}),

23392349

...(stopReason ? { finishReason: stopReason } : {}),