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

推荐订阅源

博客园 - Franky
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
Google DeepMind News
Google DeepMind News
腾讯CDC
G
Google Developers Blog
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
有赞技术团队
有赞技术团队
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
M
MIT News - Artificial intelligence
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
美团技术团队
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志

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): preserve active exec references across compa...
TurboTheTurt · 2026-05-10 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

66
77

### Changes

88
9+

- Agents/compaction: preserve scoped background exec/process session references across embedded compaction and after-turn runtime contexts without exposing sessions from unrelated scopes. Fixes #79284. (#79307) Thanks @TurboTheTurtle.

10+
911

### Fixes

1012
1113

- Plugin SDK: keep activated linked plugin runtime facades loadable when bundled plugin fallback is disabled. Thanks @shakkernerd.

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,74 @@

1+

import { formatDurationCompact } from "../infra/format-time/format-duration.js";

2+

import { listRunningSessions } from "./bash-process-registry.js";

3+

import { deriveSessionName } from "./bash-tools.shared.js";

4+
5+

const DEFAULT_ACTIVE_PROCESS_LIMIT = 8;

6+

const MAX_COMMAND_LABEL_CHARS = 140;

7+
8+

export type ActiveProcessSessionReference = {

9+

sessionId: string;

10+

status: "running";

11+

pid?: number;

12+

startedAt: number;

13+

runtimeMs: number;

14+

cwd?: string;

15+

command: string;

16+

name: string;

17+

tail?: string;

18+

truncated: boolean;

19+

};

20+
21+

function truncate(value: string, maxChars: number): string {

22+

if (value.length <= maxChars) {

23+

return value;

24+

}

25+

if (maxChars <= 1) {

26+

return value.slice(0, maxChars);

27+

}

28+

return `${value.slice(0, Math.max(0, maxChars - 3))}...`;

29+

}

30+
31+

export function listActiveProcessSessionReferences(params: {

32+

scopeKey?: string;

33+

now?: number;

34+

limit?: number;

35+

}): ActiveProcessSessionReference[] {

36+

const scopeKey = params.scopeKey?.trim();

37+

if (!scopeKey) {

38+

return [];

39+

}

40+

const now = params.now ?? Date.now();

41+

const limit =

42+

typeof params.limit === "number" && Number.isFinite(params.limit) && params.limit > 0

43+

? Math.floor(params.limit)

44+

: DEFAULT_ACTIVE_PROCESS_LIMIT;

45+

return listRunningSessions()

46+

.filter((session) => session.backgrounded)

47+

.filter((session) => session.scopeKey === scopeKey)

48+

.toSorted((left, right) => right.startedAt - left.startedAt)

49+

.slice(0, limit)

50+

.map((session) => ({

51+

sessionId: session.id,

52+

status: "running" as const,

53+

pid: session.pid ?? session.child?.pid,

54+

startedAt: session.startedAt,

55+

runtimeMs: Math.max(0, now - session.startedAt),

56+

cwd: session.cwd,

57+

command: session.command,

58+

name: truncate(

59+

deriveSessionName(session.command) || session.command,

60+

MAX_COMMAND_LABEL_CHARS,

61+

),

62+

tail: session.tail,

63+

truncated: session.truncated,

64+

}));

65+

}

66+
67+

export function formatActiveProcessSessionReference(

68+

session: ActiveProcessSessionReference,

69+

): string {

70+

const runtime = formatDurationCompact(session.runtimeMs) ?? "unknown";

71+

const pid = typeof session.pid === "number" ? ` pid=${session.pid}` : "";

72+

const cwd = session.cwd ? ` cwd=${session.cwd}` : "";

73+

return `${session.sessionId} ${session.status} ${runtime}${pid}${cwd} :: ${session.name}`;

74+

}

Original file line numberDiff line numberDiff line change

@@ -470,6 +470,7 @@ export async function loadCompactHooksHarness(): Promise<{

470470
471471

vi.doMock("./lanes.js", () => ({

472472

resolveSessionLane: vi.fn(() => "test-session-lane"),

473+

resolveEmbeddedSessionLane: vi.fn(() => "test-session-lane"),

473474

resolveGlobalLane: vi.fn(() => "test-global-lane"),

474475

}));

475476

@@ -513,6 +514,17 @@ export async function loadCompactHooksHarness(): Promise<{

513514
514515

vi.doMock("../pi-tools.js", () => ({

515516

createOpenClawCodingTools: createOpenClawCodingToolsMock,

517+

resolveProcessToolScopeKey: ({

518+

scopeKey,

519+

sessionKey,

520+

sessionId,

521+

agentId,

522+

}: {

523+

scopeKey?: string;

524+

sessionKey?: string;

525+

sessionId?: string;

526+

agentId?: string;

527+

}) => scopeKey ?? sessionKey ?? sessionId ?? (agentId ? `agent:${agentId}` : undefined),

516528

}));

517529
518530

vi.doMock("./replay-history.js", () => ({

Original file line numberDiff line numberDiff line change

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

3939

resolveRunModelFallbacksOverride,

4040

resolveSessionAgentIds,

4141

} from "../agent-scope.js";

42+

import { listActiveProcessSessionReferences } from "../bash-process-references.js";

4243

import {

4344

makeBootstrapWarn,

4445

resolveBootstrapContextForRun,

@@ -82,7 +83,7 @@ import {

8283

applyPiCompactionSettingsFromConfig,

8384

isSilentOverflowProneModel,

8485

} from "../pi-settings.js";

85-

import { createOpenClawCodingTools } from "../pi-tools.js";

86+

import { createOpenClawCodingTools, resolveProcessToolScopeKey } from "../pi-tools.js";

8687

import { wrapStreamFnTextTransforms } from "../plugin-text-transforms.js";

8788

import { registerProviderStreamForModel } from "../provider-stream.js";

8889

import { collectRuntimeChannelCapabilities } from "../runtime-capabilities.js";

@@ -834,6 +835,12 @@ async function compactEmbeddedPiSessionDirectOnce(

834835

channel: runtimeChannel,

835836

capabilities: runtimeCapabilities,

836837

channelActions,

838+

activeProcessSessions: listActiveProcessSessionReferences({

839+

scopeKey: resolveProcessToolScopeKey({

840+

sessionKey: sandboxSessionKey,

841+

agentId: sessionAgentId,

842+

}),

843+

}),

837844

};

838845

const sandboxInfo = buildEmbeddedSandboxInfo(sandbox, params.bashElevated);

839846

const reasoningTagHint = isReasoningTagProvider(provider, {

Original file line numberDiff line numberDiff line change

@@ -1,11 +1,17 @@

1-

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

1+

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

22

import type { OpenClawConfig } from "../../config/config.js";

3+

import { addSession, resetProcessRegistryForTests } from "../bash-process-registry.js";

4+

import { createProcessSessionFixture } from "../bash-process-registry.test-helpers.js";

35

import {

46

buildEmbeddedCompactionRuntimeContext,

57

resolveEmbeddedCompactionTarget,

68

} from "./compaction-runtime-context.js";

79
810

describe("buildEmbeddedCompactionRuntimeContext", () => {

11+

afterEach(() => {

12+

resetProcessRegistryForTests();

13+

});

14+
915

it("preserves sender and current message routing for compaction", () => {

1016

const result = buildEmbeddedCompactionRuntimeContext({

1117

sessionKey: "agent:main:thread:1",

@@ -120,6 +126,62 @@ describe("buildEmbeddedCompactionRuntimeContext", () => {

120126

expect(result.authProfileId).toBe("ollama:default");

121127

});

122128
129+

it("preserves scoped active process session references for compaction", () => {

130+

const active = createProcessSessionFixture({

131+

id: "sess-active",

132+

command: "sleep 600",

133+

backgrounded: true,

134+

pid: 1234,

135+

startedAt: 1_000,

136+

});

137+

active.scopeKey = "agent:main:thread:1";

138+

const other = createProcessSessionFixture({

139+

id: "sess-other",

140+

command: "sleep 600",

141+

backgrounded: true,

142+

});

143+

other.scopeKey = "agent:other";

144+

addSession(active);

145+

addSession(other);

146+
147+

const result = buildEmbeddedCompactionRuntimeContext({

148+

sessionKey: "agent:main:thread:1",

149+

workspaceDir: "/tmp/workspace",

150+

agentDir: "/tmp/agent",

151+

config: {} as OpenClawConfig,

152+

});

153+
154+

expect(result.activeProcessSessions).toEqual([

155+

expect.objectContaining({

156+

sessionId: "sess-active",

157+

status: "running",

158+

command: "sleep 600",

159+

pid: 1234,

160+

}),

161+

]);

162+

expect(result.activeProcessSessions).not.toEqual(

163+

expect.arrayContaining([expect.objectContaining({ sessionId: "sess-other" })]),

164+

);

165+

});

166+
167+

it("omits active process session references when no safe scope is available", () => {

168+

const active = createProcessSessionFixture({

169+

id: "sess-active",

170+

command: "sleep 600",

171+

backgrounded: true,

172+

});

173+

active.scopeKey = "agent:main:thread:1";

174+

addSession(active);

175+
176+

const result = buildEmbeddedCompactionRuntimeContext({

177+

workspaceDir: "/tmp/workspace",

178+

agentDir: "/tmp/agent",

179+

config: {} as OpenClawConfig,

180+

});

181+
182+

expect(result.activeProcessSessions).toBeUndefined();

183+

});

184+
123185

it("applies runtime defaults when resolving the effective compaction target", () => {

124186

expect(

125187

resolveEmbeddedCompactionTarget({

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,10 @@

11

import type { SourceReplyDeliveryMode } from "../../auto-reply/get-reply-options.types.js";

22

import type { ReasoningLevel, ThinkLevel } from "../../auto-reply/thinking.js";

33

import type { OpenClawConfig } from "../../config/types.openclaw.js";

4+

import {

5+

listActiveProcessSessionReferences,

6+

type ActiveProcessSessionReference,

7+

} from "../bash-process-references.js";

48

import type { ExecElevatedDefaults } from "../bash-tools.js";

59

import type { SkillSnapshot } from "../skills.js";

610

@@ -28,6 +32,7 @@ export type EmbeddedCompactionRuntimeContext = {

2832

extraSystemPrompt?: string;

2933

sourceReplyDeliveryMode?: SourceReplyDeliveryMode;

3034

ownerNumbers?: string[];

35+

activeProcessSessions?: ActiveProcessSessionReference[];

3136

};

3237
3338

/**

@@ -95,13 +100,20 @@ export function buildEmbeddedCompactionRuntimeContext(params: {

95100

extraSystemPrompt?: string;

96101

sourceReplyDeliveryMode?: SourceReplyDeliveryMode;

97102

ownerNumbers?: string[];

103+

activeProcessSessions?: ActiveProcessSessionReference[];

98104

}): EmbeddedCompactionRuntimeContext {

99105

const resolved = resolveEmbeddedCompactionTarget({

100106

config: params.config,

101107

provider: params.provider,

102108

modelId: params.modelId,

103109

authProfileId: params.authProfileId,

104110

});

111+

const processScopeKey = params.sessionKey?.trim();

112+

const activeProcessSessions =

113+

params.activeProcessSessions ??

114+

listActiveProcessSessionReferences({

115+

scopeKey: processScopeKey,

116+

});

105117

return {

106118

sessionKey: params.sessionKey ?? undefined,

107119

messageChannel: params.messageChannel ?? undefined,

@@ -126,5 +138,6 @@ export function buildEmbeddedCompactionRuntimeContext(params: {

126138

extraSystemPrompt: params.extraSystemPrompt,

127139

sourceReplyDeliveryMode: params.sourceReplyDeliveryMode,

128140

ownerNumbers: params.ownerNumbers,

141+

...(activeProcessSessions.length > 0 ? { activeProcessSessions } : {}),

129142

};

130143

}

Original file line numberDiff line numberDiff line change

@@ -548,6 +548,7 @@ export async function loadRunOverflowCompactionHarness(): Promise<{

548548
549549

vi.doMock("../../process/command-queue.js", () => ({

550550

enqueueCommandInLane: vi.fn((_lane: string, task: () => unknown) => task()),

551+

clearCommandLane: vi.fn(() => 0),

551552

}));

552553
553554

vi.doMock("../../utils/message-channel.js", () => ({

@@ -569,6 +570,7 @@ export async function loadRunOverflowCompactionHarness(): Promise<{

569570
570571

vi.doMock("./lanes.js", () => ({

571572

resolveSessionLane: vi.fn(() => "session-lane"),

573+

resolveEmbeddedSessionLane: vi.fn(() => "session-lane"),

572574

resolveGlobalLane: vi.fn(() => "global-lane"),

573575

}));

574576
Original file line numberDiff line numberDiff line change

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

3636

markAuthProfileGood,

3737

markAuthProfileUsed,

3838

} from "../auth-profiles.js";

39+

import { listActiveProcessSessionReferences } from "../bash-process-references.js";

3940

import {

4041

resolveSessionKeyForRequest,

4142

resolveStoredSessionKeyForSessionId,

@@ -81,6 +82,7 @@ import {

8182

parseImageSizeError,

8283

pickFallbackThinkingLevel,

8384

} from "../pi-embedded-helpers.js";

85+

import { resolveProcessToolScopeKey } from "../pi-tools.js";

8486

import { resolveProviderIdForAuth } from "../provider-auth-aliases.js";

8587

import { runAgentCleanupStep } from "../run-cleanup-timeout.js";

8688

import { buildAgentRuntimeAuthPlan } from "../runtime-plan/auth.js";

@@ -1495,6 +1497,13 @@ export async function runEmbeddedPiAgent(

14951497

extraSystemPrompt: params.extraSystemPrompt,

14961498

sourceReplyDeliveryMode: params.sourceReplyDeliveryMode,

14971499

ownerNumbers: params.ownerNumbers,

1500+

activeProcessSessions: listActiveProcessSessionReferences({

1501+

scopeKey: resolveProcessToolScopeKey({

1502+

sessionKey: params.sandboxSessionKey?.trim() || params.sessionKey,

1503+

sessionId: activeSessionId,

1504+

agentId: sessionAgentId,

1505+

}),

1506+

}),

14981507

}),

14991508

...resolveContextEngineCapabilities({

15001509

config: params.config,

@@ -1660,6 +1669,13 @@ export async function runEmbeddedPiAgent(

16601669

extraSystemPrompt: params.extraSystemPrompt,

16611670

sourceReplyDeliveryMode: params.sourceReplyDeliveryMode,

16621671

ownerNumbers: params.ownerNumbers,

1672+

activeProcessSessions: listActiveProcessSessionReferences({

1673+

scopeKey: resolveProcessToolScopeKey({

1674+

sessionKey: params.sandboxSessionKey?.trim() || params.sessionKey,

1675+

sessionId: activeSessionId,

1676+

agentId: sessionAgentId,

1677+

}),

1678+

}),

16631679

}),

16641680

...resolveContextEngineCapabilities({

16651681

config: params.config,

Original file line numberDiff line numberDiff line change

@@ -2,10 +2,20 @@ import { describe, expect, it, vi } from "vitest";

22
33

const musicGenerationTaskStatusMocks = vi.hoisted(() => ({

44

buildActiveMusicGenerationTaskPromptContextForSession: vi.fn(),

5+

buildMusicGenerationTaskStatusDetails: vi.fn(() => ({})),

6+

buildMusicGenerationTaskStatusText: vi.fn(() => "Music generation task status"),

7+

findActiveMusicGenerationTaskForSession: vi.fn(),

8+

MUSIC_GENERATION_TASK_KIND: "music_generation",

59

}));

610
711

const videoGenerationTaskStatusMocks = vi.hoisted(() => ({

812

buildActiveVideoGenerationTaskPromptContextForSession: vi.fn(),

13+

buildVideoGenerationTaskStatusDetails: vi.fn(() => ({})),

14+

buildVideoGenerationTaskStatusText: vi.fn(() => "Video generation task status"),

15+

findActiveVideoGenerationTaskForSession: vi.fn(),

16+

getVideoGenerationTaskProviderId: vi.fn(),

17+

isActiveVideoGenerationTask: vi.fn(() => false),

18+

VIDEO_GENERATION_TASK_KIND: "video_generation",

919

}));

1020
1121

const hostHookStateMocks = vi.hoisted(() => ({