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

推荐订阅源

S
SegmentFault 最新的问题
B
Blog
P
Proofpoint News Feed
美团技术团队
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
有赞技术团队
有赞技术团队
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
罗磊的独立博客
L
LangChain Blog
GbyAI
GbyAI
腾讯CDC
T
The Blog of Author Tim Ferriss
Microsoft Security Blog
Microsoft Security Blog

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(tools): skip denied optional media factories · opencl...
dorukardahan · 2026-05-04 · via Recent Commits to openclaw:main

@@ -91,6 +91,25 @@ function isToolAllowedByFactoryAllowlist(toolName: string, allowlist?: string[])

9191

return expanded.has("*") || expanded.has(normalizeToolName(toolName));

9292

}

939394+

function isToolDeniedByFactoryDenylist(toolName: string, denylist?: string[]): boolean {

95+

if (!denylist || denylist.length === 0) {

96+

return false;

97+

}

98+

const expanded = new Set(expandToolGroups(denylist));

99+

return expanded.has("*") || expanded.has(normalizeToolName(toolName));

100+

}

101+102+

function isToolAllowedByFactoryPolicy(params: {

103+

toolName: string;

104+

allowlist?: string[];

105+

denylist?: string[];

106+

}): boolean {

107+

if (isToolDeniedByFactoryDenylist(params.toolName, params.denylist)) {

108+

return false;

109+

}

110+

return isToolAllowedByFactoryAllowlist(params.toolName, params.allowlist);

111+

}

112+94113

function resolveImageToolFactoryAvailable(params: {

95114

config?: OpenClawConfig;

96115

agentDir?: string;

@@ -159,21 +178,29 @@ function resolveOptionalMediaToolFactoryPlan(params: {

159178

workspaceDir?: string;

160179

authStore?: AuthProfileStore;

161180

toolAllowlist?: string[];

181+

toolDenylist?: string[];

162182

}): OptionalMediaToolFactoryPlan {

163183

const defaults = params.config?.agents?.defaults;

164-

const allowImageGenerate = isToolAllowedByFactoryAllowlist(

165-

"image_generate",

166-

params.toolAllowlist,

167-

);

168-

const allowVideoGenerate = isToolAllowedByFactoryAllowlist(

169-

"video_generate",

170-

params.toolAllowlist,

171-

);

172-

const allowMusicGenerate = isToolAllowedByFactoryAllowlist(

173-

"music_generate",

174-

params.toolAllowlist,

175-

);

176-

const allowPdf = isToolAllowedByFactoryAllowlist("pdf", params.toolAllowlist);

184+

const allowImageGenerate = isToolAllowedByFactoryPolicy({

185+

toolName: "image_generate",

186+

allowlist: params.toolAllowlist,

187+

denylist: params.toolDenylist,

188+

});

189+

const allowVideoGenerate = isToolAllowedByFactoryPolicy({

190+

toolName: "video_generate",

191+

allowlist: params.toolAllowlist,

192+

denylist: params.toolDenylist,

193+

});

194+

const allowMusicGenerate = isToolAllowedByFactoryPolicy({

195+

toolName: "music_generate",

196+

allowlist: params.toolAllowlist,

197+

denylist: params.toolDenylist,

198+

});

199+

const allowPdf = isToolAllowedByFactoryPolicy({

200+

toolName: "pdf",

201+

allowlist: params.toolAllowlist,

202+

denylist: params.toolDenylist,

203+

});

177204

const explicitImageGeneration = hasExplicitToolModelConfig(defaults?.imageGenerationModel);

178205

const explicitVideoGeneration = hasExplicitToolModelConfig(defaults?.videoGenerationModel);

179206

const explicitMusicGeneration = hasExplicitToolModelConfig(defaults?.musicGenerationModel);

@@ -256,6 +283,7 @@ export function createOpenClawTools(

256283

sandboxed?: boolean;

257284

config?: OpenClawConfig;

258285

pluginToolAllowlist?: string[];

286+

pluginToolDenylist?: string[];

259287

/** Current channel ID for auto-threading. */

260288

currentChannelId?: string;

261289

/** Current thread timestamp for auto-threading. */

@@ -348,6 +376,7 @@ export function createOpenClawTools(

348376

workspaceDir,

349377

authStore: options?.authProfileStore,

350378

toolAllowlist: options?.pluginToolAllowlist,

379+

toolDenylist: options?.pluginToolDenylist,

351380

});

352381

const imageToolAgentDir = options?.agentDir;

353382

const imageTool = resolveImageToolFactoryAvailable({