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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Y
Y Combinator Blog
IT之家
IT之家
博客园 - 聂微东
L
LangChain Blog
爱范儿
爱范儿
H
Help Net Security
GbyAI
GbyAI
F
Fortinet All Blogs
B
Blog
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
D
DataBreaches.Net
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享

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
feat: add exec shell snapshot cache · openclaw/openclaw@c...
steipete · 2026-05-31 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -104,6 +104,14 @@ Env var equivalents:

104104

- `OPENCLAW_LOAD_SHELL_ENV=1`

105105

- `OPENCLAW_SHELL_ENV_TIMEOUT_MS=15000`

106106
107+

## Exec shell snapshots

108+
109+

`OPENCLAW_EXEC_SHELL_SNAPSHOT=1` is an opt-in gateway exec optimization for bash and zsh. Set it in the Gateway

110+

process environment; per-call `exec.env` values cannot enable it or redirect its cache directory. When enabled,

111+

OpenClaw captures sourceable aliases/functions and a small safe environment set from shell startup files into

112+

`$OPENCLAW_STATE_DIR/cache/shell-snapshots/`, then sources that snapshot before each `exec` command. Secret-looking

113+

variables are excluded from the snapshot. Sandbox and node exec do not use it.

114+
107115

## Runtime-injected env vars

108116
109117

OpenClaw also injects context markers into spawned child processes:

Original file line numberDiff line numberDiff line change

@@ -80,6 +80,11 @@ Notes:

8080

from `PATH` to avoid fish-incompatible scripts, then falls back to `SHELL` if neither exists.

8181

- On Windows hosts, exec prefers PowerShell 7 (`pwsh`) discovery (Program Files, ProgramW6432, then PATH),

8282

then falls back to Windows PowerShell 5.1.

83+

- On non-Windows gateway hosts, setting `OPENCLAW_EXEC_SHELL_SNAPSHOT=1` in the Gateway process environment

84+

enables an opt-in startup snapshot for bash and zsh. OpenClaw captures sourceable aliases/functions and a small

85+

safe environment set from shell startup files into `$OPENCLAW_STATE_DIR/cache/shell-snapshots/`, then sources

86+

that snapshot before each exec command. Secret-looking variables are excluded; sandbox and node exec do not use

87+

this snapshot.

8388

- Host execution (`gateway`/`node`) rejects `env.PATH` and loader overrides (`LD_*`/`DYLD_*`) to

8489

prevent binary hijacking or injected code.

8590

- OpenClaw sets `OPENCLAW_SHELL=exec` in the spawned command environment (including PTY and sandbox execution) so shell/profile rules can detect exec-tool context.

Original file line numberDiff line numberDiff line change

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

5353

readEnvInt,

5454

} from "./bash-tools.shared.js";

5555

import { buildCursorPositionResponse, stripDsrRequests } from "./pty-dsr.js";

56+

import { maybeWrapCommandWithShellSnapshot } from "./shell-snapshot.js";

5657

import { getShellConfig, sanitizeBinaryOutput } from "./shell-utils.js";

5758
5859

export { execSchema } from "./bash-tools.schemas.js";

@@ -822,12 +823,20 @@ export async function runExecProcess(opts: {

822823

shellRuntimeEnv,

823824

opts.pathPrepend,

824825

);

826+

const commandWithShellSnapshot = await maybeWrapCommandWithShellSnapshot({

827+

command: commandWithPathPrepend,

828+

shell,

829+

shellArgs,

830+

cwd: opts.workdir,

831+

env: shellRuntimeEnv,

832+

enabled: true,

833+

});

825834
826-

const childArgv = [shell, ...shellArgs, commandWithPathPrepend];

835+

const childArgv = [shell, ...shellArgs, commandWithShellSnapshot];

827836

if (opts.usePty) {

828837

return {

829838

mode: "pty" as const,

830-

ptyCommand: commandWithPathPrepend,

839+

ptyCommand: commandWithShellSnapshot,

831840

childFallbackArgv: childArgv,

832841

env: shellRuntimeEnv,

833842

stdinMode: "pipe-open" as const,

Original file line numberDiff line numberDiff line change

@@ -7,8 +7,8 @@

77

*/

88
99

import type { WriteStream } from "node:fs";

10+

import { sanitizeBinaryOutput } from "../shell-utils.js";

1011

import { stripAnsi } from "../utils/ansi.js";

11-

import { sanitizeBinaryOutput } from "../utils/shell.js";

1212

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

1313

import { createPrivateTempWriteStream } from "./tools/private-temp-file.js";

1414

import { DEFAULT_MAX_BYTES, truncateTail } from "./tools/truncate.js";

Original file line numberDiff line numberDiff line change

@@ -4,7 +4,7 @@

44

*/

55
66

import { execSync, spawnSync } from "node:child_process";

7-

import { getShellConfig } from "../utils/shell.js";

7+

import { getBashShellConfig } from "../shell-utils.js";

88
99

// Cache for shell command results (persists for process lifetime)

1010

const commandResultCache = new Map<string, string | undefined>();

@@ -27,7 +27,7 @@ function executeWithConfiguredShell(command: string): {

2727

value: string | undefined;

2828

} {

2929

try {

30-

const { shell, args } = getShellConfig();

30+

const { shell, args } = getBashShellConfig();

3131

const result = spawnSync(shell, [...args, command], {

3232

encoding: "utf-8",

3333

timeout: 10000,

Original file line numberDiff line numberDiff line change

@@ -7,8 +7,8 @@ import { keyHint } from "../../modes/interactive/components/keybinding-hints.js"

77

import { truncateToVisualLines } from "../../modes/interactive/components/visual-truncate.js";

88

import { theme } from "../../modes/interactive/theme/theme.js";

99

import type { AgentTool } from "../../runtime/index.js";

10+

import { getBashShellConfig, getShellEnv, killProcessTree } from "../../shell-utils.js";

1011

import { waitForChildProcess } from "../../utils/child-process.js";

11-

import { getShellConfig, getShellEnv, killProcessTree } from "../../utils/shell.js";

1212

import type { ToolDefinition, ToolRenderResultOptions } from "../extensions/types.js";

1313

import type { BashOperations } from "./bash-operations.js";

1414

import { OutputAccumulator } from "./output-accumulator.js";

@@ -48,7 +48,7 @@ export function createLocalBashOperations(options?: { shellPath?: string }): Bas

4848

return {

4949

exec: (command, cwd, { onData, signal, timeout, env }) => {

5050

return new Promise((resolve, reject) => {

51-

const { shell, args } = getShellConfig(options?.shellPath);

51+

const { shell, args } = getBashShellConfig(options?.shellPath);

5252

if (!existsSync(cwd)) {

5353

reject(

5454

new Error(`Working directory does not exist: ${cwd}\nCannot execute bash commands.`),

Original file line numberDiff line numberDiff line change

@@ -2,8 +2,8 @@ import * as os from "node:os";

22

import { getCapabilities, getImageDimensions, imageFallback } from "@earendil-works/pi-tui";

33

import type { ImageContent, TextContent } from "../../../llm/types.js";

44

import type { Theme } from "../../modes/interactive/theme/theme.js";

5+

import { sanitizeBinaryOutput } from "../../shell-utils.js";

56

import { stripAnsi } from "../../utils/ansi.js";

6-

import { sanitizeBinaryOutput } from "../../utils/shell.js";

77
88

export function shortenPath(path: unknown): string {

99

if (typeof path !== "string") {