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

推荐订阅源

J
Java Code Geeks
腾讯CDC
博客园 - 聂微东
爱范儿
爱范儿
罗磊的独立博客
P
Proofpoint News Feed
博客园 - Franky
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
I
InfoQ
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers 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(heartbeat): suppress stream-error placeholders (#9736...
TurboTheTurt · 2026-06-29 · via Recent Commits to openclaw:main

@@ -26,6 +26,7 @@ import { formatReasoningMessage } from "../agents/embedded-agent-utils.js";

2626

import { resolveAgentHarnessPolicy } from "../agents/harness/policy.js";

2727

import { resolveModelRefFromString, type ModelRef } from "../agents/model-selection.js";

2828

import { resolvePersistedSessionRuntimeId } from "../agents/session-runtime-compat.js";

29+

import { STREAM_ERROR_FALLBACK_TEXT } from "../agents/stream-message-shared.js";

2930

import { DEFAULT_HEARTBEAT_FILENAME } from "../agents/workspace.js";

3031

import { resolveHeartbeatReplyPayload } from "../auto-reply/heartbeat-reply-payload.js";

3132

import {

@@ -839,41 +840,67 @@ function stripLeadingHeartbeatResponsePrefix(

839840

return text.replace(prefixPattern, "");

840841

}

841842843+

type NormalizedHeartbeatDelivery = {

844+

shouldSkip: boolean;

845+

text: string;

846+

hasMedia: boolean;

847+

isInternalPlaceholderOnly: boolean;

848+

};

849+850+

function isStreamErrorFallbackPlaceholderOnly(text: string): boolean {

851+

let remaining = text.trim();

852+

if (!remaining) {

853+

return false;

854+

}

855+856+

while (remaining.startsWith(STREAM_ERROR_FALLBACK_TEXT)) {

857+

remaining = remaining.slice(STREAM_ERROR_FALLBACK_TEXT.length).trimStart();

858+

}

859+

return remaining.length === 0;

860+

}

861+842862

function normalizeHeartbeatReply(

843863

payload: ReplyPayload,

844864

responsePrefix: string | undefined,

845865

ackMaxChars: number,

846-

) {

866+

): NormalizedHeartbeatDelivery {

847867

const rawText = typeof payload.text === "string" ? payload.text : "";

848868

const textForStrip = stripLeadingHeartbeatResponsePrefix(rawText, responsePrefix);

849869

const stripped = stripHeartbeatToken(textForStrip, {

850870

mode: "heartbeat",

851871

maxAckChars: ackMaxChars,

852872

});

853873

const hasMedia = resolveSendableOutboundReplyParts(payload).hasMedia;

854-

if (stripped.shouldSkip && !hasMedia) {

874+

const isInternalPlaceholderOnly = isStreamErrorFallbackPlaceholderOnly(stripped.text);

875+

if ((stripped.shouldSkip || isInternalPlaceholderOnly) && !hasMedia) {

855876

return {

856877

shouldSkip: true,

857878

text: "",

858879

hasMedia,

880+

isInternalPlaceholderOnly,

859881

};

860882

}

861-

let finalText = stripped.text;

883+

let finalText = isInternalPlaceholderOnly ? "" : stripped.text;

862884

if (responsePrefix && finalText && !finalText.startsWith(responsePrefix)) {

863885

finalText = `${responsePrefix} ${finalText}`;

864886

}

865-

return { shouldSkip: false, text: finalText, hasMedia };

887+

return { shouldSkip: false, text: finalText, hasMedia, isInternalPlaceholderOnly };

866888

}

867889868890

function normalizeHeartbeatToolNotification(

869891

response: HeartbeatToolResponse,

870892

responsePrefix: string | undefined,

871-

) {

893+

): NormalizedHeartbeatDelivery {

872894

let finalText = getHeartbeatToolNotificationText(response);

873895

if (responsePrefix && finalText && !finalText.startsWith(responsePrefix)) {

874896

finalText = `${responsePrefix} ${finalText}`;

875897

}

876-

return { shouldSkip: false, text: finalText, hasMedia: false };

898+

return {

899+

shouldSkip: false,

900+

text: finalText,

901+

hasMedia: false,

902+

isInternalPlaceholderOnly: false,

903+

};

877904

}

878905879906

type HeartbeatWakePayloadFlags = {

@@ -1927,7 +1954,12 @@ export async function runHeartbeatOnce(opts: {

19271954

? normalizeHeartbeatToolNotification(heartbeatToolResponse, responsePrefix)

19281955

: replyPayload

19291956

? normalizeHeartbeatReply(replyPayload, responsePrefix, ackMaxChars)

1930-

: { shouldSkip: true, text: "", hasMedia: false };

1957+

: {

1958+

shouldSkip: true,

1959+

text: "",

1960+

hasMedia: false,

1961+

isInternalPlaceholderOnly: false,

1962+

};

19311963

// For exec completion events, don't skip even if the response looks like HEARTBEAT_OK.

19321964

// The model should be responding with exec results, not ack tokens.

19331965

// Also, if normalized.text is empty due to token stripping but we have exec completion,

@@ -1936,6 +1968,7 @@ export async function runHeartbeatOnce(opts: {

19361968

!heartbeatToolResponse &&

19371969

hasRelayableExecCompletion &&

19381970

!normalized.text.trim() &&

1971+

!normalized.isInternalPlaceholderOnly &&

19391972

replyPayload?.text?.trim()

19401973

? replyPayload.text.trim()

19411974

: null;

@@ -1952,7 +1985,9 @@ export async function runHeartbeatOnce(opts: {

19521985

normalized.shouldSkip = false;

19531986

}

19541987

const shouldSkipMain =

1955-

normalized.shouldSkip && !normalized.hasMedia && !hasRelayableExecCompletion;

1988+

normalized.shouldSkip &&

1989+

!normalized.hasMedia &&

1990+

(!hasRelayableExecCompletion || normalized.isInternalPlaceholderOnly);

19561991

if (shouldSkipMain && reasoningPayloads.length === 0) {

19571992

await restoreHeartbeatUpdatedAt({

19581993

storePath,