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

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
博客园_首页
量子位
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
S
SegmentFault 最新的问题
雷峰网
雷峰网
小众软件
小众软件
博客园 - 聂微东
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - 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(gateway): reject stale lifecycle session updates · op...
steipete · 2026-05-31 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -803,6 +803,7 @@ async function agentCommandInternal(

803803

? { isControlUiVisible: false }

804804

: {

805805

sessionKey,

806+

sessionId,

806807

},

807808

);

808809

attemptExecutionRuntime.emitAcpLifecycleStart({ runId, startedAt });

@@ -980,7 +981,7 @@ async function agentCommandInternal(

980981
981982

if (sessionKey || suppressVisibleSessionEffects) {

982983

registerAgentRunContext(runId, {

983-

...(sessionKey && !suppressVisibleSessionEffects ? { sessionKey } : {}),

984+

...(sessionKey && !suppressVisibleSessionEffects ? { sessionKey, sessionId } : {}),

984985

verboseLevel: resolvedVerboseLevel,

985986

isControlUiVisible: !suppressVisibleSessionEffects,

986987

});

Original file line numberDiff line numberDiff line change

@@ -1177,6 +1177,7 @@ export async function runMemoryFlushIfNeeded(params: {

11771177

if (params.sessionKey) {

11781178

memoryDeps.registerAgentRunContext(flushRunId, {

11791179

sessionKey: params.sessionKey,

1180+

...(activeSessionEntry?.sessionId ? { sessionId: activeSessionEntry.sessionId } : {}),

11801181

verboseLevel: params.resolvedVerboseLevel,

11811182

});

11821183

}

Original file line numberDiff line numberDiff line change

@@ -2630,6 +2630,69 @@ describe("createFollowupRunner compaction", () => {

26302630

expect(embeddedCalls[0]?.extraSystemPrompt).toContain("Read AGENTS.md before replying.");

26312631

expect(sessionStore.main?.compactionCount).toBe(2);

26322632

});

2633+
2634+

it("registers the post-preflight session id for lifecycle event stamping", async () => {

2635+

const realAgentEvents = await vi.importActual<typeof import("../../infra/agent-events.js")>(

2636+

"../../infra/agent-events.js",

2637+

);

2638+

realAgentEvents.resetAgentRunContextForTest();

2639+

const sessionEntry: SessionEntry = {

2640+

sessionId: "old-session",

2641+

updatedAt: Date.now(),

2642+

sessionFile: "/tmp/old-session.jsonl",

2643+

};

2644+

const sessionStore: Record<string, SessionEntry> = {

2645+

main: sessionEntry,

2646+

};

2647+

runPreflightCompactionIfNeededMock.mockImplementationOnce(

2648+

async (params: {

2649+

followupRun: FollowupRun;

2650+

sessionEntry?: SessionEntry;

2651+

sessionStore?: Record<string, SessionEntry>;

2652+

sessionKey?: string;

2653+

}) => {

2654+

const updatedEntry: SessionEntry = {

2655+

...(params.sessionEntry ?? sessionEntry),

2656+

sessionId: "new-session",

2657+

sessionFile: "/tmp/new-session.jsonl",

2658+

updatedAt: Date.now(),

2659+

};

2660+

params.followupRun.run.sessionId = updatedEntry.sessionId;

2661+

params.followupRun.run.sessionFile = "/tmp/new-session.jsonl";

2662+

if (params.sessionKey && params.sessionStore) {

2663+

params.sessionStore[params.sessionKey] = updatedEntry;

2664+

}

2665+

return updatedEntry;

2666+

},

2667+

);

2668+
2669+

let observedRunId: string | undefined;

2670+

runEmbeddedAgentMock.mockImplementationOnce(

2671+

async (params: { runId: string; sessionId?: string }) => {

2672+

observedRunId = params.runId;

2673+

expect(params.sessionId).toBe("new-session");

2674+

return {

2675+

payloads: [{ text: "final" }],

2676+

meta: { agentMeta: { usage: { input: 1, output: 1 } } },

2677+

};

2678+

},

2679+

);

2680+
2681+

const runner = createFollowupRunner({

2682+

typing: createMockTypingController(),

2683+

typingMode: "instant",

2684+

sessionEntry,

2685+

sessionStore,

2686+

sessionKey: "main",

2687+

defaultModel: "anthropic/claude-opus-4-6",

2688+

});

2689+
2690+

await runner(createQueuedRun());

2691+
2692+

expect(observedRunId).toBeDefined();

2693+

expect(realAgentEvents.getAgentRunContext(observedRunId ?? "")?.sessionId).toBe("new-session");

2694+

realAgentEvents.resetAgentRunContextForTest();

2695+

});

26332696

});

26342697
26352698

describe("createFollowupRunner bootstrap warning dedupe", () => {

Original file line numberDiff line numberDiff line change

@@ -135,6 +135,8 @@ export type AgentConfig = {

135135

allowAgents?: string[];

136136

/** Per-agent default model for spawned sub-agents (string or {primary,fallbacks}). */

137137

model?: AgentModelConfig;

138+

/** Per-agent default thinking level for spawned sub-agents. */

139+

thinking?: string;

138140

/** Require explicit agentId in sessions_spawn (no default same-as-caller). */

139141

requireAgentId?: boolean;

140142

};

Original file line numberDiff line numberDiff line change

@@ -396,6 +396,7 @@ export async function executeCronRun(params: {

396396

"off";

397397

registerAgentRunContext(params.cronSession.sessionEntry.sessionId, {

398398

sessionKey: params.runSessionKey,

399+

sessionId: params.cronSession.sessionEntry.sessionId,

399400

verboseLevel: resolvedVerboseLevel,

400401

});

401402

const executor = createCronPromptExecutor({

Original file line numberDiff line numberDiff line change

@@ -49,9 +49,9 @@ describe("agent-events sequencing", () => {

4949

expect(seen.find((evt) => evt.stream === "item")?.sessionId).toBeUndefined();

5050

});

5151
52-

test("refreshes the stamped sessionId after a mid-run session rotation (#88538)", () => {

52+

test("refreshes the stamped sessionId when run context is re-registered (#88538)", () => {

5353

registerAgentRunContext("run-1", { sessionKey: "main", sessionId: "start-id" });

54-

// A legitimate compaction rotation re-registers the run with its new session.

54+

// Callers that already persisted a rotation can re-register the new owner.

5555

registerAgentRunContext("run-1", { sessionId: "rotated-id" });

5656

let stamped: string | undefined;

5757

const stop = onAgentEvent((evt) => {