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

推荐订阅源

MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
小众软件
小众软件
F
Fortinet All Blogs
爱范儿
爱范儿
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
C
Check Point Blog
博客园 - 聂微东
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog
宝玉的分享
宝玉的分享
Jina AI
Jina AI
H
Hackread – Cybersecurity News, Data Breaches, AI and 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(ci): restore full release validation blockers · openc...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -1,21 +1,108 @@

1+

import fs from "node:fs";

12

import path from "node:path";

23

import { formatCliCommand } from "../cli/command-format.js";

34

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

45

import { resolveOpenClawPackageRootSync } from "../infra/openclaw-root.js";

6+

import { resolveBundledPluginsDir } from "../plugins/bundled-dir.js";

57

import {

68

createBundledRuntimeDepsWritableInstallSpecs,

79

repairBundledRuntimeDepsInstallRootAsync,

810

resolveBundledRuntimeDependencyPackageInstallRootPlan,

911

scanBundledPluginRuntimeDeps,

1012

type BundledRuntimeDepsInstallParams,

1113

} from "../plugins/bundled-runtime-deps.js";

14+

import { normalizePluginsConfig } from "../plugins/config-state.js";

1215

import { resolveEffectivePluginIds } from "../plugins/effective-plugin-ids.js";

16+

import { passesManifestOwnerBasePolicy } from "../plugins/manifest-owner-policy.js";

1317

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

1418

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

1519

import type { DoctorPrompter } from "./doctor-prompter.js";

16201721

const RUNTIME_DEPS_INSTALL_HEARTBEAT_MS = 15_000;

182223+

function filterPluginIdsPresentInBundledTree(

24+

bundledPluginsDir: string,

25+

pluginIds: readonly string[],

26+

): string[] | undefined {

27+

const present = pluginIds.filter((pluginId) => {

28+

if (path.basename(pluginId) !== pluginId) {

29+

return false;

30+

}

31+

return fs.existsSync(path.join(bundledPluginsDir, pluginId));

32+

});

33+

return present.length > 0 ? present : undefined;

34+

}

35+36+

function collectPackagedRuntimeDepsRepairPluginIds(params: {

37+

bundledPluginsDir: string;

38+

config: OpenClawConfig;

39+

includeConfiguredChannels?: boolean;

40+

}): string[] {

41+

if (!fs.existsSync(params.bundledPluginsDir)) {

42+

return [];

43+

}

44+

const plugins = normalizePluginsConfig(params.config.plugins);

45+

const ids = new Set<string>();

46+

for (const entry of fs.readdirSync(params.bundledPluginsDir, { withFileTypes: true })) {

47+

if (!entry.isDirectory()) {

48+

continue;

49+

}

50+

const pluginDir = path.join(params.bundledPluginsDir, entry.name);

51+

let manifest: Record<string, unknown>;

52+

try {

53+

manifest = JSON.parse(

54+

fs.readFileSync(path.join(pluginDir, "openclaw.plugin.json"), "utf-8"),

55+

) as Record<string, unknown>;

56+

} catch {

57+

continue;

58+

}

59+

const pluginId = typeof manifest.id === "string" && manifest.id ? manifest.id : entry.name;

60+

if (

61+

!passesManifestOwnerBasePolicy({

62+

plugin: { id: pluginId },

63+

normalizedConfig: plugins,

64+

allowRestrictiveAllowlistBypass: true,

65+

})

66+

) {

67+

continue;

68+

}

69+

if (plugins.allow.includes(pluginId) || plugins.entries[pluginId]?.enabled === true) {

70+

ids.add(pluginId);

71+

continue;

72+

}

73+

const channels = Array.isArray(manifest.channels)

74+

? manifest.channels.filter((channel): channel is string => typeof channel === "string")

75+

: [];

76+

if (

77+

channels.some((channelId) => {

78+

const channelConfig = (params.config.channels as Record<string, unknown> | undefined)?.[

79+

channelId

80+

];

81+

if (!channelConfig || typeof channelConfig !== "object" || Array.isArray(channelConfig)) {

82+

return false;

83+

}

84+

if ((channelConfig as { enabled?: unknown }).enabled === false) {

85+

return false;

86+

}

87+

return (

88+

(channelConfig as { enabled?: unknown }).enabled === true ||

89+

params.includeConfiguredChannels === true

90+

);

91+

})

92+

) {

93+

ids.add(pluginId);

94+

continue;

95+

}

96+

const providers = Array.isArray(manifest.providers)

97+

? manifest.providers.filter((provider): provider is string => typeof provider === "string")

98+

: [];

99+

if (manifest.enabledByDefault === true && providers.length === 0 && channels.length === 0) {

100+

ids.add(pluginId);

101+

}

102+

}

103+

return [...ids].toSorted((left, right) => left.localeCompare(right));

104+

}

105+19106

function formatElapsedMs(elapsedMs: number): string {

20107

if (elapsedMs < 1000) {

21108

return `${elapsedMs}ms`;

@@ -56,13 +143,23 @@ export async function maybeRepairBundledPluginRuntimeDeps(params: {

56143

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

57144

const bundledPluginsDir = path.join(packageRoot, "dist", "extensions");

58145

const effectivePluginIds = params.config

59-

? resolveEffectivePluginIds({

60-

config: params.config,

61-

env: {

62-

...env,

63-

OPENCLAW_BUNDLED_PLUGINS_DIR: bundledPluginsDir,

64-

},

65-

})

146+

? resolveBundledPluginsDir({ ...env, OPENCLAW_BUNDLED_PLUGINS_DIR: bundledPluginsDir }) ===

147+

bundledPluginsDir

148+

? filterPluginIdsPresentInBundledTree(

149+

bundledPluginsDir,

150+

resolveEffectivePluginIds({

151+

config: params.config,

152+

env: {

153+

...env,

154+

OPENCLAW_BUNDLED_PLUGINS_DIR: bundledPluginsDir,

155+

},

156+

}),

157+

)

158+

: collectPackagedRuntimeDepsRepairPluginIds({

159+

bundledPluginsDir,

160+

config: params.config,

161+

includeConfiguredChannels: params.includeConfiguredChannels,

162+

})

66163

: undefined;

67164

const { deps, missing, conflicts } = scanBundledPluginRuntimeDeps({

68165

packageRoot,