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

推荐订阅源

雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
MyScale Blog
MyScale Blog
A
About on SuperTechFans
博客园_首页
B
Blog RSS Feed
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
I
InfoQ
罗磊的独立博客

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
refactor(scripts): share mobile version arg parsing · ope...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,51 +1,9 @@

11

// Android Sync Versioning script supports OpenClaw repository automation.

22

import path from "node:path";

33

import { syncAndroidVersioning } from "./lib/android-version.ts";

4+

import { parseVersionSyncArgs } from "./lib/version-script-args.ts";

45
5-

type Mode = "check" | "write";

6-
7-

export function parseArgs(argv: string[]): { help: boolean; mode: Mode; rootDir: string } {

8-

let help = false;

9-

let mode: Mode = "write";

10-

let rootDir = path.resolve(".");

11-
12-

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

13-

const arg = argv[index];

14-

switch (arg) {

15-

case "--check": {

16-

mode = "check";

17-

break;

18-

}

19-

case "--write": {

20-

mode = "write";

21-

break;

22-

}

23-

case "--root": {

24-

rootDir = path.resolve(readOptionValue(argv, index, "--root"));

25-

index += 1;

26-

break;

27-

}

28-

case "-h":

29-

case "--help": {

30-

help = true;

31-

break;

32-

}

33-

default: {

34-

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

35-

}

36-

}

37-

}

38-
39-

return { help, mode, rootDir };

40-

}

41-
42-

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

43-

const value = argv[index + 1];

44-

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

45-

throw new Error(`Missing value for ${flag}.`);

46-

}

47-

return value;

48-

}

6+

export { parseVersionSyncArgs as parseArgs } from "./lib/version-script-args.ts";

497
508

function printUsage(): void {

519

process.stdout.write(

@@ -54,7 +12,7 @@ function printUsage(): void {

5412

}

5513
5614

function main(argv = process.argv.slice(2)): number {

57-

const options = parseArgs(argv);

15+

const options = parseVersionSyncArgs(argv);

5816

if (options.help) {

5917

printUsage();

6018

return 0;

Original file line numberDiff line numberDiff line change

@@ -1,63 +1,6 @@

11

// Android Version script supports OpenClaw repository automation.

2-

import path from "node:path";

32

import { resolveAndroidVersion } from "./lib/android-version.ts";

4-
5-

type CliOptions = {

6-

field: string | null;

7-

format: "json" | "shell";

8-

help: boolean;

9-

rootDir: string;

10-

};

11-
12-

function parseArgs(argv: string[]): CliOptions {

13-

let field: string | null = null;

14-

let format: "json" | "shell" = "json";

15-

let help = false;

16-

let rootDir = path.resolve(".");

17-
18-

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

19-

const arg = argv[index];

20-

switch (arg) {

21-

case "--field": {

22-

field = readOptionValue(argv, index, "--field");

23-

index += 1;

24-

break;

25-

}

26-

case "--json": {

27-

format = "json";

28-

break;

29-

}

30-

case "--shell": {

31-

format = "shell";

32-

break;

33-

}

34-

case "--root": {

35-

const value = readOptionValue(argv, index, "--root");

36-

rootDir = path.resolve(value);

37-

index += 1;

38-

break;

39-

}

40-

case "-h":

41-

case "--help": {

42-

help = true;

43-

break;

44-

}

45-

default: {

46-

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

47-

}

48-

}

49-

}

50-
51-

return { field, format, help, rootDir };

52-

}

53-
54-

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

55-

const value = argv[index + 1];

56-

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

57-

throw new Error(`Missing value for ${flag}.`);

58-

}

59-

return value;

60-

}

3+

import { parseVersionQueryArgs } from "./lib/version-script-args.ts";

614
625

function printUsage(): void {

636

process.stdout.write(

@@ -66,7 +9,7 @@ function printUsage(): void {

669

}

6710
6811

function main(argv = process.argv.slice(2)): number {

69-

const options = parseArgs(argv);

12+

const options = parseVersionQueryArgs(argv);

7013

if (options.help) {

7114

printUsage();

7215

return 0;

Original file line numberDiff line numberDiff line change

@@ -1,51 +1,9 @@

11

// Ios Sync Versioning script supports OpenClaw repository automation.

22

import path from "node:path";

33

import { syncIosVersioning } from "./lib/ios-version.ts";

4+

import { parseVersionSyncArgs } from "./lib/version-script-args.ts";

45
5-

type Mode = "check" | "write";

6-
7-

export function parseArgs(argv: string[]): { help: boolean; mode: Mode; rootDir: string } {

8-

let help = false;

9-

let mode: Mode = "write";

10-

let rootDir = path.resolve(".");

11-
12-

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

13-

const arg = argv[index];

14-

switch (arg) {

15-

case "--check": {

16-

mode = "check";

17-

break;

18-

}

19-

case "--write": {

20-

mode = "write";

21-

break;

22-

}

23-

case "--root": {

24-

rootDir = path.resolve(readOptionValue(argv, index, "--root"));

25-

index += 1;

26-

break;

27-

}

28-

case "-h":

29-

case "--help": {

30-

help = true;

31-

break;

32-

}

33-

default: {

34-

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

35-

}

36-

}

37-

}

38-
39-

return { help, mode, rootDir };

40-

}

41-
42-

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

43-

const value = argv[index + 1];

44-

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

45-

throw new Error(`Missing value for ${flag}.`);

46-

}

47-

return value;

48-

}

6+

export { parseVersionSyncArgs as parseArgs } from "./lib/version-script-args.ts";

497
508

function printUsage(): void {

519

process.stdout.write(

@@ -54,7 +12,7 @@ function printUsage(): void {

5412

}

5513
5614

function main(argv = process.argv.slice(2)): number {

57-

const options = parseArgs(argv);

15+

const options = parseVersionSyncArgs(argv);

5816

if (options.help) {

5917

printUsage();

6018

return 0;

Original file line numberDiff line numberDiff line change

@@ -1,63 +1,6 @@

11

// Ios Version script supports OpenClaw repository automation.

2-

import path from "node:path";

32

import { resolveIosVersion } from "./lib/ios-version.ts";

4-
5-

type CliOptions = {

6-

field: string | null;

7-

format: "json" | "shell";

8-

help: boolean;

9-

rootDir: string;

10-

};

11-
12-

function parseArgs(argv: string[]): CliOptions {

13-

let field: string | null = null;

14-

let format: "json" | "shell" = "json";

15-

let help = false;

16-

let rootDir = path.resolve(".");

17-
18-

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

19-

const arg = argv[index];

20-

switch (arg) {

21-

case "--field": {

22-

field = readOptionValue(argv, index, "--field");

23-

index += 1;

24-

break;

25-

}

26-

case "--json": {

27-

format = "json";

28-

break;

29-

}

30-

case "--shell": {

31-

format = "shell";

32-

break;

33-

}

34-

case "--root": {

35-

const value = readOptionValue(argv, index, "--root");

36-

rootDir = path.resolve(value);

37-

index += 1;

38-

break;

39-

}

40-

case "-h":

41-

case "--help": {

42-

help = true;

43-

break;

44-

}

45-

default: {

46-

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

47-

}

48-

}

49-

}

50-
51-

return { field, format, help, rootDir };

52-

}

53-
54-

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

55-

const value = argv[index + 1];

56-

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

57-

throw new Error(`Missing value for ${flag}.`);

58-

}

59-

return value;

60-

}

3+

import { parseVersionQueryArgs } from "./lib/version-script-args.ts";

614
625

function printUsage(): void {

636

process.stdout.write(

@@ -66,7 +9,7 @@ function printUsage(): void {

669

}

6710
6811

function main(argv = process.argv.slice(2)): number {

69-

const options = parseArgs(argv);

12+

const options = parseVersionQueryArgs(argv);

7013

if (options.help) {

7114

printUsage();

7215

return 0;

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,100 @@

1+

import path from "node:path";

2+
3+

export type VersionScriptFormat = "json" | "shell";

4+

export type VersionQueryCliOptions = {

5+

field: string | null;

6+

format: VersionScriptFormat;

7+

help: boolean;

8+

rootDir: string;

9+

};

10+

export type VersionSyncMode = "check" | "write";

11+

export type VersionSyncCliOptions = {

12+

help: boolean;

13+

mode: VersionSyncMode;

14+

rootDir: string;

15+

};

16+
17+

export function parseVersionQueryArgs(argv: string[]): VersionQueryCliOptions {

18+

let field: string | null = null;

19+

let format: VersionScriptFormat = "json";

20+

let help = false;

21+

let rootDir = path.resolve(".");

22+
23+

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

24+

const arg = argv[index];

25+

switch (arg) {

26+

case "--field": {

27+

field = readOptionValue(argv, index, "--field");

28+

index += 1;

29+

break;

30+

}

31+

case "--json": {

32+

format = "json";

33+

break;

34+

}

35+

case "--shell": {

36+

format = "shell";

37+

break;

38+

}

39+

case "--root": {

40+

const value = readOptionValue(argv, index, "--root");

41+

rootDir = path.resolve(value);

42+

index += 1;

43+

break;

44+

}

45+

case "-h":

46+

case "--help": {

47+

help = true;

48+

break;

49+

}

50+

default: {

51+

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

52+

}

53+

}

54+

}

55+
56+

return { field, format, help, rootDir };

57+

}

58+
59+

export function parseVersionSyncArgs(argv: string[]): VersionSyncCliOptions {

60+

let help = false;

61+

let mode: VersionSyncMode = "write";

62+

let rootDir = path.resolve(".");

63+
64+

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

65+

const arg = argv[index];

66+

switch (arg) {

67+

case "--check": {

68+

mode = "check";

69+

break;

70+

}

71+

case "--write": {

72+

mode = "write";

73+

break;

74+

}

75+

case "--root": {

76+

rootDir = path.resolve(readOptionValue(argv, index, "--root"));

77+

index += 1;

78+

break;

79+

}

80+

case "-h":

81+

case "--help": {

82+

help = true;

83+

break;

84+

}

85+

default: {

86+

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

87+

}

88+

}

89+

}

90+
91+

return { help, mode, rootDir };

92+

}

93+
94+

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

95+

const value = argv[index + 1];

96+

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

97+

throw new Error(`Missing value for ${flag}.`);

98+

}

99+

return value;

100+

}