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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare 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(scripts): resolve Crabbox shims on Windows · openclaw...
vincentkoc · 2026-05-23 · via Recent Commits to openclaw:main

@@ -1,13 +1,14 @@

11

#!/usr/bin/env node

22

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

3-

import { existsSync, mkdtempSync, readFileSync, rmSync } from "node:fs";

3+

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

44

import { tmpdir } from "node:os";

5-

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

5+

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

66

import { fileURLToPath } from "node:url";

7+

import { resolvePathEnvKey } from "./windows-cmd-helpers.mjs";

7889

const repoRoot = resolve(dirname(fileURLToPath(import.meta.url)), "..");

9-

const repoLocal = resolve(repoRoot, "../crabbox/bin/crabbox");

10-

const binary = existsSync(repoLocal) ? repoLocal : "crabbox";

10+

const repoLocal = resolveCrabboxBinary(process.env, process.platform);

11+

const binary = repoLocal ?? resolvePathBinary("crabbox", process.env, process.platform);

1112

const args = process.argv.slice(2);

12131314

if (args[0] === "--") {

@@ -18,11 +19,95 @@ if (args[userArgStart] === "--") {

1819

args.splice(userArgStart, 1);

1920

}

202122+

function commandCandidates(command, platform) {

23+

if (platform !== "win32") {

24+

return [command];

25+

}

26+

if (extname(command)) {

27+

return [command];

28+

}

29+

return [`${command}.exe`, `${command}.cmd`, `${command}.bat`, `${command}.com`, command];

30+

}

31+32+

function resolveCrabboxBinary(env, platform) {

33+

const base = resolve(repoRoot, "../crabbox/bin/crabbox");

34+

for (const candidate of commandCandidates(base, platform)) {

35+

if (isFile(candidate)) {

36+

return candidate;

37+

}

38+

}

39+

return null;

40+

}

41+42+

function resolvePathBinary(command, env, platform) {

43+

if (platform !== "win32") {

44+

return command;

45+

}

46+

for (const candidate of commandCandidates(command, platform)) {

47+

if (isFile(candidate)) {

48+

return candidate;

49+

}

50+

}

51+

const pathValue = env[resolvePathEnvKey(env)] ?? "";

52+

for (const dir of pathValue.split(delimiter).filter(Boolean)) {

53+

for (const candidate of commandCandidates(command, platform)) {

54+

const fullPath = resolve(dir, candidate);

55+

if (isFile(fullPath)) {

56+

return fullPath;

57+

}

58+

}

59+

}

60+

return command;

61+

}

62+63+

function isFile(path) {

64+

try {

65+

return statSync(path).isFile();

66+

} catch {

67+

return false;

68+

}

69+

}

70+71+

function spawnInvocation(command, commandArgs, env, platform) {

72+

const extension = extname(command).toLowerCase();

73+

if (platform === "win32" && (extension === ".cmd" || extension === ".bat")) {

74+

return {

75+

command: env.ComSpec ?? "cmd.exe",

76+

args: ["/d", "/s", "/c", buildBatchCommandLine(command, commandArgs)],

77+

windowsVerbatimArguments: true,

78+

};

79+

}

80+

return { command, args: commandArgs };

81+

}

82+83+

const cmdMetaCharactersRe = /([()\][%!^"`<>&|;, *?])/g;

84+85+

function escapeBatchCommand(command) {

86+

return `${command}`.replace(cmdMetaCharactersRe, "^$1");

87+

}

88+89+

function escapeBatchArgument(arg) {

90+

let escaped = `${arg}`;

91+

escaped = escaped.replace(/(?=(\\+?)?)\1"/g, '$1$1\\"');

92+

escaped = escaped.replace(/(?=(\\+?)?)\1$/, "$1$1");

93+

escaped = `"${escaped}"`;

94+

escaped = escaped.replace(cmdMetaCharactersRe, "^$1");

95+

return escaped.replace(cmdMetaCharactersRe, "^$1");

96+

}

97+98+

function buildBatchCommandLine(command, commandArgs) {

99+

const escapedCommand = escapeBatchCommand(command);

100+

const escapedArgs = commandArgs.map(escapeBatchArgument);

101+

return `"${[escapedCommand, ...escapedArgs].join(" ")}"`;

102+

}

103+21104

function checkedOutput(command, commandArgs) {

22-

const result = spawnSync(command, commandArgs, {

105+

const invocation = spawnInvocation(command, commandArgs, process.env, process.platform);

106+

const result = spawnSync(invocation.command, invocation.args, {

23107

cwd: repoRoot,

24108

encoding: "utf8",

25109

stdio: ["ignore", "pipe", "pipe"],

110+

windowsVerbatimArguments: invocation.windowsVerbatimArguments,

26111

});

27112

return {

28113

status: result.status ?? 1,

@@ -31,10 +116,13 @@ function checkedOutput(command, commandArgs) {

31116

}

3211733118

function gitOutput(commandArgs) {

34-

const result = spawnSync("git", commandArgs, {

119+

const gitBinary = resolvePathBinary("git", process.env, process.platform);

120+

const invocation = spawnInvocation(gitBinary, commandArgs, process.env, process.platform);

121+

const result = spawnSync(invocation.command, invocation.args, {

35122

cwd: repoRoot,

36123

encoding: "utf8",

37124

stdio: ["ignore", "pipe", "pipe"],

125+

windowsVerbatimArguments: invocation.windowsVerbatimArguments,

38126

});

39127

return {

40128

status: result.status ?? 1,

@@ -609,10 +697,12 @@ if (

609697

}

610698611699

const childArgs = childCwd === repoRoot ? args : absolutizeLocalRunPaths(args);

612-

const child = spawn(binary, childArgs, {

700+

const childInvocation = spawnInvocation(binary, childArgs, childEnv, process.platform);

701+

const child = spawn(childInvocation.command, childInvocation.args, {

613702

cwd: childCwd,

614703

stdio: "inherit",

615704

env: childEnv,

705+

windowsVerbatimArguments: childInvocation.windowsVerbatimArguments,

616706

});

617707618708

const signalExitCodes = new Map([