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

推荐订阅源

WordPress大学
WordPress大学
G
Google Developers Blog
小众软件
小众软件
V
V2EX
月光博客
月光博客
腾讯CDC
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
D
Docker
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
MongoDB | Blog
MongoDB | Blog
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI

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: preserve tool plugin manifest metadata · openclaw/op...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -8,6 +8,7 @@ import {

88

resolvePackageExtensionEntries,

99

} from "../plugins/manifest.js";

1010

import { defaultRuntime } from "../runtime.js";

11+

import { isRecord } from "../utils.js";

11121213

type JsonObject = Record<string, unknown>;

1314

@@ -116,9 +117,19 @@ export async function loadToolPlugin(params: {

116117

export function buildToolPluginManifest(params: {

117118

metadata: ToolPluginMetadata;

118119

packageManifest: JsonObject;

120+

existingManifest?: JsonObject;

119121

}): JsonObject {

120-

const optionalTools = params.metadata.tools.filter((tool) => tool.optional);

122+

const toolMetadata = buildToolPluginToolMetadata(params.metadata, params.existingManifest);

123+

const existingContracts = isRecord(params.existingManifest?.contracts)

124+

? params.existingManifest.contracts

125+

: {};

126+

const {

127+

contracts: _existingContracts,

128+

toolMetadata: _existingToolMetadata,

129+

...existingManifestFields

130+

} = params.existingManifest ?? {};

121131

return {

132+

...existingManifestFields,

122133

id: params.metadata.id,

123134

name: params.metadata.name,

124135

description: params.metadata.description,

@@ -127,18 +138,35 @@ export function buildToolPluginManifest(params: {

127138

configSchema: params.metadata.configSchema,

128139

activation: params.metadata.activation,

129140

contracts: {

141+

...existingContracts,

130142

tools: params.metadata.tools.map((tool) => tool.name),

131143

},

132-

...(optionalTools.length > 0

133-

? {

134-

toolMetadata: Object.fromEntries(

135-

optionalTools.map((tool) => [tool.name, { optional: true }]),

136-

),

137-

}

138-

: {}),

144+

...(toolMetadata ? { toolMetadata } : {}),

139145

};

140146

}

141147148+

function buildToolPluginToolMetadata(

149+

metadata: ToolPluginMetadata,

150+

existingManifest: JsonObject | undefined,

151+

): Record<string, unknown> | undefined {

152+

const existingToolMetadata = isRecord(existingManifest?.toolMetadata)

153+

? existingManifest.toolMetadata

154+

: {};

155+

const nextEntries = metadata.tools

156+

.map((tool) => {

157+

const existingValue = existingToolMetadata[tool.name];

158+

const existing = isRecord(existingValue) ? { ...existingValue } : {};

159+

if (tool.optional) {

160+

existing.optional = true;

161+

} else {

162+

delete existing.optional;

163+

}

164+

return [tool.name, existing] as const;

165+

})

166+

.filter(([, value]) => Object.keys(value).length > 0);

167+

return nextEntries.length > 0 ? Object.fromEntries(nextEntries) : undefined;

168+

}

169+142170

export function buildToolPluginPackageManifest(params: {

143171

packageManifest: JsonObject;

144172

entry: string;

@@ -168,6 +196,7 @@ export function validateToolPluginProject(params: {

168196

const expectedManifest = buildToolPluginManifest({

169197

metadata: params.metadata,

170198

packageManifest: params.packageManifest,

199+

existingManifest: params.manifest,

171200

});

172201

if (JSON.stringify(params.manifest) !== JSON.stringify(expectedManifest)) {

173202

errors.push("openclaw.plugin.json generated metadata is stale. Run openclaw plugins build.");

@@ -217,15 +246,19 @@ export async function runPluginsBuildCommand(opts: PluginsBuildOptions): Promise

217246

const packagePath = path.join(rootDir, "package.json");

218247

const packageManifest = readPackageManifest(rootDir);

219248

const { metadata } = await loadToolPlugin({ rootDir, entryPath });

220-

const manifest = buildToolPluginManifest({ metadata, packageManifest });

249+

const manifestPath = path.join(rootDir, PLUGIN_MANIFEST_FILENAME);

250+

const currentManifest = fs.existsSync(manifestPath) ? readJsonFile(manifestPath) : undefined;

251+

const manifest = buildToolPluginManifest({

252+

metadata,

253+

packageManifest,

254+

existingManifest: currentManifest,

255+

});

221256

const nextPackageManifest = buildToolPluginPackageManifest({

222257

packageManifest,

223258

entry: entryRelative,

224259

});

225-

const manifestPath = path.join(rootDir, PLUGIN_MANIFEST_FILENAME);

226260227261

if (opts.check) {

228-

const currentManifest = fs.existsSync(manifestPath) ? readJsonFile(manifestPath) : undefined;

229262

const currentPackage = readJsonFile(packagePath);

230263

if (

231264

JSON.stringify(currentManifest) !== JSON.stringify(manifest) ||