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

推荐订阅源

P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
C
Check Point Blog
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
Recent Announcements
Recent Announcements
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
J
Java Code Geeks
博客园_首页
Jina AI
Jina AI
美团技术团队
H
Help Net Security
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
S
SegmentFault 最新的问题

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: preserve SDK run event outcomes · openclaw/openclaw@...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -1,4 +1,5 @@

11

import { randomUUID } from "node:crypto";

2+

import { EventHub } from "./event-hub.js";

23

import { normalizeGatewayEvent } from "./normalize.js";

34

import { GatewayClientTransport, isConnectableTransport } from "./transport.js";

45

import type {

@@ -15,6 +16,10 @@ import type {

1516

SessionTarget,

1617

} from "./types.js";

171819+

const MAX_REPLAY_RUNS = 100;

20+

const MAX_REPLAY_EVENTS_PER_RUN = 500;

21+

const MAX_NORMALIZED_REPLAY_EVENTS = 2000;

22+1823

export type OpenClawOptions = {

1924

gateway?: "auto" | (string & {});

2025

url?: string;

@@ -36,17 +41,32 @@ function resolveGatewayUrl(options: OpenClawOptions): string | undefined {

36413742

function runStatusFromWaitPayload(payload: unknown): RunResult["status"] {

3843

const record =

39-

typeof payload === "object" && payload !== null ? (payload as { status?: unknown }) : {};

40-

const status = typeof record.status === "string" ? record.status : undefined;

44+

typeof payload === "object" && payload !== null

45+

? (payload as { aborted?: unknown; status?: unknown; stopReason?: unknown })

46+

: {};

47+

const status = typeof record.status === "string" ? record.status.toLowerCase() : undefined;

48+

const stopReason = typeof record.stopReason === "string" ? record.stopReason.toLowerCase() : "";

49+

if (

50+

status === "aborted" ||

51+

status === "cancelled" ||

52+

status === "canceled" ||

53+

status === "killed" ||

54+

stopReason === "aborted" ||

55+

stopReason === "cancelled" ||

56+

stopReason === "canceled" ||

57+

stopReason === "killed" ||

58+

stopReason === "rpc" ||

59+

stopReason === "user" ||

60+

(record.aborted === true && stopReason === "stop")

61+

) {

62+

return "cancelled";

63+

}

4164

if (status === "ok" || status === "completed" || status === "succeeded") {

4265

return "completed";

4366

}

4467

if (status === "timeout" || status === "timed_out") {

4568

return "timed_out";

4669

}

47-

if (status === "cancelled" || status === "canceled") {

48-

return "cancelled";

49-

}

5070

if (status === "accepted") {

5171

return "accepted";

5272

}

@@ -149,7 +169,13 @@ export class OpenClaw {

149169

readonly environments: EnvironmentsNamespace;

150170151171

private readonly transport: OpenClawTransport;

172+

private readonly normalizedEvents = new EventHub<OpenClawEvent>({

173+

replayLimit: MAX_NORMALIZED_REPLAY_EVENTS,

174+

});

175+

private readonly replayByRunId = new Map<string, OpenClawEvent[]>();

152176

private connected = false;

177+

private eventPumpPromise: Promise<void> | null = null;

178+

private eventPumpReady: Promise<void> | null = null;

153179154180

constructor(options: OpenClawOptions = {}) {

155181

this.transport =

@@ -173,16 +199,22 @@ export class OpenClaw {

173199174200

async connect(): Promise<void> {

175201

if (this.connected) {

202+

await this.startEventPump();

176203

return;

177204

}

178205

if (isConnectableTransport(this.transport)) {

179206

await this.transport.connect();

180207

}

181208

this.connected = true;

209+

await this.startEventPump();

182210

}

183211184212

async close(): Promise<void> {

185213

await this.transport.close?.();

214+

await this.eventPumpPromise?.catch(() => {});

215+

this.normalizedEvents.close();

216+

this.eventPumpPromise = null;

217+

this.eventPumpReady = null;

186218

this.connected = false;

187219

}

188220

@@ -196,20 +228,134 @@ export class OpenClaw {

196228

}

197229198230

events(filter?: (event: OpenClawEvent) => boolean): AsyncIterable<OpenClawEvent> {

199-

const source = this.transport.events();

200-

async function* iterate(): AsyncIterable<OpenClawEvent> {

201-

for await (const event of source) {

202-

const normalized = normalizeGatewayEvent(event);

203-

if (!filter || filter(normalized)) {

204-

yield normalized;

231+

return this.iterateEvents(filter);

232+

}

233+234+

runEvents(

235+

runId: string,

236+

filter?: (event: OpenClawEvent) => boolean,

237+

): AsyncIterable<OpenClawEvent> {

238+

return this.iterateRunEvents(runId, filter);

239+

}

240+241+

rawEvents(filter?: (event: GatewayEvent) => boolean): AsyncIterable<GatewayEvent> {

242+

return this.transport.events(filter);

243+

}

244+245+

private async *iterateEvents(

246+

filter?: (event: OpenClawEvent) => boolean,

247+

): AsyncIterable<OpenClawEvent> {

248+

await this.connect();

249+

for await (const event of this.normalizedEvents.stream(filter)) {

250+

yield event;

251+

}

252+

}

253+254+

private async *iterateRunEvents(

255+

runId: string,

256+

filter?: (event: OpenClawEvent) => boolean,

257+

): AsyncIterable<OpenClawEvent> {

258+

await this.connect();

259+

const matches = (event: OpenClawEvent) => {

260+

if (event.runId !== runId) {

261+

return false;

262+

}

263+

return filter ? filter(event) : true;

264+

};

265+

const liveSource = this.normalizedEvents.stream(matches, { replay: true });

266+

const live = liveSource[Symbol.asyncIterator]();

267+

let nextLive = live.next();

268+

const seen = new Set<string>();

269+

try {

270+

for (const event of this.replaySnapshot(runId)) {

271+

if (!matches(event) || seen.has(event.id)) {

272+

continue;

205273

}

274+

seen.add(event.id);

275+

yield event;

206276

}

277+

while (true) {

278+

const next = await nextLive;

279+

if (next.done) {

280+

break;

281+

}

282+

nextLive = live.next();

283+

if (seen.has(next.value.id)) {

284+

continue;

285+

}

286+

seen.add(next.value.id);

287+

yield next.value;

288+

}

289+

} finally {

290+

await live.return?.();

207291

}

208-

return iterate();

209292

}

210293211-

rawEvents(filter?: (event: GatewayEvent) => boolean): AsyncIterable<GatewayEvent> {

212-

return this.transport.events(filter);

294+

private startEventPump(): Promise<void> {

295+

if (this.eventPumpReady) {

296+

return this.eventPumpReady;

297+

}

298+

let markReady = () => {};

299+

let ready = false;

300+

this.eventPumpReady = new Promise<void>((resolve) => {

301+

markReady = () => {

302+

if (ready) {

303+

return;

304+

}

305+

ready = true;

306+

resolve();

307+

};

308+

});

309+

this.eventPumpPromise = (async () => {

310+

const iterator = this.transport.events()[Symbol.asyncIterator]();

311+

try {

312+

while (true) {

313+

const next = iterator.next();

314+

await Promise.resolve();

315+

markReady();

316+

const result = await next;

317+

if (result.done) {

318+

break;

319+

}

320+

const normalized = normalizeGatewayEvent(result.value);

321+

this.recordReplayEvent(normalized);

322+

this.normalizedEvents.publish(normalized);

323+

}

324+

} finally {

325+

markReady();

326+

await iterator.return?.();

327+

this.normalizedEvents.close();

328+

}

329+

})().catch(() => {

330+

markReady();

331+

this.normalizedEvents.close();

332+

});

333+

return this.eventPumpReady;

334+

}

335+336+

private recordReplayEvent(event: OpenClawEvent): void {

337+

if (!event.runId) {

338+

return;

339+

}

340+

let events = this.replayByRunId.get(event.runId);

341+

if (!events) {

342+

if (this.replayByRunId.size >= MAX_REPLAY_RUNS) {

343+

const oldestRunId = this.replayByRunId.keys().next().value;

344+

if (oldestRunId) {

345+

this.replayByRunId.delete(oldestRunId);

346+

}

347+

}

348+

events = [];

349+

this.replayByRunId.set(event.runId, events);

350+

}

351+

events.push(event);

352+

if (events.length > MAX_REPLAY_EVENTS_PER_RUN) {

353+

events.splice(0, events.length - MAX_REPLAY_EVENTS_PER_RUN);

354+

}

355+

}

356+357+

private replaySnapshot(runId: string): OpenClawEvent[] {

358+

return [...(this.replayByRunId.get(runId) ?? [])];

213359

}

214360

}

215361

@@ -241,12 +387,7 @@ export class Run {

241387

) {}

242388243389

events(filter?: (event: OpenClawEvent) => boolean): AsyncIterable<OpenClawEvent> {

244-

return this.client.events((event) => {

245-

if (event.runId !== this.id) {

246-

return false;

247-

}

248-

return filter ? filter(event) : true;

249-

});

390+

return this.client.runEvents(this.id, filter);

250391

}

251392252393

async wait(options?: { timeoutMs?: number }): Promise<RunResult> {