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

推荐订阅源

量子位
Recent Announcements
Recent Announcements
D
Docker
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
腾讯CDC
B
Blog
博客园_首页
罗磊的独立博客
D
DataBreaches.Net
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence

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): guard model resolution profiler args · opencla...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

@@ -26,6 +26,23 @@ type Options = {

2626

warmup: number;

2727

};

282829+

const BOOLEAN_FLAGS = new Set(["--help", "-h", "--json", "--keep-temp", "--runtime-hooks"]);

30+

const VALUE_FLAGS = new Set([

31+

"--agents",

32+

"--cpu-prof-dir",

33+

"--cpu-prof-output",

34+

"--lookups",

35+

"--models-per-provider",

36+

"--output",

37+

"--providers",

38+

"--runs",

39+

"--warmup",

40+

]);

41+42+

class CliArgumentError extends Error {

43+

override name = "CliArgumentError";

44+

}

45+2946

type PhaseSample = {

3047

ensureMs: number;

3148

resolveMs: number;

@@ -73,7 +90,11 @@ function parseFlagValue(flag: string): string | undefined {

7390

if (index === -1) {

7491

return undefined;

7592

}

76-

return process.argv[index + 1];

93+

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

94+

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

95+

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

96+

}

97+

return value;

7798

}

789979100

function hasFlag(flag: string): boolean {

@@ -85,9 +106,12 @@ function parsePositiveInt(flag: string, fallback: number): number {

85106

if (!raw) {

86107

return fallback;

87108

}

88-

const value = Number.parseInt(raw, 10);

109+

const value = Number(raw);

89110

if (!Number.isFinite(value) || value <= 0) {

90-

throw new Error(`${flag} must be a positive integer`);

111+

throw new CliArgumentError(`${flag} must be a positive integer`);

112+

}

113+

if (!Number.isInteger(value)) {

114+

throw new CliArgumentError(`${flag} must be a positive integer`);

91115

}

92116

return value;

93117

}

@@ -97,14 +121,32 @@ function parseNonNegativeInt(flag: string, fallback: number): number {

97121

if (!raw) {

98122

return fallback;

99123

}

100-

const value = Number.parseInt(raw, 10);

124+

const value = Number(raw);

101125

if (!Number.isFinite(value) || value < 0) {

102-

throw new Error(`${flag} must be a non-negative integer`);

126+

throw new CliArgumentError(`${flag} must be a non-negative integer`);

127+

}

128+

if (!Number.isInteger(value)) {

129+

throw new CliArgumentError(`${flag} must be a non-negative integer`);

103130

}

104131

return value;

105132

}

106133134+

function validateCliArgs(args = process.argv.slice(2)): void {

135+

for (let index = 0; index < args.length; index += 1) {

136+

const arg = args[index] ?? "";

137+

if (BOOLEAN_FLAGS.has(arg)) {

138+

continue;

139+

}

140+

if (VALUE_FLAGS.has(arg)) {

141+

index += 1;

142+

continue;

143+

}

144+

throw new CliArgumentError(`Unknown argument: ${arg}`);

145+

}

146+

}

147+107148

function parseOptions(): Options {

149+

validateCliArgs();

108150

return {

109151

agentCount: parsePositiveInt("--agents", 8),

110152

cpuProfDir: parseFlagValue("--cpu-prof-dir"),

@@ -494,6 +536,10 @@ async function main(): Promise<void> {

494536

}

495537496538

main().catch((error: unknown) => {

539+

if (error instanceof CliArgumentError) {

540+

process.stderr.write(`${error.message}\n`);

541+

process.exit(1);

542+

}

497543

const message = error instanceof Error ? (error.stack ?? error.message) : String(error);

498544

process.stderr.write(`${message}\n`);

499545

process.exit(1);