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

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow 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(doctor): skip unsupported group allowFrom repair · op...
vincentkoc · 2026-05-16 · via Recent Commits to openclaw:main

@@ -1,12 +1,22 @@

11

import { resolveChannelDmAllowFrom } from "../../../channels/plugins/dm-access.js";

2+

import { normalizeAnyChannelId } from "../../../channels/registry.js";

3+

import { GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA } from "../../../config/bundled-channel-config-metadata.generated.js";

24

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

35

import { normalizeStringEntries } from "../../../shared/string-normalization.js";

46

import { getDoctorChannelCapabilities } from "../channel-capabilities.js";

57

import { asObjectRecord } from "./object.js";

6879

const PSEUDO_CHANNEL_KEYS = new Set(["defaults", "modelByChannel", "tools"]);

10+

const ACCOUNT_SCHEMA_WILDCARD = "*";

11+

const CHANNEL_GROUP_ALLOW_FROM_PATH = ["groupAllowFrom"] as const;

12+

const ACCOUNT_GROUP_ALLOW_FROM_PATH = [

13+

"accounts",

14+

ACCOUNT_SCHEMA_WILDCARD,

15+

"groupAllowFrom",

16+

] as const;

817918

type ChannelRecord = Record<string, unknown>;

19+

type SchemaPath = readonly string[];

10201121

function isDisabled(record: ChannelRecord): boolean {

1222

return record.enabled === false;

@@ -43,14 +53,72 @@ function readOwnDmAllowFrom(params: { channelName: string; account: ChannelRecor

4353

);

4454

}

455556+

function findGeneratedChannelConfigSchema(channelName: string): Record<string, unknown> | undefined {

57+

const normalizedChannelId = normalizeAnyChannelId(channelName);

58+

return GENERATED_BUNDLED_CHANNEL_CONFIG_METADATA.find(

59+

(entry) => entry.channelId === channelName || entry.channelId === normalizedChannelId,

60+

)?.schema;

61+

}

62+63+

function schemaAllowsConfigPath(schema: unknown, path: SchemaPath): boolean {

64+

if (path.length === 0) {

65+

return true;

66+

}

67+

const node = asObjectRecord(schema);

68+

if (!node) {

69+

return true;

70+

}

71+72+

const anyOf = Array.isArray(node.anyOf) ? node.anyOf : undefined;

73+

if (anyOf) {

74+

return anyOf.some((branch) => schemaAllowsConfigPath(branch, path));

75+

}

76+

const oneOf = Array.isArray(node.oneOf) ? node.oneOf : undefined;

77+

if (oneOf) {

78+

return oneOf.some((branch) => schemaAllowsConfigPath(branch, path));

79+

}

80+

const allOf = Array.isArray(node.allOf) ? node.allOf : undefined;

81+

if (allOf) {

82+

return allOf.every((branch) => schemaAllowsConfigPath(branch, path));

83+

}

84+85+

const [segment, ...rest] = path;

86+

const properties = asObjectRecord(node.properties);

87+

if (

88+

segment !== ACCOUNT_SCHEMA_WILDCARD &&

89+

properties &&

90+

Object.prototype.hasOwnProperty.call(properties, segment)

91+

) {

92+

return schemaAllowsConfigPath(properties[segment], rest);

93+

}

94+95+

const additionalProperties = node.additionalProperties;

96+

if (additionalProperties === false) {

97+

return false;

98+

}

99+

if (additionalProperties && typeof additionalProperties === "object") {

100+

return schemaAllowsConfigPath(additionalProperties, rest);

101+

}

102+

return true;

103+

}

104+105+

function generatedSchemaAllowsGroupAllowFrom(channelName: string, path: SchemaPath): boolean {

106+

const schema = findGeneratedChannelConfigSchema(channelName);

107+

return !schema || schemaAllowsConfigPath(schema, path);

108+

}

109+46110

function migrateRecord(params: {

47111

account: ChannelRecord;

112+

canWriteGroupAllowFrom: boolean;

48113

channelName: string;

49114

changes: string[];

50115

parent?: ChannelRecord;

51116

parentHadGroupAllowFrom?: boolean;

52117

prefix: string;

53118

}): boolean {

119+

if (!params.canWriteGroupAllowFrom) {

120+

return false;

121+

}

54122

if (readGroupAllowFrom(params.account).length > 0) {

55123

return false;

56124

}

@@ -102,8 +170,13 @@ export function maybeRepairGroupAllowFromFallback(cfg: OpenClawConfig): {

102170

}

103171104172

const hadGroupAllowFrom = readGroupAllowFrom(channelConfig).length > 0;

173+

const canWriteChannelGroupAllowFrom = generatedSchemaAllowsGroupAllowFrom(

174+

channelName,

175+

CHANNEL_GROUP_ALLOW_FROM_PATH,

176+

);

105177

migrateRecord({

106178

account: channelConfig,

179+

canWriteGroupAllowFrom: canWriteChannelGroupAllowFrom,

107180

channelName,

108181

changes,

109182

prefix: `channels.${channelName}`,

@@ -113,13 +186,18 @@ export function maybeRepairGroupAllowFromFallback(cfg: OpenClawConfig): {

113186

if (!accounts) {

114187

continue;

115188

}

189+

const canWriteAccountGroupAllowFrom = generatedSchemaAllowsGroupAllowFrom(

190+

channelName,

191+

ACCOUNT_GROUP_ALLOW_FROM_PATH,

192+

);

116193

for (const [accountId, accountConfig] of Object.entries(accounts)) {

117194

const account = asObjectRecord(accountConfig);

118195

if (!account || isDisabled(account)) {

119196

continue;

120197

}

121198

migrateRecord({

122199

account,

200+

canWriteGroupAllowFrom: canWriteAccountGroupAllowFrom,

123201

channelName,

124202

changes,

125203

parent: channelConfig,