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

推荐订阅源

Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
雷峰网
雷峰网
IT之家
IT之家
I
InfoQ
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
月光博客
月光博客
P
Proofpoint News Feed
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
G
Google Developers Blog
小众软件
小众软件
宝玉的分享
宝玉的分享
Jina AI
Jina AI
V
Visual Studio 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(agents): canonicalize provider aliases in byProvider ...
pgondhi987 · 2026-04-28 · via Recent Commits to openclaw:main

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

1111

resolveSubagentToolPolicyForSession,

1212

} from "./pi-tools.policy.js";

1313

import { createStubTool } from "./test-helpers/pi-tool-stubs.js";

14+

import { providerAliasCases } from "./test-helpers/provider-alias-cases.js";

14151516

describe("pi-tools.policy", () => {

1617

it("treats * in allow as allow-all", () => {

@@ -240,6 +241,136 @@ describe("resolveSubagentToolPolicy depth awareness", () => {

240241

});

241242242243

describe("resolveEffectiveToolPolicy", () => {

244+

it.each(providerAliasCases)(

245+

"matches provider alias %s to canonical tools.byProvider key %s",

246+

(alias, canonical) => {

247+

const cfg = {

248+

tools: {

249+

byProvider: {

250+

[canonical]: { deny: ["exec"] },

251+

},

252+

},

253+

} as unknown as OpenClawConfig;

254+255+

const result = resolveEffectiveToolPolicy({ config: cfg, modelProvider: alias });

256+257+

expect(result.globalProviderPolicy).toEqual({ deny: ["exec"] });

258+

},

259+

);

260+261+

it.each(providerAliasCases)(

262+

"matches provider alias %s to canonical model-scoped tools.byProvider key %s",

263+

(alias, canonical) => {

264+

const cfg = {

265+

tools: {

266+

byProvider: {

267+

[`${canonical}/claude-sonnet`]: { deny: ["exec"] },

268+

},

269+

},

270+

} as unknown as OpenClawConfig;

271+272+

const result = resolveEffectiveToolPolicy({

273+

config: cfg,

274+

modelProvider: alias,

275+

modelId: "claude-sonnet",

276+

});

277+278+

expect(result.globalProviderPolicy).toEqual({ deny: ["exec"] });

279+

},

280+

);

281+282+

it("prefers canonical tools.byProvider policy when alias keys collide after normalization", () => {

283+

const aliasFirst = {

284+

tools: {

285+

byProvider: {

286+

bedrock: { deny: ["read"] },

287+

"amazon-bedrock": { deny: ["exec"] },

288+

},

289+

},

290+

} as unknown as OpenClawConfig;

291+

const canonicalFirst = {

292+

tools: {

293+

byProvider: {

294+

"amazon-bedrock": { deny: ["exec"] },

295+

bedrock: { deny: ["read"] },

296+

},

297+

},

298+

} as unknown as OpenClawConfig;

299+300+

expect(

301+

resolveEffectiveToolPolicy({ config: aliasFirst, modelProvider: "bedrock" })

302+

.globalProviderPolicy,

303+

).toEqual({ deny: ["exec"] });

304+

expect(

305+

resolveEffectiveToolPolicy({ config: canonicalFirst, modelProvider: "bedrock" })

306+

.globalProviderPolicy,

307+

).toEqual({ deny: ["exec"] });

308+

});

309+310+

it("prefers canonical model-scoped tools.byProvider policy when alias keys collide", () => {

311+

const aliasFirst = {

312+

tools: {

313+

byProvider: {

314+

"bedrock/claude-sonnet": { deny: ["read"] },

315+

"amazon-bedrock/claude-sonnet": { deny: ["exec"] },

316+

},

317+

},

318+

} as unknown as OpenClawConfig;

319+

const canonicalFirst = {

320+

tools: {

321+

byProvider: {

322+

"amazon-bedrock/claude-sonnet": { deny: ["exec"] },

323+

"bedrock/claude-sonnet": { deny: ["read"] },

324+

},

325+

},

326+

} as unknown as OpenClawConfig;

327+

const params = { modelProvider: "bedrock", modelId: "claude-sonnet" };

328+329+

expect(

330+

resolveEffectiveToolPolicy({ config: aliasFirst, ...params }).globalProviderPolicy,

331+

).toEqual({ deny: ["exec"] });

332+

expect(

333+

resolveEffectiveToolPolicy({ config: canonicalFirst, ...params }).globalProviderPolicy,

334+

).toEqual({ deny: ["exec"] });

335+

});

336+337+

it("keeps slash-containing modelId scoped to the selected provider", () => {

338+

const cfg = {

339+

tools: {

340+

byProvider: {

341+

"anthropic/claude-sonnet": { deny: ["exec"] },

342+

"openrouter/anthropic/claude-sonnet": { deny: ["read"] },

343+

},

344+

},

345+

} as unknown as OpenClawConfig;

346+347+

expect(

348+

resolveEffectiveToolPolicy({

349+

config: cfg,

350+

modelProvider: "openrouter",

351+

modelId: "anthropic/claude-sonnet",

352+

}).globalProviderPolicy,

353+

).toEqual({ deny: ["read"] });

354+

});

355+356+

it("does not let slash-containing modelId select another provider policy", () => {

357+

const cfg = {

358+

tools: {

359+

byProvider: {

360+

"anthropic/claude-sonnet": { deny: ["exec"] },

361+

},

362+

},

363+

} as unknown as OpenClawConfig;

364+365+

expect(

366+

resolveEffectiveToolPolicy({

367+

config: cfg,

368+

modelProvider: "openrouter",

369+

modelId: "anthropic/claude-sonnet",

370+

}).globalProviderPolicy,

371+

).toBeUndefined();

372+

});

373+243374

it("implicitly re-exposes exec and process when tools.exec is configured", () => {

244375

const cfg = {

245376

tools: {