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

推荐订阅源

D
Docker
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
The GitHub Blog
The GitHub Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
博客园_首页
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
The Cloudflare 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
refactor: share QA channel plugin base · openclaw/opencla...
vincentkoc · 2026-05-30 · via Recent Commits to openclaw:main

@@ -7,35 +7,18 @@ import {

77

createMessageReceiptFromOutboundResults,

88

defineChannelMessageAdapter,

99

} from "openclaw/plugin-sdk/channel-outbound";

10-

import { getChatChannelMeta } from "openclaw/plugin-sdk/channel-plugin-common";

11-

import {

12-

DEFAULT_ACCOUNT_ID,

13-

listQaChannelAccountIds,

14-

resolveDefaultQaChannelAccountId,

15-

resolveQaChannelAccount,

16-

} from "./accounts.js";

10+

import { DEFAULT_ACCOUNT_ID } from "./accounts.js";

1711

import { buildQaTarget, normalizeQaTarget, parseQaTarget } from "./bus-client.js";

1812

import { qaChannelMessageActions } from "./channel-actions.js";

19-

import { qaChannelPluginConfigSchema } from "./config-schema.js";

13+

import { createQaChannelPluginBase, QA_CHANNEL_ID, qaChannelRuntimeMeta } from "./channel-base.js";

2014

import { startQaGatewayAccount } from "./gateway.js";

2115

import { sendQaChannelText } from "./outbound.js";

2216

import type { ChannelPlugin } from "./runtime-api.js";

23-

import { applyQaSetup } from "./setup.js";

2417

import { qaChannelStatus } from "./status.js";

2518

import type { CoreConfig, ResolvedQaChannelAccount } from "./types.js";

261927-

const CHANNEL_ID = "qa-channel" as const;

28-

const meta = {

29-

...getChatChannelMeta(CHANNEL_ID),

30-

id: CHANNEL_ID,

31-

label: "QA Channel",

32-

selectionLabel: "QA Channel",

33-

docsPath: "/channels/qa-channel",

34-

blurb: "Synthetic QA channel for OpenClaw QA runs.",

35-

};

36-3720

const qaChannelMessageAdapter = defineChannelMessageAdapter({

38-

id: CHANNEL_ID,

21+

id: QA_CHANNEL_ID,

3922

durableFinal: {

4023

capabilities: {

4124

text: true,

@@ -59,7 +42,7 @@ const qaChannelMessageAdapter = defineChannelMessageAdapter({

5942

return {

6043

messageId: result.messageId,

6144

receipt: createMessageReceiptFromOutboundResults({

62-

results: [{ channel: CHANNEL_ID, messageId: result.messageId }],

45+

results: [{ channel: QA_CHANNEL_ID, messageId: result.messageId }],

6346

threadId,

6447

replyToId,

6548

kind: "text",

@@ -71,32 +54,7 @@ const qaChannelMessageAdapter = defineChannelMessageAdapter({

71547255

export const qaChannelPlugin: ChannelPlugin<ResolvedQaChannelAccount> = createChatChannelPlugin({

7356

base: {

74-

id: CHANNEL_ID,

75-

meta,

76-

capabilities: {

77-

chatTypes: ["direct", "group"],

78-

},

79-

reload: { configPrefixes: ["channels.qa-channel"] },

80-

configSchema: qaChannelPluginConfigSchema,

81-

setup: {

82-

applyAccountConfig: ({ cfg, accountId, input }) =>

83-

applyQaSetup({

84-

cfg,

85-

accountId,

86-

input: input as Record<string, unknown>,

87-

}),

88-

},

89-

config: {

90-

listAccountIds: (cfg) => listQaChannelAccountIds(cfg as CoreConfig),

91-

resolveAccount: (cfg, accountId) =>

92-

resolveQaChannelAccount({ cfg: cfg as CoreConfig, accountId }),

93-

defaultAccountId: (cfg) => resolveDefaultQaChannelAccountId(cfg as CoreConfig),

94-

isConfigured: (account) => account.configured,

95-

resolveAllowFrom: ({ cfg, accountId }) =>

96-

resolveQaChannelAccount({ cfg: cfg as CoreConfig, accountId }).config.allowFrom,

97-

resolveDefaultTo: ({ cfg, accountId }) =>

98-

resolveQaChannelAccount({ cfg: cfg as CoreConfig, accountId }).config.defaultTo,

99-

},

57+

...createQaChannelPluginBase(qaChannelRuntimeMeta),

10058

messaging: {

10159

normalizeTarget: normalizeQaTarget,

10260

inferTargetChatType: ({ to }) => parseQaTarget(to).chatType,

@@ -118,7 +76,7 @@ export const qaChannelPlugin: ChannelPlugin<ResolvedQaChannelAccount> = createCh

11876

const baseRoute = buildChannelOutboundSessionRoute({

11977

cfg,

12078

agentId,

121-

channel: CHANNEL_ID,

79+

channel: QA_CHANNEL_ID,

12280

accountId,

12381

peer: {

12482

kind:

@@ -130,7 +88,7 @@ export const qaChannelPlugin: ChannelPlugin<ResolvedQaChannelAccount> = createCh

13088

id: buildQaTarget(parsed),

13189

},

13290

chatType: parsed.chatType,

133-

from: `qa-channel:${accountId ?? DEFAULT_ACCOUNT_ID}`,

91+

from: `${QA_CHANNEL_ID}:${accountId ?? DEFAULT_ACCOUNT_ID}`,

13492

to: buildQaTarget(parsed),

13593

});

13694

return buildThreadAwareOutboundSessionRoute({

@@ -158,7 +116,7 @@ export const qaChannelPlugin: ChannelPlugin<ResolvedQaChannelAccount> = createCh

158116

status: qaChannelStatus,

159117

gateway: {

160118

startAccount: async (ctx) => {

161-

await startQaGatewayAccount(CHANNEL_ID, meta.label, ctx);

119+

await startQaGatewayAccount(QA_CHANNEL_ID, qaChannelRuntimeMeta.label, ctx);

162120

},

163121

},

164122

actions: qaChannelMessageActions,

@@ -169,7 +127,7 @@ export const qaChannelPlugin: ChannelPlugin<ResolvedQaChannelAccount> = createCh

169127

deliveryMode: "direct",

170128

},

171129

attachedResults: {

172-

channel: CHANNEL_ID,

130+

channel: QA_CHANNEL_ID,

173131

sendText: async ({ cfg, to, text, accountId, threadId, replyToId }) =>

174132

await sendQaChannelText({

175133

cfg: cfg as CoreConfig,