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

推荐订阅源

雷峰网
雷峰网
MongoDB | Blog
MongoDB | Blog
D
Docker
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
GbyAI
GbyAI
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
M
MIT News - Artificial intelligence
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
B
Blog RSS Feed
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
U
Unit 42

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
test: lighten fast lane imports · openclaw/openclaw@3913aa9
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -20,23 +20,36 @@ import {

2020

finalizeDebugProxyCapture,

2121

initializeDebugProxyCapture,

2222

} from "../proxy-capture/runtime.js";

23-

import {

24-

normalizeLowercaseStringOrEmpty,

25-

normalizeOptionalLowercaseString,

26-

normalizeOptionalString,

27-

} from "../shared/string-coerce.js";

23+

import { normalizeOptionalString } from "../shared/string-coerce.js";

2824

import { resolveCliArgvInvocation } from "./argv-invocation.js";

2925

import {

3026

shouldRegisterPrimaryCommandOnly,

3127

shouldSkipPluginCommandRegistration,

3228

} from "./command-registration-policy.js";

33-

import { shouldEnsureCliPathForCommandPath } from "./command-startup-policy.js";

3429

import { maybeRunCliInContainer, parseCliContainerArgs } from "./container-target.js";

3530

import { applyCliProfileEnv, parseCliProfileArgs } from "./profile.js";

3631

import { createCliProgress } from "./progress.js";

3732

import { tryRouteCli } from "./route.js";

33+

import {

34+

resolveMissingPluginCommandMessage as resolveMissingPluginCommandMessageFromPolicy,

35+

rewriteUpdateFlagArgv,

36+

shouldEnsureCliPath,

37+

shouldStartCrestodianForBareRoot,

38+

shouldStartCrestodianForModernOnboard,

39+

shouldUseBrowserHelpFastPath,

40+

shouldUseRootHelpFastPath,

41+

} from "./run-main-policy.js";

3842

import { normalizeWindowsArgv } from "./windows-argv.js";

394344+

export {

45+

rewriteUpdateFlagArgv,

46+

shouldEnsureCliPath,

47+

shouldStartCrestodianForBareRoot,

48+

shouldStartCrestodianForModernOnboard,

49+

shouldUseBrowserHelpFastPath,

50+

shouldUseRootHelpFastPath,

51+

} from "./run-main-policy.js";

52+4053

async function closeCliMemoryManagers(): Promise<void> {

4154

if (!hasMemoryRuntime()) {

4255

return;

@@ -49,129 +62,15 @@ async function closeCliMemoryManagers(): Promise<void> {

4962

}

5063

}

516452-

export function rewriteUpdateFlagArgv(argv: string[]): string[] {

53-

const index = argv.indexOf("--update");

54-

if (index === -1) {

55-

return argv;

56-

}

57-58-

const next = [...argv];

59-

next.splice(index, 1, "update");

60-

return next;

61-

}

62-63-

export function shouldEnsureCliPath(argv: string[]): boolean {

64-

const invocation = resolveCliArgvInvocation(argv);

65-

if (invocation.hasHelpOrVersion || shouldStartCrestodianForBareRoot(argv)) {

66-

return false;

67-

}

68-

return shouldEnsureCliPathForCommandPath(invocation.commandPath);

69-

}

70-71-

export function shouldUseRootHelpFastPath(argv: string[]): boolean {

72-

const invocation = resolveCliArgvInvocation(argv);

73-

return (

74-

process.env.OPENCLAW_DISABLE_CLI_STARTUP_HELP_FAST_PATH !== "1" &&

75-

(invocation.isRootHelpInvocation ||

76-

(invocation.commandPath.length === 1 &&

77-

invocation.commandPath[0] === "help" &&

78-

invocation.hasHelpOrVersion))

79-

);

80-

}

81-82-

export function shouldUseBrowserHelpFastPath(argv: string[]): boolean {

83-

if (process.env.OPENCLAW_DISABLE_CLI_STARTUP_HELP_FAST_PATH === "1") {

84-

return false;

85-

}

86-

const invocation = resolveCliArgvInvocation(argv);

87-

return (

88-

invocation.commandPath.length === 1 &&

89-

invocation.commandPath[0] === "browser" &&

90-

invocation.hasHelpOrVersion

91-

);

92-

}

93-94-

export function shouldStartCrestodianForBareRoot(argv: string[]): boolean {

95-

const invocation = resolveCliArgvInvocation(argv);

96-

return invocation.commandPath.length === 0 && !invocation.hasHelpOrVersion;

97-

}

98-99-

export function shouldStartCrestodianForModernOnboard(argv: string[]): boolean {

100-

const invocation = resolveCliArgvInvocation(argv);

101-

return (

102-

invocation.commandPath[0] === "onboard" &&

103-

argv.includes("--modern") &&

104-

!invocation.hasHelpOrVersion

105-

);

106-

}

107-10865

export function resolveMissingPluginCommandMessage(

10966

pluginId: string,

11067

config?: OpenClawConfig,

11168

options?: { registry?: PluginManifestCommandAliasRegistry },

11269

): string | null {

113-

const normalizedPluginId = normalizeLowercaseStringOrEmpty(pluginId);

114-

if (!normalizedPluginId) {

115-

return null;

116-

}

117-

const allow =

118-

Array.isArray(config?.plugins?.allow) && config.plugins.allow.length > 0

119-

? config.plugins.allow

120-

.filter((entry): entry is string => typeof entry === "string")

121-

.map((entry) => normalizeOptionalLowercaseString(entry))

122-

.filter(Boolean)

123-

: [];

124-

const commandAlias = resolveManifestCommandAliasOwner({

125-

command: normalizedPluginId,

126-

config,

127-

registry: options?.registry,

70+

return resolveMissingPluginCommandMessageFromPolicy(pluginId, config, {

71+

...(options?.registry ? { registry: options.registry } : {}),

72+

resolveCommandAliasOwner: resolveManifestCommandAliasOwner,

12873

});

129-

const parentPluginId = commandAlias?.pluginId;

130-

if (parentPluginId) {

131-

if (allow.length > 0 && !allow.includes(parentPluginId)) {

132-

return (

133-

`"${normalizedPluginId}" is not a plugin; it is a command provided by the ` +

134-

`"${parentPluginId}" plugin. Add "${parentPluginId}" to \`plugins.allow\` ` +

135-

`instead of "${normalizedPluginId}".`

136-

);

137-

}

138-

if (config?.plugins?.entries?.[parentPluginId]?.enabled === false) {

139-

return (

140-

`The \`openclaw ${normalizedPluginId}\` command is unavailable because ` +

141-

`\`plugins.entries.${parentPluginId}.enabled=false\`. Re-enable that entry if you want ` +

142-

"the bundled plugin command surface."

143-

);

144-

}

145-

if (commandAlias.kind === "runtime-slash") {

146-

const cliHint = commandAlias.cliCommand

147-

? `Use \`openclaw ${commandAlias.cliCommand}\` for related CLI operations, or `

148-

: "Use ";

149-

return (

150-

`"${normalizedPluginId}" is a runtime slash command (/${normalizedPluginId}), not a CLI command. ` +

151-

`It is provided by the "${parentPluginId}" plugin. ` +

152-

`${cliHint}\`/${normalizedPluginId}\` in a chat session.`

153-

);

154-

}

155-

}

156-157-

if (allow.length > 0 && !allow.includes(normalizedPluginId)) {

158-

if (parentPluginId && allow.includes(parentPluginId)) {

159-

return null;

160-

}

161-

return (

162-

`The \`openclaw ${normalizedPluginId}\` command is unavailable because ` +

163-

`\`plugins.allow\` excludes "${normalizedPluginId}". Add "${normalizedPluginId}" to ` +

164-

`\`plugins.allow\` if you want that bundled plugin CLI surface.`

165-

);

166-

}

167-

if (config?.plugins?.entries?.[normalizedPluginId]?.enabled === false) {

168-

return (

169-

`The \`openclaw ${normalizedPluginId}\` command is unavailable because ` +

170-

`\`plugins.entries.${normalizedPluginId}.enabled=false\`. Re-enable that entry if you want ` +

171-

"the bundled plugin CLI surface."

172-

);

173-

}

174-

return null;

17574

}

1767517776

function shouldLoadCliDotEnv(env: NodeJS.ProcessEnv = process.env): boolean {