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

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
博客园_首页
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Y
Y Combinator 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: hide raw agent failures in group chats · openclaw/op...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -3,6 +3,7 @@ import { LiveSessionModelSwitchError } from "../../agents/live-model-switch-erro

33

import type { SessionEntry } from "../../config/sessions.js";

44

import { CommandLaneClearedError, GatewayDrainingError } from "../../process/command-queue.js";

55

import type { TemplateContext } from "../templating.js";

6+

import { SILENT_REPLY_TOKEN } from "../tokens.js";

67

import type { GetReplyOptions, ReplyPayload } from "../types.js";

78

import { MAX_LIVE_SWITCH_RETRIES } from "./agent-runner-execution.js";

89

import type { FollowupRun } from "./queue.js";

@@ -18,6 +19,9 @@ const state = vi.hoisted(() => ({

1819

createBlockReplyDeliveryHandlerMock: vi.fn(),

1920

}));

202122+

const GENERIC_RUN_FAILURE_TEXT =

23+

"⚠️ Something went wrong while processing your request. Please try again, or use /new to start a fresh session.";

24+2125

vi.mock("../../agents/pi-embedded.js", () => ({

2226

runEmbeddedPiAgent: (params: unknown) => state.runEmbeddedPiAgentMock(params),

2327

}));

@@ -260,14 +264,17 @@ function createMockReplyOperation(): {

260264

function createMinimalRunAgentTurnParams(overrides?: {

261265

followupRun?: FollowupRun;

262266

opts?: GetReplyOptions;

267+

sessionCtx?: TemplateContext;

263268

}) {

264269

return {

265270

commandBody: "fix it",

266271

followupRun: overrides?.followupRun ?? createFollowupRun(),

267-

sessionCtx: {

268-

Provider: "whatsapp",

269-

MessageSid: "msg",

270-

} as unknown as TemplateContext,

272+

sessionCtx:

273+

overrides?.sessionCtx ??

274+

({

275+

Provider: "whatsapp",

276+

MessageSid: "msg",

277+

} as unknown as TemplateContext),

271278

opts: overrides?.opts ?? ({} satisfies GetReplyOptions),

272279

typingSignals: createMockTypingSignaler(),

273280

blockReplyPipeline: null,

@@ -1706,9 +1713,9 @@ describe("runAgentTurnWithFallback", () => {

1706171317071714

expect(result.kind).toBe("final");

17081715

if (result.kind === "final") {

1709-

expect(result.payload.text).toContain("Agent failed before reply");

1710-

expect(result.payload.text).toContain("All models failed");

1711-

expect(result.payload.text).toContain("402 (billing)");

1716+

expect(result.payload.text).toBe(GENERIC_RUN_FAILURE_TEXT);

1717+

expect(result.payload.text).not.toContain("All models failed");

1718+

expect(result.payload.text).not.toContain("402 (billing)");

17121719

expect(result.payload.text).not.toContain("Rate-limited");

17131720

}

17141721

});

@@ -1923,7 +1930,7 @@ describe("runAgentTurnWithFallback", () => {

19231930

expect(failMock).not.toHaveBeenCalled();

19241931

});

192519321926-

it("forwards sanitized generic errors on external chat channels", async () => {

1933+

it("uses compact generic copy for raw external chat errors when verbose is off", async () => {

19271934

state.runEmbeddedPiAgentMock.mockRejectedValueOnce(

19281935

new Error("INVALID_ARGUMENT: some other failure"),

19291936

);

@@ -1953,6 +1960,42 @@ describe("runAgentTurnWithFallback", () => {

19531960

resolvedVerboseLevel: "off",

19541961

});

195519621963+

expect(result.kind).toBe("final");

1964+

if (result.kind === "final") {

1965+

expect(result.payload.text).toBe(GENERIC_RUN_FAILURE_TEXT);

1966+

}

1967+

});

1968+1969+

it("forwards sanitized generic errors on external chat channels when verbose is on", async () => {

1970+

state.runEmbeddedPiAgentMock.mockRejectedValueOnce(

1971+

new Error("INVALID_ARGUMENT: some other failure"),

1972+

);

1973+1974+

const runAgentTurnWithFallback = await getRunAgentTurnWithFallback();

1975+

const result = await runAgentTurnWithFallback({

1976+

commandBody: "hello",

1977+

followupRun: createFollowupRun(),

1978+

sessionCtx: {

1979+

Provider: "whatsapp",

1980+

MessageSid: "msg",

1981+

} as unknown as TemplateContext,

1982+

opts: {},

1983+

typingSignals: createMockTypingSignaler(),

1984+

blockReplyPipeline: null,

1985+

blockStreamingEnabled: false,

1986+

resolvedBlockStreamingBreak: "message_end",

1987+

applyReplyToMode: (payload) => payload,

1988+

shouldEmitToolResult: () => true,

1989+

shouldEmitToolOutput: () => false,

1990+

pendingToolTasks: new Set(),

1991+

resetSessionAfterCompactionFailure: async () => false,

1992+

resetSessionAfterRoleOrderingConflict: async () => false,

1993+

isHeartbeat: false,

1994+

sessionKey: "main",

1995+

getActiveSessionEntry: () => undefined,

1996+

resolvedVerboseLevel: "on",

1997+

});

1998+19561999

expect(result.kind).toBe("final");

19572000

if (result.kind === "final") {

19582001

expect(result.payload.text).toBe(

@@ -1961,7 +2004,83 @@ describe("runAgentTurnWithFallback", () => {

19612004

}

19622005

});

196320061964-

it("formats raw Codex API payloads before forwarding external errors", async () => {

2007+

it.each(["group", "channel"] as const)(

2008+

"keeps raw runner failure boilerplate out of Discord %s chats",

2009+

async (chatType) => {

2010+

state.runEmbeddedPiAgentMock.mockRejectedValueOnce(

2011+

new Error("openai-codex/gpt-5.5 ended with an incomplete terminal response"),

2012+

);

2013+2014+

const runAgentTurnWithFallback = await getRunAgentTurnWithFallback();

2015+

const result = await runAgentTurnWithFallback(

2016+

createMinimalRunAgentTurnParams({

2017+

sessionCtx: {

2018+

Provider: "discord",

2019+

Surface: "discord",

2020+

ChatType: chatType,

2021+

GroupSubject: "agent group",

2022+

GroupChannel: "#general",

2023+

MessageSid: "msg",

2024+

} as unknown as TemplateContext,

2025+

}),

2026+

);

2027+2028+

expect(result.kind).toBe("final");

2029+

if (result.kind === "final") {

2030+

expect(result.payload.text).toBe(SILENT_REPLY_TOKEN);

2031+

}

2032+

},

2033+

);

2034+2035+

it("uses compact generic copy for raw runner failures in normal Discord direct chats", async () => {

2036+

state.runEmbeddedPiAgentMock.mockRejectedValueOnce(

2037+

new Error("openai-codex/gpt-5.5 ended with an incomplete terminal response"),

2038+

);

2039+2040+

const runAgentTurnWithFallback = await getRunAgentTurnWithFallback();

2041+

const result = await runAgentTurnWithFallback(

2042+

createMinimalRunAgentTurnParams({

2043+

sessionCtx: {

2044+

Provider: "discord",

2045+

Surface: "discord",

2046+

ChatType: "direct",

2047+

MessageSid: "msg",

2048+

} as unknown as TemplateContext,

2049+

}),

2050+

);

2051+2052+

expect(result.kind).toBe("final");

2053+

if (result.kind === "final") {

2054+

expect(result.payload.text).toBe(GENERIC_RUN_FAILURE_TEXT);

2055+

}

2056+

});

2057+2058+

it("keeps raw runner failure guidance visible in verbose Discord direct chats", async () => {

2059+

state.runEmbeddedPiAgentMock.mockRejectedValueOnce(

2060+

new Error("openai-codex/gpt-5.5 ended with an incomplete terminal response"),

2061+

);

2062+2063+

const runAgentTurnWithFallback = await getRunAgentTurnWithFallback();

2064+

const result = await runAgentTurnWithFallback({

2065+

...createMinimalRunAgentTurnParams({

2066+

sessionCtx: {

2067+

Provider: "discord",

2068+

Surface: "discord",

2069+

ChatType: "direct",

2070+

MessageSid: "msg",

2071+

} as unknown as TemplateContext,

2072+

}),

2073+

resolvedVerboseLevel: "on",

2074+

});

2075+2076+

expect(result.kind).toBe("final");

2077+

if (result.kind === "final") {

2078+

expect(result.payload.text).toContain("Agent failed before reply");

2079+

expect(result.payload.text).toContain("incomplete terminal response");

2080+

}

2081+

});

2082+2083+

it("formats raw Codex API payloads before forwarding verbose external errors", async () => {

19652084

state.runEmbeddedPiAgentMock.mockRejectedValueOnce(

19662085

new Error(

19672086

'Codex error: {"type":"error","error":{"type":"server_error","message":"Something exploded"},"sequence_number":2}',

@@ -1990,7 +2109,7 @@ describe("runAgentTurnWithFallback", () => {

19902109

isHeartbeat: false,

19912110

sessionKey: "main",

19922111

getActiveSessionEntry: () => undefined,

1993-

resolvedVerboseLevel: "off",

2112+

resolvedVerboseLevel: "on",

19942113

});

1995211419962115

expect(result.kind).toBe("final");