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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
博客园 - 【当耐特】
量子位
有赞技术团队
有赞技术团队
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
C
Check Point Blog
B
Blog RSS Feed
M
MIT News - Artificial intelligence
H
Help Net Security
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
腾讯CDC

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
build: avoid ambiguous runtime aliases · openclaw/opencla...
steipete · 2026-05-03 · via Recent Commits to openclaw:main

@@ -16,6 +16,27 @@ export { copyStaticExtensionAssets, listStaticExtensionAssetOutputs };

16161717

const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");

1818

const ROOT_RUNTIME_ALIAS_PATTERN = /^(?<base>.+\.(?:runtime|contract))-[A-Za-z0-9_-]+\.js$/u;

19+

const ROOT_STABLE_RUNTIME_ALIAS_PATTERN = /^.+\.(?:runtime|contract)\.js$/u;

20+

const ROOT_RUNTIME_IMPORT_SPECIFIER_PATTERN =

21+

/(["'])\.\/([^"']+\.(?:runtime|contract)-[A-Za-z0-9_-]+\.js)\1/gu;

22+

const LEGACY_ROOT_RUNTIME_COMPAT_ALIASES = [

23+

// v2026.4.29 dispatch lazy chunks. Package updates used to replace the

24+

// dist tree before the live gateway had restarted, so an already-loaded old

25+

// dispatch chunk could still resolve these names after the swap.

26+

["abort.runtime-DX6vo4yJ.js", "abort.runtime.js"],

27+

["get-reply-from-config.runtime-uABrvCZ-.js", "get-reply-from-config.runtime.js"],

28+

["reply-media-paths.runtime-C5UnVaLF.js", "reply-media-paths.runtime.js"],

29+

["route-reply.runtime-D4PGzijU.js", "route-reply.runtime.js"],

30+

["runtime-plugins.runtime-fLHuT7Vs.js", "runtime-plugins.runtime.js"],

31+

["tts.runtime-66taD50M.js", "tts.runtime.js"],

32+

// v2026.5.2-beta.1 dispatch lazy chunks.

33+

["abort.runtime-CKviLU0L.js", "abort.runtime.js"],

34+

["get-reply-from-config.runtime-BzFAggVK.js", "get-reply-from-config.runtime.js"],

35+

["reply-media-paths.runtime-ZpULeITb.js", "reply-media-paths.runtime.js"],

36+

["route-reply.runtime-uzaOjbd1.js", "route-reply.runtime.js"],

37+

["runtime-plugins.runtime-CNAfmQRG.js", "runtime-plugins.runtime.js"],

38+

["tts.runtime-D-THXDsp.js", "tts.runtime.js"],

39+

];

1940

const LEGACY_CLI_EXIT_COMPAT_CHUNKS = [

2041

{

2142

dest: "dist/memory-state-CcqRgDZU.js",

@@ -38,16 +59,106 @@ export function writeStableRootRuntimeAliases(params = {}) {

3859

return;

3960

}

406141-

for (const entry of entries) {

62+

const candidatesByAlias = new Map();

63+

for (const entry of entries.toSorted((left, right) => left.name.localeCompare(right.name))) {

4264

if (!entry.isFile()) {

4365

continue;

4466

}

4567

const match = entry.name.match(ROOT_RUNTIME_ALIAS_PATTERN);

4668

if (!match?.groups?.base) {

4769

continue;

4870

}

49-

const aliasPath = path.join(distDir, `${match.groups.base}.js`);

50-

writeTextFileIfChanged(aliasPath, `export * from "./${entry.name}";\n`);

71+

const aliasFileName = `${match.groups.base}.js`;

72+

const candidates = candidatesByAlias.get(aliasFileName) ?? [];

73+

candidates.push(entry.name);

74+

candidatesByAlias.set(aliasFileName, candidates);

75+

}

76+77+

for (const [aliasFileName, candidates] of candidatesByAlias) {

78+

const aliasPath = path.join(distDir, aliasFileName);

79+

if (candidates.length !== 1) {

80+

fsImpl.rmSync?.(aliasPath, { force: true });

81+

continue;

82+

}

83+

writeTextFileIfChanged(aliasPath, `export * from "./${candidates[0]}";\n`);

84+

}

85+

}

86+87+

export function rewriteRootRuntimeImportsToStableAliases(params = {}) {

88+

const rootDir = params.rootDir ?? ROOT;

89+

const distDir = path.join(rootDir, "dist");

90+

const fsImpl = params.fs ?? fs;

91+

let entries = [];

92+

try {

93+

entries = fsImpl.readdirSync(distDir, { withFileTypes: true });

94+

} catch {

95+

return;

96+

}

97+98+

const candidatesByAlias = new Map();

99+

for (const entry of entries.toSorted((left, right) => left.name.localeCompare(right.name))) {

100+

if (!entry.isFile()) {

101+

continue;

102+

}

103+

const match = entry.name.match(ROOT_RUNTIME_ALIAS_PATTERN);

104+

if (match?.groups?.base) {

105+

const aliasFileName = `${match.groups.base}.js`;

106+

const candidates = candidatesByAlias.get(aliasFileName) ?? [];

107+

candidates.push(entry.name);

108+

candidatesByAlias.set(aliasFileName, candidates);

109+

}

110+

}

111+

const runtimeAliasFiles = new Map();

112+

for (const [aliasFileName, candidates] of candidatesByAlias) {

113+

if (candidates.length !== 1) {

114+

continue;

115+

}

116+

runtimeAliasFiles.set(candidates[0], aliasFileName);

117+

}

118+

if (runtimeAliasFiles.size === 0) {

119+

return;

120+

}

121+122+

for (const entry of entries) {

123+

if (!entry.isFile() || !entry.name.endsWith(".js")) {

124+

continue;

125+

}

126+

if (ROOT_STABLE_RUNTIME_ALIAS_PATTERN.test(entry.name)) {

127+

continue;

128+

}

129+

const filePath = path.join(distDir, entry.name);

130+

let source;

131+

try {

132+

source = fsImpl.readFileSync(filePath, "utf8");

133+

} catch {

134+

continue;

135+

}

136+

const rewritten = source.replace(

137+

ROOT_RUNTIME_IMPORT_SPECIFIER_PATTERN,

138+

(specifier, quote, fileName) => {

139+

const aliasFileName = runtimeAliasFiles.get(fileName);

140+

return aliasFileName ? `${quote}./${aliasFileName}${quote}` : specifier;

141+

},

142+

);

143+

if (rewritten !== source) {

144+

writeTextFileIfChanged(filePath, rewritten);

145+

}

146+

}

147+

}

148+149+

export function writeLegacyRootRuntimeCompatAliases(params = {}) {

150+

const rootDir = params.rootDir ?? ROOT;

151+

const distDir = path.join(rootDir, "dist");

152+

const fsImpl = params.fs ?? fs;

153+

for (const [legacyFileName, aliasFileName] of LEGACY_ROOT_RUNTIME_COMPAT_ALIASES) {

154+

const legacyPath = path.join(distDir, legacyFileName);

155+

if (fsImpl.existsSync(legacyPath)) {

156+

continue;

157+

}

158+

if (!fsImpl.existsSync(path.join(distDir, aliasFileName))) {

159+

continue;

160+

}

161+

writeTextFileIfChanged(legacyPath, `export * from "./${aliasFileName}";\n`);

51162

}

52163

}

53164

@@ -76,7 +187,9 @@ export function runRuntimePostBuild(params = {}) {

76187

runPhase("bundled plugin metadata", () => copyBundledPluginMetadata(params));

77188

runPhase("official channel catalog", () => writeOfficialChannelCatalog(params));

78189

runPhase("bundled plugin runtime overlay", () => stageBundledPluginRuntime(params));

190+

runPhase("stable root runtime imports", () => rewriteRootRuntimeImportsToStableAliases(params));

79191

runPhase("stable root runtime aliases", () => writeStableRootRuntimeAliases(params));

192+

runPhase("legacy root runtime compat aliases", () => writeLegacyRootRuntimeCompatAliases(params));

80193

runPhase("legacy CLI exit compat chunks", () => writeLegacyCliExitCompatChunks(params));

81194

runPhase("static extension assets", () =>

82195

copyStaticExtensionAssets({