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

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow 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(test): bootstrap macos script stdin · openclaw/opencl...
vincentkoc · 2026-05-26 · via Recent Commits to openclaw:main

@@ -1,6 +1,15 @@

11

#!/usr/bin/env node

22

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

3-

import { accessSync, constants, mkdtempSync, readFileSync, rmSync, statSync } from "node:fs";

3+

import {

4+

accessSync,

5+

chmodSync,

6+

constants,

7+

mkdtempSync,

8+

readFileSync,

9+

rmSync,

10+

statSync,

11+

writeFileSync,

12+

} from "node:fs";

413

import { tmpdir } from "node:os";

514

import { delimiter, dirname, extname, isAbsolute, relative, resolve } from "node:path";

615

import { fileURLToPath } from "node:url";

@@ -1156,6 +1165,91 @@ function injectRemoteAwsMacosJsBootstrap(commandArgs, providerName) {

11561165

return normalizedArgs;

11571166

}

115811671168+

function hasRunOption(commandArgs, name) {

1169+

if (commandArgs[0] !== "run") {

1170+

return false;

1171+

}

1172+

const { optionEnd } = runCommandBounds(commandArgs);

1173+

const normalizedName = name.replace(/^-+/u, "");

1174+

for (let index = 1; index < optionEnd; index += 1) {

1175+

const arg = commandArgs[index];

1176+

if (arg.startsWith("-") && runOptionName(arg) === normalizedName) {

1177+

return true;

1178+

}

1179+

if (!arg.includes("=") && currentRunValueOptions().has(runOptionName(arg))) {

1180+

index += 1;

1181+

}

1182+

}

1183+

return false;

1184+

}

1185+1186+

function replaceRunFlagWithScript(commandArgs, flagName, scriptPath) {

1187+

const { optionEnd } = runCommandBounds(commandArgs);

1188+

const normalizedName = flagName.replace(/^-+/u, "");

1189+

const normalizedArgs = [...commandArgs];

1190+

for (let index = 1; index < optionEnd; index += 1) {

1191+

const arg = normalizedArgs[index];

1192+

if (arg.startsWith("-") && runOptionName(arg) === normalizedName) {

1193+

normalizedArgs.splice(index, 1, "--script", scriptPath);

1194+

return normalizedArgs;

1195+

}

1196+

if (!arg.includes("=") && currentRunValueOptions().has(runOptionName(arg))) {

1197+

index += 1;

1198+

}

1199+

}

1200+

return normalizedArgs;

1201+

}

1202+1203+

function prepareAwsMacosScriptStdinBootstrap(commandArgs, providerName) {

1204+

if (

1205+

!isAwsMacosRemoteTarget(commandArgs, providerName) ||

1206+

!hasRunOption(commandArgs, "--script-stdin")

1207+

) {

1208+

return { args: commandArgs, cleanup: () => {}, prepared: false };

1209+

}

1210+1211+

const scriptRoot = mkdtempSync(resolve(tmpdir(), "openclaw-crabbox-macos-script-"));

1212+

const scriptPath = resolve(scriptRoot, "script.sh");

1213+

const script = readFileSync(0, "utf8");

1214+

writeFileSync(scriptPath, createAwsMacosScriptStdinWrapper(script), "utf8");

1215+

chmodSync(scriptPath, 0o700);

1216+

return {

1217+

args: replaceRunFlagWithScript(commandArgs, "--script-stdin", scriptPath),

1218+

cleanup: () => rmSync(scriptRoot, { recursive: true, force: true }),

1219+

prepared: true,

1220+

};

1221+

}

1222+1223+

function createAwsMacosScriptStdinWrapper(script) {

1224+

if (!script.startsWith("#!")) {

1225+

return `${remoteAwsMacosJsBootstrap()} || exit $?\n${script}`;

1226+

}

1227+

const delimiter = uniqueHereDocDelimiter(script);

1228+

return [

1229+

`${remoteAwsMacosJsBootstrap()} || exit $?`,

1230+

'tmp_script="$(mktemp "${TMPDIR:-/tmp}/openclaw-crabbox-script.XXXXXX")" || exit $?',

1231+

'cleanup_openclaw_crabbox_script() { rm -f "$tmp_script"; }',

1232+

"trap cleanup_openclaw_crabbox_script EXIT",

1233+

`cat >"$tmp_script" <<'${delimiter}'`,

1234+

script.endsWith("\n") ? script.slice(0, -1) : script,

1235+

delimiter,

1236+

'chmod 700 "$tmp_script" || exit $?',

1237+

'"$tmp_script" "$@"',

1238+

"",

1239+

].join("\n");

1240+

}

1241+1242+

function uniqueHereDocDelimiter(script) {

1243+

let index = 0;

1244+

for (;;) {

1245+

const delimiter = `OPENCLAW_CRABBOX_SCRIPT_${index}`;

1246+

if (!new RegExp(`^${delimiter}$`, "mu").test(script)) {

1247+

return delimiter;

1248+

}

1249+

index += 1;

1250+

}

1251+

}

1252+11591253

function isSparseCheckout() {

11601254

const config = gitOutput(["config", "--bool", "core.sparseCheckout"]);

11611255

if (config.status === 0 && config.stdout === "true") {

@@ -1320,7 +1414,7 @@ const providers = parseProvidersFromHelp(help.text);

13201414

const displayBinary = binary === "crabbox" ? "crabbox" : relative(repoRoot, binary);

13211415

const provider = selectedProvider(args);

13221416

const commandProviderValue = commandProvider(args);

1323-

const normalizedArgs = ensureAwsMacOnDemandMarket(args, provider);

1417+

let normalizedArgs = ensureAwsMacOnDemandMarket(args, provider);

1324141813251419

console.error(

13261420

`[crabbox] bin=${displayBinary} version=${version.text || "unknown"} provider=${provider || "unknown"} providers=${providers.join(",") || "unknown"}`,

@@ -1365,36 +1459,50 @@ let childCwd = repoRoot;

13651459

let cleanupChildCwd = () => {};

13661460

let cleanupDone = false;

13671461

let remoteChangedGateBase = "";

1368-

if (shouldUseFullCheckoutForCleanSparseRemoteSync(normalizedArgs, provider)) {

1369-

const runWords = runCommandArgs(normalizedArgs);

1370-

const changedGateBase = isChangedGateCommand(runWords) ? mergeBaseForChangedGate() : "";

1371-

const checkout = prepareFullCheckoutForSync({ changedGateBase });

1372-

childCwd = checkout.dir;

1373-

cleanupChildCwd = () => checkout.cleanup();

1374-

remoteChangedGateBase = checkout.changedGateBase;

1375-

console.error(

1376-

`[crabbox] sparse clean checkout detected; syncing from temporary full checkout ${checkout.dir}`,

1377-

);

1378-

if (checkout.changedGateBase) {

1462+

let scriptStdinPrepared = false;

1463+

const scriptBootstrap = prepareAwsMacosScriptStdinBootstrap(normalizedArgs, provider);

1464+

normalizedArgs = scriptBootstrap.args;

1465+

scriptStdinPrepared = scriptBootstrap.prepared;

1466+

try {

1467+

if (shouldUseFullCheckoutForCleanSparseRemoteSync(normalizedArgs, provider)) {

1468+

const runWords = runCommandArgs(normalizedArgs);

1469+

const changedGateBase = isChangedGateCommand(runWords) ? mergeBaseForChangedGate() : "";

1470+

const checkout = prepareFullCheckoutForSync({ changedGateBase });

1471+

childCwd = checkout.dir;

1472+

cleanupChildCwd = () => checkout.cleanup();

1473+

remoteChangedGateBase = checkout.changedGateBase;

13791474

console.error(

1380-

`[crabbox] remote changed gate detected; overlaying local HEAD as worktree changes from ${checkout.changedGateBase}`,

1475+

`[crabbox] sparse clean checkout detected; syncing from temporary full checkout ${checkout.dir}`,

13811476

);

1477+

if (checkout.changedGateBase) {

1478+

console.error(

1479+

`[crabbox] remote changed gate detected; overlaying local HEAD as worktree changes from ${checkout.changedGateBase}`,

1480+

);

1481+

}

13821482

}

1483+

} catch (error) {

1484+

scriptBootstrap.cleanup();

1485+

throw error;

13831486

}

1384148713851488

function cleanupOnce() {

13861489

if (cleanupDone) {

13871490

return;

13881491

}

13891492

cleanupDone = true;

1493+

scriptBootstrap.cleanup();

13901494

cleanupChildCwd();

13911495

}

1392149613931497

const runtimeEntrypoint = commandRuntimeEntrypoint(runCommandArgs(normalizedArgs));

1394-

if (normalizedArgs[0] === "run" && provider === "aws" && runtimeEntrypoint) {

1498+

if (

1499+

normalizedArgs[0] === "run" &&

1500+

provider === "aws" &&

1501+

(runtimeEntrypoint || scriptStdinPrepared)

1502+

) {

13951503

if (isAwsMacosRemoteTarget(normalizedArgs, provider)) {

13961504

console.error(

1397-

`[crabbox] provider=aws macOS raw boxes may lack Node/Corepack/pnpm for ${runtimeEntrypoint}; bootstrapping a pinned user-local Node toolchain before the command`,

1505+

`[crabbox] provider=aws macOS raw boxes may lack Node/Corepack/pnpm for ${runtimeEntrypoint || "--script-stdin"}; bootstrapping a pinned user-local Node toolchain before the command`,

13981506

);

13991507

} else {

14001508

const id = optionValue(normalizedArgs, "--id");