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

推荐订阅源

S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News
G
Google Developers Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
Jina AI
Jina AI
宝玉的分享
宝玉的分享
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
V
V2EX
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
B
Blog
博客园 - 叶小钗
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
A
About on SuperTechFans
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security 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
refactor(agents): remove stale exec event helper · opencl...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main

@@ -29,7 +29,6 @@ vi.mock("../process/supervisor/index.js", () => ({

2929

let markBackgrounded: typeof import("./bash-process-registry.js").markBackgrounded;

3030

let buildExecExitOutcome: typeof import("./bash-tools.exec-runtime.js").buildExecExitOutcome;

3131

let detectCursorKeyMode: typeof import("./bash-tools.exec-runtime.js").detectCursorKeyMode;

32-

let emitExecSystemEvent: typeof import("./bash-tools.exec-runtime.js").emitExecSystemEvent;

3332

let formatExecFailureReason: typeof import("./bash-tools.exec-runtime.js").formatExecFailureReason;

3433

let renderExecUpdateText: typeof import("./bash-tools.exec-runtime.js").renderExecUpdateText;

3534

let resolveExecTarget: typeof import("./bash-tools.exec-runtime.js").resolveExecTarget;

@@ -40,7 +39,6 @@ beforeAll(async () => {

4039

({

4140

buildExecExitOutcome,

4241

detectCursorKeyMode,

43-

emitExecSystemEvent,

4442

formatExecFailureReason,

4543

renderExecUpdateText,

4644

resolveExecTarget,

@@ -472,150 +470,6 @@ describe("exec notifyOnExit suppression", () => {

472470

});

473471

});

474472475-

describe("emitExecSystemEvent", () => {

476-

beforeEach(() => {

477-

requestHeartbeatMock.mockClear();

478-

enqueueSystemEventMock.mockClear();

479-

});

480-481-

it("scopes heartbeat wake to the event session key", () => {

482-

emitExecSystemEvent("Exec finished", {

483-

sessionKey: "agent:ops:main",

484-

contextKey: "exec:run-1",

485-

deliveryContext: {

486-

channel: "telegram",

487-

to: "telegram:-100123:topic:47",

488-

threadId: 47,

489-

},

490-

});

491-492-

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

493-

sessionKey: "agent:ops:main",

494-

contextKey: "exec:run-1",

495-

deliveryContext: {

496-

channel: "telegram",

497-

to: "telegram:-100123:topic:47",

498-

threadId: 47,

499-

},

500-

});

501-

const heartbeat = requireHeartbeatCall();

502-

expect(heartbeat.coalesceMs).toBe(0);

503-

expect(heartbeat.reason).toBe("exec-event");

504-

expect(heartbeat.sessionKey).toBe("agent:ops:main");

505-

});

506-507-

it("remaps cron-run event enqueue and wake targets to the drained agent main session", () => {

508-

emitExecSystemEvent("Exec finished", {

509-

sessionKey: "agent:ops:cron:nightly:run:run-1",

510-

contextKey: "exec:run-cron",

511-

mainKey: "primary",

512-

});

513-514-

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

515-

sessionKey: "agent:ops:primary",

516-

contextKey: "exec:run-cron",

517-

});

518-

expect(requestHeartbeatMock).toHaveBeenCalledTimes(1);

519-

const [[heartbeatParams]] = requestHeartbeatMock.mock.calls as unknown as Array<

520-

[{ coalesceMs?: number; reason?: string; sessionKey?: string }]

521-

>;

522-

expect(heartbeatParams.coalesceMs).toBe(0);

523-

expect(heartbeatParams.reason).toBe("exec-event");

524-

expect(heartbeatParams.sessionKey).toBe("agent:ops:primary");

525-

});

526-527-

it("routes global-scope cron-run events to the global queue and preserves the agent wake target", () => {

528-

emitExecSystemEvent("Exec finished", {

529-

sessionKey: "agent:ops:cron:nightly:run:run-1:subagent:worker",

530-

contextKey: "exec:run-global",

531-

sessionScope: "global",

532-

});

533-534-

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

535-

sessionKey: "global",

536-

contextKey: "exec:run-global",

537-

});

538-

expect(requestHeartbeatMock).toHaveBeenCalledTimes(1);

539-

const [[heartbeatParams]] = requestHeartbeatMock.mock.calls as unknown as Array<

540-

[{ agentId?: string; coalesceMs?: number; reason?: string }]

541-

>;

542-

expect(heartbeatParams.agentId).toBe("ops");

543-

expect(heartbeatParams.coalesceMs).toBe(0);

544-

expect(heartbeatParams.reason).toBe("exec-event");

545-

expect(requireHeartbeatCall()).not.toHaveProperty("sessionKey");

546-

});

547-548-

it("routes single-owner dmScope=main direct exec events to the agent main session", () => {

549-

emitExecSystemEvent("Exec finished", {

550-

sessionKey: "agent:main:telegram:default:direct:123",

551-

contextKey: "exec:run-dm",

552-

deliveryContext: {

553-

channel: "telegram",

554-

to: "123",

555-

},

556-

eventRouting: {

557-

dmScope: "main",

558-

allowFrom: ["123"],

559-

channel: "telegram",

560-

accountId: "default",

561-

},

562-

});

563-564-

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

565-

sessionKey: "agent:main:main",

566-

contextKey: "exec:run-dm",

567-

deliveryContext: {

568-

channel: "telegram",

569-

to: "123",

570-

},

571-

});

572-

expect(requestHeartbeatMock).toHaveBeenCalledTimes(1);

573-

const heartbeat = requireHeartbeatCall();

574-

expect(heartbeat.coalesceMs).toBe(0);

575-

expect(heartbeat.reason).toBe("exec-event");

576-

expect(heartbeat.sessionKey).toBe("agent:main:main");

577-

});

578-579-

it("keeps wake unscoped for non-agent session keys", () => {

580-

emitExecSystemEvent("Exec finished", {

581-

sessionKey: "global",

582-

contextKey: "exec:run-global",

583-

});

584-585-

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

586-

sessionKey: "global",

587-

contextKey: "exec:run-global",

588-

});

589-

const heartbeat = requireHeartbeatCall();

590-

expect(heartbeat.coalesceMs).toBe(0);

591-

expect(heartbeat.reason).toBe("exec-event");

592-

});

593-594-

it("ignores events without a session key", () => {

595-

emitExecSystemEvent("Exec finished", {

596-

sessionKey: " ",

597-

contextKey: "exec:run-2",

598-

});

599-600-

expect(enqueueSystemEventMock).not.toHaveBeenCalled();

601-

expect(requestHeartbeatMock).not.toHaveBeenCalled();

602-

});

603-604-

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

605-

emitExecSystemEvent("Exec finished", {

606-

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

607-

contextKey: "exec:run-sub",

608-

});

609-610-

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

611-

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

612-

contextKey: "exec:run-sub",

613-

deliveryContext: undefined,

614-

});

615-

expect(requestHeartbeatMock).not.toHaveBeenCalled();

616-

});

617-

});

618-619473

describe("formatExecFailureReason", () => {

620474

it("formats timeout guidance with the configured timeout", () => {

621475

expect(