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

推荐订阅源

Engineering at Meta
Engineering at Meta
博客园_首页
J
Java Code Geeks
Jina AI
Jina AI
B
Blog RSS Feed
量子位
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
小众软件
小众软件
博客园 - 聂微东
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
I
InfoQ
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
Y
Y Combinator Blog
Vercel News
Vercel News
雷峰网
雷峰网

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(channels): remove stale helper exports · opencla...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -9,7 +9,6 @@ import { normalizeReplyPayload } from "./normalize-reply.js";

99

import { createReplyReferencePlanner, isSingleUseReplyToMode } from "./reply-reference.js";

1010

import {

1111

extractShortModelName,

12-

hasTemplateVariables,

1312

resolveResponsePrefixTemplate,

1413

} from "./response-prefix-template.js";

1514

import {

@@ -1439,12 +1438,3 @@ describe("extractShortModelName", () => {

14391438

}

14401439

});

14411440

});

1442-
1443-

describe("hasTemplateVariables", () => {

1444-

it("handles empty, static, and repeated variable checks", () => {

1445-

expect(hasTemplateVariables("")).toBe(false);

1446-

expect(hasTemplateVariables("[{model}]")).toBe(true);

1447-

expect(hasTemplateVariables("[{model}]")).toBe(true);

1448-

expect(hasTemplateVariables("[Claude]")).toBe(false);

1449-

});

1450-

});

Original file line numberDiff line numberDiff line change

@@ -90,15 +90,3 @@ export function extractShortModelName(fullModel: string): string {

9090

// Strip date suffixes (YYYYMMDD format)

9191

return modelPart.replace(/-\d{8}$/, "").replace(/-latest$/, "");

9292

}

93-
94-

/**

95-

* Check if a template string contains any template variables.

96-

*/

97-

export function hasTemplateVariables(template: string | undefined): boolean {

98-

if (!template) {

99-

return false;

100-

}

101-

// Reset lastIndex since we're using a global regex

102-

TEMPLATE_VAR_PATTERN.lastIndex = 0;

103-

return TEMPLATE_VAR_PATTERN.test(template);

104-

}

Original file line numberDiff line numberDiff line change

@@ -809,23 +809,6 @@ export function listBundledChannelSetupPlugins(): readonly ChannelPlugin[] {

809809

});

810810

}

811811
812-

export function listBundledChannelSetupPluginsByFeature(

813-

feature: keyof NonNullable<BundledChannelSetupEntryRuntimeContract["features"]>,

814-

options: { config?: OpenClawConfig } = {},

815-

): readonly ChannelPlugin[] {

816-

const { rootScope, loadContext } = resolveActiveBundledChannelLoadScope();

817-

return listBundledChannelPluginIdsForSetupFeature(rootScope, feature, {

818-

config: options.config,

819-

}).flatMap((id) => {

820-

const setupEntry = getLazyGeneratedBundledChannelSetupEntryForRoot(id, rootScope, loadContext);

821-

if (!hasSetupEntryFeature(setupEntry, feature)) {

822-

return [];

823-

}

824-

const plugin = getBundledChannelSetupPluginForRoot(id, rootScope, loadContext);

825-

return plugin ? [plugin] : [];

826-

});

827-

}

828-
829812

export function listBundledChannelLegacySessionSurfaces(

830813

options: {

831814

config?: OpenClawConfig;

Original file line numberDiff line numberDiff line change

@@ -10,9 +10,7 @@ import {

1010

routeFromBindingRecord,

1111

routeFromConversationRef,

1212

routeFromDeliveryContext,

13-

routeFromSessionEntry,

1413

routeToDeliveryFields,

15-

routesShareDeliveryTarget,

1614

} from "./route-projection.js";

1715
1816

describe("channel route projection", () => {

@@ -192,56 +190,7 @@ describe("channel route projection", () => {

192190

});

193191

});

194192
195-

it("uses session route before legacy last route fields", () => {

196-

expect(

197-

routeFromSessionEntry({

198-

sessionId: "sess-1",

199-

updatedAt: 1,

200-

route: {

201-

channel: "slack",

202-

target: { to: "channel:C123" },

203-

thread: { id: "177000.123" },

204-

},

205-

deliveryContext: {

206-

channel: "discord",

207-

to: "channel:old",

208-

threadId: "old-thread",

209-

},

210-

lastChannel: "discord",

211-

lastTo: "channel:older",

212-

}),

213-

).toEqual({

214-

channel: "slack",

215-

target: { to: "channel:C123" },

216-

thread: { id: "177000.123" },

217-

});

218-

});

219-
220-

it("narrows only routable routes and compares delivery targets", () => {

193+

it("narrows only routable routes", () => {

221194

expect(normalizeRoutableChannelRoute({ channel: "slack" })).toBeUndefined();

222-

expect(

223-

routesShareDeliveryTarget({

224-

left: { channel: "slack", target: { to: "channel:C123" } },

225-

right: {

226-

channel: "slack",

227-

accountId: "work",

228-

target: { to: "channel:C123" },

229-

},

230-

}),

231-

).toBe(true);

232-

expect(

233-

routesShareDeliveryTarget({

234-

left: {

235-

channel: "slack",

236-

target: { to: "channel:C123" },

237-

thread: { id: "thread-a" },

238-

},

239-

right: {

240-

channel: "slack",

241-

target: { to: "channel:C123" },

242-

thread: { id: "thread-b" },

243-

},

244-

}),

245-

).toBe(false);

246195

});

247196

});

Original file line numberDiff line numberDiff line change

@@ -1,12 +1,9 @@

11

// Route projection helpers between sessions, delivery context, and channel routes.

2-

import type { SessionEntry } from "../config/sessions/types.js";

32

import type {

43

ConversationRef,

54

SessionBindingRecord,

65

} from "../infra/outbound/session-binding-service.js";

76

import {

8-

channelRouteThreadId,

9-

channelRouteTarget,

107

normalizeChannelRouteRef,

118

type ChannelRouteChatType,

129

type ChannelRouteRef,

@@ -18,9 +15,7 @@ import {

1815

import {

1916

channelRouteFromDeliveryContext,

2017

deliveryContextFromChannelRoute,

21-

deliveryContextFromSession,

2218

normalizeDeliveryContext,

23-

normalizeSessionDeliveryFields,

2419

type DeliveryContext,

2520

} from "../utils/delivery-context.shared.js";

2621

import { getChannelPlugin, normalizeChannelId } from "./plugins/registry.js";

@@ -111,17 +106,6 @@ export function deliveryContextFromRoute(route?: ChannelRouteRef): DeliveryConte

111106

return deliveryContextFromChannelRoute(route);

112107

}

113108
114-

/** Projects the best known delivery route from a stored session entry. */

115-

export function routeFromSessionEntry(entry?: SessionEntry | null): ChannelRouteRef | undefined {

116-

if (!entry) {

117-

return undefined;

118-

}

119-

return (

120-

normalizeSessionDeliveryFields(entry).route ??

121-

routeFromDeliveryContext(deliveryContextFromSession(entry))

122-

);

123-

}

124-
125109

/** Converts a persisted conversation reference into a channel route. */

126110

export function routeFromConversationRef(

127111

conversation?: ConversationRef | null,

@@ -167,22 +151,3 @@ export function routeToDeliveryFields(route?: ChannelRouteRef): {

167151

...(deliveryContext?.threadId != null ? { threadId: deliveryContext.threadId } : {}),

168152

};

169153

}

170-
171-

/** Compares whether two routes address the same delivery target. */

172-

export function routesShareDeliveryTarget(params: {

173-

left?: ChannelRouteRef | null;

174-

right?: ChannelRouteRef | null;

175-

}): boolean {

176-

const left = normalizeRoutableChannelRoute(params.left);

177-

const right = normalizeRoutableChannelRoute(params.right);

178-

if (!left || !right) {

179-

return false;

180-

}

181-

return (

182-

left.channel === right.channel &&

183-

channelRouteTarget(left) === channelRouteTarget(right) &&

184-

// Missing account ids are wildcards; thread ids must match when present.

185-

(left.accountId == null || right.accountId == null || left.accountId === right.accountId) &&

186-

String(channelRouteThreadId(left) ?? "") === String(channelRouteThreadId(right) ?? "")

187-

);

188-

}

Original file line numberDiff line numberDiff line change

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

11

// Sender label tests cover display-label formatting for channel senders.

22

import { describe, expect, it } from "vitest";

3-

import { listSenderLabelCandidates, resolveSenderLabel } from "./sender-label.js";

3+

import { resolveSenderLabel } from "./sender-label.js";

44
55

describe("resolveSenderLabel", () => {

66

it("prefers display + identifier when both are available", () => {

@@ -30,17 +30,3 @@ describe("resolveSenderLabel", () => {

3030

).toBeNull();

3131

});

3232

});

33-
34-

describe("listSenderLabelCandidates", () => {

35-

it("returns unique normalized candidates plus resolved label", () => {

36-

expect(

37-

listSenderLabelCandidates({

38-

name: "Alice",

39-

username: "alice",

40-

tag: "alice",

41-

e164: "+15551234567",

42-

id: "user-123",

43-

}),

44-

).toEqual(["Alice", "alice", "+15551234567", "user-123", "Alice (+15551234567)"]);

45-

});

46-

});

Original file line numberDiff line numberDiff line change

@@ -30,30 +30,3 @@ export function resolveSenderLabel(params: SenderLabelParams): string | null {

3030

}

3131

return display || idPart || null;

3232

}

33-
34-

/** Returns de-duplicated sender label candidates for matching and search. */

35-

export function listSenderLabelCandidates(params: SenderLabelParams): string[] {

36-

const candidates = new Set<string>();

37-

const { name, username, tag, e164, id } = normalizeSenderLabelParams(params);

38-
39-

if (name) {

40-

candidates.add(name);

41-

}

42-

if (username) {

43-

candidates.add(username);

44-

}

45-

if (tag) {

46-

candidates.add(tag);

47-

}

48-

if (e164) {

49-

candidates.add(e164);

50-

}

51-

if (id) {

52-

candidates.add(id);

53-

}

54-

const resolved = resolveSenderLabel(params);

55-

if (resolved) {

56-

candidates.add(resolved);

57-

}

58-

return Array.from(candidates);

59-

}

Original file line numberDiff line numberDiff line change

@@ -136,46 +136,6 @@ vi.mock("../channels/plugins/bundled.js", async () => {

136136

detectTelegramAllowFromMigration({ cfg, env }),

137137

() => mockedChannelMigrationPlans.plans,

138138

]),

139-

listBundledChannelSetupPluginsByFeature: vi.fn((feature: string) => {

140-

if (feature === "legacySessionSurfaces") {

141-

return [

142-

{

143-

id: "whatsapp",

144-

messaging: {

145-

isLegacyGroupSessionKey: (key: string) => /^group:.+@g\.us$/i.test(key.trim()),

146-

canonicalizeLegacySessionKey: ({ key, agentId }: { key: string; agentId: string }) =>

147-

/^group:.+@g\.us$/i.test(key.trim())

148-

? `agent:${agentId}:whatsapp:${key.trim().toLowerCase()}`

149-

: null,

150-

},

151-

},

152-

];

153-

}

154-

if (feature === "legacyStateMigrations") {

155-

return [

156-

{

157-

id: "whatsapp",

158-

lifecycle: {

159-

detectLegacyStateMigrations: ({ oauthDir }: { oauthDir: string }) =>

160-

detectWhatsAppLegacyStateMigrations({ oauthDir }),

161-

},

162-

},

163-

{

164-

id: "telegram",

165-

lifecycle: {

166-

detectLegacyStateMigrations: ({

167-

cfg,

168-

env,

169-

}: {

170-

cfg: OpenClawConfig;

171-

env: NodeJS.ProcessEnv;

172-

}) => detectTelegramAllowFromMigration({ cfg, env }),

173-

},

174-

},

175-

];

176-

}

177-

return [];

178-

}),

179139

};

180140

});

181141