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

推荐订阅源

罗磊的独立博客
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
量子位
博客园 - 三生石上(FineUI控件)
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
Jina AI
Jina AI
L
LangChain Blog
M
MIT News - Artificial intelligence
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学

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(exec): skip heartbeat wake for subagent sessions (#66...
ggzeng · 2026-05-12 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -33,6 +33,7 @@ Docs: https://docs.openclaw.ai

3333

- Build: skip copied metadata for bundled plugins that are excluded from build entries, preventing update/status rebuilds from advertising missing QQ Bot runtime files. (#80925)

3434

- Control UI/sessions: nest subagent sessions under their parent session in the session picker dropdown using a visual `└─ ` prefix, making the parent-child relationship clear. Fixes #77628. (#78623) Thanks @chinar-amrutkar.

3535

- Auto-reply: surface a visible error when the configured model backend fails and fallback produces no visible reply, while preserving intentional silent turns and side-effect-only deliveries. (#80917) Thanks @dutifulbob.

36+

- Agents/exec: skip redundant heartbeat wake-ups for subagent session exec completions, preventing spurious LLM invocations on parent sessions. Fixes #66748. (#66749) Thanks @ggzeng.

3637
3738

### Changes

3839
Original file line numberDiff line numberDiff line change

@@ -565,6 +565,21 @@ describe("emitExecSystemEvent", () => {

565565

expect(enqueueSystemEventMock).not.toHaveBeenCalled();

566566

expect(requestHeartbeatMock).not.toHaveBeenCalled();

567567

});

568+
569+

it("skips heartbeat wake for subagent session keys", () => {

570+

emitExecSystemEvent("Exec finished", {

571+

sessionKey: "agent:main:subagent:abc-123",

572+

contextKey: "exec:run-sub",

573+

});

574+
575+

expect(enqueueSystemEventMock).toHaveBeenCalledWith("Exec finished", {

576+

sessionKey: "agent:main:subagent:abc-123",

577+

contextKey: "exec:run-sub",

578+

deliveryContext: undefined,

579+

trusted: false,

580+

});

581+

expect(requestHeartbeatMock).not.toHaveBeenCalled();

582+

});

568583

});

569584
570585

describe("formatExecFailureReason", () => {

Original file line numberDiff line numberDiff line change

@@ -13,6 +13,7 @@ import { isDangerousHostInheritedEnvVarName } from "../infra/host-env-security.j

1313

import { findPathKey, mergePathPrepend } from "../infra/path-prepend.js";

1414

import { enqueueSystemEvent } from "../infra/system-events.js";

1515

import { resolveEventSessionKey, scopedHeartbeatWakeOptions } from "../routing/session-key.js";

16+

import { isSubagentSessionKey } from "../sessions/session-key-utils.js";

1617

import type { ProcessSession } from "./bash-process-registry.js";

1718

import type { ExecToolDetails } from "./bash-tools.exec-types.js";

1819

import type { BashSandboxConfig } from "./bash-tools.shared.js";

@@ -344,19 +345,23 @@ function maybeNotifyOnExit(session: ProcessSession, status: "completed" | "faile

344345

deliveryContext: session.notifyDeliveryContext,

345346

trusted: false,

346347

});

347-

requestHeartbeat(

348-

scopedHeartbeatWakeOptions(

349-

sessionKey,

350-

{

351-

source: "exec-event",

352-

intent: "event",

353-

reason: "exec-event",

354-

coalesceMs: 0,

355-

},

356-

session.mainKey,

357-

session.sessionScope,

358-

),

359-

);

348+

// Subagent sessions receive exec results via process poll and announce flow;

349+

// the heartbeat would fall back to the main session and cause spurious wakes.

350+

if (!isSubagentSessionKey(sessionKey)) {

351+

requestHeartbeat(

352+

scopedHeartbeatWakeOptions(

353+

sessionKey,

354+

{

355+

source: "exec-event",

356+

intent: "event",

357+

reason: "exec-event",

358+

coalesceMs: 0,

359+

},

360+

session.mainKey,

361+

session.sessionScope,

362+

),

363+

);

364+

}

360365

}

361366
362367

export function createApprovalSlug(id: string) {

@@ -443,19 +448,23 @@ export function emitExecSystemEvent(

443448

deliveryContext: opts.deliveryContext,

444449

trusted: false,

445450

});

446-

requestHeartbeat(

447-

scopedHeartbeatWakeOptions(

448-

sessionKey,

449-

{

450-

source: "exec-event",

451-

intent: "event",

452-

reason: "exec-event",

453-

coalesceMs: 0,

454-

},

455-

opts.mainKey,

456-

opts.sessionScope,

457-

),

458-

);

451+

// Subagent sessions receive exec results via process poll and announce flow;

452+

// the heartbeat would fall back to the main session and cause spurious wakes.

453+

if (!isSubagentSessionKey(sessionKey)) {

454+

requestHeartbeat(

455+

scopedHeartbeatWakeOptions(

456+

sessionKey,

457+

{

458+

source: "exec-event",

459+

intent: "event",

460+

reason: "exec-event",

461+

coalesceMs: 0,

462+

},

463+

opts.mainKey,

464+

opts.sessionScope,

465+

),

466+

);

467+

}

459468

}

460469
461470

export { renderExecUpdateText } from "./bash-tools.exec-output.js";