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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain 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 event routing for main-scoped DMs · opencla...
Kaspre · 2026-05-22 · via Recent Commits to openclaw:main

@@ -1,6 +1,11 @@

11

import path from "node:path";

22

import type { AgentToolResult } from "@earendil-works/pi-agent-core";

33

import { emitDiagnosticEvent } from "../infra/diagnostic-events.js";

4+

import {

5+

type EventSessionRoutingPolicy,

6+

resolveEventSessionKeyForPolicy,

7+

scopedHeartbeatWakeOptionsForPolicy,

8+

} from "../infra/event-session-routing.js";

49

import {

510

DEFAULT_EXEC_APPROVAL_TIMEOUT_MS,

611

resolveExecApprovalAllowedDecisions,

@@ -12,7 +17,6 @@ import { requestHeartbeat } from "../infra/heartbeat-wake.js";

1217

import { isDangerousHostInheritedEnvVarName } from "../infra/host-env-security.js";

1318

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

1419

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

15-

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

1620

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

1721

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

1822

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

@@ -340,24 +344,27 @@ function maybeNotifyOnExit(session: ProcessSession, status: "completed" | "faile

340344

const summary = output

341345

? `Exec ${status} (${session.id.slice(0, 8)}, ${exitLabel}) :: ${output}`

342346

: `Exec ${status} (${session.id.slice(0, 8)}, ${exitLabel})`;

347+

const eventRouting = session.eventRouting ?? {

348+

mainKey: session.mainKey,

349+

sessionScope: session.sessionScope,

350+

};

343351

enqueueSystemEvent(summary, {

344-

sessionKey: resolveEventSessionKey(sessionKey, session.mainKey, session.sessionScope),

352+

sessionKey: resolveEventSessionKeyForPolicy(sessionKey, eventRouting),

345353

deliveryContext: session.notifyDeliveryContext,

346354

});

347355

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

348356

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

349357

if (!isSubagentSessionKey(sessionKey)) {

350358

requestHeartbeat(

351-

scopedHeartbeatWakeOptions(

359+

scopedHeartbeatWakeOptionsForPolicy(

352360

sessionKey,

353361

{

354362

source: "exec-event",

355363

intent: "event",

356364

reason: "exec-event",

357365

coalesceMs: 0,

358366

},

359-

session.mainKey,

360-

session.sessionScope,

367+

eventRouting,

361368

),

362369

);

363370

}

@@ -435,31 +442,35 @@ export function emitExecSystemEvent(

435442

/** `session.scope` from the runtime config; needed so global-scope

436443

* agents route cron-run events to the "global" queue. */

437444

sessionScope?: "per-sender" | "global";

445+

eventRouting?: EventSessionRoutingPolicy;

438446

},

439447

) {

440448

const sessionKey = opts.sessionKey?.trim();

441449

if (!sessionKey) {

442450

return;

443451

}

452+

const eventRouting = opts.eventRouting ?? {

453+

mainKey: opts.mainKey,

454+

sessionScope: opts.sessionScope,

455+

};

444456

enqueueSystemEvent(text, {

445-

sessionKey: resolveEventSessionKey(sessionKey, opts.mainKey, opts.sessionScope),

457+

sessionKey: resolveEventSessionKeyForPolicy(sessionKey, eventRouting),

446458

contextKey: opts.contextKey,

447459

deliveryContext: opts.deliveryContext,

448460

});

449461

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

450462

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

451463

if (!isSubagentSessionKey(sessionKey)) {

452464

requestHeartbeat(

453-

scopedHeartbeatWakeOptions(

465+

scopedHeartbeatWakeOptionsForPolicy(

454466

sessionKey,

455467

{

456468

source: "exec-event",

457469

intent: "event",

458470

reason: "exec-event",

459471

coalesceMs: 0,

460472

},

461-

opts.mainKey,

462-

opts.sessionScope,

473+

eventRouting,

463474

),

464475

);

465476

}

@@ -636,6 +647,8 @@ export async function runExecProcess(opts: {

636647

* `mainKey` so the cron-run remap can route global-scope agents to

637648

* the "global" queue instead of agent-main. */

638649

sessionScope?: "per-sender" | "global";

650+

/** Start-time routing policy for detached exec system events. */

651+

eventRouting?: EventSessionRoutingPolicy;

639652

notifyDeliveryContext?: DeliveryContext;

640653

timeoutSec: number | null;

641654

onUpdate?: (partialResult: AgentToolResult<ExecToolDetails>) => void;

@@ -657,6 +670,7 @@ export async function runExecProcess(opts: {

657670

sessionKey: opts.sessionKey,

658671

mainKey: opts.mainKey,

659672

sessionScope: opts.sessionScope,

673+

eventRouting: opts.eventRouting,

660674

notifyDeliveryContext: normalizeDeliveryContext(opts.notifyDeliveryContext),

661675

notifyOnExit: opts.notifyOnExit,

662676

notifyOnExitEmptySuccess: opts.notifyOnExitEmptySuccess === true,