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

推荐订阅源

MyScale Blog
MyScale Blog
博客园 - 司徒正美
A
About on SuperTechFans
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
F
Fortinet All Blogs
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
H
Help Net Security
量子位
IT之家
IT之家

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): bind subagent threads in core (#88416) ...
steipete · 2026-05-31 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -141,7 +141,9 @@ observation-only.

141141
142142

**Subagents**

143143
144-

- `subagent_spawning` / `subagent_delivery_target` / `subagent_spawned` / `subagent_ended` - coordinate subagent routing and completion delivery

144+

- `subagent_spawned` / `subagent_ended` - observe subagent launch and completion.

145+

- `subagent_delivery_target` - compatibility hook for completion delivery when no core session binding can project a route.

146+

- `subagent_spawning` - deprecated compatibility hook. Core now prepares `thread: true` subagent bindings through channel session-binding adapters before `subagent_spawned` fires.

145147

- `subagent_spawned` includes `resolvedModel` and `resolvedProvider` when OpenClaw has resolved the child session's native model before launch.

146148
147149

**Lifecycle**

@@ -464,6 +466,10 @@ before the next major release:

464466

- **`before_agent_start`** remains for compatibility. New plugins should use

465467

`before_model_resolve` and `before_prompt_build` instead of the combined

466468

phase.

469+

- **`subagent_spawning`** remains for compatibility with older plugins, but

470+

new plugins should not return thread routing from it. Core prepares

471+

`thread: true` subagent bindings through channel session-binding adapters

472+

before `subagent_spawned` fires.

467473

- **`deactivate`** remains as a deprecated cleanup compatibility alias until

468474

after 2026-08-16. New plugins should use `gateway_stop`.

469475

- **`onResolution` in `before_tool_call`** now uses the typed

Original file line numberDiff line numberDiff line change

@@ -792,6 +792,35 @@ canonical replacement.

792792
793793

</Accordion>

794794
795+

<Accordion title="subagent_spawning hook → core thread binding">

796+

**Old**: `api.on("subagent_spawning", handler)` returning

797+

`threadBindingReady` or `deliveryOrigin`.

798+
799+

**New**: let core prepare `thread: true` subagent bindings through the

800+

channel session-binding adapter. Use `api.on("subagent_spawned", handler)`

801+

only for post-launch observation.

802+
803+

```typescript

804+

// Before

805+

api.on("subagent_spawning", async () => ({

806+

status: "ok",

807+

threadBindingReady: true,

808+

deliveryOrigin: { channel: "discord", to: "channel:123", threadId: "456" },

809+

}));

810+
811+

// After

812+

api.on("subagent_spawned", async (event) => {

813+

await observeSubagentLaunch(event);

814+

});

815+

```

816+
817+

`subagent_spawning`, `PluginHookSubagentSpawningEvent`,

818+

`PluginHookSubagentSpawningResult`, and

819+

`SubagentLifecycleHookRunner.runSubagentSpawning(...)` remain only as

820+

deprecated compatibility surfaces while external plugins migrate.

821+
822+

</Accordion>

823+
795824

<Accordion title="Provider discovery types → provider catalog types">

796825

Four discovery type aliases are now thin wrappers over the

797826

catalog-era types:

Original file line numberDiff line numberDiff line change

@@ -291,14 +291,12 @@ same sub-agent session.

291291
292292

### Thread supporting channels

293293
294-

**Discord** is currently the only supported channel. It supports

295-

persistent thread-bound subagent sessions (`sessions_spawn` with

296-

`thread: true`), manual thread controls (`/focus`, `/unfocus`, `/agents`,

297-

`/session idle`, `/session max-age`), and adapter keys

298-

`channels.discord.threadBindings.enabled`,

299-

`channels.discord.threadBindings.idleHours`,

300-

`channels.discord.threadBindings.maxAgeHours`, and

301-

`channels.discord.threadBindings.spawnSessions`.

294+

Any channel with a session-binding adapter can support persistent

295+

thread-bound subagent sessions (`sessions_spawn` with `thread: true`).

296+

Bundled adapters currently include Discord threads, Matrix threads,

297+

Telegram forum topics, and current-conversation bindings for Feishu.

298+

Use the per-channel `threadBindings` config keys for enablement,

299+

timeouts, and `spawnSessions`.

302300
303301

### Quick flow

304302
Original file line numberDiff line numberDiff line change

@@ -4,6 +4,7 @@ import {

44

} from "openclaw/plugin-sdk/channel-test-helpers";

55

import type { OpenClawPluginApi } from "openclaw/plugin-sdk/core";

66

import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

7+

import { handleDiscordSubagentSpawning } from "./subagent-hooks.js";

78
89

type ThreadBindingRecord = {

910

accountId: string;

@@ -85,7 +86,10 @@ function registerHandlersForTest(

8586

) {

8687

return registerHookHandlersForTest<OpenClawPluginApi>({

8788

config,

88-

register: registerDiscordSubagentHooks,

89+

register: (api) => {

90+

registerDiscordSubagentHooks(api);

91+

api.on("subagent_spawning", (event) => handleDiscordSubagentSpawning(api, event));

92+

},

8993

});

9094

}

9195
Original file line numberDiff line numberDiff line change

@@ -12,10 +12,6 @@ function loadDiscordSubagentHooksModule() {

1212

// Subagent hooks live behind a dedicated barrel so the bundled entry can

1313

// register one stable hook wiring path while keeping the handler module lazy.

1414

export function registerDiscordSubagentHooks(api: OpenClawPluginApi): void {

15-

api.on("subagent_spawning", async (event) => {

16-

const { handleDiscordSubagentSpawning } = await loadDiscordSubagentHooksModule();

17-

return await handleDiscordSubagentSpawning(api, event);

18-

});

1915

api.on("subagent_ended", async (event) => {

2016

const { handleDiscordSubagentEnded } = await loadDiscordSubagentHooksModule();

2117

handleDiscordSubagentEnded(event);

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ import {

55

import { beforeEach, describe, expect, it } from "vitest";

66

import type { ClawdbotConfig, OpenClawPluginApi } from "../runtime-api.js";

77

import { registerFeishuSubagentHooks } from "../subagent-hooks-api.js";

8+

import { handleFeishuSubagentSpawning } from "./subagent-hooks.js";

89

import {

910

createFeishuThreadBindingManager,

1011

testing as threadBindingTesting,

@@ -18,7 +19,10 @@ const baseConfig: ClawdbotConfig = {

1819

function registerHandlersForTest(config: Record<string, unknown> = baseConfig) {

1920

return registerHookHandlersForTest<OpenClawPluginApi>({

2021

config,

21-

register: registerFeishuSubagentHooks,

22+

register: (api) => {

23+

registerFeishuSubagentHooks(api);

24+

api.on("subagent_spawning", (event, ctx) => handleFeishuSubagentSpawning(event, ctx));

25+

},

2226

});

2327

}

2428
Original file line numberDiff line numberDiff line change

@@ -10,10 +10,6 @@ function loadFeishuSubagentHooksModule() {

1010

}

1111
1212

export function registerFeishuSubagentHooks(api: OpenClawPluginApi): void {

13-

api.on("subagent_spawning", async (event, ctx) => {

14-

const { handleFeishuSubagentSpawning } = await loadFeishuSubagentHooksModule();

15-

return await handleFeishuSubagentSpawning(event, ctx);

16-

});

1713

api.on("subagent_delivery_target", async (event) => {

1814

const { handleFeishuSubagentDeliveryTarget } = await loadFeishuSubagentHooksModule();

1915

return handleFeishuSubagentDeliveryTarget(event);

Original file line numberDiff line numberDiff line change

@@ -135,17 +135,14 @@ describe("matrix plugin", () => {

135135
136136

expect(runtimeMocks.ensureMatrixCryptoRuntime).not.toHaveBeenCalled();

137137

expect(on.mock.calls.map(([hookName]) => hookName)).toEqual([

138-

"subagent_spawning",

139138

"subagent_ended",

140139

"subagent_delivery_target",

141140

]);

142141

const handlers = Object.fromEntries(on.mock.calls);

143-

await expect(handlers.subagent_spawning({ id: "spawn" })).resolves.toBe("spawned");

144142

await expect(handlers.subagent_ended({ id: "ended" })).resolves.toBeUndefined();

145143

await expect(handlers.subagent_delivery_target({ id: "target" })).resolves.toBe(

146144

"delivery-target",

147145

);

148-

expect(runtimeMocks.handleMatrixSubagentSpawning).toHaveBeenCalledWith(api, { id: "spawn" });

149146

expect(runtimeMocks.handleMatrixSubagentEnded).toHaveBeenCalledWith({ id: "ended" });

150147

expect(runtimeMocks.handleMatrixSubagentDeliveryTarget).toHaveBeenCalledWith({ id: "target" });

151148

});

Original file line numberDiff line numberDiff line change

@@ -55,7 +55,10 @@ const fakeApi = { config: {} } as never;

5555

function registerHandlersForTest(config: Record<string, unknown> = {}) {

5656

return registerHookHandlersForTest<MatrixEntryPluginApi>({

5757

config,

58-

register: registerMatrixSubagentHooks,

58+

register: (api) => {

59+

registerMatrixSubagentHooks(api);

60+

api.on("subagent_spawning", (event) => handleMatrixSubagentSpawning(api, event));

61+

},

5962

});

6063

}

6164
Original file line numberDiff line numberDiff line change

@@ -10,10 +10,6 @@ function loadMatrixSubagentHooksModule() {

1010

}

1111
1212

export function registerMatrixSubagentHooks(api: OpenClawPluginApi): void {

13-

api.on("subagent_spawning", async (event) => {

14-

const { handleMatrixSubagentSpawning } = await loadMatrixSubagentHooksModule();

15-

return await handleMatrixSubagentSpawning(api, event);

16-

});

1713

api.on("subagent_ended", async (event) => {

1814

const { handleMatrixSubagentEnded } = await loadMatrixSubagentHooksModule();

1915

await handleMatrixSubagentEnded(event);