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

推荐订阅源

F
Fortinet All Blogs
有赞技术团队
有赞技术团队
量子位
N
Netflix TechBlog - Medium
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
Martin Fowler
Martin Fowler
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
V2EX
IT之家
IT之家
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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
fix(doctor): honor runtimeExtensions before flagging entr...
arniesaha · 2026-06-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -109,6 +109,59 @@ describe("runPostUpgradeProbes — plugin.entry_unresolved", () => {

109109

await fs.rm(root, { recursive: true, force: true });

110110

}

111111

});

112+
113+

it("does not flag entry_unresolved when runtimeExtensions exists even if source entry is missing", async () => {

114+

const root = await makeFixtureRoot("runtime-extensions");

115+

try {

116+

const pluginDir = path.join(root, "user-plugins", "runtime-only");

117+

await fs.mkdir(path.join(pluginDir, "dist"), { recursive: true });

118+

await fs.writeFile(path.join(pluginDir, "dist", "index.js"), "export default {};", "utf-8");

119+

// Source entry (./src/index.ts) does NOT exist

120+

// But runtime entry (./dist/index.js) DOES exist

121+

await fs.writeFile(

122+

path.join(pluginDir, "package.json"),

123+

JSON.stringify({

124+

name: "runtime-only",

125+

version: "0.0.1",

126+

type: "module",

127+

openclaw: {

128+

extensions: ["./src/index.ts"],

129+

runtimeExtensions: ["./dist/index.js"],

130+

},

131+

}),

132+

"utf-8",

133+

);

134+

await fs.writeFile(

135+

path.join(pluginDir, "openclaw.plugin.json"),

136+

JSON.stringify({ id: "runtime-only" }),

137+

"utf-8",

138+

);

139+
140+

const installsPath = path.join(root, "plugins", "installs.json");

141+

await fs.mkdir(path.dirname(installsPath), { recursive: true });

142+

await fs.writeFile(

143+

installsPath,

144+

JSON.stringify({

145+

version: 1,

146+

plugins: [

147+

{

148+

pluginId: "runtime-only",

149+

manifestPath: path.join(pluginDir, "openclaw.plugin.json"),

150+

rootDir: pluginDir,

151+

enabled: true,

152+

packageJson: { path: "package.json" },

153+

},

154+

],

155+

}),

156+

"utf-8",

157+

);

158+
159+

const report = await runPostUpgradeProbes({ installsPath });

160+

expect(report.findings.filter((f) => f.code === "plugin.entry_unresolved")).toHaveLength(0);

161+

} finally {

162+

await fs.rm(root, { recursive: true, force: true });

163+

}

164+

});

112165

});

113166
114167

describe("runPostUpgradeProbes — plugin.manifest_drift", () => {

Original file line numberDiff line numberDiff line change

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

11

import crypto from "node:crypto";

22

import fs from "node:fs/promises";

33

import path from "node:path";

4+

import { listBuiltRuntimeEntryCandidates } from "../plugins/package-entrypoints.js";

45

import type { PostUpgradeFinding, PostUpgradeReport } from "./doctor-post-upgrade.types.js";

56
67

type InstalledPluginRecord = {

@@ -17,7 +18,7 @@ type InstallsJson = { plugins: InstalledPluginRecord[] };

1718

async function readInstalledPackageJson(rootDir: string, packageJsonRelPath: string) {

1819

const absPath = path.join(rootDir, packageJsonRelPath);

1920

const raw = await fs.readFile(absPath, "utf-8");

20-

return JSON.parse(raw) as { openclaw?: { extensions?: string[] } };

21+

return JSON.parse(raw) as { openclaw?: { extensions?: string[]; runtimeExtensions?: string[] } };

2122

}

2223
2324

async function fileExists(absPath: string): Promise<boolean> {

@@ -48,7 +49,7 @@ export async function runPostUpgradeProbes(params: {

4849

for (const record of installs.plugins) {

4950

if (!record.enabled) continue;

5051

const pkgRelPath = record.packageJson?.path ?? "package.json";

51-

let pkg: { openclaw?: { extensions?: string[] } };

52+

let pkg: { openclaw?: { extensions?: string[]; runtimeExtensions?: string[] } };

5253

try {

5354

pkg = await readInstalledPackageJson(record.rootDir, pkgRelPath);

5455

} catch (err) {

@@ -58,9 +59,31 @@ export async function runPostUpgradeProbes(params: {

5859

continue;

5960

}

6061

const entries = pkg.openclaw?.extensions ?? [];

61-

for (const entry of entries) {

62+

const runtimeExtensions = pkg.openclaw?.runtimeExtensions ?? [];

63+

for (const [index, entry] of entries.entries()) {

64+

// First, check if there's an explicit runtimeExtensions entry at this index

65+

const runtimeEntry = runtimeExtensions[index];

66+

if (runtimeEntry) {

67+

const absRuntimeEntry = path.resolve(record.rootDir, runtimeEntry);

68+

if (await fileExists(absRuntimeEntry)) {

69+

// Runtime entry exists, so we're good; skip to next entry

70+

continue;

71+

}

72+

// Runtime entry doesn't exist; flag it

73+

findings.push({

74+

level: "error",

75+

code: "plugin.entry_unresolved",

76+

message: `Plugin ${record.pluginId} declares runtimeExtensions entry ${runtimeEntry} but the file does not exist at ${absRuntimeEntry}.`,

77+

plugin: record.pluginId,

78+

entry: runtimeEntry,

79+

});

80+

continue;

81+

}

82+
83+

// No explicit runtime entry; try the source entry

6284

const absEntry = path.resolve(record.rootDir, entry);

6385

if (!(await fileExists(absEntry))) {

86+

// Source entry doesn't exist either; flag it

6487

findings.push({

6588

level: "error",

6689

code: "plugin.entry_unresolved",