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

推荐订阅源

V
Visual Studio Blog
爱范儿
爱范儿
GbyAI
GbyAI
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
云风的 BLOG
云风的 BLOG
C
Check Point Blog
H
Help Net Security
P
Proofpoint News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Y
Y Combinator Blog
U
Unit 42
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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 plugin runtime module resolution diagnostics · opencl...
TurboTheTurt · 2026-05-27 · via Recent Commits to openclaw:main

@@ -17,6 +17,14 @@ export type LoaderModuleResolveParams = {

1717

pluginSdkResolution?: PluginSdkResolutionPreference;

1818

};

191920+

export type PluginRuntimeModuleResolution = {

21+

modulePath?: string;

22+

packageRoot: string | null;

23+

candidates: string[];

24+

resolvedPath: string | null;

25+

error?: string;

26+

};

27+2028

type PluginSdkPackageJson = {

2129

exports?: Record<string, unknown>;

2230

bin?: string | Record<string, unknown>;

@@ -148,6 +156,66 @@ export function resolveLoaderPackageRoot(

148156

});

149157

}

150158159+

function createPluginRuntimeModuleCandidateMap(packageRoot: string) {

160+

return {

161+

src: path.join(packageRoot, "src", "plugins", "runtime", "index.ts"),

162+

dist: path.join(packageRoot, "dist", "plugins", "runtime", "index.js"),

163+

} as const;

164+

}

165+166+

function appendPluginRuntimeModuleCandidates(

167+

candidates: string[],

168+

packageRoot: string,

169+

orderedKinds: readonly PluginSdkAliasCandidateKind[],

170+

): void {

171+

const candidateMap = createPluginRuntimeModuleCandidateMap(packageRoot);

172+

for (const kind of orderedKinds) {

173+

candidates.push(candidateMap[kind]);

174+

}

175+

}

176+177+

function dedupeResolvedPaths(paths: readonly string[]): string[] {

178+

const seen = new Set<string>();

179+

const deduped: string[] = [];

180+

for (const candidate of paths) {

181+

const resolved = path.resolve(candidate);

182+

if (seen.has(resolved)) {

183+

continue;

184+

}

185+

seen.add(resolved);

186+

deduped.push(resolved);

187+

}

188+

return deduped;

189+

}

190+191+

function listAncestorPluginRuntimeModuleCandidates(params: {

192+

starts: readonly (string | undefined)[];

193+

orderedKinds: readonly PluginSdkAliasCandidateKind[];

194+

maxDepth?: number;

195+

}): string[] {

196+

const candidates: string[] = [];

197+

for (const start of params.starts) {

198+

if (!start) {

199+

continue;

200+

}

201+

let cursor = path.resolve(start);

202+

const maxDepth = params.maxDepth ?? 12;

203+

for (let i = 0; i < maxDepth; i += 1) {

204+

appendPluginRuntimeModuleCandidates(candidates, cursor, params.orderedKinds);

205+

const parent = path.dirname(cursor);

206+

if (parent === cursor) {

207+

break;

208+

}

209+

cursor = parent;

210+

}

211+

}

212+

return dedupeResolvedPaths(candidates);

213+

}

214+215+

function formatResolutionError(error: unknown): string {

216+

return error instanceof Error ? error.message : String(error);

217+

}

218+151219

function resolveLoaderPluginSdkPackageRoot(

152220

params: LoaderModuleResolveParams & { modulePath: string },

153221

): string | null {

@@ -958,33 +1026,63 @@ export function buildPluginLoaderAliasMap(

9581026

export function resolvePluginRuntimeModulePath(

9591027

params: LoaderModuleResolveParams = {},

9601028

): string | null {

1029+

return resolvePluginRuntimeModulePathWithDiagnostics(params).resolvedPath;

1030+

}

1031+1032+

export function resolvePluginRuntimeModulePathWithDiagnostics(

1033+

params: LoaderModuleResolveParams = {},

1034+

): PluginRuntimeModuleResolution {

1035+

let modulePath: string | undefined;

1036+

let packageRoot: string | null = null;

1037+

const candidates: string[] = [];

9611038

try {

962-

const modulePath = resolveLoaderModulePath(params);

1039+

modulePath = resolveLoaderModulePath(params);

9631040

const orderedKinds = resolvePluginSdkAliasCandidateOrder({

9641041

modulePath,

9651042

isProduction: process.env.NODE_ENV === "production",

9661043

pluginSdkResolution: params.pluginSdkResolution,

9671044

});

968-

const packageRoot = resolveLoaderPackageRoot({ ...params, modulePath });

969-

const candidates = packageRoot

970-

? orderedKinds.map((kind) =>

971-

kind === "src"

972-

? path.join(packageRoot, "src", "plugins", "runtime", "index.ts")

973-

: path.join(packageRoot, "dist", "plugins", "runtime", "index.js"),

974-

)

975-

: [

976-

path.join(path.dirname(modulePath), "runtime", "index.ts"),

977-

path.join(path.dirname(modulePath), "runtime", "index.js"),

978-

];

979-

for (const candidate of candidates) {

1045+

packageRoot = resolveLoaderPackageRoot({ ...params, modulePath });

1046+

if (packageRoot) {

1047+

appendPluginRuntimeModuleCandidates(candidates, packageRoot, orderedKinds);

1048+

} else {

1049+

candidates.push(

1050+

...listAncestorPluginRuntimeModuleCandidates({

1051+

starts: [

1052+

path.dirname(modulePath),

1053+

params.cwd,

1054+

params.argv1 ? path.dirname(params.argv1) : undefined,

1055+

],

1056+

orderedKinds,

1057+

}),

1058+

);

1059+

}

1060+

const dedupedCandidates = dedupeResolvedPaths(candidates);

1061+

for (const candidate of dedupedCandidates) {

9801062

if (fs.existsSync(candidate)) {

981-

return candidate;

1063+

return {

1064+

modulePath,

1065+

packageRoot,

1066+

candidates: dedupedCandidates,

1067+

resolvedPath: candidate,

1068+

};

9821069

}

9831070

}

984-

} catch {

985-

// ignore

1071+

} catch (error) {

1072+

return {

1073+

modulePath,

1074+

packageRoot,

1075+

candidates: dedupeResolvedPaths(candidates),

1076+

resolvedPath: null,

1077+

error: formatResolutionError(error),

1078+

};

9861079

}

987-

return null;

1080+

return {

1081+

modulePath,

1082+

packageRoot,

1083+

candidates: dedupeResolvedPaths(candidates),

1084+

resolvedPath: null,

1085+

};

9881086

}

98910879901088

export function buildPluginLoaderJitiOptions(aliasMap: Record<string, string>) {