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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
博客园 - 叶小钗
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
罗磊的独立博客
量子位
Jina AI
Jina AI
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
S
SegmentFault 最新的问题
小众软件
小众软件
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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): reject short flag values in benchmark CLIs ...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -449,7 +449,7 @@ function parseFlagValue(flag: string): string | undefined {

449449

return undefined;

450450

}

451451

const value = process.argv[idx + 1];

452-

if (!value || value.startsWith("--")) {

452+

if (!value || value.startsWith("-")) {

453453

throw new Error(`${flag} requires a value`);

454454

}

455455

return value;

@@ -462,7 +462,8 @@ function hasFlag(flag: string): boolean {

462462

function parseRepeatableFlag(flag: string): string[] {

463463

const values: string[] = [];

464464

for (let i = 0; i < process.argv.length; i += 1) {

465-

if (process.argv[i] === flag && process.argv[i + 1]) {

465+

const value = process.argv[i + 1];

466+

if (process.argv[i] === flag && value && !value.startsWith("-")) {

466467

values.push(process.argv[i + 1]);

467468

}

468469

}

@@ -474,7 +475,7 @@ function validateCliArgs(argv: readonly string[] = process.argv.slice(2)): void

474475

const arg = argv[index];

475476

if (VALUE_FLAGS.has(arg)) {

476477

const value = argv[index + 1];

477-

if (!value || value.startsWith("--")) {

478+

if (!value || value.startsWith("-")) {

478479

throw new Error(`${arg} requires a value`);

479480

}

480481

index += 1;

@@ -1161,12 +1162,12 @@ function readBenchmarkComparisonForTesting(

11611162

}

11621163
11631164

async function main(): Promise<void> {

1165+

validateCliArgs();

11641166

if (hasFlag("--help")) {

11651167

printUsage();

11661168

return;

11671169

}

11681170
1169-

validateCliArgs();

11701171

const options = parseOptions();

11711172

if (options.compareBaseline || options.compareCandidate) {

11721173

if (!options.compareBaseline || !options.compareCandidate) {

Original file line numberDiff line numberDiff line change

@@ -33,7 +33,7 @@ class CliArgumentError extends Error {

3333
3434

function readValue(argv: string[], index: number, flag: string): string {

3535

const value = argv[index + 1]?.trim() ?? "";

36-

if (!value || value.startsWith("--")) {

36+

if (!value || value.startsWith("-")) {

3737

throw new CliArgumentError(`${flag} requires a value`);

3838

}

3939

return value;

Original file line numberDiff line numberDiff line change

@@ -53,12 +53,16 @@ Options:

5353
5454

function readOptionValue(argv: readonly string[], index: number, arg: string) {

5555

const value = argv[index + 1] ?? "";

56-

if (!value || value.startsWith("--")) {

56+

if (!value || value.startsWith("-")) {

5757

throw new Error(`${arg} requires a value`);

5858

}

5959

return value;

6060

}

6161
62+

function isHelpRequest(argv: readonly string[]) {

63+

return argv.length === 1 && (argv[0] === "--help" || argv[0] === "-h");

64+

}

65+
6266

function parseOptions(argv: readonly string[]): ProducerOptions {

6367

let artifactBase = "";

6468

let repoRoot = process.cwd();

@@ -698,7 +702,7 @@ export async function runUxMatrixEvidenceProducer(options: ProducerOptions) {

698702

if (import.meta.url === pathToFileURL(process.argv[1] ?? "").href) {

699703

(async () => {

700704

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

701-

if (cliArgs.includes("--help") || cliArgs.includes("-h")) {

705+

if (isHelpRequest(cliArgs)) {

702706

console.log(usage());

703707

return;

704708

}

Original file line numberDiff line numberDiff line change

@@ -36,14 +36,34 @@ describe("bench-cli-startup", () => {

3636

expect(result.stderr).not.toContain("\n at ");

3737

});

3838
39+

it("rejects short flag values before running benchmarks", () => {

40+

expect(() => testing.validateCliArgs(["--output", "-h"])).toThrow("--output requires a value");

41+

expect(() => testing.validateCliArgs(["--case", "-h"])).toThrow("--case requires a value");

42+
43+

const result = spawnSync(

44+

process.execPath,

45+

["--import", "tsx", "scripts/bench-cli-startup.ts", "--output", "-h"],

46+

{

47+

cwd: join(__dirname, "../.."),

48+

encoding: "utf8",

49+

},

50+

);

51+
52+

expect(result.status).toBe(1);

53+

expect(result.stdout).toBe("");

54+

expect(result.stderr.trim()).toBe("--output requires a value");

55+

expect(result.stderr).not.toContain("Node.js");

56+

expect(result.stderr).not.toContain("\n at ");

57+

});

58+
3959

it.runIf(process.platform !== "win32")(

4060

"cleans timed-out benchmark process groups when the leader exits first",

4161

() => {

4262

const tempDirs = createTempDirTracker();

4363

const tmpDir = tempDirs.make("openclaw-cli-startup-timeout-group-");

4464

const entryPath = join(tmpDir, "entry.mjs");

4565

const childPidPath = join(tmpDir, "child.pid");

46-

let childPid = 0;

66+

let childPid: number | undefined;

4767

try {

4868

writeFileSync(

4969

entryPath,

@@ -93,7 +113,7 @@ describe("bench-cli-startup", () => {

93113

expect(result.stderr).toContain("version sample 1: timed out");

94114

expect(isProcessAlive(childPid)).toBe(false);

95115

} finally {

96-

if (childPid && isProcessAlive(childPid)) {

116+

if (childPid !== undefined && isProcessAlive(childPid)) {

97117

process.kill(childPid, "SIGKILL");

98118

}

99119

tempDirs.cleanup();

Original file line numberDiff line numberDiff line change

@@ -47,6 +47,18 @@ describe("scripts/bench-model", () => {

4747

expect(result.stderr).not.toContain("Missing ANTHROPIC_API_KEY");

4848

});

4949
50+

it("rejects short flag values before checking provider credentials", () => {

51+

expect(() => testing.parseArgs(["--prompt", "-h"])).toThrow("--prompt requires a value");

52+

expect(() => testing.parseArgs(["--runs", "-h"])).toThrow("--runs requires a value");

53+
54+

const result = runBenchModel(["--prompt", "-h"]);

55+
56+

expect(result.status).toBe(1);

57+

expect(result.stdout).toBe("");

58+

expect(result.stderr.trim()).toBe("--prompt requires a value");

59+

expect(result.stderr).not.toContain("Missing ANTHROPIC_API_KEY");

60+

});

61+
5062

it("prints help without checking provider credentials", () => {

5163

const result = runBenchModel(["--help"]);

5264
Original file line numberDiff line numberDiff line change

@@ -52,6 +52,20 @@ describe("QA UX Matrix evidence producer CLI", () => {

5252

expectNoNodeStack(result.stderr);

5353

});

5454
55+

it("reports short flag values without treating them as help", () => {

56+

const artifactBaseResult = runCli("--artifact-base", "-h");

57+

const repoRootResult = runCli("--artifact-base", "/tmp/openclaw-ux-test", "--repo-root", "-h");

58+
59+

expect(artifactBaseResult.status).toBe(1);

60+

expect(artifactBaseResult.stdout).toBe("");

61+

expect(artifactBaseResult.stderr.trim()).toBe("--artifact-base requires a value");

62+

expectNoNodeStack(artifactBaseResult.stderr);

63+

expect(repoRootResult.status).toBe(1);

64+

expect(repoRootResult.stdout).toBe("");

65+

expect(repoRootResult.stderr.trim()).toBe("--repo-root requires a value");

66+

expectNoNodeStack(repoRootResult.stderr);

67+

});

68+
5569

it("sanitizes local checkout paths from generated evidence artifacts", () => {

5670

const artifactBase = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-ux-evidence-test-"));

5771

const fakeRepoRoot = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-ux-repo-test-"));