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

推荐订阅源

博客园_首页
IT之家
IT之家
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Help Net Security
V
V2EX
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 【当耐特】
月光博客
月光博客
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件

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(telegram): pass session files to native plugin comman...
MatthewSchle · 2026-05-02 · via Recent Commits to openclaw:main

@@ -27,6 +27,7 @@ type DispatchReplyWithBufferedBlockDispatcherResult = Awaited<

2727

>;

2828

type DeliverRepliesFn = typeof import("./bot/delivery.js").deliverReplies;

2929

type DeliverRepliesParams = Parameters<DeliverRepliesFn>[0];

30+

type MatchPluginCommandFn = typeof import("./bot-native-commands.runtime.js").matchPluginCommand;

30313132

const dispatchReplyResult: DispatchReplyWithBufferedBlockDispatcherResult = {

3233

queuedFinal: false,

@@ -45,11 +46,16 @@ const persistentBindingMocks = vi.hoisted(() => ({

4546

const sessionMocks = vi.hoisted(() => ({

4647

loadSessionStore: vi.fn(),

4748

recordSessionMetaFromInbound: vi.fn(),

49+

resolveAndPersistSessionFile: vi.fn(),

4850

resolveStorePath: vi.fn(),

4951

}));

5052

const commandAuthMocks = vi.hoisted(() => ({

5153

resolveCommandArgMenu: vi.fn(),

5254

}));

55+

const pluginRuntimeMocks = vi.hoisted(() => ({

56+

executePluginCommand: vi.fn(async () => ({ text: "ok" })),

57+

matchPluginCommand: vi.fn<MatchPluginCommandFn>(() => null),

58+

}));

5359

const replyMocks = vi.hoisted(() => ({

5460

dispatchReplyWithBufferedBlockDispatcher: vi.fn<DispatchReplyWithBufferedBlockDispatcherFn>(

5561

async () => dispatchReplyResult,

@@ -148,6 +154,7 @@ vi.mock("openclaw/plugin-sdk/session-store-runtime", async () => {

148154

return {

149155

...actual,

150156

loadSessionStore: sessionMocks.loadSessionStore,

157+

resolveAndPersistSessionFile: sessionMocks.resolveAndPersistSessionFile,

151158

resolveStorePath: sessionMocks.resolveStorePath,

152159

};

153160

});

@@ -178,8 +185,8 @@ vi.mock("openclaw/plugin-sdk/plugin-runtime", async () => {

178185

return {

179186

...actual,

180187

getPluginCommandSpecs: vi.fn(() => []),

181-

matchPluginCommand: vi.fn(() => null),

182-

executePluginCommand: vi.fn(async () => ({ text: "ok" })),

188+

matchPluginCommand: pluginRuntimeMocks.matchPluginCommand,

189+

executePluginCommand: pluginRuntimeMocks.executePluginCommand,

183190

};

184191

});

185192

vi.mock("./bot/delivery.js", () => ({

@@ -192,6 +199,9 @@ vi.mock("./bot/delivery.replies.js", () => ({

192199

let registerTelegramNativeCommands: typeof import("./bot-native-commands.js").registerTelegramNativeCommands;

193200194201

type TelegramCommandHandler = (ctx: unknown) => Promise<void>;

202+

type TelegramPluginCommandSpecs = ReturnType<

203+

NonNullable<TelegramNativeCommandDeps["getPluginCommandSpecs"]>

204+

>;

195205196206

function registerAndResolveStatusHandler(params: {

197207

cfg: OpenClawConfig;

@@ -233,6 +243,7 @@ function registerAndResolveCommandHandlerBase(params: {

233243

useAccessGroups: boolean;

234244

telegramCfg?: NativeCommandTestParams["telegramCfg"];

235245

resolveTelegramGroupConfig?: RegisterTelegramHandlerParams["resolveTelegramGroupConfig"];

246+

pluginCommandSpecs?: TelegramPluginCommandSpecs;

236247

}): {

237248

handler: TelegramCommandHandler;

238249

sendMessage: ReturnType<typeof vi.fn>;

@@ -246,14 +257,15 @@ function registerAndResolveCommandHandlerBase(params: {

246257

useAccessGroups,

247258

telegramCfg,

248259

resolveTelegramGroupConfig,

260+

pluginCommandSpecs,

249261

} = params;

250262

const commandHandlers = new Map<string, TelegramCommandHandler>();

251263

const sendMessage = vi.fn().mockResolvedValue(undefined);

252264

const telegramDeps: TelegramNativeCommandDeps = {

253265

getRuntimeConfig: vi.fn(() => cfg),

254266

readChannelAllowFromStore: vi.fn(async () => storeAllowFrom ?? []),

255267

dispatchReplyWithBufferedBlockDispatcher: replyMocks.dispatchReplyWithBufferedBlockDispatcher,

256-

getPluginCommandSpecs: vi.fn(() => []),

268+

getPluginCommandSpecs: vi.fn(() => pluginCommandSpecs ?? []),

257269

listSkillCommandsForAgents: vi.fn(() => []),

258270

syncTelegramMenuCommands: vi.fn(),

259271

};

@@ -292,6 +304,7 @@ function registerAndResolveCommandHandler(params: {

292304

useAccessGroups?: boolean;

293305

telegramCfg?: NativeCommandTestParams["telegramCfg"];

294306

resolveTelegramGroupConfig?: RegisterTelegramHandlerParams["resolveTelegramGroupConfig"];

307+

pluginCommandSpecs?: TelegramPluginCommandSpecs;

295308

}): {

296309

handler: TelegramCommandHandler;

297310

sendMessage: ReturnType<typeof vi.fn>;

@@ -305,6 +318,7 @@ function registerAndResolveCommandHandler(params: {

305318

useAccessGroups,

306319

telegramCfg,

307320

resolveTelegramGroupConfig,

321+

pluginCommandSpecs,

308322

} = params;

309323

return registerAndResolveCommandHandlerBase({

310324

commandName,

@@ -315,6 +329,7 @@ function registerAndResolveCommandHandler(params: {

315329

useAccessGroups: useAccessGroups ?? true,

316330

telegramCfg,

317331

resolveTelegramGroupConfig,

332+

pluginCommandSpecs,

318333

});

319334

}

320335

@@ -450,7 +465,22 @@ describe("registerTelegramNativeCommands — session metadata", () => {

450465

commandAuthMocks.resolveCommandArgMenu.mockClear();

451466

sessionMocks.loadSessionStore.mockClear().mockReturnValue({});

452467

sessionMocks.recordSessionMetaFromInbound.mockClear().mockResolvedValue(undefined);

468+

sessionMocks.resolveAndPersistSessionFile.mockClear().mockImplementation(async (params) => {

469+

const sessionFile =

470+

params.fallbackSessionFile ?? `/tmp/openclaw-sessions/${params.sessionId}.jsonl`;

471+

return {

472+

sessionFile,

473+

sessionEntry: {

474+

...params.sessionEntry,

475+

sessionId: params.sessionId,

476+

sessionFile,

477+

updatedAt: Date.now(),

478+

},

479+

};

480+

});

453481

sessionMocks.resolveStorePath.mockClear().mockReturnValue("/tmp/openclaw-sessions.json");

482+

pluginRuntimeMocks.executePluginCommand.mockClear().mockResolvedValue({ text: "ok" });

483+

pluginRuntimeMocks.matchPluginCommand.mockClear().mockReturnValue(null);

454484

replyMocks.dispatchReplyWithBufferedBlockDispatcher

455485

.mockClear()

456486

.mockResolvedValue(dispatchReplyResult);

@@ -1019,4 +1049,61 @@ describe("registerTelegramNativeCommands — session metadata", () => {

1019104910201050

expectUnauthorizedNewCommandBlocked(sendMessage);

10211051

});

1052+1053+

it("passes a persisted topic session file to plugin commands", async () => {

1054+

sessionMocks.resolveStorePath.mockReturnValue("/tmp/openclaw-sessions/sessions.json");

1055+

sessionMocks.loadSessionStore.mockReturnValue({

1056+

"agent:main:telegram:group:-1001234567890:topic:42": {

1057+

sessionId: "sess-topic",

1058+

updatedAt: 1,

1059+

},

1060+

});

1061+1062+

const { handler } = registerAndResolveCommandHandler({

1063+

commandName: "codex",

1064+

cfg: { commands: { allowFrom: { telegram: ["200"] } } } as OpenClawConfig,

1065+

groupAllowFrom: ["-1001234567890"],

1066+

useAccessGroups: false,

1067+

pluginCommandSpecs: [

1068+

{

1069+

name: "codex",

1070+

description: "Codex",

1071+

acceptsArgs: true,

1072+

},

1073+

] as TelegramPluginCommandSpecs,

1074+

});

1075+

pluginRuntimeMocks.matchPluginCommand.mockReturnValue({

1076+

command: {

1077+

name: "codex",

1078+

description: "Codex",

1079+

handler: vi.fn(),

1080+

pluginId: "openclaw-codex-app-server",

1081+

pluginName: "Codex",

1082+

requireAuth: true,

1083+

},

1084+

args: "bind --cwd /tmp/work",

1085+

});

1086+1087+

await handler(

1088+

createTelegramTopicCommandContext({ match: "bind --cwd /tmp/work", threadId: 42 }),

1089+

);

1090+1091+

expect(sessionMocks.resolveAndPersistSessionFile).toHaveBeenCalledWith(

1092+

expect.objectContaining({

1093+

sessionId: "sess-topic",

1094+

sessionKey: "agent:main:telegram:group:-1001234567890:topic:42",

1095+

storePath: "/tmp/openclaw-sessions/sessions.json",

1096+

sessionsDir: "/tmp/openclaw-sessions",

1097+

fallbackSessionFile: "/tmp/openclaw-sessions/sess-topic-topic-42.jsonl",

1098+

}),

1099+

);

1100+

expect(pluginRuntimeMocks.executePluginCommand).toHaveBeenCalledWith(

1101+

expect.objectContaining({

1102+

sessionKey: "agent:main:telegram:group:-1001234567890:topic:42",

1103+

sessionId: "sess-topic",

1104+

sessionFile: "/tmp/openclaw-sessions/sess-topic-topic-42.jsonl",

1105+

messageThreadId: 42,

1106+

}),

1107+

);

1108+

});

10221109

});