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

推荐订阅源

C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
V
Visual Studio Blog
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
D
Docker
MyScale Blog
MyScale Blog
小众软件
小众软件
云风的 BLOG
云风的 BLOG
美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】

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
refactor: share channel setup promotion keys · openclaw/o...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,6 +1,10 @@

11

import { z, type ZodType } from "zod";

22

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

33

import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../../routing/session-key.js";

4+

import {

5+

collectSingleAccountPromotionEntries,

6+

isSetupSingleAccountPromotionKey,

7+

} from "./setup-promotion-keys.js";

48

import type { ChannelSetupAdapter } from "./types.adapters.js";

59

import type { ChannelSetupInput } from "./types.core.js";

610

@@ -10,65 +14,6 @@ type ChannelSectionBase = {

1014

accounts?: Record<string, Record<string, unknown>>;

1115

};

1216
13-

const COMMON_SINGLE_ACCOUNT_KEYS_TO_MOVE = new Set([

14-

"name",

15-

"token",

16-

"tokenFile",

17-

"botToken",

18-

"appToken",

19-

"account",

20-

"signalNumber",

21-

"authDir",

22-

"cliPath",

23-

"dbPath",

24-

"httpUrl",

25-

"httpHost",

26-

"httpPort",

27-

"webhookPath",

28-

"webhookUrl",

29-

"webhookSecret",

30-

"service",

31-

"region",

32-

"homeserver",

33-

"userId",

34-

"accessToken",

35-

"password",

36-

"deviceName",

37-

"url",

38-

"code",

39-

"dmPolicy",

40-

"allowFrom",

41-

"groupPolicy",

42-

"groupAllowFrom",

43-

"defaultTo",

44-

"streaming",

45-

"deviceId",

46-

"avatarUrl",

47-

"initialSyncLimit",

48-

"encryption",

49-

"allowlistOnly",

50-

"allowBots",

51-

"blockStreaming",

52-

"replyToMode",

53-

"threadReplies",

54-

"textChunkLimit",

55-

"chunkMode",

56-

"responsePrefix",

57-

"ackReaction",

58-

"ackReactionScope",

59-

"reactionNotifications",

60-

"threadBindings",

61-

"startupVerification",

62-

"startupVerificationCooldownHours",

63-

"mediaMaxMb",

64-

"autoJoin",

65-

"autoJoinAllowlist",

66-

"dm",

67-

"groups",

68-

"rooms",

69-

"actions",

70-

]);

71-
7217

const NAMED_ACCOUNT_PROMOTION_KEYS_BY_CHANNEL: Record<string, readonly string[]> = {

7318

matrix: [

7419

"name",

@@ -502,16 +447,8 @@ function resolveSingleAccountKeysToMove(params: {

502447

channelKey: string;

503448

channel: Record<string, unknown>;

504449

}): string[] {

505-

const hasNamedAccounts = Object.keys(

506-

(params.channel.accounts as Record<string, unknown>) ?? {},

507-

).some(Boolean);

508-

const entries = Object.entries(params.channel)

509-

.filter(

510-

([key, value]) =>

511-

key !== "accounts" && key !== "defaultAccount" && key !== "enabled" && value !== undefined,

512-

)

513-

.map(([key]) => key);

514-

const keysToMove = entries.filter((key) => COMMON_SINGLE_ACCOUNT_KEYS_TO_MOVE.has(key));

450+

const { entries, hasNamedAccounts } = collectSingleAccountPromotionEntries(params.channel);

451+

const keysToMove = entries.filter(isSetupSingleAccountPromotionKey);

515452

if (!hasNamedAccounts || keysToMove.length === 0) {

516453

return keysToMove;

517454

}

Original file line numberDiff line numberDiff line change

@@ -2,45 +2,16 @@ import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../../routing/session-ke

22

import { normalizeOptionalString } from "../../shared/string-coerce.js";

33

import { getBundledChannelPlugin, hasBundledChannelPackageSetupFeature } from "./bundled.js";

44

import { getLoadedChannelPlugin } from "./registry.js";

5+

import {

6+

collectSingleAccountPromotionEntries,

7+

isCommonSingleAccountPromotionKey,

8+

} from "./setup-promotion-keys.js";

59
610

type ChannelSectionBase = {

711

defaultAccount?: string;

812

accounts?: Record<string, Record<string, unknown>>;

913

};

1014
11-

const COMMON_SINGLE_ACCOUNT_KEYS_TO_MOVE = new Set([

12-

"name",

13-

"token",

14-

"tokenFile",

15-

"botToken",

16-

"appToken",

17-

"account",

18-

"signalNumber",

19-

"authDir",

20-

"cliPath",

21-

"dbPath",

22-

"httpUrl",

23-

"httpHost",

24-

"httpPort",

25-

"webhookPath",

26-

"webhookUrl",

27-

"webhookSecret",

28-

"service",

29-

"region",

30-

"homeserver",

31-

"userId",

32-

"accessToken",

33-

"password",

34-

"deviceName",

35-

"url",

36-

"code",

37-

"dmPolicy",

38-

"allowFrom",

39-

"groupPolicy",

40-

"groupAllowFrom",

41-

"defaultTo",

42-

]);

43-
4415

type ChannelSetupPromotionSurface = {

4516

singleAccountKeysToMove?: readonly string[];

4617

namedAccountPromotionKeys?: readonly string[];

@@ -68,15 +39,11 @@ function getBundledChannelSetupPromotionSurface(

6839

return asPromotionSurface(getBundledChannelPlugin(channelKey)?.setup);

6940

}

7041
71-

function isStaticSingleAccountPromotionKey(key: string): boolean {

72-

return COMMON_SINGLE_ACCOUNT_KEYS_TO_MOVE.has(key);

73-

}

74-
7542

export function shouldMoveSingleAccountChannelKey(params: {

7643

channelKey: string;

7744

key: string;

7845

}): boolean {

79-

if (isStaticSingleAccountPromotionKey(params.key)) {

46+

if (isCommonSingleAccountPromotionKey(params.key)) {

8047

return true;

8148

}

8249

const loadedContractKeys = getLoadedChannelSetupPromotionSurface(

@@ -98,15 +65,7 @@ export function resolveSingleAccountKeysToMove(params: {

9865

channelKey: string;

9966

channel: Record<string, unknown>;

10067

}): string[] {

101-

const hasNamedAccounts = Object.keys(

102-

(params.channel.accounts as Record<string, unknown>) ?? {},

103-

).some(Boolean);

104-

const entries = Object.entries(params.channel)

105-

.filter(

106-

([key, value]) =>

107-

key !== "accounts" && key !== "defaultAccount" && key !== "enabled" && value !== undefined,

108-

)

109-

.map(([key]) => key);

68+

const { entries, hasNamedAccounts } = collectSingleAccountPromotionEntries(params.channel);

11069

if (entries.length === 0) {

11170

return [];

11271

}

@@ -123,7 +82,7 @@ export function resolveSingleAccountKeysToMove(params: {

12382

};

12483
12584

const keysToMove = entries.filter((key) => {

126-

if (isStaticSingleAccountPromotionKey(key)) {

85+

if (isCommonSingleAccountPromotionKey(key)) {

12786

return true;

12887

}

12988

return Boolean(

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,89 @@

1+

const COMMON_SINGLE_ACCOUNT_PROMOTION_KEYS = [

2+

"name",

3+

"token",

4+

"tokenFile",

5+

"botToken",

6+

"appToken",

7+

"account",

8+

"signalNumber",

9+

"authDir",

10+

"cliPath",

11+

"dbPath",

12+

"httpUrl",

13+

"httpHost",

14+

"httpPort",

15+

"webhookPath",

16+

"webhookUrl",

17+

"webhookSecret",

18+

"service",

19+

"region",

20+

"homeserver",

21+

"userId",

22+

"accessToken",

23+

"password",

24+

"deviceName",

25+

"url",

26+

"code",

27+

"dmPolicy",

28+

"allowFrom",

29+

"groupPolicy",

30+

"groupAllowFrom",

31+

"defaultTo",

32+

] as const;

33+
34+

const SETUP_SINGLE_ACCOUNT_PROMOTION_KEYS = [

35+

...COMMON_SINGLE_ACCOUNT_PROMOTION_KEYS,

36+

"streaming",

37+

"deviceId",

38+

"avatarUrl",

39+

"initialSyncLimit",

40+

"encryption",

41+

"allowlistOnly",

42+

"allowBots",

43+

"blockStreaming",

44+

"replyToMode",

45+

"threadReplies",

46+

"textChunkLimit",

47+

"chunkMode",

48+

"responsePrefix",

49+

"ackReaction",

50+

"ackReactionScope",

51+

"reactionNotifications",

52+

"threadBindings",

53+

"startupVerification",

54+

"startupVerificationCooldownHours",

55+

"mediaMaxMb",

56+

"autoJoin",

57+

"autoJoinAllowlist",

58+

"dm",

59+

"groups",

60+

"rooms",

61+

"actions",

62+

] as const;

63+
64+

const commonSingleAccountPromotionKeys = new Set<string>(COMMON_SINGLE_ACCOUNT_PROMOTION_KEYS);

65+

const setupSingleAccountPromotionKeys = new Set<string>(SETUP_SINGLE_ACCOUNT_PROMOTION_KEYS);

66+
67+

export function isCommonSingleAccountPromotionKey(key: string): boolean {

68+

return commonSingleAccountPromotionKeys.has(key);

69+

}

70+
71+

export function isSetupSingleAccountPromotionKey(key: string): boolean {

72+

return setupSingleAccountPromotionKeys.has(key);

73+

}

74+
75+

export function collectSingleAccountPromotionEntries(channel: Record<string, unknown>): {

76+

entries: string[];

77+

hasNamedAccounts: boolean;

78+

} {

79+

const hasNamedAccounts = Object.keys((channel.accounts as Record<string, unknown>) ?? {}).some(

80+

Boolean,

81+

);

82+

const entries = Object.entries(channel)

83+

.filter(

84+

([key, value]) =>

85+

key !== "accounts" && key !== "defaultAccount" && key !== "enabled" && value !== undefined,

86+

)

87+

.map(([key]) => key);

88+

return { entries, hasNamedAccounts };

89+

}