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

推荐订阅源

G
Google Developers Blog
博客园 - 聂微东
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
D
Docker
B
Blog
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
月光博客
月光博客
F
Fortinet All Blogs
爱范儿
爱范儿
H
Help Net Security
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
The Cloudflare Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
U
Unit 42

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
guide workspace-only scratch paths · openclaw/openclaw@94...
tianxiaochan · 2026-05-26 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -130,6 +130,63 @@ describe("buildEmbeddedSystemPrompt", () => {

130130

expect(prompt).toContain("Mode: prefer");

131131

});

132132
133+

it("adds workspace-only scratch path guidance when fs workspaceOnly is enabled", () => {

134+

const prompt = buildEmbeddedSystemPrompt({

135+

config: {

136+

tools: {

137+

fs: {

138+

workspaceOnly: true,

139+

},

140+

},

141+

},

142+

workspaceDir: "/tmp/openclaw",

143+

reasoningTagHint: false,

144+

runtimeInfo: {

145+

host: "local",

146+

os: "darwin",

147+

arch: "arm64",

148+

node: process.version,

149+

model: "gpt-5.4",

150+

provider: "openai",

151+

},

152+

tools: [],

153+

modelAliasLines: [],

154+

userTimezone: "UTC",

155+

});

156+
157+

expect(prompt).toContain("tools.fs.workspaceOnly is enabled");

158+

expect(prompt).toContain("`.openclaw/tmp/`");

159+

expect(prompt).toContain("Do not write files to `/tmp/...`");

160+

});

161+
162+

it("omits workspace-only scratch path guidance when fs workspaceOnly is disabled", () => {

163+

const prompt = buildEmbeddedSystemPrompt({

164+

config: {

165+

tools: {

166+

fs: {

167+

workspaceOnly: false,

168+

},

169+

},

170+

},

171+

workspaceDir: "/tmp/openclaw",

172+

reasoningTagHint: false,

173+

runtimeInfo: {

174+

host: "local",

175+

os: "darwin",

176+

arch: "arm64",

177+

node: process.version,

178+

model: "gpt-5.4",

179+

provider: "openai",

180+

},

181+

tools: [],

182+

modelAliasLines: [],

183+

userTimezone: "UTC",

184+

});

185+
186+

expect(prompt).not.toContain("tools.fs.workspaceOnly is enabled");

187+

expect(prompt).not.toContain("Do not write files to `/tmp/...`");

188+

});

189+
133190

it("forwards the subagent prompt surface to embedded prompt rendering", () => {

134191

const prompt = buildEmbeddedSystemPrompt({

135192

workspaceDir: "/tmp/openclaw",

Original file line numberDiff line numberDiff line change

@@ -667,10 +667,20 @@ export function wrapToolMemoryFlushAppendOnlyWrite(

667667

};

668668

}

669669
670-

function isSandboxRootEscapeError(error: unknown): boolean {

670+

function isSandboxRootEscapeError(error: unknown): error is Error {

671671

return error instanceof Error && /^Path escapes sandbox root \(/i.test(error.message);

672672

}

673673
674+

function withWorkspaceSafeTempHint(error: unknown): unknown {

675+

if (!isSandboxRootEscapeError(error)) {

676+

return error;

677+

}

678+

const message = error.message.includes(".openclaw/tmp/")

679+

? error.message

680+

: `${error.message}. Use a relative path under \`.openclaw/tmp/\` inside the workspace for scratch/temp/meta files that file tools need to read or write later.`;

681+

return new Error(message, { cause: error });

682+

}

683+
674684

async function assertSandboxPathWithinAnyRoot(params: {

675685

filePath: string;

676686

roots: readonly string[];

@@ -752,10 +762,15 @@ export function wrapToolWorkspaceRootGuardWithOptions(

752762

}

753763

const additionalRoots =

754764

guardedRoot === root && !workspaceMapping.matched ? (options?.additionalRoots ?? []) : [];

755-

const sandboxResult = await assertSandboxPathWithinAnyRoot({

756-

filePath: sandboxPath,

757-

roots: [guardedRoot, ...additionalRoots],

758-

});

765+

let sandboxResult: Awaited<ReturnType<typeof assertSandboxPathWithinAnyRoot>>;

766+

try {

767+

sandboxResult = await assertSandboxPathWithinAnyRoot({

768+

filePath: sandboxPath,

769+

roots: [guardedRoot, ...additionalRoots],

770+

});

771+

} catch (error) {

772+

throw withWorkspaceSafeTempHint(error);

773+

}

759774

if (options?.normalizeGuardedPathParams && record) {

760775

normalizedRecord ??= { ...record };

761776

normalizedRecord[key] = sandboxResult.resolved;

Original file line numberDiff line numberDiff line change

@@ -173,6 +173,23 @@ describe("wrapToolWorkspaceRootGuardWithOptions", () => {

173173

});

174174

});

175175
176+

it("adds a workspace-safe temp hint when rejecting paths outside the workspace", async () => {

177+

const { execute, tool } = createToolHarness();

178+

const wrapped = wrapToolWorkspaceRootGuardWithOptions(tool, root, {

179+

containerWorkdir: "/workspace",

180+

});

181+

mocks.assertSandboxPath.mockImplementationOnce(async () => {

182+

throw new Error("Path escapes sandbox root (/tmp/root): /tmp/repo_meta.jsonl");

183+

});

184+
185+

await expect(

186+

wrapped.execute("tc-outside-temp", { path: "/tmp/repo_meta.jsonl" }),

187+

).rejects.toThrow(

188+

/Path escapes sandbox root .* Use a relative path under `.openclaw\/tmp\/` inside the workspace/,

189+

);

190+

expect(execute).not.toHaveBeenCalled();

191+

});

192+
176193

it("maps additional container mounts to their own guarded host roots", async () => {

177194

const { tool } = createToolHarness();

178195

const agentRoot = "/tmp/agent-root";

Original file line numberDiff line numberDiff line change

@@ -4,6 +4,7 @@ import { resolveAgentConfig } from "./agent-scope.js";

44

import { buildModelAliasLines } from "./model-alias-lines.js";

55

import { resolveOwnerDisplaySetting } from "./owner-display.js";

66

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

7+

import { resolveEffectiveToolFsWorkspaceOnly } from "./tool-fs-policy.js";

78
89

type AgentSystemPromptRenderParams = Parameters<typeof buildAgentSystemPrompt>[0];

910

@@ -15,6 +16,7 @@ export type ResolvedAgentSystemPromptConfig = Pick<

1516

| "ttsHint"

1617

| "modelAliasLines"

1718

| "memoryCitationsMode"

19+

| "fsWorkspaceOnly"

1820

>;

1921
2022

export type ConfiguredAgentSystemPromptParams = AgentSystemPromptRenderParams & {

@@ -40,6 +42,7 @@ export function resolveAgentSystemPromptConfig(params: {

4042

ttsHint: config ? buildTtsSystemPromptHint(config, agentId) : undefined,

4143

modelAliasLines: buildModelAliasLines(config),

4244

memoryCitationsMode: config?.memory?.citations,

45+

fsWorkspaceOnly: resolveEffectiveToolFsWorkspaceOnly({ cfg: config, agentId }),

4346

};

4447

}

4548
Original file line numberDiff line numberDiff line change

@@ -723,6 +723,8 @@ export function buildAgentSystemPrompt(params: {

723723

};

724724

messageToolHints?: string[];

725725

sandboxInfo?: EmbeddedSandboxInfo;

726+

/** Whether read/write/edit/apply_patch are restricted to the workspace root. */

727+

fsWorkspaceOnly?: boolean;

726728

/** Reaction guidance for the agent (for Telegram minimal/extensive modes). */

727729

reactionGuidance?: {

728730

level: "minimal" | "extensive";

@@ -925,6 +927,10 @@ export function buildAgentSystemPrompt(params: {

925927

params.sandboxInfo?.enabled && sanitizedSandboxContainerWorkspace

926928

? `For read/write/edit/apply_patch, file paths resolve against host workspace: ${sanitizedWorkspaceDir}. For bash/exec commands, use sandbox container paths under ${sanitizedSandboxContainerWorkspace} (or relative paths from that workdir), not host paths. Prefer relative paths so both sandboxed exec and file tools work consistently.`

927929

: "Treat this directory as the single global workspace for file operations unless explicitly instructed otherwise.";

930+

const workspaceOnlyGuidance =

931+

params.fsWorkspaceOnly === true

932+

? "tools.fs.workspaceOnly is enabled: scratch/temp/meta files that file tools must later read/write/edit must stay inside the workspace, preferably as relative paths under `.openclaw/tmp/`. Do not write files to `/tmp/...` with exec if a later read/write/edit/apply_patch tool needs them; use `.openclaw/tmp/...` instead."

933+

: "";

928934

const safetySection = [

929935

"## Safety",

930936

"No independent goals: no self-preservation, replication, resource acquisition, power-seeking, or long-term plans beyond the user's request.",

@@ -998,6 +1004,7 @@ export function buildAgentSystemPrompt(params: {

9981004

sandboxInfo: params.sandboxInfo,

9991005

displayWorkspaceDir,

10001006

workspaceGuidance,

1007+

workspaceOnlyGuidance,

10011008

workspaceNotes,

10021009

bootstrapMode: params.bootstrapMode,

10031010

bootstrapSystemPromptSections,

@@ -1133,6 +1140,7 @@ export function buildAgentSystemPrompt(params: {

11331140

"## Workspace",

11341141

`Your working directory is: ${displayWorkspaceDir}`,

11351142

workspaceGuidance,

1143+

workspaceOnlyGuidance,

11361144

...workspaceNotes,

11371145

"",

11381146

...docsSection,