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

推荐订阅源

P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
B
Blog
月光博客
月光博客
博客园 - 【当耐特】
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
博客园 - Franky
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
B
Blog RSS Feed
H
Help Net Security

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): dedupe subagent startup task · openclaw/open...
steipete · 2026-04-27 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -40,6 +40,7 @@ Docs: https://docs.openclaw.ai

4040

- Cron/Telegram: preserve direct-chat thread IDs and optional account IDs when inferring reminder delivery from Telegram direct-thread session keys. Fixes #44270; carries forward #44325, #44351, #44412, and #72657. Thanks @RunMintOn, @arkyu2077, @0xsline, and @vincentkoc.

4141

- Cron: omit synthetic `delivery.resolved` errors from `--no-deliver` run records while preserving explicit no-deliver target traces for agent-initiated messages. Fixes #72210; carries forward #72219. Thanks @hatemclawbot-collab and @xydigit-sj.

4242

- Cron: classify isolated runs as errors from structured embedded-run execution-denial metadata, with final-output marker fallback for `SYSTEM_RUN_DENIED`, `INVALID_REQUEST`, and approval-binding refusals, so blocked commands no longer appear green in cron history. Fixes #67172; carries forward #67186. Thanks @oc-gh-dr, @hclsys, and @1yihui.

43+

- Subagents: keep the delegated task only in the subagent system prompt and send a short initial kickoff message, avoiding duplicate task tokens while preserving multiline task formatting. Fixes #72019; carries forward #72053. Thanks @Wizongod and @ly85206559.

4344

- Onboarding/GitHub Copilot: add manifest-owned `--github-copilot-token` support for non-interactive setup, including env fallback, tokenRef storage in ref mode, saved-profile reuse, and current Copilot default-model wiring. Refs #50002 and supersedes #50003. Thanks @scottgl9.

4445

- Gateway/install: add a validated `--wrapper`/`OPENCLAW_WRAPPER` service install path that persists executable LaunchAgent/systemd wrappers across forced reinstalls, updates, and doctor repairs instead of falling back to raw node/bun `ProgramArguments`. Fixes #69400. (#72445) Thanks @willtmc.

4546

- Plugins: fail plugin registration when loader-owned acceptance gates reject missing hook names or memory-only capability registration from non-memory plugins, surfacing the issue through plugin status and doctor instead of silently dropping the registration. Fixes #72459. Thanks @1fanwang and @amknight.

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,46 @@

1+

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

2+

import { buildSubagentInitialUserMessage } from "./subagent-initial-user-message.js";

3+

import { buildSubagentSystemPrompt } from "./subagent-system-prompt.js";

4+
5+

describe("buildSubagentInitialUserMessage", () => {

6+

it("does not embed a task string already present in the system prompt (#72019)", () => {

7+

const msg = buildSubagentInitialUserMessage({

8+

childDepth: 1,

9+

maxSpawnDepth: 3,

10+

persistentSession: false,

11+

});

12+
13+

expect(msg).not.toContain("[Subagent Task]:");

14+

expect(msg).toContain("**Your Role**");

15+

expect(msg).toContain("depth 1/3");

16+

});

17+
18+

it("includes the persistent session note when requested", () => {

19+

const msg = buildSubagentInitialUserMessage({

20+

childDepth: 2,

21+

maxSpawnDepth: 4,

22+

persistentSession: true,

23+

});

24+
25+

expect(msg).toContain("persistent and remains available");

26+

});

27+
28+

it("keeps the delegated task single-sourced across system and first user text", () => {

29+

const task = "UNIQUE_SUBAGENT_TASK_TOKEN\n preserve indentation";

30+

const system = buildSubagentSystemPrompt({

31+

childSessionKey: "agent:main:subagent:test",

32+

task,

33+

childDepth: 1,

34+

maxSpawnDepth: 2,

35+

});

36+

const user = buildSubagentInitialUserMessage({

37+

childDepth: 1,

38+

maxSpawnDepth: 2,

39+

persistentSession: false,

40+

});

41+
42+

expect(system).toContain("UNIQUE_SUBAGENT_TASK_TOKEN");

43+

expect(user).not.toContain("UNIQUE_SUBAGENT_TASK_TOKEN");

44+

expect(`${system}\n${user}`.match(/UNIQUE_SUBAGENT_TASK_TOKEN/g)).toHaveLength(1);

45+

});

46+

});

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,26 @@

1+

/**

2+

* First user turn for a native `sessions_spawn` / subagent run.

3+

*

4+

* Keep the full task out of this message: `buildSubagentSystemPrompt` already

5+

* places it under **Your Role**, and repeating it here doubles first-request

6+

* input tokens (#72019).

7+

*/

8+

export function buildSubagentInitialUserMessage(params: {

9+

childDepth: number;

10+

maxSpawnDepth: number;

11+

/** When true, this subagent uses a persistent session for follow-up messages. */

12+

persistentSession: boolean;

13+

}): string {

14+

const lines = [

15+

`[Subagent Context] You are running as a subagent (depth ${params.childDepth}/${params.maxSpawnDepth}). Results auto-announce to your requester; do not busy-poll for status.`,

16+

];

17+

if (params.persistentSession) {

18+

lines.push(

19+

"[Subagent Context] This subagent session is persistent and remains available for thread follow-up messages.",

20+

);

21+

}

22+

lines.push(

23+

"Begin. Your assigned task is in the system prompt under **Your Role**; execute it to completion.",

24+

);

25+

return lines.join("\n\n");

26+

}

Original file line numberDiff line numberDiff line change

@@ -288,6 +288,42 @@ describe("spawnSubagentDirect seam flow", () => {

288288

});

289289

});

290290
291+

it("does not duplicate long subagent task text in the initial user message (#72019)", async () => {

292+

const calls: Array<{ method?: string; params?: unknown }> = [];

293+

hoisted.callGatewayMock.mockImplementation(

294+

async (request: { method?: string; params?: unknown }) => {

295+

calls.push(request);

296+

if (request.method === "agent") {

297+

return { runId: "run-no-dup", status: "accepted", acceptedAt: 1000 };

298+

}

299+

if (request.method?.startsWith("sessions.")) {

300+

return { ok: true };

301+

}

302+

return {};

303+

},

304+

);

305+

installSessionStoreCaptureMock(hoisted.updateSessionStoreMock);

306+
307+

const task = "UNIQUE_LONG_SUBAGENT_TASK_TOKEN\n keep indentation";

308+

const result = await spawnSubagentDirect(

309+

{

310+

task,

311+

},

312+

{

313+

agentSessionKey: "agent:main:main",

314+

agentChannel: "discord",

315+

},

316+

);

317+
318+

expect(result.status).toBe("accepted");

319+

const agentCall = calls.find((call) => call.method === "agent");

320+

const params = agentCall?.params as { message?: string; extraSystemPrompt?: string };

321+

expect(params.message).not.toContain("UNIQUE_LONG_SUBAGENT_TASK_TOKEN");

322+

expect(params.message).not.toContain("[Subagent Task]:");

323+

expect(params.message).toContain("**Your Role**");

324+

expect(params.extraSystemPrompt).toBe("system-prompt");

325+

});

326+
291327

it("returns an error when the initial child session patch is rejected", async () => {

292328

hoisted.callGatewayMock.mockImplementation(

293329

async (request: { method?: string; params?: unknown }) => {

Original file line numberDiff line numberDiff line change

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

2626

} from "./subagent-attachments.js";

2727

import { resolveSubagentCapabilities } from "./subagent-capabilities.js";

2828

import { getSubagentDepthFromSessionStore } from "./subagent-depth.js";

29+

import { buildSubagentInitialUserMessage } from "./subagent-initial-user-message.js";

2930

import { countActiveRunsForSession, registerSubagentRun } from "./subagent-registry.js";

3031

import { resolveSubagentSpawnAcceptedNote } from "./subagent-spawn-accepted-note.js";

3132

export {

@@ -974,15 +975,11 @@ export async function spawnSubagentDirect(

974975

? "lightweight"

975976

: undefined;

976977
977-

const childTaskMessage = [

978-

`[Subagent Context] You are running as a subagent (depth ${childDepth}/${maxSpawnDepth}). Results auto-announce to your requester; do not busy-poll for status.`,

979-

spawnMode === "session"

980-

? "[Subagent Context] This subagent session is persistent and remains available for thread follow-up messages."

981-

: undefined,

982-

`[Subagent Task]: ${task}`,

983-

]

984-

.filter((line): line is string => Boolean(line))

985-

.join("\n\n");

978+

const childTaskMessage = buildSubagentInitialUserMessage({

979+

childDepth,

980+

maxSpawnDepth,

981+

persistentSession: spawnMode === "session",

982+

});

986983
987984

const toolSpawnMetadata = mapToolContextToSpawnedRunMetadata({

988985

agentGroupId: ctx.agentGroupId,

Original file line numberDiff line numberDiff line change

@@ -16,10 +16,9 @@ export function buildSubagentSystemPrompt(params: {

1616

/** Config value: max allowed spawn depth. */

1717

maxSpawnDepth?: number;

1818

}) {

19-

const taskText =

20-

typeof params.task === "string" && params.task.trim()

21-

? params.task.replace(/\s+/g, " ").trim()

22-

: "{{TASK_DESCRIPTION}}";

19+

const taskRaw = typeof params.task === "string" ? params.task : "";

20+

const taskBody = taskRaw.trim();

21+

const hasTask = taskBody !== "";

2322

const childDepth = typeof params.childDepth === "number" ? params.childDepth : 1;

2423

const maxSpawnDepth =

2524

typeof params.maxSpawnDepth === "number"

@@ -31,17 +30,33 @@ export function buildSubagentSystemPrompt(params: {

3130

);

3231

const canSpawn = childDepth < maxSpawnDepth;

3332

const parentLabel = childDepth >= 2 ? "parent orchestrator" : "main agent";

33+

const roleLines =

34+

hasTask && taskBody.includes("\n")

35+

? [

36+

"## Your Role",

37+

"- You were created to handle the following task (verbatim; line breaks preserved):",

38+

"",

39+

"```",

40+

taskBody,

41+

"```",

42+

"- Complete this task. That's your entire purpose.",

43+

`- You are NOT the ${parentLabel}. Don't try to be.`,

44+

"",

45+

]

46+

: [

47+

"## Your Role",

48+

`- You were created to handle: ${hasTask ? taskBody : "{{TASK_DESCRIPTION}}"}`,

49+

"- Complete this task. That's your entire purpose.",

50+

`- You are NOT the ${parentLabel}. Don't try to be.`,

51+

"",

52+

];

3453
3554

const lines = [

3655

"# Subagent Context",

3756

"",

3857

`You are a **subagent** spawned by the ${parentLabel} for a specific task.`,

3958

"",

40-

"## Your Role",

41-

`- You were created to handle: ${taskText}`,

42-

"- Complete this task. That's your entire purpose.",

43-

`- You are NOT the ${parentLabel}. Don't try to be.`,

44-

"",

59+

...roleLines,

4560

"## Rules",

4661

"1. **Stay focused** - Do your assigned task, nothing else",

4762

`2. **Complete the task** - Your final message will be automatically reported to the ${parentLabel}`,

Original file line numberDiff line numberDiff line change

@@ -988,6 +988,22 @@ describe("buildSubagentSystemPrompt", () => {

988988

expect(prompt).toContain("instead of full-file `cat`");

989989

});

990990
991+

it("keeps multiline and indented task text verbatim in the system prompt (#72019)", () => {

992+

const task = "line one\n line two\n line three";

993+

const prompt = buildSubagentSystemPrompt({

994+

childSessionKey: "agent:main:subagent:abc",

995+

task,

996+

childDepth: 1,

997+

maxSpawnDepth: 1,

998+

});

999+
1000+

expect(prompt).toContain("```");

1001+

expect(prompt).toContain("line one");

1002+

expect(prompt).toContain(" line two");

1003+

expect(prompt).toContain(" line three");

1004+

expect(prompt).not.toContain("line one line two");

1005+

});

1006+
9911007

it("omits ACP spawning guidance when ACP is disabled", () => {

9921008

const prompt = buildSubagentSystemPrompt({

9931009

childSessionKey: "agent:main:subagent:abc",