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

推荐订阅源

Vercel News
Vercel News
博客园 - 【当耐特】
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
G
Google Developers Blog
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
J
Java Code Geeks
U
Unit 42
云风的 BLOG
云风的 BLOG
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
V
V2EX
T
Tailwind CSS 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(agents): add usage guidance to sessions_spawn tool de...
zenglingbiao · 2026-06-14 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -45,6 +45,13 @@ export function describeSessionsSpawnTool(options?: {

4545

options?.acpAvailable === false

4646

? 'Spawn clean child session; default `runtime="subagent"`.'

4747

: 'Spawn clean child session; default `runtime="subagent"`; set `runtime="acp"` explicitly for ACP.';

48+

const sessionCompletionGuidance =

49+

options?.acpAvailable === false

50+

? "After spawning, do non-overlapping work; run-mode results return, session-mode output stays in thread."

51+

: 'After spawning, do non-overlapping work; run-mode results return, session-mode output stays in thread unless ACP uses `streamTo="parent"`.';

52+

const completionGuidance = options?.threadAvailable

53+

? sessionCompletionGuidance

54+

: "After spawning, do non-overlapping work while run-mode results return.";

4855

const baseDescription = [

4956

runtimeDescription,

5057

options?.threadAvailable

@@ -54,6 +61,9 @@ export function describeSessionsSpawnTool(options?: {

5461

"Native subagents get task in first visible `[Subagent Task]` message.",

5562

'Native only: `context="fork"` only when child needs current transcript; else omit or `isolated`.',

5663

"Use for fresh child-session work.",

64+

"Delegate sidecar/parallel tasks: batch file reads, multi-step searches, data collection.",

65+

"Avoid delegating quick lookups or single-file reads unless policy prefers delegation.",

66+

completionGuidance,

5767

];

5868

if (options?.acpAvailable === false) {

5969

return baseDescription.join(" ");

Original file line numberDiff line numberDiff line change

@@ -132,7 +132,19 @@ describe("sessions_spawn tool", () => {

132132

it("advertises ACP runtime affordances when an ACP backend is loaded", () => {

133133

registerAcpBackendForTest();

134134
135-

const tool = createSessionsSpawnTool();

135+

const tool = createSessionsSpawnTool({

136+

agentChannel: "discord",

137+

agentAccountId: "default",

138+

config: {

139+

channels: {

140+

discord: {

141+

threadBindings: {

142+

spawnSessions: true,

143+

},

144+

},

145+

},

146+

},

147+

});

136148

const schema = tool.parameters as {

137149

properties?: {

138150

runtime?: { enum?: string[] };

@@ -143,6 +155,7 @@ describe("sessions_spawn tool", () => {

143155
144156

expect(tool.displaySummary).toBe("Spawn subagent or ACP session.");

145157

expect(tool.description).toContain('runtime="acp"');

158+

expect(tool.description).toContain('unless ACP uses `streamTo="parent"`');

146159

expect(schema.properties?.runtime?.enum).toEqual(["subagent", "acp"]);

147160

const resumeSessionId = requireSchemaProperty(schema.properties, "resumeSessionId");

148161

const streamTo = requireSchemaProperty(schema.properties, "streamTo");

@@ -259,6 +272,7 @@ describe("sessions_spawn tool", () => {

259272

expect(schema.properties?.thread).toBeUndefined();

260273

expect(schema.properties?.mode?.enum).toEqual(["run"]);

261274

expect(tool.description).not.toContain("thread-bound");

275+

expect(tool.description).not.toContain("session-mode output stays in thread");

262276

});

263277
264278

it("shows thread-bound spawn fields when current channel allows spawnSessions", () => {

Original file line numberDiff line numberDiff line change

@@ -1095,7 +1095,7 @@

10951095

},

10961096

{

10971097

"deferLoading": true,

1098-

"description": "Spawn clean child session; default `runtime=\"subagent\"`. `mode=\"run\"` one-shot; `mode=\"session\"` persistent/thread-bound, only when requester channel supports thread bindings. Subagents inherit parent workspace. Native subagents get task in first visible `[Subagent Task]` message. Native only: `context=\"fork\"` only when child needs current transcript; else omit or `isolated`. Use for fresh child-session work.",

1098+

"description": "Spawn clean child session; default `runtime=\"subagent\"`. `mode=\"run\"` one-shot; `mode=\"session\"` persistent/thread-bound, only when requester channel supports thread bindings. Subagents inherit parent workspace. Native subagents get task in first visible `[Subagent Task]` message. Native only: `context=\"fork\"` only when child needs current transcript; else omit or `isolated`. Use for fresh child-session work. Delegate sidecar/parallel tasks: batch file reads, multi-step searches, data collection. Avoid delegating quick lookups or single-file reads unless policy prefers delegation. After spawning, do non-overlapping work; run-mode results return, session-mode output stays in thread.",

10991099

"inputSchema": {

11001100

"properties": {

11011101

"agentId": {

Original file line numberDiff line numberDiff line change

@@ -1131,7 +1131,7 @@

11311131

},

11321132

{

11331133

"deferLoading": true,

1134-

"description": "Spawn clean child session; default `runtime=\"subagent\"`. `mode=\"run\"` one-shot background work. Subagents inherit parent workspace. Native subagents get task in first visible `[Subagent Task]` message. Native only: `context=\"fork\"` only when child needs current transcript; else omit or `isolated`. Use for fresh child-session work.",

1134+

"description": "Spawn clean child session; default `runtime=\"subagent\"`. `mode=\"run\"` one-shot background work. Subagents inherit parent workspace. Native subagents get task in first visible `[Subagent Task]` message. Native only: `context=\"fork\"` only when child needs current transcript; else omit or `isolated`. Use for fresh child-session work. Delegate sidecar/parallel tasks: batch file reads, multi-step searches, data collection. Avoid delegating quick lookups or single-file reads unless policy prefers delegation. After spawning, do non-overlapping work while run-mode results return.",

11351135

"inputSchema": {

11361136

"properties": {

11371137

"agentId": {

Original file line numberDiff line numberDiff line change

@@ -1095,7 +1095,7 @@

10951095

},

10961096

{

10971097

"deferLoading": true,

1098-

"description": "Spawn clean child session; default `runtime=\"subagent\"`. `mode=\"run\"` one-shot background work. Subagents inherit parent workspace. Native subagents get task in first visible `[Subagent Task]` message. Native only: `context=\"fork\"` only when child needs current transcript; else omit or `isolated`. Use for fresh child-session work.",

1098+

"description": "Spawn clean child session; default `runtime=\"subagent\"`. `mode=\"run\"` one-shot background work. Subagents inherit parent workspace. Native subagents get task in first visible `[Subagent Task]` message. Native only: `context=\"fork\"` only when child needs current transcript; else omit or `isolated`. Use for fresh child-session work. Delegate sidecar/parallel tasks: batch file reads, multi-step searches, data collection. Avoid delegating quick lookups or single-file reads unless policy prefers delegation. After spawning, do non-overlapping work while run-mode results return.",

10991099

"inputSchema": {

11001100

"properties": {

11011101

"agentId": {

Original file line numberDiff line numberDiff line change

@@ -223,8 +223,8 @@ This is the deterministic model-bound layer stack OpenClaw can snapshot for the

223223

"roughTokens": 0

224224

},

225225

"dynamicToolsJson": {

226-

"chars": 44966,

227-

"roughTokens": 11242

226+

"chars": 45244,

227+

"roughTokens": 11311

228228

},

229229

"openClawDeveloperInstructions": {

230230

"chars": 2988,

@@ -235,8 +235,8 @@ This is the deterministic model-bound layer stack OpenClaw can snapshot for the

235235

"roughTokens": 6925

236236

},

237237

"totalWithDynamicToolsJson": {

238-

"chars": 72668,

239-

"roughTokens": 18167

238+

"chars": 72946,

239+

"roughTokens": 18237

240240

},

241241

"userInputText": {

242242

"chars": 1629,

Original file line numberDiff line numberDiff line change

@@ -223,8 +223,8 @@ This is the deterministic model-bound layer stack OpenClaw can snapshot for the

223223

"roughTokens": 0

224224

},

225225

"dynamicToolsJson": {

226-

"chars": 44687,

227-

"roughTokens": 11172

226+

"chars": 44933,

227+

"roughTokens": 11234

228228

},

229229

"openClawDeveloperInstructions": {

230230

"chars": 1964,

@@ -235,8 +235,8 @@ This is the deterministic model-bound layer stack OpenClaw can snapshot for the

235235

"roughTokens": 6544

236236

},

237237

"totalWithDynamicToolsJson": {

238-

"chars": 70865,

239-

"roughTokens": 17717

238+

"chars": 71111,

239+

"roughTokens": 17778

240240

},

241241

"userInputText": {

242242

"chars": 1129,

Original file line numberDiff line numberDiff line change

@@ -224,8 +224,8 @@ This is the deterministic model-bound layer stack OpenClaw can snapshot for the

224224

"roughTokens": 0

225225

},

226226

"dynamicToolsJson": {

227-

"chars": 45782,

228-

"roughTokens": 11446

227+

"chars": 46028,

228+

"roughTokens": 11507

229229

},

230230

"openClawDeveloperInstructions": {

231231

"chars": 1983,

@@ -236,8 +236,8 @@ This is the deterministic model-bound layer stack OpenClaw can snapshot for the

236236

"roughTokens": 6780

237237

},

238238

"totalWithDynamicToolsJson": {

239-

"chars": 72903,

240-

"roughTokens": 18226

239+

"chars": 73149,

240+

"roughTokens": 18288

241241

},

242242

"userInputText": {

243243

"chars": 1367,