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

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator 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
perf(cli): speed up precomputed command help startup · op...
yyzquwu · 2026-06-22 · via Recent Commits to openclaw:main

@@ -371,22 +371,120 @@ const buildMissingEntryErrorMessage = async () => {

371371

const isBareRootHelpInvocation = (argv) =>

372372

argv.length === 3 && (argv[2] === "--help" || argv[2] === "-h");

373373374-

const resolvePrecomputedCommandHelp = (argv) => {

375-

if (argv.length !== 4 || (argv[3] !== "--help" && argv[3] !== "-h")) {

376-

return null;

374+

const LAUNCHER_HELP_FLAGS = new Set(["-h", "--help"]);

375+

const LAUNCHER_ROOT_BOOLEAN_FLAGS = new Set(["--dev", "--no-color"]);

376+

const LAUNCHER_ROOT_VALUE_FLAGS = new Set(["--profile", "--log-level", "--container"]);

377+

const LAUNCHER_PRECOMPUTED_COMMAND_HELP = {

378+

browser: { command: "browser", metadataKey: "browserHelpText" },

379+

secrets: { command: "secrets", metadataKey: "secretsHelpText" },

380+

nodes: { command: "nodes", metadataKey: "nodesHelpText" },

381+

};

382+

const LAUNCHER_PRECOMPUTED_SUBCOMMAND_HELP = new Set([

383+

"doctor",

384+

"gateway",

385+

"models",

386+

"plugins",

387+

"sessions",

388+

"tasks",

389+

]);

390+391+

const isLauncherRootOptionValueToken = (arg) => {

392+

if (!arg || arg === "--") {

393+

return false;

394+

}

395+

if (!arg.startsWith("-")) {

396+

return true;

377397

}

378-

if (argv[2] === "browser") {

379-

return { command: "browser", metadataKey: "browserHelpText" };

398+

return /^-\d+(?:\.\d+)?$/.test(arg);

399+

};

400+401+

const consumeLauncherRootOptionToken = (args, index) => {

402+

const arg = args[index];

403+

if (!arg) {

404+

return 0;

405+

}

406+

if (LAUNCHER_ROOT_BOOLEAN_FLAGS.has(arg)) {

407+

return 1;

380408

}

381-

if (argv[2] === "secrets") {

382-

return { command: "secrets", metadataKey: "secretsHelpText" };

409+

if (

410+

arg.startsWith("--profile=") ||

411+

arg.startsWith("--log-level=") ||

412+

arg.startsWith("--container=")

413+

) {

414+

return 1;

383415

}

384-

if (argv[2] === "nodes") {

385-

return { command: "nodes", metadataKey: "nodesHelpText" };

416+

if (LAUNCHER_ROOT_VALUE_FLAGS.has(arg)) {

417+

return isLauncherRootOptionValueToken(args[index + 1]) ? 2 : 1;

418+

}

419+

return 0;

420+

};

421+422+

const hasLauncherContainerTarget = (argv) => {

423+

if (normalizeLauncherMetadataValue(process.env.OPENCLAW_CONTAINER)) {

424+

return true;

425+

}

426+

const args = argv.slice(2);

427+

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

428+

const arg = args[index];

429+

if (!arg || arg === "--") {

430+

return false;

431+

}

432+

if (arg === "--container" || arg.startsWith("--container=")) {

433+

return true;

434+

}

435+

}

436+

return false;

437+

};

438+439+

const resolvePrecomputedCommandHelpByName = (commandName) => {

440+

if (Object.hasOwn(LAUNCHER_PRECOMPUTED_COMMAND_HELP, commandName)) {

441+

return LAUNCHER_PRECOMPUTED_COMMAND_HELP[commandName];

442+

}

443+

if (LAUNCHER_PRECOMPUTED_SUBCOMMAND_HELP.has(commandName)) {

444+

return {

445+

command: commandName,

446+

metadataKey: "subcommandHelpText",

447+

subcommandKey: commandName,

448+

};

386449

}

387450

return null;

388451

};

389452453+

const resolvePrecomputedCommandHelp = (argv) => {

454+

const args = argv.slice(2);

455+

let commandHelp = null;

456+

let sawHelp = false;

457+458+

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

459+

const arg = args[index];

460+

if (!arg || arg === "--") {

461+

return null;

462+

}

463+

if (!commandHelp) {

464+

const consumed = consumeLauncherRootOptionToken(args, index);

465+

if (consumed > 0) {

466+

index += consumed - 1;

467+

continue;

468+

}

469+

if (arg.startsWith("-")) {

470+

return null;

471+

}

472+

commandHelp = resolvePrecomputedCommandHelpByName(arg);

473+

if (!commandHelp) {

474+

return null;

475+

}

476+

continue;

477+

}

478+

if (LAUNCHER_HELP_FLAGS.has(arg)) {

479+

sawHelp = true;

480+

continue;

481+

}

482+

return null;

483+

}

484+485+

return commandHelp && sawHelp ? commandHelp : null;

486+

};

487+390488

const isHelpFastPathDisabled = () =>

391489

process.env.OPENCLAW_DISABLE_CLI_STARTUP_HELP_FAST_PATH === "1";

392490

@@ -456,11 +554,11 @@ const shouldDeferRootHelpToRuntimeEntry = () => {

456554

return false;

457555

};

458556459-

const loadPrecomputedHelpText = (key) => {

557+

const loadPrecomputedHelpText = (key, subkey) => {

460558

try {

461559

const raw = readFileSync(new URL("./dist/cli-startup-metadata.json", import.meta.url), "utf8");

462560

const parsed = JSON.parse(raw);

463-

const value = parsed?.[key];

561+

const value = subkey ? parsed?.[key]?.[subkey] : parsed?.[key];

464562

return typeof value === "string" && value.length > 0 ? value : null;

465563

} catch {

466564

return null;

@@ -650,10 +748,13 @@ const tryOutputPrecomputedCommandHelp = () => {

650748

if (!commandHelp) {

651749

return false;

652750

}

751+

if (hasLauncherContainerTarget(process.argv)) {

752+

return false;

753+

}

653754

if (commandHelp.command === "nodes" && shouldDeferRootHelpToRuntimeEntry()) {

654755

return false;

655756

}

656-

const precomputed = loadPrecomputedHelpText(commandHelp.metadataKey);

757+

const precomputed = loadPrecomputedHelpText(commandHelp.metadataKey, commandHelp.subcommandKey);

657758

if (!precomputed) {

658759

return false;

659760

}