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

推荐订阅源

I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
B
Blog
罗磊的独立博客
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
The GitHub Blog
The GitHub Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏

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: unify lazy module loaders · openclaw/openclaw@d...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,6 +1,7 @@

11

import type { Mock } from "vitest";

22

import { vi } from "vitest";

33

import type { OpenClawConfig } from "../config/types.openclaw.js";

4+

import { createLazyImportLoader } from "../shared/lazy-promise.js";

45

import { createTestRuntime } from "./test-runtime-config-helpers.js";

56
67

type ReplaceConfigFileResult = Awaited<

@@ -44,11 +45,12 @@ vi.mock("./agents.command-shared.js", () => ({

4445
4546

export const runtime = createTestRuntime();

4647
47-

let agentsBindCommandModulePromise: Promise<typeof import("./agents.commands.bind.js")> | undefined;

48+

const agentsBindCommandModuleLoader = createLazyImportLoader(

49+

() => import("./agents.commands.bind.js"),

50+

);

4851
4952

export async function loadFreshAgentsBindCommandModuleForTest() {

50-

agentsBindCommandModulePromise ??= import("./agents.commands.bind.js");

51-

return await agentsBindCommandModulePromise;

53+

return await agentsBindCommandModuleLoader.load();

5254

}

5355
5456

export function resetAgentsBindTestHarness(): void {

Original file line numberDiff line numberDiff line change

@@ -6,7 +6,7 @@ import { normalizeChannelId as normalizeBundledChannelId } from "../channels/reg

66

import { isRouteBinding, listRouteBindings } from "../config/bindings.js";

77

import type { AgentRouteBinding } from "../config/types.js";

88

import type { OpenClawConfig } from "../config/types.openclaw.js";

9-

import { listManifestChannelContributionIds } from "../plugins/manifest-channel-contributions.js";

9+

import { listManifestChannelContributionIds } from "../plugins/manifest-contribution-ids.js";

1010

import { DEFAULT_ACCOUNT_ID, normalizeAgentId } from "../routing/session-key.js";

1111

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

1212

import { normalizeStringEntries } from "../shared/string-normalization.js";

Original file line numberDiff line numberDiff line change

@@ -6,6 +6,7 @@ import type { AgentRouteBinding } from "../config/types.js";

66

import { normalizeAgentId } from "../routing/session-key.js";

77

import { type RuntimeEnv, writeRuntimeJson } from "../runtime.js";

88

import { defaultRuntime } from "../runtime.js";

9+

import { createLazyImportLoader } from "../shared/lazy-promise.js";

910

import { describeBinding } from "./agents.binding-format.js";

1011

import { requireValidConfig, requireValidConfigFileSnapshot } from "./agents.command-shared.js";

1112

@@ -29,11 +30,12 @@ type AgentsUnbindOptions = {

2930

json?: boolean;

3031

};

3132
32-

let agentBindingsModulePromise: Promise<AgentBindingsModule> | undefined;

33+

const agentBindingsModuleLoader = createLazyImportLoader<AgentBindingsModule>(

34+

() => import("./agents.bindings.js"),

35+

);

3336
3437

function loadAgentBindingsModule(): Promise<AgentBindingsModule> {

35-

agentBindingsModulePromise ??= import("./agents.bindings.js");

36-

return agentBindingsModulePromise;

38+

return agentBindingsModuleLoader.load();

3739

}

3840
3941

function resolveAgentId(

Original file line numberDiff line numberDiff line change

@@ -5,15 +5,17 @@ import {

55

type BackupCreateResult,

66

} from "../infra/backup-create.js";

77

import { type RuntimeEnv, writeRuntimeJson } from "../runtime.js";

8+

import { createLazyImportLoader } from "../shared/lazy-promise.js";

89

export type { BackupCreateOptions, BackupCreateResult } from "../infra/backup-create.js";

910
1011

type BackupVerifyRuntime = typeof import("./backup-verify.js");

1112
12-

let backupVerifyRuntimePromise: Promise<BackupVerifyRuntime> | undefined;

13+

const backupVerifyRuntimeLoader = createLazyImportLoader<BackupVerifyRuntime>(

14+

() => import("./backup-verify.js"),

15+

);

1316
1417

function loadBackupVerifyRuntime(): Promise<BackupVerifyRuntime> {

15-

backupVerifyRuntimePromise ??= import("./backup-verify.js");

16-

return backupVerifyRuntimePromise;

18+

return backupVerifyRuntimeLoader.load();

1719

}

1820
1921

export async function backupCreateCommand(

Original file line numberDiff line numberDiff line change

@@ -8,7 +8,7 @@ import type { ChannelMeta } from "../../channels/plugins/types.public.js";

88

import { isStaticallyChannelConfigured } from "../../config/channel-configured-shared.js";

99

import { applyPluginAutoEnable } from "../../config/plugin-auto-enable.js";

1010

import type { OpenClawConfig } from "../../config/types.openclaw.js";

11-

import { listManifestChannelContributionIds } from "../../plugins/manifest-channel-contributions.js";

11+

import { listManifestChannelContributionIds } from "../../plugins/manifest-contribution-ids.js";

1212

import type { ChannelChoice } from "../onboard-types.js";

1313

import {

1414

listSetupDiscoveryChannelPluginCatalogEntries,

Original file line numberDiff line numberDiff line change

@@ -11,6 +11,7 @@ import { refreshPluginRegistryAfterConfigMutation } from "../../cli/plugins-regi

1111

import type { OpenClawConfig } from "../../config/config.js";

1212

import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../../routing/session-key.js";

1313

import { defaultRuntime, type RuntimeEnv } from "../../runtime.js";

14+

import { createLazyImportLoader } from "../../shared/lazy-promise.js";

1415

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

1516

import { createClackPrompter } from "../../wizard/clack-prompter.js";

1617

import { applyAgentBindings, describeBinding } from "../agents.bindings.js";

@@ -22,17 +23,19 @@ import { requireValidConfigFileSnapshot, shouldUseWizard } from "./shared.js";

2223

type ChannelSetupPluginInstallModule = typeof import("../channel-setup/plugin-install.js");

2324

type OnboardChannelsModule = typeof import("../onboard-channels.js");

2425
25-

let channelSetupPluginInstallPromise: Promise<ChannelSetupPluginInstallModule> | undefined;

26-

let onboardChannelsPromise: Promise<OnboardChannelsModule> | undefined;

26+

const channelSetupPluginInstallLoader = createLazyImportLoader<ChannelSetupPluginInstallModule>(

27+

() => import("../channel-setup/plugin-install.js"),

28+

);

29+

const onboardChannelsLoader = createLazyImportLoader<OnboardChannelsModule>(

30+

() => import("../onboard-channels.js"),

31+

);

2732
2833

function loadChannelSetupPluginInstall(): Promise<ChannelSetupPluginInstallModule> {

29-

channelSetupPluginInstallPromise ??= import("../channel-setup/plugin-install.js");

30-

return channelSetupPluginInstallPromise;

34+

return channelSetupPluginInstallLoader.load();

3135

}

3236
3337

function loadOnboardChannels(): Promise<OnboardChannelsModule> {

34-

onboardChannelsPromise ??= import("../onboard-channels.js");

35-

return onboardChannelsPromise;

38+

return onboardChannelsLoader.load();

3639

}

3740
3841

export type ChannelsAddOptions = {

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,7 @@ import { normalizeChannelId as normalizeBundledChannelId } from "../../channels/

33

import { getResolvedLoggerSettings } from "../../logging.js";

44

import { resolveLogFile } from "../../logging/log-tail.js";

55

import { parseLogLine } from "../../logging/parse-log-line.js";

6-

import { listManifestChannelContributionIds } from "../../plugins/manifest-channel-contributions.js";

6+

import { listManifestChannelContributionIds } from "../../plugins/manifest-contribution-ids.js";

77

import { defaultRuntime, type RuntimeEnv, writeRuntimeJson } from "../../runtime.js";

88

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

99

import { theme } from "../../terminal/theme.js";

Original file line numberDiff line numberDiff line change

@@ -12,6 +12,7 @@ import { ensureControlUiAssetsBuilt } from "../infra/control-ui-assets.js";

1212

import { resolvePluginContributionOwners } from "../plugins/plugin-registry.js";

1313

import type { RuntimeEnv } from "../runtime.js";

1414

import { defaultRuntime } from "../runtime.js";

15+

import { createLazyImportLoader } from "../shared/lazy-promise.js";

1516

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

1617

import { note } from "../terminal/note.js";

1718

import { isPlainObject, resolveUserPath } from "../utils.js";

@@ -56,11 +57,12 @@ type SetupPluginConfigModule = typeof import("../wizard/setup.plugin-config.js")

5657
5758

const GATEWAY_HINT_PROBE_TIMEOUT_MS = 300;

5859
59-

let setupPluginConfigModulePromise: Promise<SetupPluginConfigModule> | undefined;

60+

const setupPluginConfigModuleLoader = createLazyImportLoader<SetupPluginConfigModule>(

61+

() => import("../wizard/setup.plugin-config.js"),

62+

);

6063
6164

function loadSetupPluginConfigModule(): Promise<SetupPluginConfigModule> {

62-

setupPluginConfigModulePromise ??= import("../wizard/setup.plugin-config.js");

63-

return setupPluginConfigModulePromise;

65+

return setupPluginConfigModuleLoader.load();

6466

}

6567
6668

function mergeWizardConfigOntoLatest(current: unknown, base: unknown, next: unknown): unknown {

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,5 @@

11

import { mergeMissing } from "../../../config/legacy.shared.js";

2-

import { loadPluginMetadataSnapshot } from "../../../plugins/plugin-metadata-snapshot.js";

2+

import { loadManifestMetadataSnapshot } from "../../../plugins/manifest-contract-eligibility.js";

33

import {

44

cloneRecord,

55

ensureRecord,

@@ -17,7 +17,7 @@ const LEGACY_GLOBAL_WEB_SEARCH_PROVIDER_ID = "brave";

1717
1818

function getBundledLegacyWebSearchOwners(): ReadonlyMap<string, string> {

1919

const owners = new Map<string, string>();

20-

for (const plugin of loadPluginMetadataSnapshot({ config: {}, env: process.env }).plugins) {

20+

for (const plugin of loadManifestMetadataSnapshot({ config: {}, env: process.env }).plugins) {

2121

if (plugin.origin !== "bundled") {

2222

continue;

2323

}

Original file line numberDiff line numberDiff line change

@@ -6,7 +6,7 @@ import { installPluginFromNpmSpec } from "../../../plugins/install.js";

66

import { loadInstalledPluginIndexInstallRecords } from "../../../plugins/installed-plugin-index-records.js";

77

import { writePersistedInstalledPluginIndexInstallRecords } from "../../../plugins/installed-plugin-index-records.js";

88

import { buildNpmResolutionInstallFields } from "../../../plugins/installs.js";

9-

import { loadPluginMetadataSnapshot } from "../../../plugins/plugin-metadata-snapshot.js";

9+

import { loadManifestMetadataSnapshot } from "../../../plugins/manifest-contract-eligibility.js";

1010

import { resolveProviderInstallCatalogEntries } from "../../../plugins/provider-install-catalog.js";

1111

import { updateNpmInstalledPlugins } from "../../../plugins/update.js";

1212

import { asObjectRecord } from "./object.js";

@@ -154,7 +154,7 @@ export async function repairMissingConfiguredPluginInstalls(params: {

154154

}): Promise<{ changes: string[]; warnings: string[] }> {

155155

const env = params.env ?? process.env;

156156

const knownIds = new Set(

157-

loadPluginMetadataSnapshot({

157+

loadManifestMetadataSnapshot({

158158

config: params.cfg,

159159

env,

160160

}).plugins.map((plugin) => plugin.id),