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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
罗磊的独立博客
Last Week in AI
Last Week in AI
爱范儿
爱范儿
The Cloudflare Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
IT之家
IT之家
博客园 - 【当耐特】
雷峰网
雷峰网
博客园_首页
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
量子位
V
V2EX

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(outbound): keep Discord runtime adapters resolvable (...
clawsweeper · 2026-06-07 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -76,4 +76,94 @@ describe("bootstrapOutboundChannelPlugin", () => {

7676
7777

expect(loaderMocks.resolveRuntimePluginRegistry).not.toHaveBeenCalled();

7878

});

79+
80+

it("skips bootstrap when the active replacement registry can send for a pinned setup shell", () => {

81+

const setup = createEmptyPluginRegistry();

82+

setup.channels = [

83+

{

84+

pluginId: "discord",

85+

plugin: { id: "discord", meta: {} },

86+

source: "setup",

87+

},

88+

] as never;

89+

const runtime = createEmptyPluginRegistry();

90+

runtime.channels = [

91+

{

92+

pluginId: "discord",

93+

plugin: {

94+

id: "discord",

95+

meta: {},

96+

outbound: { sendText: async () => ({ messageId: "1" }) },

97+

},

98+

source: "runtime",

99+

},

100+

] as never;

101+

setActivePluginRegistry(setup);

102+

pinActivePluginChannelRegistry(setup);

103+

setActivePluginRegistry(runtime);

104+
105+

bootstrapOutboundChannelPlugin({

106+

channel: "discord",

107+

cfg: discordConfig,

108+

});

109+
110+

expect(loaderMocks.resolveRuntimePluginRegistry).not.toHaveBeenCalled();

111+

});

112+
113+

it("skips bootstrap when the active replacement registry has a message send surface", () => {

114+

const setup = createEmptyPluginRegistry();

115+

setup.channels = [

116+

{

117+

pluginId: "discord",

118+

plugin: { id: "discord", meta: {} },

119+

source: "setup",

120+

},

121+

] as never;

122+

const runtime = createEmptyPluginRegistry();

123+

runtime.channels = [

124+

{

125+

pluginId: "discord",

126+

plugin: {

127+

id: "discord",

128+

meta: {},

129+

message: { send: { text: async () => ({ messageId: "1" }) } },

130+

},

131+

source: "runtime",

132+

},

133+

] as never;

134+

setActivePluginRegistry(setup);

135+

pinActivePluginChannelRegistry(setup);

136+

setActivePluginRegistry(runtime);

137+
138+

bootstrapOutboundChannelPlugin({

139+

channel: "discord",

140+

cfg: discordConfig,

141+

});

142+
143+

expect(loaderMocks.resolveRuntimePluginRegistry).not.toHaveBeenCalled();

144+

});

145+
146+

it("retries when bootstrap returns without making the channel send-capable", () => {

147+

const registry = createEmptyPluginRegistry();

148+

registry.channels = [

149+

{

150+

pluginId: "discord",

151+

plugin: { id: "discord", meta: {} },

152+

source: "setup",

153+

},

154+

] as never;

155+

setActivePluginRegistry(registry);

156+

pinActivePluginChannelRegistry(registry);

157+
158+

bootstrapOutboundChannelPlugin({

159+

channel: "discord",

160+

cfg: discordConfig,

161+

});

162+

bootstrapOutboundChannelPlugin({

163+

channel: "discord",

164+

cfg: discordConfig,

165+

});

166+
167+

expect(loaderMocks.resolveRuntimePluginRegistry).toHaveBeenCalledTimes(2);

168+

});

79169

});

Original file line numberDiff line numberDiff line change

@@ -8,6 +8,8 @@ import type { PluginChannelRegistration } from "../../plugins/registry-types.js"

88

import {

99

getActivePluginChannelRegistry,

1010

getActivePluginChannelRegistryVersion,

11+

getActivePluginRegistry,

12+

getActivePluginRegistryVersion,

1113

} from "../../plugins/runtime.js";

1214

import type { DeliverableMessageChannel } from "../../utils/message-channel.js";

1315

@@ -22,6 +24,27 @@ function channelEntryCanSend(entry: PluginChannelRegistration | undefined): bool

2224

return Boolean(entry?.plugin?.outbound?.sendText ?? entry?.plugin?.message?.send?.text);

2325

}

2426
27+

function findChannelEntry(

28+

registry: ReturnType<typeof getActivePluginRegistry>,

29+

channel: DeliverableMessageChannel,

30+

): PluginChannelRegistration | undefined {

31+

return registry?.channels?.find((entry) => entry?.plugin?.id === channel);

32+

}

33+
34+

function canResolveSendCapableChannel(channel: DeliverableMessageChannel): boolean {

35+

const activeChannelRegistry = getActivePluginChannelRegistry();

36+

const channelEntry = findChannelEntry(activeChannelRegistry, channel);

37+

if (channelEntryCanSend(channelEntry)) {

38+

return true;

39+

}

40+
41+

const activeRegistry = getActivePluginRegistry();

42+

if (activeRegistry && activeRegistry !== activeChannelRegistry) {

43+

return channelEntryCanSend(findChannelEntry(activeRegistry, channel));

44+

}

45+

return false;

46+

}

47+
2548

/** Loads runtime plugins on demand when a selected outbound channel has only a setup shell. */

2649

export function bootstrapOutboundChannelPlugin(params: {

2750

channel: DeliverableMessageChannel;

@@ -32,15 +55,11 @@ export function bootstrapOutboundChannelPlugin(params: {

3255

return;

3356

}

3457
35-

const activeChannelRegistry = getActivePluginChannelRegistry();

36-

const activeChannelEntry = activeChannelRegistry?.channels?.find(

37-

(entry) => entry?.plugin?.id === params.channel,

38-

);

39-

if (channelEntryCanSend(activeChannelEntry)) {

58+

if (canResolveSendCapableChannel(params.channel)) {

4059

return;

4160

}

4261
43-

const attemptKey = `${getActivePluginChannelRegistryVersion()}:${params.channel}`;

62+

const attemptKey = `${getActivePluginChannelRegistryVersion()}:${getActivePluginRegistryVersion()}:${params.channel}`;

4463

if (bootstrapAttempts.has(attemptKey)) {

4564

return;

4665

}

@@ -61,6 +80,9 @@ export function bootstrapOutboundChannelPlugin(params: {

6180

allowGatewaySubagentBinding: true,

6281

},

6382

});

83+

if (!canResolveSendCapableChannel(params.channel)) {

84+

bootstrapAttempts.delete(attemptKey);

85+

}

6486

} catch {

6587

bootstrapAttempts.delete(attemptKey);

6688

}