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

推荐订阅源

P
Proofpoint News Feed
U
Unit 42
V
Visual Studio Blog
D
DataBreaches.Net
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
云风的 BLOG
云风的 BLOG
D
Docker
G
Google Developers Blog
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
S
SegmentFault 最新的问题

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 import loaders · openclaw/openclaw@5...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -23,6 +23,7 @@ import { defaultRuntime, type RuntimeEnv } from "../runtime.js";

2323

import { applyVerboseOverride } from "../sessions/level-overrides.js";

2424

import { applyModelOverrideToSessionEntry } from "../sessions/model-overrides.js";

2525

import { resolveSendPolicy } from "../sessions/send-policy.js";

26+

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

2627

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

2728

import { sanitizeForLog } from "../terminal/ansi.js";

2829

import { createTrajectoryRuntimeRecorder } from "../trajectory/runtime.js";

@@ -87,95 +88,106 @@ type SkillsFilterRuntime = typeof import("./skills/filter.js");

8788

type SkillsRefreshStateRuntime = typeof import("./skills/refresh-state.js");

8889

type SkillsRemoteRuntime = typeof import("../infra/skills-remote.js");

899090-

let attemptExecutionRuntimePromise: Promise<AttemptExecutionRuntime> | undefined;

91-

let acpManagerRuntimePromise: Promise<AcpManagerRuntime> | undefined;

92-

let acpPolicyRuntimePromise: Promise<AcpPolicyRuntime> | undefined;

93-

let acpRuntimeErrorsRuntimePromise: Promise<AcpRuntimeErrorsRuntime> | undefined;

94-

let acpSessionIdentifiersRuntimePromise: Promise<AcpSessionIdentifiersRuntime> | undefined;

95-

let deliveryRuntimePromise: Promise<DeliveryRuntime> | undefined;

96-

let sessionStoreRuntimePromise: Promise<SessionStoreRuntime> | undefined;

97-

let cliCompactionRuntimePromise: Promise<CliCompactionRuntime> | undefined;

98-

let transcriptResolveRuntimePromise: Promise<TranscriptResolveRuntime> | undefined;

99-

let cliDepsRuntimePromise: Promise<CliDepsRuntime> | undefined;

100-

let execDefaultsRuntimePromise: Promise<ExecDefaultsRuntime> | undefined;

101-

let skillsRuntimePromise: Promise<SkillsRuntime> | undefined;

102-

let skillsFilterRuntimePromise: Promise<SkillsFilterRuntime> | undefined;

103-

let skillsRefreshStateRuntimePromise: Promise<SkillsRefreshStateRuntime> | undefined;

104-

let skillsRemoteRuntimePromise: Promise<SkillsRemoteRuntime> | undefined;

91+

const attemptExecutionRuntimeLoader = createLazyImportLoader<AttemptExecutionRuntime>(

92+

() => import("./command/attempt-execution.runtime.js"),

93+

);

94+

const acpManagerRuntimeLoader = createLazyImportLoader<AcpManagerRuntime>(

95+

() => import("../acp/control-plane/manager.js"),

96+

);

97+

const acpPolicyRuntimeLoader = createLazyImportLoader<AcpPolicyRuntime>(

98+

() => import("../acp/policy.js"),

99+

);

100+

const acpRuntimeErrorsRuntimeLoader = createLazyImportLoader<AcpRuntimeErrorsRuntime>(

101+

() => import("../acp/runtime/errors.js"),

102+

);

103+

const acpSessionIdentifiersRuntimeLoader = createLazyImportLoader<AcpSessionIdentifiersRuntime>(

104+

() => import("../acp/runtime/session-identifiers.js"),

105+

);

106+

const deliveryRuntimeLoader = createLazyImportLoader<DeliveryRuntime>(

107+

() => import("./command/delivery.runtime.js"),

108+

);

109+

const sessionStoreRuntimeLoader = createLazyImportLoader<SessionStoreRuntime>(

110+

() => import("./command/session-store.runtime.js"),

111+

);

112+

const cliCompactionRuntimeLoader = createLazyImportLoader<CliCompactionRuntime>(

113+

() => import("./command/cli-compaction.js"),

114+

);

115+

const transcriptResolveRuntimeLoader = createLazyImportLoader<TranscriptResolveRuntime>(

116+

() => import("../config/sessions/transcript-resolve.runtime.js"),

117+

);

118+

const cliDepsRuntimeLoader = createLazyImportLoader<CliDepsRuntime>(() => import("../cli/deps.js"));

119+

const execDefaultsRuntimeLoader = createLazyImportLoader<ExecDefaultsRuntime>(

120+

() => import("./exec-defaults.js"),

121+

);

122+

const skillsRuntimeLoader = createLazyImportLoader<SkillsRuntime>(() => import("./skills.js"));

123+

const skillsFilterRuntimeLoader = createLazyImportLoader<SkillsFilterRuntime>(

124+

() => import("./skills/filter.js"),

125+

);

126+

const skillsRefreshStateRuntimeLoader = createLazyImportLoader<SkillsRefreshStateRuntime>(

127+

() => import("./skills/refresh-state.js"),

128+

);

129+

const skillsRemoteRuntimeLoader = createLazyImportLoader<SkillsRemoteRuntime>(

130+

() => import("../infra/skills-remote.js"),

131+

);

105132106133

function loadAttemptExecutionRuntime(): Promise<AttemptExecutionRuntime> {

107-

attemptExecutionRuntimePromise ??= import("./command/attempt-execution.runtime.js");

108-

return attemptExecutionRuntimePromise;

134+

return attemptExecutionRuntimeLoader.load();

109135

}

110136111137

function loadAcpManagerRuntime(): Promise<AcpManagerRuntime> {

112-

acpManagerRuntimePromise ??= import("../acp/control-plane/manager.js");

113-

return acpManagerRuntimePromise;

138+

return acpManagerRuntimeLoader.load();

114139

}

115140116141

function loadAcpPolicyRuntime(): Promise<AcpPolicyRuntime> {

117-

acpPolicyRuntimePromise ??= import("../acp/policy.js");

118-

return acpPolicyRuntimePromise;

142+

return acpPolicyRuntimeLoader.load();

119143

}

120144121145

function loadAcpRuntimeErrorsRuntime(): Promise<AcpRuntimeErrorsRuntime> {

122-

acpRuntimeErrorsRuntimePromise ??= import("../acp/runtime/errors.js");

123-

return acpRuntimeErrorsRuntimePromise;

146+

return acpRuntimeErrorsRuntimeLoader.load();

124147

}

125148126149

function loadAcpSessionIdentifiersRuntime(): Promise<AcpSessionIdentifiersRuntime> {

127-

acpSessionIdentifiersRuntimePromise ??= import("../acp/runtime/session-identifiers.js");

128-

return acpSessionIdentifiersRuntimePromise;

150+

return acpSessionIdentifiersRuntimeLoader.load();

129151

}

130152131153

function loadDeliveryRuntime(): Promise<DeliveryRuntime> {

132-

deliveryRuntimePromise ??= import("./command/delivery.runtime.js");

133-

return deliveryRuntimePromise;

154+

return deliveryRuntimeLoader.load();

134155

}

135156136157

function loadSessionStoreRuntime(): Promise<SessionStoreRuntime> {

137-

sessionStoreRuntimePromise ??= import("./command/session-store.runtime.js");

138-

return sessionStoreRuntimePromise;

158+

return sessionStoreRuntimeLoader.load();

139159

}

140160141161

function loadCliCompactionRuntime(): Promise<CliCompactionRuntime> {

142-

cliCompactionRuntimePromise ??= import("./command/cli-compaction.js");

143-

return cliCompactionRuntimePromise;

162+

return cliCompactionRuntimeLoader.load();

144163

}

145164146165

function loadTranscriptResolveRuntime(): Promise<TranscriptResolveRuntime> {

147-

transcriptResolveRuntimePromise ??= import("../config/sessions/transcript-resolve.runtime.js");

148-

return transcriptResolveRuntimePromise;

166+

return transcriptResolveRuntimeLoader.load();

149167

}

150168151169

function loadCliDepsRuntime(): Promise<CliDepsRuntime> {

152-

cliDepsRuntimePromise ??= import("../cli/deps.js");

153-

return cliDepsRuntimePromise;

170+

return cliDepsRuntimeLoader.load();

154171

}

155172156173

function loadExecDefaultsRuntime(): Promise<ExecDefaultsRuntime> {

157-

execDefaultsRuntimePromise ??= import("./exec-defaults.js");

158-

return execDefaultsRuntimePromise;

174+

return execDefaultsRuntimeLoader.load();

159175

}

160176161177

function loadSkillsRuntime(): Promise<SkillsRuntime> {

162-

skillsRuntimePromise ??= import("./skills.js");

163-

return skillsRuntimePromise;

178+

return skillsRuntimeLoader.load();

164179

}

165180166181

function loadSkillsFilterRuntime(): Promise<SkillsFilterRuntime> {

167-

skillsFilterRuntimePromise ??= import("./skills/filter.js");

168-

return skillsFilterRuntimePromise;

182+

return skillsFilterRuntimeLoader.load();

169183

}

170184171185

function loadSkillsRefreshStateRuntime(): Promise<SkillsRefreshStateRuntime> {

172-

skillsRefreshStateRuntimePromise ??= import("./skills/refresh-state.js");

173-

return skillsRefreshStateRuntimePromise;

186+

return skillsRefreshStateRuntimeLoader.load();

174187

}

175188176189

function loadSkillsRemoteRuntime(): Promise<SkillsRemoteRuntime> {

177-

skillsRemoteRuntimePromise ??= import("../infra/skills-remote.js");

178-

return skillsRemoteRuntimePromise;

190+

return skillsRemoteRuntimeLoader.load();

179191

}

180192181193

async function resolveAgentCommandDeps(deps: CliDeps | undefined): Promise<CliDeps> {