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

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享

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
test: clear subagents focus broad matchers · openclaw/ope...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -160,6 +160,35 @@ function createSessionBindingCapabilities() {

160160

};

161161

}

162162163+

type FocusTargetSessionParams = {

164+

requesterKey?: string;

165+

};

166+167+

type SessionBindingBindInput = {

168+

placement: "current" | "child";

169+

targetKind: "session" | "agent";

170+

targetSessionKey: string;

171+

conversation: {

172+

channel: string;

173+

accountId: string;

174+

conversationId: string;

175+

parentConversationId?: string;

176+

};

177+

metadata?: Record<string, unknown>;

178+

};

179+180+

function firstFocusTargetSessionParams(): FocusTargetSessionParams {

181+

const firstCall = hoisted.resolveFocusTargetSessionMock.mock.calls[0];

182+

expect(firstCall).toBeDefined();

183+

return firstCall[0] as FocusTargetSessionParams;

184+

}

185+186+

function firstSessionBindingBindInput(): SessionBindingBindInput {

187+

const firstCall = hoisted.sessionBindingBindMock.mock.calls[0];

188+

expect(firstCall).toBeDefined();

189+

return firstCall[0] as SessionBindingBindInput;

190+

}

191+163192

function buildCommandParams(params?: {

164193

cfg?: OpenClawConfig;

165194

chatType?: string;

@@ -289,22 +318,13 @@ describe("focus actions", () => {

289318290319

expect(result.reply?.text).toContain("bound this conversation");

291320

expect(result.reply?.text).toContain("(acp)");

292-

expect(hoisted.resolveFocusTargetSessionMock).toHaveBeenCalledWith(

293-

expect.objectContaining({

294-

requesterKey: "agent:main:main",

295-

}),

296-

);

297-

expect(hoisted.sessionBindingBindMock).toHaveBeenCalledWith(

298-

expect.objectContaining({

299-

placement: "current",

300-

targetKind: "session",

301-

targetSessionKey: "agent:codex-acp:session-1",

302-

conversation: expect.objectContaining({

303-

channel: THREAD_CHANNEL,

304-

conversationId: "thread-1",

305-

}),

306-

}),

307-

);

321+

expect(firstFocusTargetSessionParams().requesterKey).toBe("agent:main:main");

322+

const bindInput = firstSessionBindingBindInput();

323+

expect(bindInput.placement).toBe("current");

324+

expect(bindInput.targetKind).toBe("session");

325+

expect(bindInput.targetSessionKey).toBe("agent:codex-acp:session-1");

326+

expect(bindInput.conversation.channel).toBe(THREAD_CHANNEL);

327+

expect(bindInput.conversation.conversationId).toBe("thread-1");

308328

});

309329310330

it("rejects /focus from a leaf subagent", async () => {

@@ -342,15 +362,10 @@ describe("focus actions", () => {

342362

const result = await handleSubagentsFocusAction(buildFocusContext());

343363344364

expect(result.reply?.text).toContain("bound this conversation");

345-

expect(hoisted.sessionBindingBindMock).toHaveBeenCalledWith(

346-

expect.objectContaining({

347-

placement: "current",

348-

conversation: expect.objectContaining({

349-

channel: TOPIC_CHANNEL,

350-

conversationId: "-100200300:topic:77",

351-

}),

352-

}),

353-

);

365+

const bindInput = firstSessionBindingBindInput();

366+

expect(bindInput.placement).toBe("current");

367+

expect(bindInput.conversation.channel).toBe(TOPIC_CHANNEL);

368+

expect(bindInput.conversation.conversationId).toBe("-100200300:topic:77");

354369

});

355370356371

it("creates a room-chat child thread from a top-level room when spawning is enabled", async () => {

@@ -377,15 +392,10 @@ describe("focus actions", () => {

377392

);

378393379394

expect(result.reply?.text).toContain("created child conversation thread-created and bound it");

380-

expect(hoisted.sessionBindingBindMock).toHaveBeenCalledWith(

381-

expect.objectContaining({

382-

placement: "child",

383-

conversation: expect.objectContaining({

384-

channel: ROOM_CHANNEL,

385-

conversationId: "!room:example.org",

386-

}),

387-

}),

388-

);

395+

const bindInput = firstSessionBindingBindInput();

396+

expect(bindInput.placement).toBe("child");

397+

expect(bindInput.conversation.channel).toBe(ROOM_CHANNEL);

398+

expect(bindInput.conversation.conversationId).toBe("!room:example.org");

389399

});

390400391401

it("treats a room thread turn as the current thread", async () => {

@@ -400,16 +410,11 @@ describe("focus actions", () => {

400410

const result = await handleSubagentsFocusAction(buildFocusContext());

401411402412

expect(result.reply?.text).toContain("bound this conversation");

403-

expect(hoisted.sessionBindingBindMock).toHaveBeenCalledWith(

404-

expect.objectContaining({

405-

placement: "current",

406-

conversation: expect.objectContaining({

407-

channel: ROOM_CHANNEL,

408-

conversationId: "$root",

409-

parentConversationId: "!room:example.org",

410-

}),

411-

}),

412-

);

413+

const bindInput = firstSessionBindingBindInput();

414+

expect(bindInput.placement).toBe("current");

415+

expect(bindInput.conversation.channel).toBe(ROOM_CHANNEL);

416+

expect(bindInput.conversation.conversationId).toBe("$root");

417+

expect(bindInput.conversation.parentConversationId).toBe("!room:example.org");

413418

});

414419415420

it("rejects room top-level thread creation when spawnSessions is disabled", async () => {

@@ -460,27 +465,11 @@ describe("focus actions", () => {

460465461466

await handleSubagentsFocusAction(buildFocusContext());

462467463-

expect(hoisted.sessionBindingBindMock).toHaveBeenCalledWith(

464-

expect.objectContaining({

465-

metadata: expect.objectContaining({

466-

introText: expect.stringContaining("agent session id: codex-123"),

467-

}),

468-

}),

469-

);

470-

expect(hoisted.sessionBindingBindMock).toHaveBeenCalledWith(

471-

expect.objectContaining({

472-

metadata: expect.objectContaining({

473-

introText: expect.stringContaining("acpx session id: acpx-456"),

474-

}),

475-

}),

476-

);

477-

expect(hoisted.sessionBindingBindMock).toHaveBeenCalledWith(

478-

expect.objectContaining({

479-

metadata: expect.objectContaining({

480-

introText: expect.stringContaining("codex resume codex-123"),

481-

}),

482-

}),

483-

);

468+

const introText = firstSessionBindingBindInput().metadata?.introText;

469+

expect(typeof introText).toBe("string");

470+

expect(introText).toContain("agent session id: codex-123");

471+

expect(introText).toContain("acpx session id: acpx-456");

472+

expect(introText).toContain("codex resume codex-123");

484473

});

485474486475

it("rejects rebinding when another user owns the thread", async () => {