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

推荐订阅源

The Cloudflare Blog
U
Unit 42
F
Fortinet All Blogs
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
Y
Y Combinator Blog
罗磊的独立博客
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
I
InfoQ
博客园 - 叶小钗
博客园 - 聂微东
Last Week in AI
Last Week in AI

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: trim channel contract registry helpers · opencl...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -1,57 +1,15 @@

1-

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

21

import type { ChannelId } from "../../channel-id.types.js";

3-

import type { ChannelPlugin } from "../../types.js";

4-

import {

5-

getBundledChannelPlugin,

6-

listBundledChannelPluginIds,

7-

listBundledChannelPlugins,

8-

} from "./bundled-channel-plugin-loader.js";

9-

import { channelPluginSurfaceKeys, type ChannelPluginSurface } from "./manifest.js";

10-11-

type SurfaceContractEntry = {

12-

id: string;

13-

plugin: Pick<

14-

ChannelPlugin,

15-

| "id"

16-

| "actions"

17-

| "setup"

18-

| "status"

19-

| "outbound"

20-

| "messaging"

21-

| "threading"

22-

| "directory"

23-

| "gateway"

24-

>;

25-

surfaces: readonly ChannelPluginSurface[];

26-

};

27-28-

type ThreadingContractEntry = {

29-

id: string;

30-

plugin: Pick<ChannelPlugin, "id" | "threading">;

31-

};

2+

import { listBundledChannelPluginIds } from "./bundled-channel-plugin-loader.js";

323334

type ThreadingContractRef = {

345

id: ChannelId;

356

};

36737-

type DirectoryContractEntry = {

38-

id: string;

39-

plugin: Pick<ChannelPlugin, "id" | "directory">;

40-

coverage: "lookups" | "presence";

41-

cfg?: OpenClawConfig;

42-

accountId?: string;

43-

};

44-458

type DirectoryContractRef = {

469

id: ChannelId;

4710

coverage: "lookups" | "presence";

4811

};

491250-

let surfaceContractRegistryCache: SurfaceContractEntry[] | undefined;

51-

const surfaceContractEntryCache = new Map<ChannelId, SurfaceContractEntry | null>();

52-

let threadingContractRegistryCache: ThreadingContractEntry[] | undefined;

53-

let directoryContractRegistryCache: DirectoryContractEntry[] | undefined;

54-5513

const threadingContractPluginIds = new Set<ChannelId>([

5614

"bluebubbles",

5715

"discord",

@@ -82,14 +40,6 @@ const directoryContractPluginIds = new Set<ChannelId>([

8240

"zalouser",

8341

]);

844285-

function toSurfaceContractEntry(plugin: ChannelPlugin): SurfaceContractEntry {

86-

return {

87-

id: plugin.id,

88-

plugin,

89-

surfaces: channelPluginSurfaceKeys.filter((surface) => Boolean(plugin[surface])),

90-

};

91-

}

92-9343

function getBundledChannelPluginIdsForShard(params: {

9444

shardIndex: number;

9545

shardCount: number;

@@ -99,74 +49,13 @@ function getBundledChannelPluginIdsForShard(params: {

9949

);

10050

}

10151102-

function getSurfaceContractEntry(id: ChannelId): SurfaceContractEntry | undefined {

103-

if (surfaceContractEntryCache.has(id)) {

104-

return surfaceContractEntryCache.get(id) ?? undefined;

105-

}

106-

const plugin = getBundledChannelPlugin(id);

107-

const entry = plugin ? toSurfaceContractEntry(plugin) : null;

108-

surfaceContractEntryCache.set(id, entry);

109-

return entry ?? undefined;

110-

}

111-112-

export function getSurfaceContractRegistry(): SurfaceContractEntry[] {

113-

surfaceContractRegistryCache ??= listBundledChannelPlugins().map(toSurfaceContractEntry);

114-

return surfaceContractRegistryCache;

115-

}

116-117-

export function getSurfaceContractRegistryShard(params: {

118-

shardIndex: number;

119-

shardCount: number;

120-

}): SurfaceContractEntry[] {

121-

return getBundledChannelPluginIdsForShard(params).flatMap((id) => {

122-

const entry = getSurfaceContractEntry(id);

123-

return entry ? [entry] : [];

124-

});

125-

}

126-12752

export function getSurfaceContractRegistryShardIds(params: {

12853

shardIndex: number;

12954

shardCount: number;

13055

}): readonly ChannelId[] {

13156

return getBundledChannelPluginIdsForShard(params);

13257

}

13358134-

export function getThreadingContractRegistry(): ThreadingContractEntry[] {

135-

threadingContractRegistryCache ??= listBundledChannelPluginIds()

136-

.filter((id) => threadingContractPluginIds.has(id))

137-

.flatMap((id) => {

138-

const entry = getSurfaceContractEntry(id);

139-

return entry && entry.surfaces.includes("threading")

140-

? [

141-

{

142-

id: entry.id,

143-

plugin: entry.plugin,

144-

},

145-

]

146-

: [];

147-

});

148-

return threadingContractRegistryCache;

149-

}

150-151-

export function getThreadingContractRegistryShard(params: {

152-

shardIndex: number;

153-

shardCount: number;

154-

}): ThreadingContractEntry[] {

155-

return getBundledChannelPluginIdsForShard(params)

156-

.filter((id) => threadingContractPluginIds.has(id))

157-

.flatMap((id) => {

158-

const entry = getSurfaceContractEntry(id);

159-

return entry && entry.surfaces.includes("threading")

160-

? [

161-

{

162-

id: entry.id,

163-

plugin: entry.plugin,

164-

},

165-

]

166-

: [];

167-

});

168-

}

169-17059

export function getThreadingContractRegistryShardRefs(params: {

17160

shardIndex: number;

17261

shardCount: number;

@@ -178,44 +67,6 @@ export function getThreadingContractRegistryShardRefs(params: {

1786717968

const directoryPresenceOnlyIds = new Set(["whatsapp", "zalouser"]);

18069181-

export function getDirectoryContractRegistry(): DirectoryContractEntry[] {

182-

directoryContractRegistryCache ??= listBundledChannelPluginIds()

183-

.filter((id) => directoryContractPluginIds.has(id))

184-

.flatMap((id) => {

185-

const entry = getSurfaceContractEntry(id);

186-

return entry && entry.surfaces.includes("directory")

187-

? [

188-

{

189-

id: entry.id,

190-

plugin: entry.plugin,

191-

coverage: directoryPresenceOnlyIds.has(entry.id) ? "presence" : "lookups",

192-

},

193-

]

194-

: [];

195-

});

196-

return directoryContractRegistryCache;

197-

}

198-199-

export function getDirectoryContractRegistryShard(params: {

200-

shardIndex: number;

201-

shardCount: number;

202-

}): DirectoryContractEntry[] {

203-

return getBundledChannelPluginIdsForShard(params)

204-

.filter((id) => directoryContractPluginIds.has(id))

205-

.flatMap((id) => {

206-

const entry = getSurfaceContractEntry(id);

207-

return entry && entry.surfaces.includes("directory")

208-

? [

209-

{

210-

id: entry.id,

211-

plugin: entry.plugin,

212-

coverage: directoryPresenceOnlyIds.has(entry.id) ? "presence" : "lookups",

213-

},

214-

]

215-

: [];

216-

});

217-

}

218-21970

export function getDirectoryContractRegistryShardRefs(params: {

22071

shardIndex: number;

22172

shardCount: number;