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

推荐订阅源

宝玉的分享
宝玉的分享
小众软件
小众软件
J
Java Code Geeks
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
L
LangChain Blog
博客园 - 司徒正美
量子位
Y
Y Combinator Blog
C
Check Point Blog
T
Tailwind CSS Blog
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
V
V2EX
阮一峰的网络日志
阮一峰的网络日志

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): harden shared flag parsing · openclaw/openc...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main

@@ -20,46 +20,116 @@ export function readFlagValue(args, name) {

2020

return undefined;

2121

}

222223-

function consumeStringFlag(argv, index, flag, currentValue) {

23+

function consumeStringFlag(argv, index, flag) {

24+

const inlineValue = readInlineFlagValue(argv[index], flag);

25+

if (inlineValue !== null) {

26+

if (!inlineValue) {

27+

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

28+

}

29+

return {

30+

nextIndex: index,

31+

value: inlineValue,

32+

};

33+

}

2434

if (argv[index] !== flag) {

2535

return null;

2636

}

37+

const value = argv[index + 1];

38+

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

39+

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

40+

}

2741

return {

2842

nextIndex: index + 1,

29-

value: argv[index + 1] ?? currentValue,

43+

value,

3044

};

3145

}

324633-

function consumeIntFlag(argv, index, flag, currentValue, options = {}) {

34-

if (argv[index] !== flag) {

47+

function consumeIntFlag(argv, index, flag, options = {}) {

48+

const raw = readFlagOptionValue(argv, index, flag);

49+

if (!raw) {

3550

return null;

3651

}

37-

const parsed = Number.parseInt(argv[index + 1] ?? "", 10);

52+

const parsed = parseIntegerFlagValue(raw.value, flag);

3853

const min = options.min ?? Number.NEGATIVE_INFINITY;

54+

if (parsed < min) {

55+

throw new Error(`${flag} must be at least ${min}`);

56+

}

3957

return {

40-

nextIndex: index + 1,

41-

value: Number.isFinite(parsed) && parsed >= min ? parsed : currentValue,

58+

nextIndex: raw.nextIndex,

59+

value: parsed,

4260

};

4361

}

446245-

function consumeFloatFlag(argv, index, flag, currentValue, options = {}) {

46-

if (argv[index] !== flag) {

63+

function consumeFloatFlag(argv, index, flag, options = {}) {

64+

const raw = readFlagOptionValue(argv, index, flag);

65+

if (!raw) {

4766

return null;

4867

}

49-

const parsed = Number.parseFloat(argv[index + 1] ?? "");

68+

const parsed = parseFloatFlagValue(raw.value, flag);

5069

const min = options.min ?? Number.NEGATIVE_INFINITY;

5170

const includeMin = options.includeMin ?? true;

5271

const isValid = Number.isFinite(parsed) && (includeMin ? parsed >= min : parsed > min);

72+

if (!isValid) {

73+

const comparator = includeMin ? "at least" : "greater than";

74+

throw new Error(`${flag} must be ${comparator} ${min}`);

75+

}

5376

return {

54-

nextIndex: index + 1,

55-

value: isValid ? parsed : currentValue,

77+

nextIndex: raw.nextIndex,

78+

value: parsed,

5679

};

5780

}

588182+

function readInlineFlagValue(arg, flag) {

83+

const prefix = `${flag}=`;

84+

return arg.startsWith(prefix) ? arg.slice(prefix.length) : null;

85+

}

86+87+

function readFlagOptionValue(argv, index, flag) {

88+

const inlineValue = readInlineFlagValue(argv[index], flag);

89+

if (inlineValue !== null) {

90+

if (!inlineValue) {

91+

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

92+

}

93+

return { nextIndex: index, value: inlineValue };

94+

}

95+

if (argv[index] !== flag) {

96+

return null;

97+

}

98+

const value = argv[index + 1];

99+

if (!value) {

100+

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

101+

}

102+

return { nextIndex: index + 1, value };

103+

}

104+105+

function parseIntegerFlagValue(raw, flag) {

106+

const text = String(raw).trim();

107+

if (!/^-?\d+$/u.test(text)) {

108+

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

109+

}

110+

const parsed = Number(text);

111+

if (!Number.isSafeInteger(parsed)) {

112+

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

113+

}

114+

return parsed;

115+

}

116+117+

function parseFloatFlagValue(raw, flag) {

118+

const text = String(raw).trim();

119+

if (!/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(text)) {

120+

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

121+

}

122+

const parsed = Number(text);

123+

if (!Number.isFinite(parsed)) {

124+

throw new Error(`${flag} must be a finite number`);

125+

}

126+

return parsed;

127+

}

128+59129

export function stringFlag(flag, key) {

60130

return {

61-

consume(argv, index, args) {

62-

const option = consumeStringFlag(argv, index, flag, args[key]);

131+

consume(argv, index) {

132+

const option = consumeStringFlag(argv, index, flag);

63133

if (!option) {

64134

return null;

65135

}

@@ -91,15 +161,15 @@ function createAssignedValueFlag(consumeOption) {

91161

}

9216293163

export function intFlag(flag, key, options) {

94-

return createAssignedValueFlag((argv, index, args) => {

95-

const option = consumeIntFlag(argv, index, flag, args[key], options);

164+

return createAssignedValueFlag((argv, index) => {

165+

const option = consumeIntFlag(argv, index, flag, options);

96166

return option ? { ...option, key } : null;

97167

});

98168

}

99169100170

export function floatFlag(flag, key, options) {

101-

return createAssignedValueFlag((argv, index, args) => {

102-

const option = consumeFloatFlag(argv, index, flag, args[key], options);

171+

return createAssignedValueFlag((argv, index) => {

172+

const option = consumeFloatFlag(argv, index, flag, options);

103173

return option ? { ...option, key } : null;

104174

});

105175

}