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

推荐订阅源

Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
Engineering at Meta
Engineering at Meta
Stack Overflow Blog
Stack Overflow Blog
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog
WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
C
Check Point Blog
月光博客
月光博客
L
LangChain Blog
GbyAI
GbyAI

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: tighten openshell exec preflight · openclaw/openclaw...
steipete · 2026-05-26 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1515
1616

### Fixes

1717
18+

- OpenShell/SSH: reject malformed generated exec commands before sandbox/session setup so unresolved workflow placeholders fail fast instead of reaching the remote shell. Fixes #72373. Thanks @brokemac79.

1819

- Installer: make Alpine apk installs cover Git, verify the Node runtime floor, try `nodejs-current`, and report Alpine version guidance when repositories only provide older Node packages.

1920

- Agents/media: send direct fallback for generated media still missing after an active requester wake fails. (#85489) Thanks @fuller-stack-dev.

2021

- Agents: derive overflow compaction budgets from provider-reported and synthetic over-budget token counts so confirmed context overflows compact before retrying. (#70473) Thanks @fuller-stack-dev.

Original file line numberDiff line numberDiff line change

@@ -264,6 +264,7 @@ focused channel/runtime subpaths, `config-contracts`, `string-coerce-runtime`,

264264

| `plugin-sdk/tool-plugin` | Define a simple typed agent-tool plugin and expose static metadata for manifest generation |

265265

| `plugin-sdk/tool-payload` | Extract normalized payloads from tool result objects |

266266

| `plugin-sdk/tool-send` | Extract canonical send target fields from tool args |

267+

| `plugin-sdk/sandbox` | Sandbox backend types and SSH/OpenShell command helpers, including fail-fast exec command preflight |

267268

| `plugin-sdk/temp-path` | Shared temp-download path helpers and private secure temp workspaces |

268269

| `plugin-sdk/logging-core` | Subsystem logger and redaction helpers |

269270

| `plugin-sdk/markdown-table-runtime` | Markdown table mode and conversion helpers |

Original file line numberDiff line numberDiff line change

@@ -124,6 +124,8 @@ describe("sandbox ssh helpers", () => {

124124

it.each([

125125

["workflow install <name>", /unresolved placeholder token <name>/],

126126

["workflow run <workflow-id> --ref main", /unresolved placeholder token <workflow-id>/],

127+

["echo $(workflow run <workflow-id> --ref main)", /unresolved placeholder token <workflow-id>/],

128+

["WORKFLOW_ID=<workflow-id> workflow run", /unresolved placeholder token <workflow-id>/],

127129

['echo "unterminated', /unclosed double quote/],

128130

["printf '%s", /unclosed single quote/],

129131

["echo foo\\", /trailing backslash escape/],

@@ -148,6 +150,7 @@ describe("sandbox ssh helpers", () => {

148150

"cat < input.txt > output.txt",

149151

"cat <in>out",

150152

"cat <input> output",

153+

"cat = <input-file> output.txt",

151154

'cat <input-file> "output file"',

152155

"cat <<'EOF' > literal.txt",

153156

"<workflow-id>",

Original file line numberDiff line numberDiff line change

@@ -301,6 +301,9 @@ function readPlaceholderToken(command: string, index: number): string | null {

301301

if (!match) {

302302

return null;

303303

}

304+

if (command[index - 1] === "=") {

305+

return match[0];

306+

}

304307

if (isLikelyGeneratedWorkflowPlaceholder(command, index)) {

305308

return match[0];

306309

}

@@ -330,6 +333,8 @@ function isLikelyGeneratedWorkflowPlaceholder(command: string, index: number): b

330333

prefix.lastIndexOf(";"),

331334

prefix.lastIndexOf("&"),

332335

prefix.lastIndexOf("|"),

336+

prefix.lastIndexOf("("),

337+

prefix.lastIndexOf("`"),

333338

) + 1;

334339

const currentCommand = prefix.slice(segmentStart).trim();

335340

return /^workflow(?:\s+[A-Za-z0-9._/-]+)*$/.test(currentCommand);