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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
WordPress大学
WordPress大学
U
Unit 42
I
InfoQ
A
About on SuperTechFans
宝玉的分享
宝玉的分享
J
Java Code Geeks
博客园 - 司徒正美
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
腾讯CDC
Recent Announcements
Recent Announcements

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(config): tighten dm policy warnings · openclaw/opencl...
amknight · 2026-06-17 · via Recent Commits to openclaw:main

@@ -176,6 +176,27 @@ function createCompatPluginConfigSchemaRegistry(): PluginManifestRegistry {

176176

};

177177

}

178178179+

function createDmPolicyRegistry(params: {

180+

channelId: string;

181+

dmAllowFromMode?: "topOnly" | "topOrNested" | "nestedOnly";

182+

}): PluginManifestRegistry {

183+

return {

184+

diagnostics: [],

185+

plugins: [

186+

createPluginManifestRecord({

187+

id: params.channelId,

188+

channels: [params.channelId],

189+

packageChannel: {

190+

id: params.channelId,

191+

...(params.dmAllowFromMode

192+

? { doctorCapabilities: { dmAllowFromMode: params.dmAllowFromMode } }

193+

: {}),

194+

},

195+

}),

196+

],

197+

};

198+

}

199+179200

function createPluginManifestRecord(

180201

overrides: Partial<PluginManifestRecord> & Pick<PluginManifestRecord, "id">,

181202

): PluginManifestRecord {

@@ -416,6 +437,118 @@ describe("validateConfigObjectWithPlugins channel metadata (applyDefaults: true)

416437

});

417438

});

418439440+

describe("validateConfigObjectWithPlugins DM policy warnings", () => {

441+

it("uses manifest metadata to skip nested-only DM config shapes", () => {

442+

const result = validateConfigObjectWithPlugins(

443+

{

444+

channels: {

445+

matrix: {

446+

dm: {

447+

policy: "open",

448+

},

449+

},

450+

},

451+

},

452+

{

453+

pluginMetadataSnapshot: {

454+

manifestRegistry: createDmPolicyRegistry({

455+

channelId: "matrix",

456+

dmAllowFromMode: "nestedOnly",

457+

}),

458+

},

459+

},

460+

);

461+462+

expect(result.ok).toBe(true);

463+

if (result.ok) {

464+

expect(

465+

result.warnings.filter((warning) => warning.path.startsWith("channels.matrix")),

466+

).toEqual([]);

467+

}

468+

});

469+470+

it("does not warn for disabled channels or accounts", () => {

471+

const result = validateConfigObjectWithPlugins(

472+

{

473+

channels: {

474+

mattermost: {

475+

enabled: false,

476+

dmPolicy: "open",

477+

accounts: {

478+

team: {

479+

dmPolicy: "open",

480+

},

481+

},

482+

},

483+

slack: {

484+

accounts: {

485+

work: {

486+

enabled: false,

487+

dmPolicy: "open",

488+

},

489+

},

490+

},

491+

},

492+

},

493+

{

494+

pluginMetadataSnapshot: {

495+

manifestRegistry: {

496+

diagnostics: [],

497+

plugins: [

498+

...createDmPolicyRegistry({ channelId: "mattermost" }).plugins,

499+

...createDmPolicyRegistry({ channelId: "slack" }).plugins,

500+

],

501+

},

502+

},

503+

},

504+

);

505+506+

expect(result.ok).toBe(true);

507+

if (result.ok) {

508+

expect(

509+

result.warnings.filter((warning) => warning.path.startsWith("channels.mattermost")),

510+

).toEqual([]);

511+

expect(

512+

result.warnings.filter((warning) => warning.path.startsWith("channels.slack")),

513+

).toEqual([]);

514+

}

515+

});

516+517+

it("does not suggest channel allowFrom as sufficient when account allowFrom overrides it", () => {

518+

const result = validateConfigObjectWithPlugins(

519+

{

520+

channels: {

521+

mattermost: {

522+

allowFrom: ["*"],

523+

accounts: {

524+

team: {

525+

dmPolicy: "open",

526+

allowFrom: [],

527+

},

528+

},

529+

},

530+

},

531+

},

532+

{

533+

pluginMetadataSnapshot: {

534+

manifestRegistry: createDmPolicyRegistry({ channelId: "mattermost" }),

535+

},

536+

},

537+

);

538+539+

expect(result.ok).toBe(true);

540+

if (result.ok) {

541+

const warning = result.warnings.find(

542+

(entry) => entry.path === "channels.mattermost.accounts.team.allowFrom",

543+

);

544+

expect(warning?.message).toContain(

545+

"remove channels.mattermost.accounts.team.allowFrom to inherit channels.mattermost.allowFrom",

546+

);

547+

expect(warning?.message).not.toContain("(or channels.mattermost.allowFrom)");

548+

}

549+

});

550+

});

551+419552

describe("validateConfigObjectRawWithPlugins channel metadata", () => {

420553

it("still injects channel AJV defaults even in raw mode — persistence safety is handled by io.ts", () => {

421554

// Channel and plugin AJV validation always runs with applyDefaults: true