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

推荐订阅源

小众软件
小众软件
A
About on SuperTechFans
博客园 - Franky
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
云风的 BLOG
云风的 BLOG
B
Blog
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
Martin Fowler
Martin Fowler
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 叶小钗
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
Last Week in AI
Last Week in AI
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
爱范儿
爱范儿
V
V2EX
G
Google Developers 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: attribute spawned task runs to child agent · opencla...
Alix-007 · 2026-06-15 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -147,6 +147,7 @@ export type RegisterSubagentRunParams = {

147147

requesterDisplayKey: string;

148148

task: string;

149149

taskName?: string;

150+

agentId?: string;

150151

cleanup: "delete" | "keep";

151152

label?: string;

152153

model?: string;

@@ -690,6 +691,7 @@ export function createSubagentRunManager(params: {

690691

runId,

691692

label: registerParams.label,

692693

task: registerParams.task,

694+

agentId: registerParams.agentId,

693695

deliveryStatus:

694696

registerParams.expectsCompletionMessage === false ? "not_applicable" : "pending",

695697

startedAt: now,

Original file line numberDiff line numberDiff line change

@@ -187,6 +187,45 @@ describe("spawnSubagentDirect seam flow", () => {

187187

expect(result.childSessionKey).toMatch(/^agent:task-manager:subagent:/);

188188

});

189189
190+

it("registers the target agent id for cross-agent task attribution", async () => {

191+

hoisted.configOverride = createConfigOverride({

192+

agents: {

193+

defaults: {

194+

workspace: os.tmpdir(),

195+

},

196+

list: [

197+

{

198+

id: "main",

199+

workspace: "/tmp/workspace-main",

200+

subagents: {

201+

allowAgents: ["worker"],

202+

},

203+

},

204+

{

205+

id: "worker",

206+

workspace: "/tmp/workspace-worker",

207+

},

208+

],

209+

},

210+

});

211+
212+

const result = await spawnSubagentDirect(

213+

{

214+

task: "attribute worker run",

215+

agentId: "worker",

216+

},

217+

{

218+

agentSessionKey: "agent:main:main",

219+

},

220+

);

221+
222+

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

223+

expect(result.childSessionKey).toMatch(/^agent:worker:subagent:/);

224+

const registerInput = firstRegisteredSubagentRun();

225+

expect(registerInput.childSessionKey).toBe(result.childSessionKey);

226+

expect(registerInput.agentId).toBe("worker");

227+

});

228+
190229

it("accepts a spawned run across session patching, runtime-model persistence, registry registration, and lifecycle emission", async () => {

191230

const operations: string[] = [];

192231

let persistedStore: Record<string, Record<string, unknown>> | undefined;

Original file line numberDiff line numberDiff line change

@@ -1670,6 +1670,7 @@ export async function spawnSubagentDirect(

16701670

requesterDisplayKey: ownership.completionRequesterDisplayKey,

16711671

task,

16721672

taskName,

1673+

agentId: targetAgentId,

16731674

cleanup,

16741675

label: label || undefined,

16751676

model: resolvedModel,

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,11 @@

22

import { statSync } from "node:fs";

33

import path from "node:path";

44

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

5-

import { executeSqliteQuerySync, getNodeSqliteKysely } from "../infra/kysely-sync.js";

5+

import {

6+

executeSqliteQuerySync,

7+

executeSqliteQueryTakeFirstSync,

8+

getNodeSqliteKysely,

9+

} from "../infra/kysely-sync.js";

610

import type { DB as OpenClawStateKyselyDatabase } from "../state/openclaw-state-db.generated.js";

711

import {

812

closeOpenClawStateDatabase,

@@ -518,6 +522,46 @@ describe("task-registry store runtime", () => {

518522

});

519523

});

520524
525+

it("persists inferred child-session agent ids in sqlite task rows", async () => {

526+

await withOpenClawTestState(

527+

{ layout: "state-only", prefix: "openclaw-task-agent-id-" },

528+

async () => {

529+

const created = createTaskRecord({

530+

runtime: "subagent",

531+

ownerKey: "agent:main:main",

532+

scopeKind: "session",

533+

childSessionKey: "agent:worker:subagent:child",

534+

runId: "run-worker-subagent-sqlite",

535+

task: "Inspect worker state",

536+

status: "running",

537+

deliveryStatus: "pending",

538+

});

539+
540+

const database = openOpenClawStateDatabase();

541+

const db = getNodeSqliteKysely<TaskRegistryTestDatabase>(database.db);

542+

const row = executeSqliteQueryTakeFirstSync(

543+

database.db,

544+

db

545+

.selectFrom("task_runs")

546+

.select(["agent_id", "child_session_key", "owner_key"])

547+

.where("task_id", "=", created.taskId),

548+

);

549+
550+

expect(row).toEqual({

551+

agent_id: "worker",

552+

child_session_key: "agent:worker:subagent:child",

553+

owner_key: "agent:main:main",

554+

});

555+
556+

resetTaskRegistryForTests({ persist: false });

557+

expect(findTaskByRunId("run-worker-subagent-sqlite")).toMatchObject({

558+

taskId: created.taskId,

559+

agentId: "worker",

560+

});

561+

},

562+

);

563+

});

564+
521565

it("persists requester origin atomically when creating sqlite tasks", async () => {

522566

await withOpenClawTestState(

523567

{ layout: "state-only", prefix: "openclaw-task-create-origin-" },

Original file line numberDiff line numberDiff line change

@@ -2092,6 +2092,28 @@ describe("task-registry", () => {

20922092

});

20932093

});

20942094
2095+

it("uses the child session agent for cross-agent background task attribution", async () => {

2096+

await withTaskRegistryTempDir(async (root) => {

2097+

process.env.OPENCLAW_STATE_DIR = root;

2098+

resetTaskRegistryMemoryForTest({ persist: false });

2099+
2100+

const created = createTaskRecord({

2101+

runtime: "subagent",

2102+

ownerKey: "agent:main:main",

2103+

scopeKind: "session",

2104+

childSessionKey: "agent:worker:subagent:child",

2105+

runId: "run-worker-subagent",

2106+

task: "Inspect worker state",

2107+

status: "running",

2108+

deliveryStatus: "pending",

2109+

});

2110+
2111+

expect(created.agentId).toBe("worker");

2112+

expect(listTasksForAgentId("worker").map((task) => task.taskId)).toEqual([created.taskId]);

2113+

expect(listTasksForAgentId("main")).toEqual([]);

2114+

});

2115+

});

2116+
20952117

it("projects inspection-time orphaned tasks as lost without mutating the registry", async () => {

20962118

await withTaskRegistryTempDir(async () => {

20972119

resetTaskRegistryMemoryForTest();

Original file line numberDiff line numberDiff line change

@@ -929,11 +929,13 @@ function mergeExistingTaskForCreate(

929929
930930

function resolveTaskAgentId(params: {

931931

explicitAgentId?: string;

932+

childSessionKey?: string;

932933

ownerKey: string;

933934

requesterSessionKey: string;

934935

}): string | undefined {

935936

return (

936937

normalizeOptionalString(params.explicitAgentId) ??

938+

parseAgentSessionKey(params.childSessionKey)?.agentId ??

937939

parseAgentSessionKey(params.ownerKey)?.agentId ??

938940

parseAgentSessionKey(params.requesterSessionKey)?.agentId

939941

);

@@ -1713,6 +1715,7 @@ export function createTaskRecord(params: {

17131715

});

17141716

const agentId = resolveTaskAgentId({

17151717

explicitAgentId: params.agentId,

1718+

childSessionKey: params.childSessionKey,

17161719

ownerKey,

17171720

requesterSessionKey,

17181721

});