@goodandready/dsh-messenger-gateway 0.3.21 → 0.3.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/gateway.js CHANGED
@@ -1,1737 +1,1772 @@
1
- import { readFile } from 'node:fs/promises'
2
- import { randomUUID } from 'node:crypto'
3
- import { join } from 'node:path'
4
- import { homedir } from 'node:os'
5
- import { installModelSelection } from '@deepseek-ai/dsh-agent'
6
- import { createUserMessage } from '@deepseek-ai/dsh-llm'
7
- import { SessionId } from '@deepseek-ai/dsh-session'
8
- import createAdapters from './adapters/index.js'
9
- import { transcribeVoice, speakText } from './integrations.js'
10
- import { attachInboundPhoto, photoOnlyHint } from './photos.js'
11
- import { formatInboundDocument, documentOnlyHint, parseDocument } from './documents.js'
12
- import { listFiles, getFileForDownload, formatFileSize } from './file-manager.js'
13
- import { collectAssistantParts, buildOutboundFiles, stripImageUrls } from './outbound.js'
14
- import { assistantText, splitText, stripReasoningPreamble, MESSENGER_RELAY_INSTRUCTION } from './text.js'
15
- import { chatKey, sessionKey } from './topics.js'
16
- import { listHomes, resolveNamedHome, upsertHome, normalizeHomeName } from './homes.js'
17
- import { createVoicePrefs, shouldSpeakReply } from './voice-prefs.js'
18
- import { prepareTtsText, toTelegramVoiceFile } from './tts.js'
19
- import {
20
- makeAskToken, buildInlineKeyboard, buildMultiSelectKeyboard, indexCallbacks, releaseCallbacks,
21
- parseCallbackData, parseAskCallback, targetMatchesAsk, rejectPendingAsk, REMOVE_KEYBOARD,
22
- } from './ask.js'
23
- import { processDiagramsAndTables } from './artifacts.js'
24
- import { createPersonaStore, getPersona, listPersonas, BUILTIN_PERSONAS } from './personas.js'
25
- import { exportSessionToMarkdown, rewindSession } from './session-ops.js'
26
- import { formatAlertMessage, resolveAlertTarget } from './alerts.js'
27
- import { createScheduler, parseRelativeTime, formatRemaining } from './scheduler.js'
28
- import { listModelCatalog, buildProvidersKeyboard, buildModelsKeyboard, getStoredModelSelection } from './models.js'
29
- import { buildQuickActionsKeyboard, REMOVE_REPLY_KEYBOARD } from './adapters/telegram.js'
30
- import { createPairingStore } from './pairing.js'
31
- import {
32
- extractTextDelta, extractToolName, buildStreamPreview, formatProgressLine,
33
- createEditScheduler, startTypingHeartbeat,
34
- } from './stream.js'
35
- import { isTopicGoneError } from './telegram-errors.js'
36
- import { ensureContentArray } from './content-guard.js'
37
- import { mergeDynamicCommands } from './commands.js'
38
- import { t } from './locales/index.js'
39
-
40
-
41
- function whenIdleWithTimeout(agent, timeoutMs, signal) {
42
- const idle = agent.whenIdle()
43
- if (!timeoutMs || timeoutMs <= 0) return idle
44
- return Promise.race([
45
- idle,
46
- new Promise((_, reject) => {
47
- const timer = setTimeout(() => reject(new Error(`turn timeout (${timeoutMs}ms)`)), timeoutMs)
48
- timer.unref?.()
49
- signal?.addEventListener('abort', () => { clearTimeout(timer); reject(new DOMException('Aborted', 'AbortError')) }, { once: true })
50
- }),
51
- ])
52
- }
53
-
54
- function releaseChatTurn(chat) {
55
- chat.busy = Promise.resolve()
56
- }
57
-
58
- const PLUGIN = 'dsh-messenger-gateway'
59
-
60
- export class Gateway {
61
- constructor(ctx, config, hooks = {}) {
62
- this.ctx = ctx
63
- this.config = config
64
- this.hooks = hooks
65
- this.chats = new Map()
66
- this.sessionToChat = new Map()
67
- this.sessionToThread = new Map()
68
- this.threadToSession = new Map()
69
- this.pending = new Map()
70
- this.pendingAsks = new Map()
71
- this.adapters = new Map()
72
- this.adapterList = []
73
- this.disposeListener = undefined
74
- this.idleTimer = undefined
75
- this.callbackIndex = new Map()
76
- const home = process.env.DSH_HOME || join(homedir(), '.dsh')
77
- this.pairing = createPairingStore(join(home, 'messenger-gateway', 'pairing.json'))
78
- this.voicePrefs = createVoicePrefs(join(home, 'messenger-gateway', 'voice-prefs.json'))
79
- this.chatTts = createVoicePrefs(join(home, 'messenger-gateway', 'chat-tts.json'))
80
- this.muted = createVoicePrefs(join(home, 'messenger-gateway', 'muted.json'))
81
- this.personas = createPersonaStore(join(home, 'messenger-gateway', 'personas.json'))
82
- this.chatLocales = createVoicePrefs(join(home, 'messenger-gateway', 'chat-locales.json'))
83
- this.scheduler = createScheduler(join(home, 'messenger-gateway', 'scheduled.json'), async (task) => {
84
- const target = {
85
- platform: task.platform || 'telegram',
86
- chatId: task.chatId,
87
- threadId: task.threadId || 0,
88
- }
89
- const locale = this.resolveLocale({ chatId: task.chatId })
90
- if (task.prompt || task.action === 'prompt') {
91
- const promptText = task.prompt || task.text
92
- try {
93
- await this.dispatchAutonomousPrompt(target, promptText, locale)
94
- } catch (err) {
95
- const msg = err instanceof Error ? err.message : String(err)
96
- this.ctx.logger?.warn?.(`dsh-messenger-gateway: cron prompt error: ${msg}`)
97
- await this.sendToMessenger(target, {
98
- text: `⚠️ <b>[Cron Error]</b>\n${msg}`,
99
- }).catch(() => {})
100
- }
101
- } else {
102
- const text = t('remind.prefix', { text: task.text }, locale)
103
- await this.sendToMessenger(target, { text })
104
- }
105
- })
106
- this.stats = { sent: 0, errors: 0, startedAt: Date.now() }
107
- }
108
-
109
- resolveLocale(input) {
110
- if (input?.locale) return input.locale
111
- const chatId = input?.chatId
112
- if (chatId && this.chatLocales?.get(chatId)) return this.chatLocales.get(chatId)
113
- if (input?.languageCode) {
114
- const code = String(input.languageCode).toLowerCase()
115
- if (code.startsWith('zh')) return 'zh'
116
- if (code.startsWith('en')) return 'en'
117
- }
118
- return this.config?.defaultLocale || 'en'
119
- }
120
-
121
- async dispatchAutonomousPrompt(target, promptText, locale = 'en') {
122
- const key = this.sessionKeyFor(target)
123
- const reply = async (payload) => {
124
- await this.sendToMessenger(target, typeof payload === 'string' ? { text: payload } : payload)
125
- }
126
- const input = {
127
- platform: target.platform || 'telegram',
128
- chatId: target.chatId,
129
- threadId: target.threadId || 0,
130
- text: promptText,
131
- reply,
132
- locale,
133
- }
134
- const chat = await this.getOrCreateChat(key, input)
135
- const turnInput = { ...input, attachments: [], inboundWasVoice: false }
136
- chat.turnActive = true
137
- try { chat.abort?.abort?.() } catch {}
138
- chat.abort = new AbortController()
139
- const run = chat.busy.then(() => this.runTurn(chat, turnInput, chat.abort.signal))
140
- chat.busy = run.catch(() => {})
141
- run.catch((err) => {
142
- const msg = err instanceof Error ? err.message : String(err)
143
- this.ctx.logger?.warn?.(`dsh-messenger-gateway: cron turn: ${msg}`)
144
- chat.turnActive = false
145
- chat.abort = undefined
146
- })
147
- return run
148
- }
149
-
150
- isMuted(chatId) { return this.muted.get(chatId) === true }
151
- setMuted(chatId, on) { return this.muted.set(chatId, on) }
152
-
153
- baseUrl() {
154
- const raw = String(this.config.internalBaseURL || '').trim()
155
- return raw || 'http://127.0.0.1:3080'
156
- }
157
-
158
- tg() { return this.config.telegram || {} }
159
-
160
- effectiveAllowedIds() {
161
- const fromConfig = (this.tg().allowedUserIds || []).map(Number).filter(Number.isFinite)
162
- const fromPairing = this.pairing.listApproved()
163
- return [...new Set([...fromConfig, ...fromPairing])]
164
- }
165
-
166
- isUserAllowed(userId) {
167
- const ids = this.effectiveAllowedIds()
168
- return ids.length === 0 || ids.includes(Number(userId))
169
- }
170
-
171
- resolveHomeTarget(platform = 'telegram', name) {
172
- const tg = this.tg()
173
- const home = resolveNamedHome(tg, name)
174
- if (!home) return null
175
- const out = { platform, chatId: home.chatId, homeName: home.name }
176
- if (home.threadId > 0) out.threadId = home.threadId
177
- return out
178
- }
179
-
180
- async sendAlert(type, payload = {}) {
181
- try {
182
- const target = resolveAlertTarget(this)
183
- if (!target) return
184
- const allowedEvents = this.config.telegram?.alerts?.events || ['error', 'pairing']
185
- if (type !== 'status' && !allowedEvents.includes(type)) return
186
-
187
- const text = formatAlertMessage(type, payload)
188
- await this.sendToMessenger(target, { text })
189
- } catch (err) {
190
- this.ctx.logger?.warn?.(`sendAlert (${type}): ${err.message}`)
191
- }
192
- }
193
-
194
- async start() {
195
- this.disposeListener = this.ctx.on('session/event', (session, event) => {
196
- if (this.config.telegram?.forumMirrorEnabled) {
197
- if (event.type === 'turn/start' || event.type === 'session/create') {
198
- this.mirrorSessionToForumTopic(session).catch?.(() => {})
199
- } else if (event.type === 'turn/end') {
200
- this.relayTurnToForumMirror(session, event).catch?.(() => {})
201
- }
202
- }
203
-
204
- const collector = this.pending.get(session.id)
205
- if (!collector) return
206
- if (event.type === 'assistant/message') {
207
- const msg = event.data.message
208
- const text = assistantText(msg)
209
- if (text) collector.lastText = text
210
- const extra = collectAssistantParts(msg)
211
- for (const img of extra.images) collector.images.push(img)
212
- } else if (event.type === 'assistant/chunk') {
213
- const delta = extractTextDelta(event.data?.chunk)
214
- if (delta) {
215
- collector.streamText = (collector.streamText || '') + delta
216
- collector.onStream?.(collector.streamText, collector.toolName)
217
- }
218
- } else if (event.type === 'tool/call') {
219
- collector.toolName = extractToolName(event.data) || collector.toolName
220
- collector.onStream?.(collector.streamText || '', collector.toolName)
221
- } else if (event.type === 'tool/result') {
222
- collector.toolName = ''
223
- collector.onStream?.(collector.streamText || '', '')
224
- } else if (event.type === 'turn/end') {
225
- collector.reason = event.data.reason
226
- }
227
- })
228
- const adapters = createAdapters({
229
- config: this.config,
230
- onMessage: (input) => this.handleMessage(input),
231
- onCallback: (cb) => this.handleCallback(cb),
232
- onUnauthorized: (input) => this.handleUnauthorized(input),
233
- isUserAllowed: (id) => this.isUserAllowed(id),
234
- logger: this.ctx.logger,
235
- })
236
- for (const adapter of adapters) {
237
- try {
238
- await adapter.start()
239
- this.adapterList.push(adapter)
240
- this.adapters.set(adapter.name, adapter)
241
- if (adapter.name === 'telegram') this.tgAdapter = adapter
242
- this.ctx.logger?.info?.(`dsh-messenger-gateway: ${adapter.name} started`)
243
- } catch (err) {
244
- this.ctx.logger?.warn?.(`dsh-messenger-gateway: ${adapter.name}: ${err.message}`)
245
- }
246
- }
247
- if (this.adapters.has('telegram')) {
248
- await this.syncTelegramCommands().catch((err) => {
249
- this.ctx.logger?.warn?.(`Initial syncTelegramCommands: ${err?.message || err}`)
250
- })
251
- }
252
- const rawIdle = Number(this.config.agent?.idleTimeoutMs)
253
- const idleMs = Number.isFinite(rawIdle) && rawIdle > 0 ? rawIdle : 86_400_000
254
- this.idleTimer = setInterval(() => this.reapIdle(), Math.min(idleMs, 60_000))
255
- this.idleTimer.unref?.()
256
- this.scheduler.start()
257
- }
258
-
259
- stop() {
260
- if (this.scheduler) this.scheduler.stop()
261
- if (this.disposeListener) this.disposeListener()
262
- if (this.idleTimer) clearInterval(this.idleTimer)
263
- for (const a of this.adapterList) { try { a.stop() } catch {} }
264
- this.adapterList = []
265
- this.adapters.clear()
266
- for (const chat of this.chats.values()) chat.dispose().catch(() => {})
267
- this.chats.clear()
268
- this.sessionToChat.clear()
269
- this.sessionToThread.clear()
270
- this.threadToSession.clear()
271
- for (const pending of this.pendingAsks.values()) {
272
- releaseCallbacks(this.callbackIndex, pending.callbackKeys)
273
- rejectPendingAsk(pending, new Error('gateway stopped'))
274
- }
275
- this.pending.clear()
276
- this.pendingAsks.clear()
277
- this.callbackIndex.clear()
278
- }
279
-
280
- getAdapter(platform) { return this.adapters.get(platform) }
281
-
282
- async messengerSend(target, payload) {
283
- let resolved = target
284
- if (!resolved?.chatId && resolved?.platform) {
285
- const home = this.resolveHomeTarget(resolved.platform, resolved.home || resolved.name)
286
- if (!home) throw new Error('target.chatId required (or set telegram home channel)')
287
- resolved = { ...home, ...resolved, chatId: home.chatId, threadId: resolved.threadId ?? home.threadId }
288
- }
289
- const adapter = this.getAdapter(resolved.platform)
290
- if (!adapter?.sendTo) throw new Error(`adapter ${resolved.platform} unavailable`)
291
- try {
292
- await adapter.sendTo(resolved.chatId, payload, { threadId: resolved.threadId })
293
- this.stats.sent++
294
- } catch (err) {
295
- this.stats.errors++
296
- if (isTopicGoneError(err)) {
297
- this.logger?.warn?.(`messengerSend: topic gone for ${resolved.platform}:${resolved.chatId}:${resolved.threadId} — the chat/topic was deleted; skipping delivery`)
298
- return
299
- }
300
- throw err
301
- }
302
- }
303
-
304
- async messengerAsk(target, payload, timeoutMs = 300_000) {
305
- const adapter = this.getAdapter(target.platform)
306
- if (!adapter) throw new Error(`adapter ${target.platform} unavailable`)
307
- const token = makeAskToken()
308
- const isMulti = payload.mode === 'multi' || (Array.isArray(payload.options) && payload.options.length > 0)
309
- let replyMarkup
310
- let callbackKeys
311
- let selectedSet
312
- let page = 0
313
- const pageSize = Number(payload.pageSize) || 6
314
-
315
- if (isMulti) {
316
- selectedSet = new Set(Array.isArray(payload.selected) ? payload.selected : [])
317
- const kb = buildMultiSelectKeyboard(token, payload.options || payload.buttons, selectedSet, page, pageSize, payload)
318
- replyMarkup = kb.replyMarkup
319
- callbackKeys = kb.callbackKeys
320
- } else {
321
- const kb = buildInlineKeyboard(token, payload.buttons || [])
322
- replyMarkup = kb.replyMarkup
323
- callbackKeys = kb.callbackKeys
324
- }
325
-
326
- indexCallbacks(this.callbackIndex, callbackKeys, token)
327
- try {
328
- await adapter.sendTo(target.chatId, { text: payload.text, replyMarkup }, { threadId: target.threadId })
329
- } catch (err) {
330
- // Never leave stale callback keys pointing at an unresolvable ask.
331
- releaseCallbacks(this.callbackIndex, callbackKeys)
332
- if (isTopicGoneError(err)) {
333
- this.logger?.warn?.(`messengerAsk: topic gone for ${target.platform}:${target.chatId}:${target.threadId} — ask aborted (chat/topic deleted)`)
334
- throw new Error('messenger.ask: chat or topic was deleted')
335
- }
336
- throw err
337
- }
338
- return new Promise((resolve, reject) => {
339
- const timer = setTimeout(() => {
340
- this.pendingAsks.delete(token)
341
- releaseCallbacks(this.callbackIndex, callbackKeys)
342
- reject(new Error('messenger.ask timed out'))
343
- }, timeoutMs)
344
- timer.unref?.()
345
- this.pendingAsks.set(token, {
346
- resolve, reject, timer, target, callbackKeys, isMulti,
347
- options: payload.options || payload.buttons,
348
- selected: selectedSet,
349
- page, pageSize, payload,
350
- })
351
- })
352
- }
353
-
354
- async messengerProgress(target, payload) {
355
- await this.messengerSend(target, { text: payload.text })
356
- }
357
-
358
- async handleUnauthorized(input) {
359
- const { reply, userId, username } = input
360
- const locale = this.resolveLocale(input)
361
- if (!this.tg().pairingEnabled) {
362
- await reply(t('msg.not_allowed', {}, locale))
363
- return
364
- }
365
- try {
366
- const { code } = this.pairing.requestCode(userId, { username })
367
- await reply(t('msg.pairing_requested', { userId, code }, locale))
368
- this.sendAlert('pairing', { userId, username, code }).catch(() => {})
369
- } catch (err) {
370
- if (err.code === 'RATE_LIMIT') await reply(t('msg.pairing_rate_limit', {}, locale))
371
- else await reply(t('msg.exception', { message: err.message }, locale))
372
- }
373
- }
374
-
375
- async handleCallback(cb) {
376
- if (cb.userId && !this.isUserAllowed(cb.userId)) {
377
- try { await cb.answer(t('msg.not_allowed', {}, 'en')) } catch {}
378
- return
379
- }
380
- const indexed = this.callbackIndex.get(cb.data)
381
- const { token, buttonId } = parseCallbackData(cb.data)
382
- const askToken = indexed || token
383
- if (askToken && this.pendingAsks.has(askToken)) {
384
- const pending = this.pendingAsks.get(askToken)
385
- if (!targetMatchesAsk(pending, cb)) {
386
- await cb.answer(t('ask.other_chat', {}, 'en'))
387
- return
388
- }
389
- const action = parseAskCallback(cb.data)
390
- if (pending.isMulti) {
391
- if (action.kind === 'toggle') {
392
- if (pending.selected.has(action.id)) pending.selected.delete(action.id)
393
- else pending.selected.add(action.id)
394
- releaseCallbacks(this.callbackIndex, pending.callbackKeys)
395
- const nextKb = buildMultiSelectKeyboard(askToken, pending.options, pending.selected, pending.page, pending.pageSize, pending.payload)
396
- pending.callbackKeys = nextKb.callbackKeys
397
- indexCallbacks(this.callbackIndex, nextKb.callbackKeys, askToken)
398
- try {
399
- if (cb.editReplyMarkup) await cb.editReplyMarkup(nextKb.replyMarkup)
400
- else await cb.editMessage(cb.message?.text || 'Selection', nextKb.replyMarkup)
401
- } catch {}
402
- await cb.answer(pending.selected.has(action.id) ? 'Selected' : 'Deselected')
403
- return
404
- }
405
- if (action.kind === 'page') {
406
- pending.page = action.page
407
- releaseCallbacks(this.callbackIndex, pending.callbackKeys)
408
- const nextKb = buildMultiSelectKeyboard(askToken, pending.options, pending.selected, pending.page, pending.pageSize, pending.payload)
409
- pending.callbackKeys = nextKb.callbackKeys
410
- indexCallbacks(this.callbackIndex, nextKb.callbackKeys, askToken)
411
- try {
412
- if (cb.editReplyMarkup) await cb.editReplyMarkup(nextKb.replyMarkup)
413
- else await cb.editMessage(cb.message?.text || 'Selection', nextKb.replyMarkup)
414
- } catch {}
415
- await cb.answer()
416
- return
417
- }
418
- if (action.kind === 'done') {
419
- this.pendingAsks.delete(askToken)
420
- clearTimeout(pending.timer)
421
- releaseCallbacks(this.callbackIndex, pending.callbackKeys)
422
- await cb.answer('OK')
423
- try { await cb.editMessage(cb.message?.text || 'Done', REMOVE_KEYBOARD) } catch {}
424
- pending.resolve({ buttonId: 'done', selected: Array.from(pending.selected), data: cb.data })
425
- return
426
- }
427
- if (action.kind === 'cancel') {
428
- this.pendingAsks.delete(askToken)
429
- clearTimeout(pending.timer)
430
- releaseCallbacks(this.callbackIndex, pending.callbackKeys)
431
- await cb.answer('Cancelled')
432
- try { await cb.editMessage(cb.message?.text || 'Cancelled', REMOVE_KEYBOARD) } catch {}
433
- pending.resolve({ buttonId: 'cancel', selected: [], data: cb.data })
434
- return
435
- }
436
- }
437
- this.pendingAsks.delete(askToken)
438
- clearTimeout(pending.timer)
439
- releaseCallbacks(this.callbackIndex, pending.callbackKeys)
440
- await cb.answer('OK')
441
- try { await cb.editMessage(cb.message?.text || 'Done', REMOVE_KEYBOARD) } catch {}
442
- pending.resolve({ buttonId: action.id || buttonId, data: cb.data })
443
- return
444
- }
445
-
446
- // Model picker interactive flow
447
- if (cb.data?.startsWith('mdl:')) {
448
- const parts = cb.data.split(':')
449
- const sub = parts[1]
450
- // Step 2: Selected provider -> show its models (10 per page)
451
- if (sub === 'p') {
452
- const providerId = parts.slice(2).join(':')
453
- const current = this.resolveAgentModel()
454
- const catalog = await listModelCatalog(this.ctx, current)
455
- const models = catalog.modelsByProvider.get(providerId) || []
456
- if (!models.length) {
457
- await cb.answer(t('model.no_models', {}, 'en'))
458
- return
459
- }
460
- const kb = buildModelsKeyboard(providerId, models, current.model, 0)
461
- await cb.answer()
462
- const text = [
463
- `🤖 <b>Provider:</b> <code>${providerId}</code>`,
464
- `Select model (page ${kb.page + 1}/${kb.totalPages}):`,
465
- ].join('\n')
466
- try {
467
- if (cb.editMessage) await cb.editMessage(text, kb)
468
- } catch {}
469
- return
470
- }
471
- // Pagination for models
472
- if (sub === 'pg') {
473
- const page = parseInt(parts[parts.length - 1], 10) || 0
474
- const providerId = parts.slice(2, -1).join(':')
475
- const current = this.resolveAgentModel()
476
- const catalog = await listModelCatalog(this.ctx, current)
477
- const models = catalog.modelsByProvider.get(providerId) || []
478
- const kb = buildModelsKeyboard(providerId, models, current.model, page)
479
- await cb.answer()
480
- const text = [
481
- `🤖 <b>Provider:</b> <code>${providerId}</code>`,
482
- `Select model (page ${kb.page + 1}/${kb.totalPages}):`,
483
- ].join('\n')
484
- try {
485
- if (cb.editMessage) await cb.editMessage(text, kb)
486
- } catch {}
487
- return
488
- }
489
- // Back to providers
490
- if (sub === 'back') {
491
- const current = this.resolveAgentModel()
492
- const catalog = await listModelCatalog(this.ctx, current)
493
- const kb = buildProvidersKeyboard(catalog.providers, current)
494
- await cb.answer()
495
- const text = [
496
- '🤖 <b>Choose Provider:</b>',
497
- `Current: <code>${current.provider}/${current.model}</code>`,
498
- ].join('\n')
499
- try {
500
- if (cb.editMessage) await cb.editMessage(text, kb)
501
- } catch {}
502
- return
503
- }
504
- // Select model
505
- if (sub === 's') {
506
- const key = parts[2]
507
- const stored = getStoredModelSelection(key)
508
- if (!stored) {
509
- await cb.answer(t('ask.expired', {}, 'en'))
510
- return
511
- }
512
- const { provider, model } = stored
513
- try {
514
- const adm = this.ctx.get('agentDefaultModel')
515
- if (adm?.saveSelection) {
516
- await adm.saveSelection({ provider, model })
517
- }
518
- this.config.agent = { ...this.config.agent, provider, model }
519
- try {
520
- await this.hooks?.persistAgentModel?.({ provider, model })
521
- } catch (e) {
522
- this.ctx.logger?.warn?.(`persist agent model: ${e.message}`)
523
- }
524
- await cb.answer(t('ask.chose', { choice: model }, 'en'))
525
- try {
526
- if (cb.editMessage) await cb.editMessage(t('model.switched', { provider, model }, 'en'), REMOVE_KEYBOARD)
527
- } catch {}
528
- } catch (err) {
529
- await cb.answer(`Error: ${err.message}`)
530
- }
531
- return
532
- }
533
- if (sub === 'cur') {
534
- await cb.answer()
535
- return
536
- }
537
- }
538
-
539
- await cb.answer()
540
- }
541
-
542
- sessionKeyFor(input) {
543
- const scope = this.config.agent?.sessionScope || 'user'
544
- return sessionKey({
545
- platform: input.platform,
546
- chatId: input.chatId,
547
- threadId: input.threadId || 0,
548
- userId: input.userId,
549
- chatType: input.chatType,
550
- scope,
551
- })
552
- }
553
-
554
- isChatBusy(chat) {
555
- return Boolean(chat?.turnActive)
556
- }
557
-
558
- async handleMessage(input) {
559
- const { platform, chatId, threadId = 0, text, reply } = input
560
- const key = this.sessionKeyFor(input)
561
- const body = String(text || '').trim()
562
- let attachments = [...(input.attachments || [])]
563
- const hasMedia = attachments.length > 0
564
- if (!body && !hasMedia) return
565
- if (body.startsWith('/')) { await this.handleCommand(key, body, input); return }
566
- try {
567
- const chat = await this.getOrCreateChat(key, input)
568
- const photoOnlyMode = this.config.agent?.photoOnlyMode ?? 'prompt'
569
- const incomingPhotoOnly = hasMedia && attachments.every((a) => a.kind === 'photo' || a.kind === 'sticker') && !body
570
- if (incomingPhotoOnly && photoOnlyMode === 'prompt') {
571
- chat.pendingMedia = [...(chat.pendingMedia || []), ...attachments]
572
- const n = chat.pendingMedia.length
573
- const locale = this.resolveLocale(input)
574
- const msg = n === 1
575
- ? t('photo.received_one', {}, locale)
576
- : t('photo.received_many', { count: n }, locale)
577
- return reply(msg)
578
- }
579
- if (chat.pendingMedia?.length) {
580
- attachments = [...chat.pendingMedia, ...attachments]
581
- chat.pendingMedia = []
582
- }
583
- const inboundWasVoice = attachments.some((a) => a.kind === 'voice' || a.kind === 'audio')
584
- let personaOverride
585
- for (const [pId] of Object.entries(BUILTIN_PERSONAS)) {
586
- if (pId === 'default') continue
587
- const tag = `@${pId}`
588
- if (body.toLowerCase().includes(tag)) {
589
- personaOverride = pId
590
- break
591
- }
592
- }
593
- const turnInput = { ...input, text: body, attachments, inboundWasVoice, personaOverride }
594
-
595
- // Hermes-like steer: while a turn is running, inject followup instead of abort+restart
596
- if (this.isChatBusy(chat)) {
597
- const steerText = body || (hasMedia ? '(steer: media)' : '')
598
- const content = await this.buildUserContent({
599
- ...turnInput,
600
- text: steerText,
601
- steer: true,
602
- }, undefined)
603
- chat.agent.followup(createUserMessage({
604
- content: ensureContentArray(content),
605
- source: { kind: 'user', plugin: PLUGIN, form: 'steer', origin: 'telegram' },
606
- }))
607
- chat.lastUsed = Date.now()
608
- try { await reply(t('msg.steer_added', {}, this.resolveLocale(input))) } catch {}
609
- return
610
- }
611
-
612
- // Mark busy BEFORE yielding to the poll loop, otherwise steer/stop never see an active turn.
613
- chat.turnActive = true
614
- try { chat.abort?.abort?.() } catch {}
615
- chat.abort = new AbortController()
616
- const run = chat.busy.then(() => this.runTurn(chat, turnInput, chat.abort.signal))
617
- chat.busy = run.catch(() => {})
618
- // Do NOT await: Telegram poll is sequential; awaiting blocked steer and /stop until the turn finished.
619
- run.catch((err) => {
620
- const msg = err instanceof Error ? err.message : String(err)
621
- this.ctx.logger?.warn?.(`dsh-messenger-gateway: background turn: ${msg}`)
622
- this.sendAlert('error', {
623
- code: err?.code || 'BACKGROUND_ERROR',
624
- message: msg,
625
- sessionId: chat.agent?.session?.id,
626
- chatId: input.chatId,
627
- threadId: input.threadId,
628
- }).catch(() => {})
629
- chat.turnActive = false
630
- chat.abort = undefined
631
- })
632
- } catch (err) {
633
- const msg = err instanceof Error ? err.message : String(err)
634
- this.ctx.logger?.warn?.(`dsh-messenger-gateway: message: ${msg}`)
635
- try { await reply(t('msg.exception', { message: msg }, this.resolveLocale(input))) } catch {}
636
- }
637
- }
638
-
639
- async handleCommand(key, text, input) {
640
- const parts = text.split(/\s+/)
641
- const cmd = parts[0].toLowerCase().split('@')[0]
642
- const { reply, userId, chatId, threadId = 0, platform } = input
643
- const locale = this.resolveLocale(input)
644
-
645
- if (cmd === '/start') {
646
- return reply(t('msg.start', {}, locale), { replyMarkup: REMOVE_REPLY_KEYBOARD })
647
- }
648
-
649
- if (cmd === '/help') {
650
- return reply([
651
- '📖 <b>Messenger Gateway Help:</b>',
652
- '',
653
- '💬 <b>Session & Chat:</b>',
654
- '• /help — show this command reference',
655
- ' /new start fresh session',
656
- '• /stopinterrupt current response',
657
- '• /modelinteractive model selector (/model list)',
658
- '• /role [name] switch persona or role (/role list)',
659
- '• /bind [role] bind persona to topic / chat',
660
- '• /preset [name] — bind preset to topic / chat',
661
- '• /lang [en|zh] — switch user language',
662
- '• /rewind [N] — rewind last N turns',
663
- '• /forkfork session into new branch',
664
- '• /exportexport history to Markdown',
665
- '',
666
- '🛠️ <b>Tools, Files & Cron:</b>',
667
- '• /skills / /tools — list active tools & skills',
668
- ' /files [dir] workspace file explorer',
669
- '• /get <path>download file from workspace',
670
- '• /remind <time> <text> set reminder (/remind 10m check deploy)',
671
- '• /cron <interval> <prompt> recurring autonomous task',
672
- '',
673
- '⚙️ <b>Settings & Stats:</b>',
674
- '• /status — gateway and active model status',
675
- ' /top system resource usage (RAM, uptime)',
676
- '• /keyboard on|off quick action keyboard',
677
- '• /voice on|off|status voice replies preference',
678
- '• /tts on|off|statusspeech synthesis in this chat',
679
- '• /mute / /unmute mute notifications in this chat',
680
- '',
681
- '🔒 <b>Access & Channels:</b>',
682
- '• /whoami — your messenger user ID',
683
- ' /pair CODE — approve pairing code',
684
- '• /sethome [name] set home notification channel',
685
- '• /setalertset alert channel',
686
- ].join('\n'))
687
- }
688
-
689
- if (cmd === '/lang' || cmd === '/language') {
690
- const sub = parts[1]?.toLowerCase()
691
- if (sub === 'en' || sub === 'zh') {
692
- this.chatLocales.set(chatId, sub)
693
- return reply(sub === 'zh' ? '语言已切换为中文 (zh)' : 'Language switched to English (en)')
694
- }
695
- const cur = this.chatLocales.get(chatId) || this.config?.defaultLocale || 'en'
696
- return reply(`Current language: <b>${cur}</b>\nSwitch: <code>/lang en</code> or <code>/lang zh</code>`)
697
- }
698
-
699
- if (cmd === '/bind') {
700
- const targetRole = parts[1]?.toLowerCase()
701
- if (!targetRole || targetRole === 'list') {
702
- const cur = this.personas.getPersonaForChat(chatId, threadId)
703
- return reply(`${t('persona.title', {}, locale)}\nCurrent bound role: <b>${cur}</b>\nUsage: <code>/bind &lt;role&gt;</code> (or /bind reset)`)
704
- }
705
- if (targetRole === 'reset' || targetRole === 'default') {
706
- this.personas.set(chatId, 'default', threadId)
707
- return reply(t('persona.reset', {}, locale))
708
- }
709
- const persona = getPersona(targetRole)
710
- if (!persona) return reply(t('persona.unknown', { target: targetRole }, locale))
711
- this.personas.set(chatId, targetRole, threadId)
712
- return reply(t('persona.bound_topic', { kind: 'role', name: `${persona.icon} ${persona.name}` }, locale))
713
- }
714
-
715
- if (cmd === '/preset') {
716
- const presetName = parts[1]
717
- if (!presetName || presetName === 'list') {
718
- const cur = this.personas.getPreset(chatId, threadId) || '(none)'
719
- return reply(`🎭 <b>Presets:</b>\nCurrent topic preset: <code>${cur}</code>\nUsage: <code>/preset &lt;name&gt;</code> or <code>/preset reset</code>`)
720
- }
721
- if (presetName === 'reset' || presetName === 'clear') {
722
- this.personas.setPreset(chatId, threadId, null)
723
- return reply('Preset cleared for this topic.')
724
- }
725
- this.personas.setPreset(chatId, threadId, presetName)
726
- return reply(t('persona.bound_topic', { kind: 'preset', name: presetName }, locale))
727
- }
728
-
729
- if (cmd === '/cron') {
730
- const sub = parts[1]?.toLowerCase()
731
- if (sub === 'list') {
732
- const list = await this.scheduler.listRecurring(chatId)
733
- if (!list.length) return reply(t('cron.none', {}, locale))
734
- const lines = [t('cron.list_title', {}, locale)]
735
- for (const task of list) {
736
- const left = formatRemaining(task.dueAt - Date.now(), locale)
737
- lines.push(`• <code>${task.id}</code> (every ${formatRemaining(task.intervalMs, locale)}, next in ${left}): ${task.prompt || task.text}`)
738
- }
739
- lines.push('\nCancel: <code>/cron cancel ID</code>')
740
- return reply(lines.join('\n'))
741
- }
742
- if (sub === 'cancel') {
743
- const targetId = parts[2]
744
- if (!targetId) return reply('Specify cron task ID: <code>/cron cancel ID</code>')
745
- const ok = await this.scheduler.cancel(targetId, chatId)
746
- return reply(ok ? t('cron.cancelled', { id: targetId }, locale) : `Task not found: <code>${targetId}</code>`)
747
- }
748
- const specArg = parts[1]
749
- const promptArg = parts.slice(2).join(' ')
750
- const ms = parseRelativeTime(specArg)
751
- if (!ms || !promptArg) {
752
- return reply('⏱️ <b>Autonomous Cron Tasks:</b>\nCreate: <code>/cron &lt;interval&gt; &lt;prompt&gt;</code>\nExample: <code>/cron 1h check server logs</code>\nList: <code>/cron list</code>\nCancel: <code>/cron cancel ID</code>')
753
- }
754
- const task = await this.scheduler.schedule({
755
- platform,
756
- chatId,
757
- threadId,
758
- userId,
759
- text: promptArg,
760
- prompt: promptArg,
761
- dueAt: Date.now() + ms,
762
- recurring: true,
763
- intervalMs: ms,
764
- })
765
- return reply(t('cron.scheduled', { id: task.id, schedule: specArg, prompt: promptArg }, locale))
766
- }
767
-
768
- if (cmd === '/role' || cmd === '/persona') {
769
- const targetRole = parts[1]?.toLowerCase()
770
- if (!targetRole || targetRole === 'list') {
771
- const currentId = this.personas.getPersonaForChat(chatId, threadId)
772
- const lines = [
773
- t('persona.title', {}, locale),
774
- '',
775
- ...listPersonas().map((p) => {
776
- const isCurrent = p.id === currentId ? ' (active)' : ''
777
- return `${p.icon} <b>${p.id}</b> — ${p.name}: ${p.description}${isCurrent}`
778
- }),
779
- '',
780
- t('persona.usage', {}, locale),
781
- ]
782
- return reply(lines.join('\n'))
783
- }
784
- if (targetRole === 'reset' || targetRole === 'default') {
785
- this.personas.set(chatId, 'default', threadId)
786
- return reply(t('persona.reset', {}, locale))
787
- }
788
- const persona = getPersona(targetRole)
789
- if (!persona) {
790
- return reply(t('persona.unknown', { target: targetRole }, locale))
791
- }
792
- this.personas.set(chatId, persona.id, threadId)
793
- return reply(t('persona.switched', { icon: persona.icon, name: persona.name, description: persona.description }, locale))
794
- }
795
-
796
- if (cmd === '/skills' || cmd === '/tools') {
797
- const tools = this.ctx.get?.('tools') || this.ctx.tools
798
- const toolsList = []
799
- if (tools?.tools) {
800
- for (const [name, tDef] of tools.tools.entries()) {
801
- toolsList.push(`• <b>${name}</b>: ${tDef.description || '(no description)'}`)
802
- }
803
- }
804
- if (!toolsList.length) {
805
- return reply('🛠️ <b>Agent Tools:</b>\n(no tools registered)')
806
- }
807
- return reply([
808
- '🛠️ <b>Active Tools & Skills:</b>',
809
- '',
810
- ...toolsList,
811
- ].join('\n'))
812
- }
813
-
814
- if (cmd === '/export') {
815
- const chat = this.chats.get(key)
816
- if (!chat?.agent?.session) {
817
- return reply(t('msg.no_active_session', {}, locale))
818
- }
819
- try {
820
- const { filename, buffer, messagesCount } = exportSessionToMarkdown(chat.agent.session)
821
- if (!messagesCount) {
822
- return reply(t('export.empty', {}, locale))
823
- }
824
- const file = {
825
- name: filename,
826
- mime: 'text/markdown',
827
- kind: 'document',
828
- bytes: buffer,
829
- }
830
- return reply({ text: t('export.title', { count: messagesCount }, locale), files: [file] })
831
- } catch (err) {
832
- return reply(`Export error: ${err.message}`)
833
- }
834
- }
835
-
836
- if (cmd === '/rewind') {
837
- const chat = this.chats.get(key)
838
- if (!chat?.agent?.session) {
839
- return reply(t('msg.no_active_session', {}, locale))
840
- }
841
- const count = Number(parts[1]) || 1
842
- const res = rewindSession(chat.agent.session, count)
843
- if (!res.removed) {
844
- return reply('No turns to rewind in session history.')
845
- }
846
- const sessions = this.ctx.get?.('sessions') || this.ctx.sessions
847
- try { await sessions?.flush(chat.agent.session) } catch {}
848
- return reply(`⏪ Rewound ${res.removed} messages. Remaining in context: ${res.remaining}.`)
849
- }
850
-
851
- if (cmd === '/fork') {
852
- const chat = this.chats.get(key)
853
- if (!chat?.agent?.session) {
854
- return reply(t('msg.no_active_session', {}, locale))
855
- }
856
- try {
857
- const oldSession = chat.agent.session
858
- const oldMessages = Array.isArray(oldSession.messages)
859
- ? oldSession.messages.map(m => ({ ...m, content: ensureContentArray(m.content) }))
860
- : []
861
- const newChat = await this.createChat(key, input)
862
- if (newChat.agent?.session && oldMessages.length) {
863
- newChat.agent.session.messages = oldMessages
864
- const sessions = this.ctx.get?.('sessions') || this.ctx.sessions
865
- try { await sessions?.flush(newChat.agent.session) } catch {}
866
- }
867
- this.chats.set(key, newChat)
868
- return reply(`🔀 Forked session!\nOld session: ${oldSession.id}\nNew session: ${newChat.agent.session.id}\nContext preserved (${oldMessages.length} messages).`)
869
- } catch (err) {
870
- return reply(`Fork error: ${err.message}`)
871
- }
872
- }
873
-
874
- if (cmd === '/files') {
875
- const subPath = parts.slice(1).join(' ').trim() || '.'
876
- const agentCwd = this.config.agent?.cwd || process.cwd()
877
- const res = await listFiles(agentCwd, subPath)
878
- if (!res.ok) return reply(`❌ ${res.error}`)
879
- return reply(res.formattedText)
880
- }
881
-
882
- if (cmd === '/get') {
883
- const targetRel = parts.slice(1).join(' ').trim()
884
- if (!targetRel) {
885
- return reply('Specify file path to download: <code>/get &lt;path&gt;</code>\nBrowse: <code>/files</code>')
886
- }
887
- const agentCwd = this.config.agent?.cwd || process.cwd()
888
- const maxDocBytes = Number(this.config.media?.maxDocBytes) || 50 * 1024 * 1024
889
- const res = await getFileForDownload(agentCwd, targetRel, maxDocBytes)
890
- if (!res.ok) return reply(`❌ ${res.error}`)
891
- const file = {
892
- name: res.name,
893
- mime: res.mime,
894
- kind: 'document',
895
- bytes: res.bytes,
896
- dataBase64: res.bytes.toString('base64'),
897
- }
898
- return reply({ text: `📄 File: <b>${res.name}</b> (${formatFileSize(res.size)})`, files: [file] })
899
- }
900
-
901
- if (cmd === '/new') {
902
- const chat = this.chats.get(key)
903
- if (chat) {
904
- if (chat.abort) chat.abort.abort()
905
- chat.pendingMedia = []
906
- this.sessionToChat.delete(String(chat.agent.session.id))
907
- this.chats.delete(key)
908
- await chat.dispose()
909
- return reply('Session reset.')
910
- }
911
- return reply(t('msg.no_active_session', {}, locale))
912
- }
913
-
914
- if (cmd === '/whoami') {
915
- const lines = [`User ID: ${userId}`]
916
- if (chatId) lines.push(`chatId: ${chatId}`)
917
- if (threadId) lines.push(`threadId: ${threadId}`)
918
- return reply(lines.join('\n'))
919
- }
920
-
921
- if (cmd === '/stop') {
922
- const chat = this.chats.get(key)
923
- if (chat?.turnActive || chat?.abort) {
924
- try { chat.abort?.abort() } catch {}
925
- releaseChatTurn(chat)
926
- chat.turnActive = false
927
- return reply(t('msg.turn_stopped', {}, locale))
928
- }
929
- return reply('Nothing to stop.')
930
- }
931
-
932
- if (cmd === '/status') {
933
- let modelLine = 'model: (not set)'
934
- try {
935
- const sel = this.resolveAgentModel()
936
- modelLine = `model: ${sel.provider}/${sel.model}`
937
- } catch (e) {
938
- modelLine = `model: ${e.message}`
939
- }
940
- const home = this.resolveHomeTarget(platform || 'telegram')
941
- const homeLine = home
942
- ? `home: chat ${home.chatId}${home.threadId ? ` topic ${home.threadId}` : ''}`
943
- : 'home: (not set)'
944
- const pending = this.pairing.listPending().length
945
- const up = Math.max(0, Math.round((Date.now() - this.stats.startedAt) / 1000))
946
- const hh = String(Math.floor(up / 3600)).padStart(2, '0')
947
- const mm = String(Math.floor((up % 3600) / 60)).padStart(2, '0')
948
- const ss = String(up % 60).padStart(2, '0')
949
- return reply([
950
- 'Messenger gateway',
951
- `adapters: ${[...this.adapters.keys()].join(', ') || '(none)'}`,
952
- `active chats: ${this.chats.size}`,
953
- modelLine,
954
- homeLine,
955
- `pairing pending: ${pending}`,
956
- `transport: ${this.tg().transport || 'poll'}`,
957
- `sessionScope: ${this.config.agent?.sessionScope || 'user'}`,
958
- `delivered: ${this.stats.sent}`,
959
- `errors: ${this.stats.errors}`,
960
- `polling conflict: ${this.tgAdapter?.pollingConflict ? 'yes' : 'no'}`,
961
- `uptime: ${hh}:${mm}:${ss}`,
962
- ].join('\n'))
963
- }
964
-
965
- if (cmd === '/model') {
966
- if (parts.length >= 3) {
967
- if (!this.isUserAllowed(userId)) return reply(t('msg.not_allowed', {}, locale))
968
- const provider = parts[1]
969
- const model = parts.slice(2).join(' ')
970
- try {
971
- const adm = this.ctx.get('agentDefaultModel')
972
- if (adm?.saveSelection) {
973
- await adm.saveSelection({ provider, model })
974
- }
975
- this.config.agent = { ...this.config.agent, provider, model }
976
- try {
977
- await this.hooks?.persistAgentModel?.({ provider, model })
978
- } catch (e) {
979
- this.ctx.logger?.warn?.(`persist agent model: ${e.message}`)
980
- }
981
- return reply(t('model.switched', { provider, model }, locale))
982
- } catch (e) {
983
- return reply(`Failed to switch model: ${e.message}`)
984
- }
985
- }
986
- try {
987
- const current = this.resolveAgentModel()
988
- const catalog = await listModelCatalog(this.ctx, current)
989
- if (!catalog.providers.length) {
990
- return reply(`Current model: <code>${current.provider}/${current.model}</code>\nSwitch: <code>/model &lt;provider&gt; &lt;model&gt;</code>`)
991
- }
992
- const kb = buildProvidersKeyboard(catalog.providers, current)
993
- return reply([
994
- t('model.title', {}, locale),
995
- t('model.current', { current: `${current.provider}/${current.model}` }, locale),
996
- ].join('\n'), {
997
- replyMarkup: kb,
998
- })
999
- } catch (e) {
1000
- return reply(e.message)
1001
- }
1002
- }
1003
-
1004
- if (cmd === '/pair') {
1005
- if (!this.isUserAllowed(userId)) return reply('Only users in allowlist can approve /pair.')
1006
- const code = parts[1]
1007
- if (!code) return reply('Usage: /pair CODE')
1008
- const res = this.pairing.approveCode(code, userId)
1009
- if (!res.ok) return reply(`Failed: ${res.error}`)
1010
- const merged = this.effectiveAllowedIds()
1011
- for (const a of this.adapterList) a.setAllowedUserIds?.(merged)
1012
- try { await this.hooks?.persistAllowedUserIds?.(merged) } catch (e) {
1013
- this.ctx.logger?.warn?.(`persist allowlist: ${e.message}`)
1014
- }
1015
- return reply(`Approved user ID ${res.userId}${res.username ? ` (@${res.username})` : ''}.`)
1016
- }
1017
-
1018
- if (cmd === '/sethome') {
1019
- if (!this.isUserAllowed(userId)) return reply(t('msg.not_allowed', {}, locale))
1020
- const name = normalizeHomeName(parts[1] || 'default') || 'default'
1021
- try {
1022
- const nextTg = upsertHome(this.tg(), { name, chatId, threadId })
1023
- await this.hooks?.persistHomes?.(nextTg)
1024
- this.config.telegram = nextTg
1025
- return reply(`Home "${name}": chat ${chatId}${threadId ? ` topic ${threadId}` : ''}`)
1026
- } catch (e) {
1027
- return reply(`Failed to save home: ${e.message}`)
1028
- }
1029
- }
1030
-
1031
- if (cmd === '/home') {
1032
- const homes = listHomes(this.tg())
1033
- if (!homes.length) return reply('Home is not set. /sethome or /sethome <name>')
1034
- return reply(['Homes:', ...homes.map((h) => `• ${h.name}: chat ${h.chatId}${h.threadId ? ` topic ${h.threadId}` : ''}`)].join('\n'))
1035
- }
1036
-
1037
- if (cmd === '/setalert') {
1038
- if (!this.isUserAllowed(userId)) return reply(t('msg.not_allowed', {}, locale))
1039
- const nextTg = {
1040
- ...this.tg(),
1041
- alerts: {
1042
- ...(this.tg().alerts || {}),
1043
- enabled: true,
1044
- chatId,
1045
- threadId: threadId || 0,
1046
- },
1047
- }
1048
- this.config.telegram = nextTg
1049
- try { await this.hooks?.persistHomes?.(nextTg) } catch {}
1050
- return reply(`🔔 This chat assigned as alert channel (chat: ${chatId}${threadId ? `, topic: ${threadId}` : ''}).`)
1051
- }
1052
-
1053
- if (cmd === '/alert') {
1054
- const sub = parts[1]?.toLowerCase()
1055
- if (sub === 'test') {
1056
- const target = resolveAlertTarget(this)
1057
- if (!target) return reply('Alert channel not configured. Configure: /setalert')
1058
- await this.sendAlert('status', { title: 'Test Alert', details: `Sent by user ID ${userId}` })
1059
- return reply('Test alert sent to alert channel.')
1060
- }
1061
- const target = resolveAlertTarget(this)
1062
- const alertsCfg = this.tg().alerts || {}
1063
- return reply([
1064
- '🔔 <b>Alert Channel:</b>',
1065
- `Status: ${alertsCfg.enabled ? 'enabled' : 'disabled'}`,
1066
- `Chat: ${target ? `${target.chatId}${target.threadId ? ` (topic: ${target.threadId})` : ''}` : '(not assigned)'}`,
1067
- `Events: ${(alertsCfg.events || ['error', 'pairing']).join(', ')}`,
1068
- '',
1069
- 'Commands:',
1070
- '/setalert — assign current chat as alert channel',
1071
- '/alert test — send test alert',
1072
- ].join('\n'))
1073
- }
1074
-
1075
- if (cmd === '/remind') {
1076
- const sub = parts[1]?.toLowerCase()
1077
- if (sub === 'list') {
1078
- const active = await this.scheduler.list(chatId)
1079
- if (!active.length) return reply('No active reminders for this chat.')
1080
- const lines = [
1081
- '⏰ <b>Active Reminders:</b>',
1082
- '',
1083
- ...active.map((tItem) => {
1084
- const left = formatRemaining(tItem.dueAt - Date.now(), locale)
1085
- return `• <code>${tItem.id}</code> (in ${left}): ${tItem.text}`
1086
- }),
1087
- '',
1088
- 'Cancel: <code>/remind cancel ID</code>',
1089
- ]
1090
- return reply(lines.join('\n'))
1091
- }
1092
- if (sub === 'cancel') {
1093
- const targetId = parts[2]?.trim()
1094
- if (!targetId) return reply('Specify reminder ID: <code>/remind cancel ID</code>')
1095
- const ok = await this.scheduler.cancel(targetId, chatId)
1096
- return reply(ok ? `✅ Reminder <code>${targetId}</code> cancelled.` : `❌ Reminder <code>${targetId}</code> not found.`)
1097
- }
1098
- const timeArg = parts[1]
1099
- const textArg = parts.slice(2).join(' ').trim()
1100
- const delayMs = parseRelativeTime(timeArg)
1101
- if (!delayMs || !textArg) {
1102
- return reply([
1103
- '⏰ <b>Reminders:</b>',
1104
- 'Create: <code>/remind &lt;time&gt; &lt;text&gt;</code>',
1105
- 'Examples: <code>/remind 10m Call colleague</code>, <code>/remind 2h Check deploy</code>',
1106
- 'List: <code>/remind list</code>',
1107
- 'Cancel: <code>/remind cancel ID</code>',
1108
- ].join('\n'))
1109
- }
1110
- const dueAt = Date.now() + delayMs
1111
- const task = await this.scheduler.schedule({
1112
- platform: platform || 'telegram',
1113
- chatId,
1114
- threadId: threadId || 0,
1115
- userId,
1116
- text: textArg,
1117
- dueAt,
1118
- })
1119
- const left = formatRemaining(delayMs, locale)
1120
- return reply(t('remind.scheduled', { time: new Date(dueAt).toLocaleTimeString(), duration: left, text: textArg }, locale))
1121
- }
1122
-
1123
- if (cmd === '/voice') {
1124
- const sub = String(parts[1] || 'status').toLowerCase()
1125
- if (sub === 'summary') {
1126
- const val = parts[2]?.toLowerCase()
1127
- if (val === 'on' || val === 'off') {
1128
- if (!this.config.tts) this.config.tts = {}
1129
- this.config.tts.voiceSummary = val === 'on'
1130
- return reply(`Voice summary (TL;DR): ${val === 'on' ? 'enabled' : 'disabled'}`)
1131
- }
1132
- const state = this.config.tts?.voiceSummary ? 'on' : 'off'
1133
- return reply(`Voice summary (TL;DR): ${state}\nToggle: <code>/voice summary on|off</code>`)
1134
- }
1135
- if (sub === 'on' || sub === 'off') {
1136
- this.voicePrefs.set(userId, sub === 'on')
1137
- return reply(sub === 'on' ? 'Voice replies: on (for you)' : 'Voice replies: off (for you)')
1138
- }
1139
- const pref = this.voicePrefs.get(userId)
1140
- const mode = this.tg().voiceMode || 'mirror'
1141
- const prefLine = pref === null ? 'not set (/voice on|off)' : (pref ? 'on' : 'off')
1142
- const summaryState = this.config.tts?.voiceSummary ? 'on' : 'off'
1143
- return reply(`voiceMode=${mode}\nyour /voice: ${prefLine}\nglobal tts: ${this.config.tts?.enabled ? 'on' : 'off'}\nvoice summary: ${summaryState}`)
1144
- }
1145
-
1146
- if (cmd === '/topic') {
1147
- const topicName = parts.slice(1).join(' ').trim()
1148
- if (!topicName) {
1149
- return reply('Usage: <code>/topic &lt;name&gt;</code>\nCreates a new topic in supergroup with an isolated session.')
1150
- }
1151
- const tgAdapter = this.getAdapter('telegram')
1152
- if (!tgAdapter?.createForumTopic) {
1153
- return reply('Topic creation is available only in Telegram.')
1154
- }
1155
- try {
1156
- const res = await tgAdapter.createForumTopic(chatId, topicName)
1157
- const newThreadId = res?.message_thread_id
1158
- await reply(`🎯 Created new topic <b>«${topicName}»</b> (ID: <code>${newThreadId}</code>).\nSwitch to the topic to continue working!`)
1159
- if (newThreadId) {
1160
- await tgAdapter.sendTo(chatId, {
1161
- text: `👋 Hello! This is an isolated session for task <b>«${topicName}»</b>.\nHow can I help?`,
1162
- }, { threadId: newThreadId })
1163
- }
1164
- return
1165
- } catch (err) {
1166
- return reply(`Failed to create topic: ${err.message}\n(Ensure the bot is group administrator with Manage Topics permission)`)
1167
- }
1168
- }
1169
-
1170
- if (cmd === '/top') {
1171
- const mem = process.memoryUsage()
1172
- const rssMb = (mem.rss / 1024 / 1024).toFixed(1)
1173
- const heapMb = (mem.heapUsed / 1024 / 1024).toFixed(1)
1174
- const sec = Math.floor((Date.now() - this.stats.startedAt) / 1000)
1175
- const hh = String(Math.floor(sec / 3600)).padStart(2, '0')
1176
- const mm = String(Math.floor((sec % 3600) / 60)).padStart(2, '0')
1177
- const ss = String(sec % 60).padStart(2, '0')
1178
- let activeReminders = 0
1179
- try { activeReminders = (await this.scheduler.list()).length } catch {}
1180
- let currentModel = 'not set'
1181
- try {
1182
- const m = this.resolveAgentModel()
1183
- currentModel = `${m.provider}/${m.model}`
1184
- } catch {}
1185
-
1186
- return reply([
1187
- '📊 <b>DSH System & Resources:</b>',
1188
- `• <b>Memory (RSS):</b> ${rssMb} MB`,
1189
- `• <b>Heap:</b> ${heapMb} MB`,
1190
- `• <b>Uptime:</b> ${hh}:${mm}:${ss}`,
1191
- `• <b>Active chats:</b> ${this.chats.size}`,
1192
- `• <b>Queued reminders:</b> ${activeReminders}`,
1193
- `• <b>Active model:</b> <code>${currentModel}</code>`,
1194
- `• <b>Messages sent:</b> ${this.stats.sent}`,
1195
- `• <b>Errors:</b> ${this.stats.errors}`,
1196
- ].join('\n'))
1197
- }
1198
-
1199
- if (cmd === '/keyboard') {
1200
- const sub = String(parts[1] || '').toLowerCase()
1201
- const tgAdapter = this.getAdapter('telegram')
1202
- if (sub === 'on') {
1203
- if (tgAdapter) tgAdapter.quickActions = true
1204
- return reply('Quick action keyboard enabled.', {
1205
- replyMarkup: buildQuickActionsKeyboard(),
1206
- })
1207
- }
1208
- if (sub === 'off') {
1209
- if (tgAdapter) tgAdapter.quickActions = false
1210
- return reply('Quick action keyboard disabled.', {
1211
- replyMarkup: REMOVE_REPLY_KEYBOARD,
1212
- })
1213
- }
1214
- const curState = tgAdapter?.quickActions ? 'enabled' : 'disabled'
1215
- return reply([
1216
- '⌨️ <b>Quick Action Keyboard:</b>',
1217
- `Current state: <b>${curState}</b>`,
1218
- '',
1219
- 'Commands:',
1220
- '<code>/keyboard on</code> — show buttons',
1221
- '<code>/keyboard off</code> — hide buttons',
1222
- ].join('\n'))
1223
- }
1224
-
1225
- if (cmd === '/tts') {
1226
- const sub = String(parts[1] || 'status').toLowerCase()
1227
- if (sub === 'on' || sub === 'off') {
1228
- this.chatTts.set(chatId, sub === 'on')
1229
- return reply(sub === 'on' ? 'Speech in this chat: on' : 'Speech in this chat: off')
1230
- }
1231
- const cur = this.chatTts.get(chatId)
1232
- const line = cur === null ? 'not set (/tts on|off)' : (cur ? 'on' : 'off')
1233
- return reply(`Speech in this chat: ${line}\nglobal tts: ${this.config.tts?.enabled ? 'on' : 'off'}`)
1234
- }
1235
-
1236
- if (cmd === '/mute') {
1237
- this.setMuted(chatId, true)
1238
- return reply(t('msg.muted_on', {}, locale))
1239
- }
1240
-
1241
- if (cmd === '/unmute') {
1242
- this.setMuted(chatId, false)
1243
- return reply(t('msg.muted_off', {}, locale))
1244
- }
1245
-
1246
- return reply(t('msg.unknown_command', { cmd }, locale))
1247
- }
1248
-
1249
- collectDynamicSkills() {
1250
- const skills = []
1251
- try {
1252
- const skillsService = this.ctx.get?.('skills') || this.ctx.skills
1253
- const allSkills = skillsService?.list?.() || []
1254
- for (const s of allSkills) {
1255
- if (!s || !s.name) continue
1256
- if (s.userInvocable === false) continue
1257
- skills.push({
1258
- name: String(s.name),
1259
- description: String(s.description || s.title || `Skill ${s.name}`).slice(0, 256),
1260
- })
1261
- }
1262
- } catch (err) {
1263
- this.ctx.logger?.debug?.(`Failed to collect dynamic skills: ${err?.message || err}`)
1264
- }
1265
- return skills
1266
- }
1267
-
1268
- async syncTelegramCommands() {
1269
- const tgAdapter = this.adapters.get('telegram')
1270
- if (!tgAdapter || typeof tgAdapter.registerCommands !== 'function') return
1271
- const baseCommands = this.config.telegram?.commands || []
1272
- const dynamicSkills = this.collectDynamicSkills()
1273
- const merged = mergeDynamicCommands(baseCommands, dynamicSkills, 100)
1274
- try {
1275
- await tgAdapter.registerCommands(merged)
1276
- this.ctx.logger?.info?.(`Synced ${merged.length} Telegram commands (including ${dynamicSkills.length} dynamic skills)`)
1277
- } catch (err) {
1278
- this.ctx.logger?.warn?.(`Failed to sync Telegram commands: ${err?.message || err}`)
1279
- }
1280
- }
1281
-
1282
- async mirrorSessionToForumTopic(session) {
1283
- if (!session || !session.id) return
1284
- const sessionId = String(session.id)
1285
- if (sessionId.startsWith('msgw-')) return
1286
- if (this.sessionToThread.has(sessionId)) return
1287
-
1288
- const tgCfg = this.config.telegram || {}
1289
- if (!tgCfg.forumMirrorEnabled || !tgCfg.forumMirrorChatId) return
1290
-
1291
- const tgAdapter = this.adapters.get('telegram')
1292
- if (!tgAdapter || typeof tgAdapter.createForumTopic !== 'function') return
1293
-
1294
- const forumChatId = tgCfg.forumMirrorChatId
1295
- const title = String(session.title || session.meta?.name || `Session ${sessionId.slice(0, 8)}`).slice(0, 120)
1296
-
1297
- try {
1298
- const topic = await tgAdapter.createForumTopic(forumChatId, title)
1299
- const threadId = topic?.message_thread_id
1300
- if (!threadId) return
1301
-
1302
- const threadKey = `${forumChatId}:${threadId}`
1303
- this.sessionToThread.set(sessionId, { chatId: forumChatId, threadId })
1304
- this.threadToSession.set(threadKey, sessionId)
1305
-
1306
- const text = t('mirror.created', { sessionId, title }, 'en')
1307
- await tgAdapter.sendTo(forumChatId, { text }, { threadId })
1308
- this.ctx.logger?.info?.(`Mirrored session ${sessionId} to Telegram forum topic ${threadId} in ${forumChatId}`)
1309
- } catch (err) {
1310
- this.ctx.logger?.warn?.(`Failed to mirror session ${sessionId} to forum topic: ${err?.message || err}`)
1311
- }
1312
- }
1313
-
1314
- async relayTurnToForumMirror(session, event) {
1315
- if (!session || !session.id) return
1316
- const sessionId = String(session.id)
1317
- const threadInfo = this.sessionToThread.get(sessionId)
1318
- if (!threadInfo) return
1319
- if (this.pending.has(sessionId)) return
1320
-
1321
- const tgAdapter = this.adapters.get('telegram')
1322
- if (!tgAdapter) return
1323
-
1324
- const messages = Array.isArray(session.messages)
1325
- ? session.messages
1326
- : (Array.isArray(session.history) ? session.history : [])
1327
-
1328
- for (let i = messages.length - 1; i >= 0; i--) {
1329
- const msg = messages[i]
1330
- const role = msg.role || (msg.type === 'user' ? 'user' : 'assistant')
1331
- if (role === 'assistant') {
1332
- let text = ''
1333
- if (typeof msg.content === 'string') text = msg.content
1334
- else if (Array.isArray(msg.content)) {
1335
- text = msg.content
1336
- .map((p) => (typeof p === 'string' ? p : (p?.text || '')))
1337
- .filter(Boolean)
1338
- .join('\n')
1339
- } else if (msg.text) text = msg.text
1340
- const clean = stripReasoningPreamble(stripImageUrls(text)).trim()
1341
- if (clean) {
1342
- const maxLen = Number(this.config.agent?.maxMessageLength) || 4000
1343
- const chunks = splitText(clean, maxLen)
1344
- for (const chunk of chunks) {
1345
- await tgAdapter.sendTo(threadInfo.chatId, { text: chunk }, { threadId: threadInfo.threadId })
1346
- }
1347
- }
1348
- break
1349
- }
1350
- }
1351
- }
1352
-
1353
- async getOrCreateChat(key, input) {
1354
- let chat = this.chats.get(key)
1355
- if (!chat) {
1356
- const threadKey = `${input.chatId}:${input.threadId || 0}`
1357
- const existingSessionId = this.threadToSession.get(threadKey)
1358
- chat = await this.createChat(key, input, existingSessionId)
1359
- this.chats.set(key, chat)
1360
- }
1361
- chat.lastUsed = Date.now()
1362
- chat.target = { platform: input.platform, chatId: input.chatId, threadId: input.threadId || 0 }
1363
- return chat
1364
- }
1365
-
1366
- resolveAgentModel() {
1367
- const agentCfg = this.config.agent || {}
1368
- let provider = String(agentCfg.provider || '').trim()
1369
- let model = String(agentCfg.model || '').trim()
1370
- if (provider && model) return { provider, model }
1371
- const selection = this.ctx.get('agentDefaultModel')?.currentSelection?.()
1372
- if (!selection?.provider || !selection?.model) {
1373
- throw new Error('Please select a model in Settings -> Models (or set agent.provider/model in profile)')
1374
- }
1375
- return { provider: provider || selection.provider, model: model || selection.model }
1376
- }
1377
-
1378
- async createChat(key, input, existingSessionId) {
1379
- const { provider, model } = this.resolveAgentModel()
1380
- const agentCfg = this.config.agent || {}
1381
- const cwd = agentCfg.cwd || process.cwd()
1382
- const self = this
1383
- const agents = this.ctx.get?.('agents') || this.ctx.agents
1384
- const targetSessionId = existingSessionId ? SessionId(existingSessionId) : SessionId(`msgw-${randomUUID()}`)
1385
- const handle = await agents.create({
1386
- sessionId: targetSessionId,
1387
- meta: { cwd },
1388
- agentOptions: { provider, model },
1389
- setup: (agentCtx) => {
1390
- installModelSelection(agentCtx, { current: { provider, model }, assembled: undefined })
1391
- if (self.tg().approvalsEnabled !== false) {
1392
- agentCtx.on('approval/request', (req, next) => self.answerApproval(key, req, next))
1393
- }
1394
- },
1395
- })
1396
- await handle.agent.whenIdle()
1397
- const chat = {
1398
- key, agent: handle.agent, dispose: handle.dispose, busy: Promise.resolve(),
1399
- lastUsed: Date.now(), abort: undefined, pendingMedia: [], turnActive: false,
1400
- sessionAllowlist: new Set(),
1401
- target: input ? { platform: input.platform, chatId: input.chatId, threadId: input.threadId || 0 } : undefined,
1402
- }
1403
- this.sessionToChat.set(String(handle.agent.session.id), key)
1404
- if (existingSessionId && input) {
1405
- const threadKey = `${input.chatId}:${input.threadId || 0}`
1406
- this.threadToSession.set(threadKey, existingSessionId)
1407
- this.sessionToThread.set(existingSessionId, { chatId: input.chatId, threadId: input.threadId || 0 })
1408
- }
1409
- return chat
1410
- }
1411
-
1412
- async answerApproval(chatKeyValue, req, next) {
1413
- try {
1414
- const chat = this.chats.get(chatKeyValue)
1415
- if (!chat?.target) return next()
1416
- const tool = req.toolName || 'tool'
1417
- if (chat.sessionAllowlist?.has(tool)) {
1418
- return 'allowed-once'
1419
- }
1420
- const locale = this.resolveLocale(chat.target)
1421
- const reason = req.reason ? `\n<i>${req.reason}</i>` : ''
1422
- let detail = ''
1423
- if (req.input && typeof req.input === 'object') {
1424
- try {
1425
- const jsonStr = JSON.stringify(req.input, null, 2)
1426
- detail = `\n<pre><code>${jsonStr.slice(0, 500)}</code></pre>`
1427
- } catch {}
1428
- }
1429
- const text = t('ask.confirm_title', { tool, reason: reason + detail }, locale)
1430
- const buttons = [
1431
- [
1432
- { id: 'allow_once', text: t('ask.allow_once', {}, locale) },
1433
- { id: 'allow_session', text: t('ask.allow_session', {}, locale) },
1434
- { id: 'deny', text: t('ask.deny', {}, locale) },
1435
- ],
1436
- ]
1437
- const result = await this.messengerAsk(chat.target, { text, buttons }, 300_000)
1438
- if (result?.buttonId === 'allow_once' || result?.buttonId === 'allow') return 'allowed-once'
1439
- if (result?.buttonId === 'allow_session') {
1440
- if (!chat.sessionAllowlist) chat.sessionAllowlist = new Set()
1441
- chat.sessionAllowlist.add(tool)
1442
- return 'allowed-once'
1443
- }
1444
- if (result?.buttonId === 'deny') return 'rejected'
1445
- return next()
1446
- } catch {
1447
- return next()
1448
- }
1449
- }
1450
-
1451
- async buildUserContent(input, signal) {
1452
- const { text, attachments = [], replyText, steer, personaOverride } = input
1453
- const parts = []
1454
- parts.push(String(this.config.agent?.instructionPrefix || MESSENGER_RELAY_INSTRUCTION))
1455
- const activePersonaId = personaOverride || this.personas.getPersonaForChat(input.chatId, input.threadId)
1456
- const activePersona = getPersona(activePersonaId)
1457
- if (activePersona?.instruction) {
1458
- parts.push(`[Persona: ${activePersona.name} (${activePersona.icon})]\n${activePersona.instruction}`)
1459
- }
1460
- if (steer) parts.push('[Steer / addition to current turn: combine with previous instruction, do not restart from scratch]')
1461
- if (replyText?.trim()) parts.push(`[Replying to message: ${replyText.trim()}]`)
1462
- const blocks = []
1463
- for (const att of attachments) {
1464
- if (att.kind === 'photo' || (att.kind === 'sticker' && att.mime?.startsWith('image/'))) {
1465
- try {
1466
- const { ref } = await attachInboundPhoto(this.ctx, att, {
1467
- signal,
1468
- maxBytes: Number(this.config.media?.maxImageBytes) || 20 * 1024 * 1024,
1469
- })
1470
- blocks.push({ type: 'image', attachment: ref })
1471
- if (att.kind === 'sticker' && att.emoji) parts.push(`[Sticker ${att.emoji}]`)
1472
- } catch (err) {
1473
- if (signal?.aborted) throw err
1474
- const msg = err instanceof Error ? err.message : String(err)
1475
- parts.push(`[Failed to attach image: ${msg}]`)
1476
- }
1477
- } else if (att.kind === 'voice' || att.kind === 'audio') {
1478
- try {
1479
- const bytes = new Uint8Array(await readFile(att.path))
1480
- const transcript = await transcribeVoice(this.baseUrl(), bytes, att.mime || 'audio/ogg', 'message', signal)
1481
- parts.push(transcript ? `[Voice message transcript: ${transcript}]` : '[Voice message (unrecognized)]')
1482
- } catch (err) {
1483
- if (signal?.aborted) throw err
1484
- const msg = err instanceof Error ? err.message : String(err)
1485
- this.ctx.logger?.warn?.(`voice: ${msg}`)
1486
- parts.push(`[Voice message (dsh-voice unavailable: ${msg})]`)
1487
- }
1488
- } else if (att.kind === 'document' || att.kind === 'video' || att.kind === 'animation' || att.kind === 'sticker') {
1489
- let parsed = null
1490
- if (att.kind === 'document' && att.path) {
1491
- try {
1492
- const maxDocBytes = Number(this.config.media?.maxTextInjectBytes) || 100 * 1024
1493
- parsed = await parseDocument(att.path, { maxBytes: maxDocBytes })
1494
- } catch {}
1495
- }
1496
- parts.push(formatInboundDocument(att, parsed))
1497
- } else {
1498
- parts.push(`[File: ${att.path}${att.name ? ` (${att.name})` : ''}]`)
1499
- }
1500
- }
1501
- const photoHint = photoOnlyHint(attachments, text)
1502
- if (photoHint) parts.push(photoHint)
1503
- const docHint = documentOnlyHint(attachments, text)
1504
- if (docHint) parts.push(docHint)
1505
- if (text?.trim()) parts.push(text.trim())
1506
- const textBlock = parts.filter(Boolean).join('\n\n')
1507
- if (textBlock) blocks.unshift({ type: 'text', text: textBlock })
1508
- if (!blocks.length) blocks.push({ type: 'text', text: '(empty message)' })
1509
- return blocks
1510
- }
1511
-
1512
- async runTurn(chat, input, signal) {
1513
- const { reply, typing, startStream, startProgress, react, inboundWasVoice, userId } = input
1514
- chat.turnActive = true
1515
- const sessionId = chat.agent.session.id
1516
- const tg = this.tg()
1517
- const streaming = tg.streaming === true && typeof startStream === 'function'
1518
- const progressEnabled = tg.progressEnabled !== false
1519
- const collector = { parts: [], lastText: '', streamText: '', toolName: '', images: [], reason: undefined, onStream: undefined }
1520
- this.pending.set(sessionId, collector)
1521
- let stopTyping = () => {}
1522
- let stream = null
1523
- let scheduler = null
1524
- let progress = null
1525
- try {
1526
- if (signal.aborted) return
1527
- if (typeof react === 'function' && tg.reactionsEnabled !== false) {
1528
- react('👀').catch?.(() => {})
1529
- }
1530
- if (typeof typing === 'function') stopTyping = startTypingHeartbeat(typing, 4000)
1531
- if (streaming) {
1532
- try {
1533
- stream = await startStream()
1534
- scheduler = createEditScheduler((text) => stream.edit(text), Number(tg.streamEditIntervalMs) || 1200)
1535
- collector.onStream = (text, toolName) => {
1536
- if (text) stopTyping()
1537
- if (!progressEnabled && !text) return
1538
- scheduler.push(buildStreamPreview(text, progressEnabled ? toolName : ''))
1539
- }
1540
- if (progressEnabled) scheduler.push(buildStreamPreview('', ''))
1541
- } catch (e) {
1542
- this.ctx.logger?.warn?.(`stream start: ${e.message}`)
1543
- stream = null
1544
- }
1545
- } else if (progressEnabled && typeof startProgress === 'function') {
1546
- try {
1547
- progress = await startProgress()
1548
- const editProgress = createEditScheduler((text) => progress.edit(text), 800)
1549
- collector.onStream = (_text, toolName) => {
1550
- editProgress.push(formatProgressLine(toolName))
1551
- }
1552
- } catch (e) {
1553
- this.ctx.logger?.warn?.(`progress start: ${e.message}`)
1554
- progress = null
1555
- }
1556
- }
1557
-
1558
-
1559
- const content = await this.buildUserContent(input, signal)
1560
- chat.agent.followup(createUserMessage({
1561
- content: ensureContentArray(content),
1562
- source: { kind: 'user', plugin: PLUGIN, form: 'relay', origin: 'telegram' },
1563
- }))
1564
- const turnTimeoutMs = Number(this.config.agent?.turnTimeoutMs) || 600_000
1565
- await whenIdleWithTimeout(chat.agent, turnTimeoutMs, signal)
1566
- if (signal.aborted) {
1567
- if (progress) try { await progress.remove() } catch {}
1568
- if (typeof react === 'function') react('').catch?.(() => {})
1569
- const stoppedMsg = t('msg.turn_stopped', {}, this.resolveLocale(input))
1570
- if (stream) try { await stream.finalize(stoppedMsg) } catch {}
1571
- else return reply(stoppedMsg)
1572
- return
1573
- }
1574
- const sessions = this.ctx.get?.('sessions') || this.ctx.sessions
1575
- await sessions?.flush?.(chat.agent.session)
1576
- if (progress) try { await progress.remove() } catch {}
1577
- progress = null
1578
- if (typeof react === 'function') react('').catch?.(() => {})
1579
- const rawAnswer = stripReasoningPreamble(stripImageUrls(collector.lastText || collector.streamText || collector.parts.join('\n\n')))
1580
- const processed = processDiagramsAndTables(rawAnswer, {
1581
- artifactPreviews: this.tg().artifactPreviews !== false,
1582
- })
1583
- const answer = processed.text
1584
- if (collector.reason?.kind === 'error') {
1585
- const err = collector.reason.error
1586
- const msg = t('msg.agent_error', { code: err?.code || 'error', message: err?.message || 'unknown' }, this.resolveLocale(input))
1587
- this.sendAlert('error', {
1588
- code: err?.code || 'AGENT_ERROR',
1589
- message: err?.message || 'unknown',
1590
- sessionId,
1591
- chatId: input.chatId,
1592
- threadId: input.threadId,
1593
- }).catch(() => {})
1594
- if (stream) { await scheduler?.flush(); await stream.finalize(msg) }
1595
- else await reply(msg)
1596
- return
1597
- }
1598
- const files = await buildOutboundFiles(this.ctx, this.baseUrl(), collector, { signal, logger: this.ctx.logger })
1599
- const allFiles = [...files, ...(processed.files || [])]
1600
- if (!answer && !allFiles.length) {
1601
- const noResp = t('msg.no_response', {}, this.resolveLocale(input))
1602
- if (stream) { await scheduler?.flush(); await stream.finalize(noResp) }
1603
- else await reply(noResp)
1604
- return
1605
- }
1606
- const maxLen = Number(this.config.agent?.maxMessageLength) || 4000
1607
- const chunks = answer ? splitText(answer, maxLen) : ['']
1608
- if (stream) {
1609
- await scheduler?.flush()
1610
- await stream.finalize(chunks[0] || t('msg.no_response', {}, this.resolveLocale(input)))
1611
- for (let i = 1; i < chunks.length; i++) await reply({ text: chunks[i] })
1612
- if (allFiles.length) await reply({ files: allFiles })
1613
- } else {
1614
- for (let i = 0; i < chunks.length; i++) {
1615
- await reply({ text: chunks[i] || undefined, files: i === 0 ? allFiles : [] })
1616
- }
1617
- }
1618
- const chatTtsPref = this.chatTts.get(chat.target?.chatId)
1619
- const speak = shouldSpeakReply({
1620
- globalTts: Boolean(this.config.tts?.enabled),
1621
- voiceMode: this.tg().voiceMode || 'mirror',
1622
- inboundWasVoice: Boolean(inboundWasVoice),
1623
- userPref: this.voicePrefs.get(userId),
1624
- chatPref: chatTtsPref,
1625
- })
1626
- if (speak && !signal.aborted) {
1627
- const isVoiceSummary = this.config.tts?.voiceSummary === true
1628
- const ttsText = prepareTtsText(answer, this.config.tts?.maxChars, { voiceSummary: isVoiceSummary })
1629
- if (ttsText) {
1630
- try {
1631
- const spoken = await speakText(this.baseUrl(), ttsText, signal)
1632
- const voiceFile = await toTelegramVoiceFile(spoken, { logger: this.ctx.logger })
1633
- if (!signal.aborted && voiceFile) await reply({ files: [voiceFile] })
1634
- } catch (e) {
1635
- if (!signal?.aborted) this.ctx.logger?.warn?.(`tts: ${e.message}`)
1636
- }
1637
- }
1638
- }
1639
- } catch (err) {
1640
- if (!signal?.aborted) {
1641
- this.sendAlert('error', {
1642
- code: err?.code || 'EXCEPTION',
1643
- message: err?.message || String(err),
1644
- sessionId,
1645
- chatId: input.chatId,
1646
- threadId: input.threadId,
1647
- }).catch(() => {})
1648
- try {
1649
- const excMsg = t('msg.exception', { message: err.message }, this.resolveLocale(input))
1650
- if (stream) await stream.finalize(excMsg)
1651
- else await reply(excMsg)
1652
- } catch {}
1653
- }
1654
- } finally {
1655
- stopTyping()
1656
- if (progress) try { await progress.remove() } catch {}
1657
- if (typeof react === 'function') react('').catch?.(() => {})
1658
- chat.turnActive = false
1659
- chat.abort = undefined
1660
- this.pending.delete(sessionId)
1661
- }
1662
- }
1663
-
1664
- reapIdle() {
1665
- const rawTimeout = Number(this.config.agent?.idleTimeoutMs)
1666
- const timeout = Number.isFinite(rawTimeout) && rawTimeout > 0 ? rawTimeout : 86_400_000
1667
- const now = Date.now()
1668
- for (const [key, chat] of this.chats) {
1669
- if (!chat.turnActive && now - chat.lastUsed > timeout) {
1670
- if (chat.agent?.session?.id) {
1671
- this.sessionToChat.delete(String(chat.agent.session.id))
1672
- }
1673
- this.chats.delete(key)
1674
- chat.dispose().catch(() => {})
1675
- }
1676
- }
1677
- }
1678
-
1679
- async approvePairingCode(code, actorUserId = 0) {
1680
- const res = this.pairing.approveCode(code, actorUserId)
1681
- if (!res.ok) return res
1682
- const merged = this.effectiveAllowedIds()
1683
- for (const a of this.adapterList) a.setAllowedUserIds?.(merged)
1684
- try { await this.hooks?.persistAllowedUserIds?.(merged) } catch (e) {
1685
- this.ctx.logger?.warn?.(`persist allowlist: ${e.message}`)
1686
- }
1687
- return { ...res, allowedUserIds: merged }
1688
- }
1689
-
1690
- rejectPairingCode(code) {
1691
- return this.pairing.rejectCode(code)
1692
- }
1693
-
1694
- async probeTelegram(timeoutMs = 10000) {
1695
- const adapter = this.getAdapter('telegram')
1696
- if (!adapter) {
1697
- return { ok: false, error: 'Telegram adapter not initialized' }
1698
- }
1699
- if (typeof adapter.probeHealth === 'function') {
1700
- return adapter.probeHealth(timeoutMs)
1701
- }
1702
- return { ok: false, error: 'probeHealth not implemented on adapter' }
1703
- }
1704
-
1705
- getBotInfo() {
1706
- const adapter = this.getAdapter('telegram')
1707
- return {
1708
- botId: adapter?.botId || 0,
1709
- botUsername: adapter?.botUsername || '',
1710
- pollingConflict: Boolean(adapter?.pollingConflict),
1711
- }
1712
- }
1713
-
1714
- async messengerAskFromAgent(agent, payload, timeoutMs) {
1715
- const sessionId = String(agent?.session?.id || '')
1716
- const key = this.sessionToChat.get(sessionId)
1717
- const chat = key ? this.chats.get(key) : null
1718
- if (!chat?.target) throw new Error('messenger_ask: no telegram chat for this agent session')
1719
- return this.messengerAsk(chat.target, payload, timeoutMs)
1720
- }
1721
-
1722
- get messenger() {
1723
- return {
1724
- adapters: () => [...this.adapters.keys()],
1725
- activeChats: () => this.chats.size,
1726
- home: (name) => this.resolveHomeTarget('telegram', name),
1727
- homes: () => listHomes(this.tg()),
1728
- pairingPending: () => this.pairing.listPending(),
1729
- pairingApproved: () => this.pairing.listApproved(),
1730
- send: (target, payload) => this.messengerSend(target, payload),
1731
- ask: (target, payload, timeoutMs) => this.messengerAsk(target, payload, timeoutMs),
1732
- progress: (target, payload) => this.messengerProgress(target, payload),
1733
- probeTelegram: (timeoutMs) => this.probeTelegram(timeoutMs),
1734
- getBotInfo: () => this.getBotInfo(),
1735
- }
1736
- }
1737
- }
1
+ import { readFile } from 'node:fs/promises'
2
+ import { randomUUID } from 'node:crypto'
3
+ import { join, dirname, resolve } from 'node:path'
4
+ import { homedir } from 'node:os'
5
+ import { fileURLToPath } from 'node:url'
6
+ import { installModelSelection } from '@deepseek-ai/dsh-agent'
7
+ import { createUserMessage } from '@deepseek-ai/dsh-llm'
8
+ import { SessionId } from '@deepseek-ai/dsh-session'
9
+ import createAdapters from './adapters/index.js'
10
+ import { transcribeVoice, speakText } from './integrations.js'
11
+ import { attachInboundPhoto, photoOnlyHint } from './photos.js'
12
+ import { formatInboundDocument, documentOnlyHint, parseDocument } from './documents.js'
13
+ import { listFiles, getFileForDownload, formatFileSize } from './file-manager.js'
14
+ import { collectAssistantParts, buildOutboundFiles, stripImageUrls } from './outbound.js'
15
+ import { assistantText, splitText, stripReasoningPreamble, MESSENGER_RELAY_INSTRUCTION } from './text.js'
16
+ import { chatKey, sessionKey } from './topics.js'
17
+ import { listHomes, resolveNamedHome, upsertHome, normalizeHomeName } from './homes.js'
18
+ import { createVoicePrefs, shouldSpeakReply } from './voice-prefs.js'
19
+ import { prepareTtsText, toTelegramVoiceFile } from './tts.js'
20
+ import {
21
+ makeAskToken, buildInlineKeyboard, buildMultiSelectKeyboard, indexCallbacks, releaseCallbacks,
22
+ parseCallbackData, parseAskCallback, targetMatchesAsk, rejectPendingAsk, REMOVE_KEYBOARD,
23
+ } from './ask.js'
24
+ import { processDiagramsAndTables } from './artifacts.js'
25
+ import { createPersonaStore, getPersona, listPersonas, BUILTIN_PERSONAS } from './personas.js'
26
+ import { exportSessionToMarkdown, rewindSession } from './session-ops.js'
27
+ import { formatAlertMessage, resolveAlertTarget } from './alerts.js'
28
+ import { createScheduler, parseRelativeTime, formatRemaining } from './scheduler.js'
29
+ import { listModelCatalog, buildProvidersKeyboard, buildModelsKeyboard, getStoredModelSelection } from './models.js'
30
+ import { buildQuickActionsKeyboard, REMOVE_REPLY_KEYBOARD } from './adapters/telegram.js'
31
+ import { createPairingStore } from './pairing.js'
32
+ import {
33
+ extractTextDelta, extractToolName, buildStreamPreview, formatProgressLine,
34
+ createEditScheduler, startTypingHeartbeat,
35
+ } from './stream.js'
36
+ import { isTopicGoneError } from './telegram-errors.js'
37
+ import { ensureContentArray } from './content-guard.js'
38
+ import { mergeDynamicCommands } from './commands.js'
39
+ import { t } from './locales/index.js'
40
+ import { getUpdateStatus, runDirectUpdate } from './updater.js'
41
+
42
+
43
+ function whenIdleWithTimeout(agent, timeoutMs, signal) {
44
+ const idle = agent.whenIdle()
45
+ if (!timeoutMs || timeoutMs <= 0) return idle
46
+ return Promise.race([
47
+ idle,
48
+ new Promise((_, reject) => {
49
+ const timer = setTimeout(() => reject(new Error(`turn timeout (${timeoutMs}ms)`)), timeoutMs)
50
+ timer.unref?.()
51
+ signal?.addEventListener('abort', () => { clearTimeout(timer); reject(new DOMException('Aborted', 'AbortError')) }, { once: true })
52
+ }),
53
+ ])
54
+ }
55
+
56
+ function releaseChatTurn(chat) {
57
+ chat.busy = Promise.resolve()
58
+ }
59
+
60
+ const PLUGIN = 'dsh-messenger-gateway'
61
+
62
+ export class Gateway {
63
+ constructor(ctx, config, hooks = {}) {
64
+ this.ctx = ctx
65
+ this.config = config
66
+ this.hooks = hooks
67
+ this.chats = new Map()
68
+ this.sessionToChat = new Map()
69
+ this.sessionToThread = new Map()
70
+ this.threadToSession = new Map()
71
+ this.pending = new Map()
72
+ this.pendingAsks = new Map()
73
+ this.adapters = new Map()
74
+ this.adapterList = []
75
+ this.disposeListener = undefined
76
+ this.idleTimer = undefined
77
+ this.callbackIndex = new Map()
78
+ const home = process.env.DSH_HOME || join(homedir(), '.dsh')
79
+ this.pairing = createPairingStore(join(home, 'messenger-gateway', 'pairing.json'))
80
+ this.voicePrefs = createVoicePrefs(join(home, 'messenger-gateway', 'voice-prefs.json'))
81
+ this.chatTts = createVoicePrefs(join(home, 'messenger-gateway', 'chat-tts.json'))
82
+ this.muted = createVoicePrefs(join(home, 'messenger-gateway', 'muted.json'))
83
+ this.personas = createPersonaStore(join(home, 'messenger-gateway', 'personas.json'))
84
+ this.chatLocales = createVoicePrefs(join(home, 'messenger-gateway', 'chat-locales.json'))
85
+ this.scheduler = createScheduler(join(home, 'messenger-gateway', 'scheduled.json'), async (task) => {
86
+ const target = {
87
+ platform: task.platform || 'telegram',
88
+ chatId: task.chatId,
89
+ threadId: task.threadId || 0,
90
+ }
91
+ const locale = this.resolveLocale({ chatId: task.chatId })
92
+ if (task.prompt || task.action === 'prompt') {
93
+ const promptText = task.prompt || task.text
94
+ try {
95
+ await this.dispatchAutonomousPrompt(target, promptText, locale)
96
+ } catch (err) {
97
+ const msg = err instanceof Error ? err.message : String(err)
98
+ this.ctx.logger?.warn?.(`dsh-messenger-gateway: cron prompt error: ${msg}`)
99
+ await this.sendToMessenger(target, {
100
+ text: `⚠️ <b>[Cron Error]</b>\n${msg}`,
101
+ }).catch(() => {})
102
+ }
103
+ } else {
104
+ const text = t('remind.prefix', { text: task.text }, locale)
105
+ await this.sendToMessenger(target, { text })
106
+ }
107
+ })
108
+ this.stats = { sent: 0, errors: 0, startedAt: Date.now() }
109
+ }
110
+
111
+ resolveLocale(input) {
112
+ if (input?.locale) return input.locale
113
+ const chatId = input?.chatId
114
+ if (chatId && this.chatLocales?.get(chatId)) return this.chatLocales.get(chatId)
115
+ if (input?.languageCode) {
116
+ const code = String(input.languageCode).toLowerCase()
117
+ if (code.startsWith('zh')) return 'zh'
118
+ if (code.startsWith('en')) return 'en'
119
+ }
120
+ return this.config?.defaultLocale || 'en'
121
+ }
122
+
123
+ async dispatchAutonomousPrompt(target, promptText, locale = 'en') {
124
+ const key = this.sessionKeyFor(target)
125
+ const reply = async (payload) => {
126
+ await this.sendToMessenger(target, typeof payload === 'string' ? { text: payload } : payload)
127
+ }
128
+ const input = {
129
+ platform: target.platform || 'telegram',
130
+ chatId: target.chatId,
131
+ threadId: target.threadId || 0,
132
+ text: promptText,
133
+ reply,
134
+ locale,
135
+ }
136
+ const chat = await this.getOrCreateChat(key, input)
137
+ const turnInput = { ...input, attachments: [], inboundWasVoice: false }
138
+ chat.turnActive = true
139
+ try { chat.abort?.abort?.() } catch {}
140
+ chat.abort = new AbortController()
141
+ const run = chat.busy.then(() => this.runTurn(chat, turnInput, chat.abort.signal))
142
+ chat.busy = run.catch(() => {})
143
+ run.catch((err) => {
144
+ const msg = err instanceof Error ? err.message : String(err)
145
+ this.ctx.logger?.warn?.(`dsh-messenger-gateway: cron turn: ${msg}`)
146
+ chat.turnActive = false
147
+ chat.abort = undefined
148
+ })
149
+ return run
150
+ }
151
+
152
+ isMuted(chatId) { return this.muted.get(chatId) === true }
153
+ setMuted(chatId, on) { return this.muted.set(chatId, on) }
154
+
155
+ baseUrl() {
156
+ const raw = String(this.config.internalBaseURL || '').trim()
157
+ return raw || 'http://127.0.0.1:3080'
158
+ }
159
+
160
+ tg() { return this.config.telegram || {} }
161
+
162
+ effectiveAllowedIds() {
163
+ const fromConfig = (this.tg().allowedUserIds || []).map(Number).filter(Number.isFinite)
164
+ const fromPairing = this.pairing.listApproved()
165
+ return [...new Set([...fromConfig, ...fromPairing])]
166
+ }
167
+
168
+ isUserAllowed(userId) {
169
+ const ids = this.effectiveAllowedIds()
170
+ return ids.length === 0 || ids.includes(Number(userId))
171
+ }
172
+
173
+ resolveHomeTarget(platform = 'telegram', name) {
174
+ const tg = this.tg()
175
+ const home = resolveNamedHome(tg, name)
176
+ if (!home) return null
177
+ const out = { platform, chatId: home.chatId, homeName: home.name }
178
+ if (home.threadId > 0) out.threadId = home.threadId
179
+ return out
180
+ }
181
+
182
+ async sendAlert(type, payload = {}) {
183
+ try {
184
+ const target = resolveAlertTarget(this)
185
+ if (!target) return
186
+ const allowedEvents = this.config.telegram?.alerts?.events || ['error', 'pairing']
187
+ if (type !== 'status' && !allowedEvents.includes(type)) return
188
+
189
+ const text = formatAlertMessage(type, payload)
190
+ await this.sendToMessenger(target, { text })
191
+ } catch (err) {
192
+ this.ctx.logger?.warn?.(`sendAlert (${type}): ${err.message}`)
193
+ }
194
+ }
195
+
196
+ async start() {
197
+ this.disposeListener = this.ctx.on('session/event', (session, event) => {
198
+ if (this.config.telegram?.forumMirrorEnabled) {
199
+ if (event.type === 'turn/start' || event.type === 'session/create') {
200
+ this.mirrorSessionToForumTopic(session).catch?.(() => {})
201
+ } else if (event.type === 'turn/end') {
202
+ this.relayTurnToForumMirror(session, event).catch?.(() => {})
203
+ }
204
+ }
205
+
206
+ const collector = this.pending.get(session.id)
207
+ if (!collector) return
208
+ if (event.type === 'assistant/message') {
209
+ const msg = event.data.message
210
+ const text = assistantText(msg)
211
+ if (text) collector.lastText = text
212
+ const extra = collectAssistantParts(msg)
213
+ for (const img of extra.images) collector.images.push(img)
214
+ } else if (event.type === 'assistant/chunk') {
215
+ const delta = extractTextDelta(event.data?.chunk)
216
+ if (delta) {
217
+ collector.streamText = (collector.streamText || '') + delta
218
+ collector.onStream?.(collector.streamText, collector.toolName)
219
+ }
220
+ } else if (event.type === 'tool/call') {
221
+ collector.toolName = extractToolName(event.data) || collector.toolName
222
+ collector.onStream?.(collector.streamText || '', collector.toolName)
223
+ } else if (event.type === 'tool/result') {
224
+ collector.toolName = ''
225
+ collector.onStream?.(collector.streamText || '', '')
226
+ } else if (event.type === 'turn/end') {
227
+ collector.reason = event.data.reason
228
+ }
229
+ })
230
+ const adapters = createAdapters({
231
+ config: this.config,
232
+ onMessage: (input) => this.handleMessage(input),
233
+ onCallback: (cb) => this.handleCallback(cb),
234
+ onUnauthorized: (input) => this.handleUnauthorized(input),
235
+ isUserAllowed: (id) => this.isUserAllowed(id),
236
+ logger: this.ctx.logger,
237
+ })
238
+ for (const adapter of adapters) {
239
+ try {
240
+ await adapter.start()
241
+ this.adapterList.push(adapter)
242
+ this.adapters.set(adapter.name, adapter)
243
+ if (adapter.name === 'telegram') this.tgAdapter = adapter
244
+ this.ctx.logger?.info?.(`dsh-messenger-gateway: ${adapter.name} started`)
245
+ } catch (err) {
246
+ this.ctx.logger?.warn?.(`dsh-messenger-gateway: ${adapter.name}: ${err.message}`)
247
+ }
248
+ }
249
+ if (this.adapters.has('telegram')) {
250
+ await this.syncTelegramCommands().catch((err) => {
251
+ this.ctx.logger?.warn?.(`Initial syncTelegramCommands: ${err?.message || err}`)
252
+ })
253
+ }
254
+ const rawIdle = Number(this.config.agent?.idleTimeoutMs)
255
+ const idleMs = Number.isFinite(rawIdle) && rawIdle > 0 ? rawIdle : 86_400_000
256
+ this.idleTimer = setInterval(() => this.reapIdle(), Math.min(idleMs, 60_000))
257
+ this.idleTimer.unref?.()
258
+ this.scheduler.start()
259
+ }
260
+
261
+ stop() {
262
+ if (this.scheduler) this.scheduler.stop()
263
+ if (this.disposeListener) this.disposeListener()
264
+ if (this.idleTimer) clearInterval(this.idleTimer)
265
+ for (const a of this.adapterList) { try { a.stop() } catch {} }
266
+ this.adapterList = []
267
+ this.adapters.clear()
268
+ for (const chat of this.chats.values()) chat.dispose().catch(() => {})
269
+ this.chats.clear()
270
+ this.sessionToChat.clear()
271
+ this.sessionToThread.clear()
272
+ this.threadToSession.clear()
273
+ for (const pending of this.pendingAsks.values()) {
274
+ releaseCallbacks(this.callbackIndex, pending.callbackKeys)
275
+ rejectPendingAsk(pending, new Error('gateway stopped'))
276
+ }
277
+ this.pending.clear()
278
+ this.pendingAsks.clear()
279
+ this.callbackIndex.clear()
280
+ }
281
+
282
+ getAdapter(platform) { return this.adapters.get(platform) }
283
+
284
+ async messengerSend(target, payload) {
285
+ let resolved = target
286
+ if (!resolved?.chatId && resolved?.platform) {
287
+ const home = this.resolveHomeTarget(resolved.platform, resolved.home || resolved.name)
288
+ if (!home) throw new Error('target.chatId required (or set telegram home channel)')
289
+ resolved = { ...home, ...resolved, chatId: home.chatId, threadId: resolved.threadId ?? home.threadId }
290
+ }
291
+ const adapter = this.getAdapter(resolved.platform)
292
+ if (!adapter?.sendTo) throw new Error(`adapter ${resolved.platform} unavailable`)
293
+ try {
294
+ await adapter.sendTo(resolved.chatId, payload, { threadId: resolved.threadId })
295
+ this.stats.sent++
296
+ } catch (err) {
297
+ this.stats.errors++
298
+ if (isTopicGoneError(err)) {
299
+ this.logger?.warn?.(`messengerSend: topic gone for ${resolved.platform}:${resolved.chatId}:${resolved.threadId} — the chat/topic was deleted; skipping delivery`)
300
+ return
301
+ }
302
+ throw err
303
+ }
304
+ }
305
+
306
+ async messengerAsk(target, payload, timeoutMs = 300_000) {
307
+ const adapter = this.getAdapter(target.platform)
308
+ if (!adapter) throw new Error(`adapter ${target.platform} unavailable`)
309
+ const token = makeAskToken()
310
+ const isMulti = payload.mode === 'multi' || (Array.isArray(payload.options) && payload.options.length > 0)
311
+ let replyMarkup
312
+ let callbackKeys
313
+ let selectedSet
314
+ let page = 0
315
+ const pageSize = Number(payload.pageSize) || 6
316
+
317
+ if (isMulti) {
318
+ selectedSet = new Set(Array.isArray(payload.selected) ? payload.selected : [])
319
+ const kb = buildMultiSelectKeyboard(token, payload.options || payload.buttons, selectedSet, page, pageSize, payload)
320
+ replyMarkup = kb.replyMarkup
321
+ callbackKeys = kb.callbackKeys
322
+ } else {
323
+ const kb = buildInlineKeyboard(token, payload.buttons || [])
324
+ replyMarkup = kb.replyMarkup
325
+ callbackKeys = kb.callbackKeys
326
+ }
327
+
328
+ indexCallbacks(this.callbackIndex, callbackKeys, token)
329
+ try {
330
+ await adapter.sendTo(target.chatId, { text: payload.text, replyMarkup }, { threadId: target.threadId })
331
+ } catch (err) {
332
+ // Never leave stale callback keys pointing at an unresolvable ask.
333
+ releaseCallbacks(this.callbackIndex, callbackKeys)
334
+ if (isTopicGoneError(err)) {
335
+ this.logger?.warn?.(`messengerAsk: topic gone for ${target.platform}:${target.chatId}:${target.threadId} — ask aborted (chat/topic deleted)`)
336
+ throw new Error('messenger.ask: chat or topic was deleted')
337
+ }
338
+ throw err
339
+ }
340
+ return new Promise((resolve, reject) => {
341
+ const timer = setTimeout(() => {
342
+ this.pendingAsks.delete(token)
343
+ releaseCallbacks(this.callbackIndex, callbackKeys)
344
+ reject(new Error('messenger.ask timed out'))
345
+ }, timeoutMs)
346
+ timer.unref?.()
347
+ this.pendingAsks.set(token, {
348
+ resolve, reject, timer, target, callbackKeys, isMulti,
349
+ options: payload.options || payload.buttons,
350
+ selected: selectedSet,
351
+ page, pageSize, payload,
352
+ })
353
+ })
354
+ }
355
+
356
+ async messengerProgress(target, payload) {
357
+ await this.messengerSend(target, { text: payload.text })
358
+ }
359
+
360
+ async handleUnauthorized(input) {
361
+ const { reply, userId, username } = input
362
+ const locale = this.resolveLocale(input)
363
+ if (!this.tg().pairingEnabled) {
364
+ await reply(t('msg.not_allowed', {}, locale))
365
+ return
366
+ }
367
+ try {
368
+ const { code } = this.pairing.requestCode(userId, { username })
369
+ await reply(t('msg.pairing_requested', { userId, code }, locale))
370
+ this.sendAlert('pairing', { userId, username, code }).catch(() => {})
371
+ } catch (err) {
372
+ if (err.code === 'RATE_LIMIT') await reply(t('msg.pairing_rate_limit', {}, locale))
373
+ else await reply(t('msg.exception', { message: err.message }, locale))
374
+ }
375
+ }
376
+
377
+ async handleCallback(cb) {
378
+ if (cb.userId && !this.isUserAllowed(cb.userId)) {
379
+ try { await cb.answer(t('msg.not_allowed', {}, 'en')) } catch {}
380
+ return
381
+ }
382
+ const indexed = this.callbackIndex.get(cb.data)
383
+ const { token, buttonId } = parseCallbackData(cb.data)
384
+ const askToken = indexed || token
385
+ if (askToken && this.pendingAsks.has(askToken)) {
386
+ const pending = this.pendingAsks.get(askToken)
387
+ if (!targetMatchesAsk(pending, cb)) {
388
+ await cb.answer(t('ask.other_chat', {}, 'en'))
389
+ return
390
+ }
391
+ const action = parseAskCallback(cb.data)
392
+ if (pending.isMulti) {
393
+ if (action.kind === 'toggle') {
394
+ if (pending.selected.has(action.id)) pending.selected.delete(action.id)
395
+ else pending.selected.add(action.id)
396
+ releaseCallbacks(this.callbackIndex, pending.callbackKeys)
397
+ const nextKb = buildMultiSelectKeyboard(askToken, pending.options, pending.selected, pending.page, pending.pageSize, pending.payload)
398
+ pending.callbackKeys = nextKb.callbackKeys
399
+ indexCallbacks(this.callbackIndex, nextKb.callbackKeys, askToken)
400
+ try {
401
+ if (cb.editReplyMarkup) await cb.editReplyMarkup(nextKb.replyMarkup)
402
+ else await cb.editMessage(cb.message?.text || 'Selection', nextKb.replyMarkup)
403
+ } catch {}
404
+ await cb.answer(pending.selected.has(action.id) ? 'Selected' : 'Deselected')
405
+ return
406
+ }
407
+ if (action.kind === 'page') {
408
+ pending.page = action.page
409
+ releaseCallbacks(this.callbackIndex, pending.callbackKeys)
410
+ const nextKb = buildMultiSelectKeyboard(askToken, pending.options, pending.selected, pending.page, pending.pageSize, pending.payload)
411
+ pending.callbackKeys = nextKb.callbackKeys
412
+ indexCallbacks(this.callbackIndex, nextKb.callbackKeys, askToken)
413
+ try {
414
+ if (cb.editReplyMarkup) await cb.editReplyMarkup(nextKb.replyMarkup)
415
+ else await cb.editMessage(cb.message?.text || 'Selection', nextKb.replyMarkup)
416
+ } catch {}
417
+ await cb.answer()
418
+ return
419
+ }
420
+ if (action.kind === 'done') {
421
+ this.pendingAsks.delete(askToken)
422
+ clearTimeout(pending.timer)
423
+ releaseCallbacks(this.callbackIndex, pending.callbackKeys)
424
+ await cb.answer('OK')
425
+ try { await cb.editMessage(cb.message?.text || 'Done', REMOVE_KEYBOARD) } catch {}
426
+ pending.resolve({ buttonId: 'done', selected: Array.from(pending.selected), data: cb.data })
427
+ return
428
+ }
429
+ if (action.kind === 'cancel') {
430
+ this.pendingAsks.delete(askToken)
431
+ clearTimeout(pending.timer)
432
+ releaseCallbacks(this.callbackIndex, pending.callbackKeys)
433
+ await cb.answer('Cancelled')
434
+ try { await cb.editMessage(cb.message?.text || 'Cancelled', REMOVE_KEYBOARD) } catch {}
435
+ pending.resolve({ buttonId: 'cancel', selected: [], data: cb.data })
436
+ return
437
+ }
438
+ }
439
+ this.pendingAsks.delete(askToken)
440
+ clearTimeout(pending.timer)
441
+ releaseCallbacks(this.callbackIndex, pending.callbackKeys)
442
+ await cb.answer('OK')
443
+ try { await cb.editMessage(cb.message?.text || 'Done', REMOVE_KEYBOARD) } catch {}
444
+ pending.resolve({ buttonId: action.id || buttonId, data: cb.data })
445
+ return
446
+ }
447
+
448
+ // Model picker interactive flow
449
+ if (cb.data?.startsWith('mdl:')) {
450
+ const parts = cb.data.split(':')
451
+ const sub = parts[1]
452
+ // Step 2: Selected provider -> show its models (10 per page)
453
+ if (sub === 'p') {
454
+ const providerId = parts.slice(2).join(':')
455
+ const current = this.resolveAgentModel()
456
+ const catalog = await listModelCatalog(this.ctx, current)
457
+ const models = catalog.modelsByProvider.get(providerId) || []
458
+ if (!models.length) {
459
+ await cb.answer(t('model.no_models', {}, 'en'))
460
+ return
461
+ }
462
+ const kb = buildModelsKeyboard(providerId, models, current.model, 0)
463
+ await cb.answer()
464
+ const text = [
465
+ `🤖 <b>Provider:</b> <code>${providerId}</code>`,
466
+ `Select model (page ${kb.page + 1}/${kb.totalPages}):`,
467
+ ].join('\n')
468
+ try {
469
+ if (cb.editMessage) await cb.editMessage(text, kb)
470
+ } catch {}
471
+ return
472
+ }
473
+ // Pagination for models
474
+ if (sub === 'pg') {
475
+ const page = parseInt(parts[parts.length - 1], 10) || 0
476
+ const providerId = parts.slice(2, -1).join(':')
477
+ const current = this.resolveAgentModel()
478
+ const catalog = await listModelCatalog(this.ctx, current)
479
+ const models = catalog.modelsByProvider.get(providerId) || []
480
+ const kb = buildModelsKeyboard(providerId, models, current.model, page)
481
+ await cb.answer()
482
+ const text = [
483
+ `🤖 <b>Provider:</b> <code>${providerId}</code>`,
484
+ `Select model (page ${kb.page + 1}/${kb.totalPages}):`,
485
+ ].join('\n')
486
+ try {
487
+ if (cb.editMessage) await cb.editMessage(text, kb)
488
+ } catch {}
489
+ return
490
+ }
491
+ // Back to providers
492
+ if (sub === 'back') {
493
+ const current = this.resolveAgentModel()
494
+ const catalog = await listModelCatalog(this.ctx, current)
495
+ const kb = buildProvidersKeyboard(catalog.providers, current)
496
+ await cb.answer()
497
+ const text = [
498
+ '🤖 <b>Choose Provider:</b>',
499
+ `Current: <code>${current.provider}/${current.model}</code>`,
500
+ ].join('\n')
501
+ try {
502
+ if (cb.editMessage) await cb.editMessage(text, kb)
503
+ } catch {}
504
+ return
505
+ }
506
+ // Select model
507
+ if (sub === 's') {
508
+ const key = parts[2]
509
+ const stored = getStoredModelSelection(key)
510
+ if (!stored) {
511
+ await cb.answer(t('ask.expired', {}, 'en'))
512
+ return
513
+ }
514
+ const { provider, model } = stored
515
+ try {
516
+ const adm = this.ctx.get('agentDefaultModel')
517
+ if (adm?.saveSelection) {
518
+ await adm.saveSelection({ provider, model })
519
+ }
520
+ this.config.agent = { ...this.config.agent, provider, model }
521
+ try {
522
+ await this.hooks?.persistAgentModel?.({ provider, model })
523
+ } catch (e) {
524
+ this.ctx.logger?.warn?.(`persist agent model: ${e.message}`)
525
+ }
526
+ await cb.answer(t('ask.chose', { choice: model }, 'en'))
527
+ try {
528
+ if (cb.editMessage) await cb.editMessage(t('model.switched', { provider, model }, 'en'), REMOVE_KEYBOARD)
529
+ } catch {}
530
+ } catch (err) {
531
+ await cb.answer(`Error: ${err.message}`)
532
+ }
533
+ return
534
+ }
535
+ if (sub === 'cur') {
536
+ await cb.answer()
537
+ return
538
+ }
539
+ }
540
+
541
+ await cb.answer()
542
+ }
543
+
544
+ sessionKeyFor(input) {
545
+ const scope = this.config.agent?.sessionScope || 'user'
546
+ return sessionKey({
547
+ platform: input.platform,
548
+ chatId: input.chatId,
549
+ threadId: input.threadId || 0,
550
+ userId: input.userId,
551
+ chatType: input.chatType,
552
+ scope,
553
+ })
554
+ }
555
+
556
+ isChatBusy(chat) {
557
+ return Boolean(chat?.turnActive)
558
+ }
559
+
560
+ async handleMessage(input) {
561
+ const { platform, chatId, threadId = 0, text, reply } = input
562
+ const key = this.sessionKeyFor(input)
563
+ const body = String(text || '').trim()
564
+ let attachments = [...(input.attachments || [])]
565
+ const hasMedia = attachments.length > 0
566
+ if (!body && !hasMedia) return
567
+ if (body.startsWith('/')) { await this.handleCommand(key, body, input); return }
568
+ try {
569
+ const chat = await this.getOrCreateChat(key, input)
570
+ const photoOnlyMode = this.config.agent?.photoOnlyMode ?? 'prompt'
571
+ const incomingPhotoOnly = hasMedia && attachments.every((a) => a.kind === 'photo' || a.kind === 'sticker') && !body
572
+ if (incomingPhotoOnly && photoOnlyMode === 'prompt') {
573
+ chat.pendingMedia = [...(chat.pendingMedia || []), ...attachments]
574
+ const n = chat.pendingMedia.length
575
+ const locale = this.resolveLocale(input)
576
+ const msg = n === 1
577
+ ? t('photo.received_one', {}, locale)
578
+ : t('photo.received_many', { count: n }, locale)
579
+ return reply(msg)
580
+ }
581
+ if (chat.pendingMedia?.length) {
582
+ attachments = [...chat.pendingMedia, ...attachments]
583
+ chat.pendingMedia = []
584
+ }
585
+ const inboundWasVoice = attachments.some((a) => a.kind === 'voice' || a.kind === 'audio')
586
+ let personaOverride
587
+ for (const [pId] of Object.entries(BUILTIN_PERSONAS)) {
588
+ if (pId === 'default') continue
589
+ const tag = `@${pId}`
590
+ if (body.toLowerCase().includes(tag)) {
591
+ personaOverride = pId
592
+ break
593
+ }
594
+ }
595
+ const turnInput = { ...input, text: body, attachments, inboundWasVoice, personaOverride }
596
+
597
+ // Hermes-like steer: while a turn is running, inject followup instead of abort+restart
598
+ if (this.isChatBusy(chat)) {
599
+ const steerText = body || (hasMedia ? '(steer: media)' : '')
600
+ const content = await this.buildUserContent({
601
+ ...turnInput,
602
+ text: steerText,
603
+ steer: true,
604
+ }, undefined)
605
+ chat.agent.followup(createUserMessage({
606
+ content: ensureContentArray(content),
607
+ source: { kind: 'user', plugin: PLUGIN, form: 'steer', origin: 'telegram' },
608
+ }))
609
+ chat.lastUsed = Date.now()
610
+ try { await reply(t('msg.steer_added', {}, this.resolveLocale(input))) } catch {}
611
+ return
612
+ }
613
+
614
+ // Mark busy BEFORE yielding to the poll loop, otherwise steer/stop never see an active turn.
615
+ chat.turnActive = true
616
+ try { chat.abort?.abort?.() } catch {}
617
+ chat.abort = new AbortController()
618
+ const run = chat.busy.then(() => this.runTurn(chat, turnInput, chat.abort.signal))
619
+ chat.busy = run.catch(() => {})
620
+ // Do NOT await: Telegram poll is sequential; awaiting blocked steer and /stop until the turn finished.
621
+ run.catch((err) => {
622
+ const msg = err instanceof Error ? err.message : String(err)
623
+ this.ctx.logger?.warn?.(`dsh-messenger-gateway: background turn: ${msg}`)
624
+ this.sendAlert('error', {
625
+ code: err?.code || 'BACKGROUND_ERROR',
626
+ message: msg,
627
+ sessionId: chat.agent?.session?.id,
628
+ chatId: input.chatId,
629
+ threadId: input.threadId,
630
+ }).catch(() => {})
631
+ chat.turnActive = false
632
+ chat.abort = undefined
633
+ })
634
+ } catch (err) {
635
+ const msg = err instanceof Error ? err.message : String(err)
636
+ this.ctx.logger?.warn?.(`dsh-messenger-gateway: message: ${msg}`)
637
+ try { await reply(t('msg.exception', { message: msg }, this.resolveLocale(input))) } catch {}
638
+ }
639
+ }
640
+
641
+ async handleCommand(key, text, input) {
642
+ const parts = text.split(/\s+/)
643
+ const cmd = parts[0].toLowerCase().split('@')[0]
644
+ const { reply, userId, chatId, threadId = 0, platform } = input
645
+ const locale = this.resolveLocale(input)
646
+
647
+ if (cmd === '/start') {
648
+ return reply(t('msg.start', {}, locale), { replyMarkup: REMOVE_REPLY_KEYBOARD })
649
+ }
650
+
651
+ if (cmd === '/help') {
652
+ return reply([
653
+ '📖 <b>Messenger Gateway Help:</b>',
654
+ '',
655
+ '💬 <b>Session & Chat:</b>',
656
+ '• /helpshow this command reference',
657
+ '• /newstart fresh session',
658
+ '• /stopinterrupt current response',
659
+ '• /modelinteractive model selector (/model list)',
660
+ '• /role [name] — switch persona or role (/role list)',
661
+ '• /bind [role] — bind persona to topic / chat',
662
+ '• /preset [name] — bind preset to topic / chat',
663
+ '• /lang [en|zh] switch user language',
664
+ '• /rewind [N] rewind last N turns',
665
+ '• /fork — fork session into new branch',
666
+ ' /export export history to Markdown',
667
+ '',
668
+ '🛠️ <b>Tools, Files & Cron:</b>',
669
+ '• /skills / /tools list active tools & skills',
670
+ '• /files [dir]workspace file explorer',
671
+ '• /get <path> — download file from workspace',
672
+ '• /remind <time> <text> — set reminder (/remind 10m check deploy)',
673
+ ' /cron <interval> <prompt> — recurring autonomous task',
674
+ '',
675
+ '⚙️ <b>Settings & Stats:</b>',
676
+ '• /statusgateway and active model status',
677
+ '• /topsystem resource usage (RAM, uptime)',
678
+ '• /keyboard on|off — quick action keyboard',
679
+ '• /voice on|off|statusvoice replies preference',
680
+ '• /tts on|off|status — speech synthesis in this chat',
681
+ ' /mute / /unmute — mute notifications in this chat',
682
+ '',
683
+ '🔒 <b>Access & Channels:</b>',
684
+ '• /whoamiyour messenger user ID',
685
+ '• /pair CODE approve pairing code',
686
+ '• /sethome [name] — set home notification channel',
687
+ '• /setalert — set alert channel',
688
+ ].join('\n'))
689
+ }
690
+
691
+ if (cmd === '/lang' || cmd === '/language') {
692
+ const sub = parts[1]?.toLowerCase()
693
+ if (sub === 'en' || sub === 'zh') {
694
+ this.chatLocales.set(chatId, sub)
695
+ return reply(sub === 'zh' ? '语言已切换为中文 (zh)' : 'Language switched to English (en)')
696
+ }
697
+ const cur = this.chatLocales.get(chatId) || this.config?.defaultLocale || 'en'
698
+ return reply(`Current language: <b>${cur}</b>\nSwitch: <code>/lang en</code> or <code>/lang zh</code>`)
699
+ }
700
+
701
+ if (cmd === '/bind') {
702
+ const targetRole = parts[1]?.toLowerCase()
703
+ if (!targetRole || targetRole === 'list') {
704
+ const cur = this.personas.getPersonaForChat(chatId, threadId)
705
+ return reply(`${t('persona.title', {}, locale)}\nCurrent bound role: <b>${cur}</b>\nUsage: <code>/bind &lt;role&gt;</code> (or /bind reset)`)
706
+ }
707
+ if (targetRole === 'reset' || targetRole === 'default') {
708
+ this.personas.set(chatId, 'default', threadId)
709
+ return reply(t('persona.reset', {}, locale))
710
+ }
711
+ const persona = getPersona(targetRole)
712
+ if (!persona) return reply(t('persona.unknown', { target: targetRole }, locale))
713
+ this.personas.set(chatId, targetRole, threadId)
714
+ return reply(t('persona.bound_topic', { kind: 'role', name: `${persona.icon} ${persona.name}` }, locale))
715
+ }
716
+
717
+ if (cmd === '/preset') {
718
+ const presetName = parts[1]
719
+ if (!presetName || presetName === 'list') {
720
+ const cur = this.personas.getPreset(chatId, threadId) || '(none)'
721
+ return reply(`🎭 <b>Presets:</b>\nCurrent topic preset: <code>${cur}</code>\nUsage: <code>/preset &lt;name&gt;</code> or <code>/preset reset</code>`)
722
+ }
723
+ if (presetName === 'reset' || presetName === 'clear') {
724
+ this.personas.setPreset(chatId, threadId, null)
725
+ return reply('Preset cleared for this topic.')
726
+ }
727
+ this.personas.setPreset(chatId, threadId, presetName)
728
+ return reply(t('persona.bound_topic', { kind: 'preset', name: presetName }, locale))
729
+ }
730
+
731
+ if (cmd === '/cron') {
732
+ const sub = parts[1]?.toLowerCase()
733
+ if (sub === 'list') {
734
+ const list = await this.scheduler.listRecurring(chatId)
735
+ if (!list.length) return reply(t('cron.none', {}, locale))
736
+ const lines = [t('cron.list_title', {}, locale)]
737
+ for (const task of list) {
738
+ const left = formatRemaining(task.dueAt - Date.now(), locale)
739
+ lines.push(`• <code>${task.id}</code> (every ${formatRemaining(task.intervalMs, locale)}, next in ${left}): ${task.prompt || task.text}`)
740
+ }
741
+ lines.push('\nCancel: <code>/cron cancel ID</code>')
742
+ return reply(lines.join('\n'))
743
+ }
744
+ if (sub === 'cancel') {
745
+ const targetId = parts[2]
746
+ if (!targetId) return reply('Specify cron task ID: <code>/cron cancel ID</code>')
747
+ const ok = await this.scheduler.cancel(targetId, chatId)
748
+ return reply(ok ? t('cron.cancelled', { id: targetId }, locale) : `Task not found: <code>${targetId}</code>`)
749
+ }
750
+ const specArg = parts[1]
751
+ const promptArg = parts.slice(2).join(' ')
752
+ const ms = parseRelativeTime(specArg)
753
+ if (!ms || !promptArg) {
754
+ return reply('⏱️ <b>Autonomous Cron Tasks:</b>\nCreate: <code>/cron &lt;interval&gt; &lt;prompt&gt;</code>\nExample: <code>/cron 1h check server logs</code>\nList: <code>/cron list</code>\nCancel: <code>/cron cancel ID</code>')
755
+ }
756
+ const task = await this.scheduler.schedule({
757
+ platform,
758
+ chatId,
759
+ threadId,
760
+ userId,
761
+ text: promptArg,
762
+ prompt: promptArg,
763
+ dueAt: Date.now() + ms,
764
+ recurring: true,
765
+ intervalMs: ms,
766
+ })
767
+ return reply(t('cron.scheduled', { id: task.id, schedule: specArg, prompt: promptArg }, locale))
768
+ }
769
+
770
+ if (cmd === '/update') {
771
+ if (!this.isUserAllowed(userId)) {
772
+ return reply(t('msg.not_allowed', {}, locale))
773
+ }
774
+ const sub = parts[1]?.toLowerCase()
775
+ const manifestPath = resolve(dirname(fileURLToPath(import.meta.url)), '../package.json')
776
+ const updaterOpts = {
777
+ manifestPath,
778
+ packageName: '@goodandready/dsh-messenger-gateway',
779
+ }
780
+ if (sub === 'now' || sub === 'install') {
781
+ await reply(t('update.installing', {}, locale))
782
+ try {
783
+ const res = await runDirectUpdate(updaterOpts)
784
+ if (!res.updated) {
785
+ return reply(t('update.already_latest', { version: res.currentVersion }, locale))
786
+ }
787
+ return reply(t('update.success', { version: res.updatedVersion }, locale))
788
+ } catch (err) {
789
+ return reply(t('update.failed', { error: err.message }, locale))
790
+ }
791
+ }
792
+ try {
793
+ const st = await getUpdateStatus(updaterOpts)
794
+ if (st.updateAvailable) {
795
+ return reply(t('update.available', { current: st.currentVersion, latest: st.latestVersion }, locale))
796
+ }
797
+ return reply(t('update.current', { version: st.currentVersion }, locale))
798
+ } catch (err) {
799
+ return reply(t('update.check_failed', { error: err.message }, locale))
800
+ }
801
+ }
802
+
803
+ if (cmd === '/role' || cmd === '/persona') {
804
+ const targetRole = parts[1]?.toLowerCase()
805
+ if (!targetRole || targetRole === 'list') {
806
+ const currentId = this.personas.getPersonaForChat(chatId, threadId)
807
+ const lines = [
808
+ t('persona.title', {}, locale),
809
+ '',
810
+ ...listPersonas().map((p) => {
811
+ const isCurrent = p.id === currentId ? ' (active)' : ''
812
+ return `${p.icon} <b>${p.id}</b> — ${p.name}: ${p.description}${isCurrent}`
813
+ }),
814
+ '',
815
+ t('persona.usage', {}, locale),
816
+ ]
817
+ return reply(lines.join('\n'))
818
+ }
819
+ if (targetRole === 'reset' || targetRole === 'default') {
820
+ this.personas.set(chatId, 'default', threadId)
821
+ return reply(t('persona.reset', {}, locale))
822
+ }
823
+ const persona = getPersona(targetRole)
824
+ if (!persona) {
825
+ return reply(t('persona.unknown', { target: targetRole }, locale))
826
+ }
827
+ this.personas.set(chatId, persona.id, threadId)
828
+ return reply(t('persona.switched', { icon: persona.icon, name: persona.name, description: persona.description }, locale))
829
+ }
830
+
831
+ if (cmd === '/skills' || cmd === '/tools') {
832
+ const tools = this.ctx.get?.('tools') || this.ctx.tools
833
+ const toolsList = []
834
+ if (tools?.tools) {
835
+ for (const [name, tDef] of tools.tools.entries()) {
836
+ toolsList.push(`• <b>${name}</b>: ${tDef.description || '(no description)'}`)
837
+ }
838
+ }
839
+ if (!toolsList.length) {
840
+ return reply('🛠️ <b>Agent Tools:</b>\n(no tools registered)')
841
+ }
842
+ return reply([
843
+ '🛠️ <b>Active Tools & Skills:</b>',
844
+ '',
845
+ ...toolsList,
846
+ ].join('\n'))
847
+ }
848
+
849
+ if (cmd === '/export') {
850
+ const chat = this.chats.get(key)
851
+ if (!chat?.agent?.session) {
852
+ return reply(t('msg.no_active_session', {}, locale))
853
+ }
854
+ try {
855
+ const { filename, buffer, messagesCount } = exportSessionToMarkdown(chat.agent.session)
856
+ if (!messagesCount) {
857
+ return reply(t('export.empty', {}, locale))
858
+ }
859
+ const file = {
860
+ name: filename,
861
+ mime: 'text/markdown',
862
+ kind: 'document',
863
+ bytes: buffer,
864
+ }
865
+ return reply({ text: t('export.title', { count: messagesCount }, locale), files: [file] })
866
+ } catch (err) {
867
+ return reply(`Export error: ${err.message}`)
868
+ }
869
+ }
870
+
871
+ if (cmd === '/rewind') {
872
+ const chat = this.chats.get(key)
873
+ if (!chat?.agent?.session) {
874
+ return reply(t('msg.no_active_session', {}, locale))
875
+ }
876
+ const count = Number(parts[1]) || 1
877
+ const res = rewindSession(chat.agent.session, count)
878
+ if (!res.removed) {
879
+ return reply('No turns to rewind in session history.')
880
+ }
881
+ const sessions = this.ctx.get?.('sessions') || this.ctx.sessions
882
+ try { await sessions?.flush(chat.agent.session) } catch {}
883
+ return reply(`⏪ Rewound ${res.removed} messages. Remaining in context: ${res.remaining}.`)
884
+ }
885
+
886
+ if (cmd === '/fork') {
887
+ const chat = this.chats.get(key)
888
+ if (!chat?.agent?.session) {
889
+ return reply(t('msg.no_active_session', {}, locale))
890
+ }
891
+ try {
892
+ const oldSession = chat.agent.session
893
+ const oldMessages = Array.isArray(oldSession.messages)
894
+ ? oldSession.messages.map(m => ({ ...m, content: ensureContentArray(m.content) }))
895
+ : []
896
+ const newChat = await this.createChat(key, input)
897
+ if (newChat.agent?.session && oldMessages.length) {
898
+ newChat.agent.session.messages = oldMessages
899
+ const sessions = this.ctx.get?.('sessions') || this.ctx.sessions
900
+ try { await sessions?.flush(newChat.agent.session) } catch {}
901
+ }
902
+ this.chats.set(key, newChat)
903
+ return reply(`🔀 Forked session!\nOld session: ${oldSession.id}\nNew session: ${newChat.agent.session.id}\nContext preserved (${oldMessages.length} messages).`)
904
+ } catch (err) {
905
+ return reply(`Fork error: ${err.message}`)
906
+ }
907
+ }
908
+
909
+ if (cmd === '/files') {
910
+ const subPath = parts.slice(1).join(' ').trim() || '.'
911
+ const agentCwd = this.config.agent?.cwd || process.cwd()
912
+ const res = await listFiles(agentCwd, subPath)
913
+ if (!res.ok) return reply(`❌ ${res.error}`)
914
+ return reply(res.formattedText)
915
+ }
916
+
917
+ if (cmd === '/get') {
918
+ const targetRel = parts.slice(1).join(' ').trim()
919
+ if (!targetRel) {
920
+ return reply('Specify file path to download: <code>/get &lt;path&gt;</code>\nBrowse: <code>/files</code>')
921
+ }
922
+ const agentCwd = this.config.agent?.cwd || process.cwd()
923
+ const maxDocBytes = Number(this.config.media?.maxDocBytes) || 50 * 1024 * 1024
924
+ const res = await getFileForDownload(agentCwd, targetRel, maxDocBytes)
925
+ if (!res.ok) return reply(`❌ ${res.error}`)
926
+ const file = {
927
+ name: res.name,
928
+ mime: res.mime,
929
+ kind: 'document',
930
+ bytes: res.bytes,
931
+ dataBase64: res.bytes.toString('base64'),
932
+ }
933
+ return reply({ text: `📄 File: <b>${res.name}</b> (${formatFileSize(res.size)})`, files: [file] })
934
+ }
935
+
936
+ if (cmd === '/new') {
937
+ const chat = this.chats.get(key)
938
+ if (chat) {
939
+ if (chat.abort) chat.abort.abort()
940
+ chat.pendingMedia = []
941
+ this.sessionToChat.delete(String(chat.agent.session.id))
942
+ this.chats.delete(key)
943
+ await chat.dispose()
944
+ return reply('Session reset.')
945
+ }
946
+ return reply(t('msg.no_active_session', {}, locale))
947
+ }
948
+
949
+ if (cmd === '/whoami') {
950
+ const lines = [`User ID: ${userId}`]
951
+ if (chatId) lines.push(`chatId: ${chatId}`)
952
+ if (threadId) lines.push(`threadId: ${threadId}`)
953
+ return reply(lines.join('\n'))
954
+ }
955
+
956
+ if (cmd === '/stop') {
957
+ const chat = this.chats.get(key)
958
+ if (chat?.turnActive || chat?.abort) {
959
+ try { chat.abort?.abort() } catch {}
960
+ releaseChatTurn(chat)
961
+ chat.turnActive = false
962
+ return reply(t('msg.turn_stopped', {}, locale))
963
+ }
964
+ return reply('Nothing to stop.')
965
+ }
966
+
967
+ if (cmd === '/status') {
968
+ let modelLine = 'model: (not set)'
969
+ try {
970
+ const sel = this.resolveAgentModel()
971
+ modelLine = `model: ${sel.provider}/${sel.model}`
972
+ } catch (e) {
973
+ modelLine = `model: ${e.message}`
974
+ }
975
+ const home = this.resolveHomeTarget(platform || 'telegram')
976
+ const homeLine = home
977
+ ? `home: chat ${home.chatId}${home.threadId ? ` topic ${home.threadId}` : ''}`
978
+ : 'home: (not set)'
979
+ const pending = this.pairing.listPending().length
980
+ const up = Math.max(0, Math.round((Date.now() - this.stats.startedAt) / 1000))
981
+ const hh = String(Math.floor(up / 3600)).padStart(2, '0')
982
+ const mm = String(Math.floor((up % 3600) / 60)).padStart(2, '0')
983
+ const ss = String(up % 60).padStart(2, '0')
984
+ return reply([
985
+ 'Messenger gateway',
986
+ `adapters: ${[...this.adapters.keys()].join(', ') || '(none)'}`,
987
+ `active chats: ${this.chats.size}`,
988
+ modelLine,
989
+ homeLine,
990
+ `pairing pending: ${pending}`,
991
+ `transport: ${this.tg().transport || 'poll'}`,
992
+ `sessionScope: ${this.config.agent?.sessionScope || 'user'}`,
993
+ `delivered: ${this.stats.sent}`,
994
+ `errors: ${this.stats.errors}`,
995
+ `polling conflict: ${this.tgAdapter?.pollingConflict ? 'yes' : 'no'}`,
996
+ `uptime: ${hh}:${mm}:${ss}`,
997
+ ].join('\n'))
998
+ }
999
+
1000
+ if (cmd === '/model') {
1001
+ if (parts.length >= 3) {
1002
+ if (!this.isUserAllowed(userId)) return reply(t('msg.not_allowed', {}, locale))
1003
+ const provider = parts[1]
1004
+ const model = parts.slice(2).join(' ')
1005
+ try {
1006
+ const adm = this.ctx.get('agentDefaultModel')
1007
+ if (adm?.saveSelection) {
1008
+ await adm.saveSelection({ provider, model })
1009
+ }
1010
+ this.config.agent = { ...this.config.agent, provider, model }
1011
+ try {
1012
+ await this.hooks?.persistAgentModel?.({ provider, model })
1013
+ } catch (e) {
1014
+ this.ctx.logger?.warn?.(`persist agent model: ${e.message}`)
1015
+ }
1016
+ return reply(t('model.switched', { provider, model }, locale))
1017
+ } catch (e) {
1018
+ return reply(`Failed to switch model: ${e.message}`)
1019
+ }
1020
+ }
1021
+ try {
1022
+ const current = this.resolveAgentModel()
1023
+ const catalog = await listModelCatalog(this.ctx, current)
1024
+ if (!catalog.providers.length) {
1025
+ return reply(`Current model: <code>${current.provider}/${current.model}</code>\nSwitch: <code>/model &lt;provider&gt; &lt;model&gt;</code>`)
1026
+ }
1027
+ const kb = buildProvidersKeyboard(catalog.providers, current)
1028
+ return reply([
1029
+ t('model.title', {}, locale),
1030
+ t('model.current', { current: `${current.provider}/${current.model}` }, locale),
1031
+ ].join('\n'), {
1032
+ replyMarkup: kb,
1033
+ })
1034
+ } catch (e) {
1035
+ return reply(e.message)
1036
+ }
1037
+ }
1038
+
1039
+ if (cmd === '/pair') {
1040
+ if (!this.isUserAllowed(userId)) return reply('Only users in allowlist can approve /pair.')
1041
+ const code = parts[1]
1042
+ if (!code) return reply('Usage: /pair CODE')
1043
+ const res = this.pairing.approveCode(code, userId)
1044
+ if (!res.ok) return reply(`Failed: ${res.error}`)
1045
+ const merged = this.effectiveAllowedIds()
1046
+ for (const a of this.adapterList) a.setAllowedUserIds?.(merged)
1047
+ try { await this.hooks?.persistAllowedUserIds?.(merged) } catch (e) {
1048
+ this.ctx.logger?.warn?.(`persist allowlist: ${e.message}`)
1049
+ }
1050
+ return reply(`Approved user ID ${res.userId}${res.username ? ` (@${res.username})` : ''}.`)
1051
+ }
1052
+
1053
+ if (cmd === '/sethome') {
1054
+ if (!this.isUserAllowed(userId)) return reply(t('msg.not_allowed', {}, locale))
1055
+ const name = normalizeHomeName(parts[1] || 'default') || 'default'
1056
+ try {
1057
+ const nextTg = upsertHome(this.tg(), { name, chatId, threadId })
1058
+ await this.hooks?.persistHomes?.(nextTg)
1059
+ this.config.telegram = nextTg
1060
+ return reply(`Home "${name}": chat ${chatId}${threadId ? ` topic ${threadId}` : ''}`)
1061
+ } catch (e) {
1062
+ return reply(`Failed to save home: ${e.message}`)
1063
+ }
1064
+ }
1065
+
1066
+ if (cmd === '/home') {
1067
+ const homes = listHomes(this.tg())
1068
+ if (!homes.length) return reply('Home is not set. /sethome or /sethome <name>')
1069
+ return reply(['Homes:', ...homes.map((h) => `• ${h.name}: chat ${h.chatId}${h.threadId ? ` topic ${h.threadId}` : ''}`)].join('\n'))
1070
+ }
1071
+
1072
+ if (cmd === '/setalert') {
1073
+ if (!this.isUserAllowed(userId)) return reply(t('msg.not_allowed', {}, locale))
1074
+ const nextTg = {
1075
+ ...this.tg(),
1076
+ alerts: {
1077
+ ...(this.tg().alerts || {}),
1078
+ enabled: true,
1079
+ chatId,
1080
+ threadId: threadId || 0,
1081
+ },
1082
+ }
1083
+ this.config.telegram = nextTg
1084
+ try { await this.hooks?.persistHomes?.(nextTg) } catch {}
1085
+ return reply(`🔔 This chat assigned as alert channel (chat: ${chatId}${threadId ? `, topic: ${threadId}` : ''}).`)
1086
+ }
1087
+
1088
+ if (cmd === '/alert') {
1089
+ const sub = parts[1]?.toLowerCase()
1090
+ if (sub === 'test') {
1091
+ const target = resolveAlertTarget(this)
1092
+ if (!target) return reply('Alert channel not configured. Configure: /setalert')
1093
+ await this.sendAlert('status', { title: 'Test Alert', details: `Sent by user ID ${userId}` })
1094
+ return reply('Test alert sent to alert channel.')
1095
+ }
1096
+ const target = resolveAlertTarget(this)
1097
+ const alertsCfg = this.tg().alerts || {}
1098
+ return reply([
1099
+ '🔔 <b>Alert Channel:</b>',
1100
+ `Status: ${alertsCfg.enabled ? 'enabled' : 'disabled'}`,
1101
+ `Chat: ${target ? `${target.chatId}${target.threadId ? ` (topic: ${target.threadId})` : ''}` : '(not assigned)'}`,
1102
+ `Events: ${(alertsCfg.events || ['error', 'pairing']).join(', ')}`,
1103
+ '',
1104
+ 'Commands:',
1105
+ '/setalert assign current chat as alert channel',
1106
+ '/alert test — send test alert',
1107
+ ].join('\n'))
1108
+ }
1109
+
1110
+ if (cmd === '/remind') {
1111
+ const sub = parts[1]?.toLowerCase()
1112
+ if (sub === 'list') {
1113
+ const active = await this.scheduler.list(chatId)
1114
+ if (!active.length) return reply('No active reminders for this chat.')
1115
+ const lines = [
1116
+ '⏰ <b>Active Reminders:</b>',
1117
+ '',
1118
+ ...active.map((tItem) => {
1119
+ const left = formatRemaining(tItem.dueAt - Date.now(), locale)
1120
+ return `• <code>${tItem.id}</code> (in ${left}): ${tItem.text}`
1121
+ }),
1122
+ '',
1123
+ 'Cancel: <code>/remind cancel ID</code>',
1124
+ ]
1125
+ return reply(lines.join('\n'))
1126
+ }
1127
+ if (sub === 'cancel') {
1128
+ const targetId = parts[2]?.trim()
1129
+ if (!targetId) return reply('Specify reminder ID: <code>/remind cancel ID</code>')
1130
+ const ok = await this.scheduler.cancel(targetId, chatId)
1131
+ return reply(ok ? `✅ Reminder <code>${targetId}</code> cancelled.` : `❌ Reminder <code>${targetId}</code> not found.`)
1132
+ }
1133
+ const timeArg = parts[1]
1134
+ const textArg = parts.slice(2).join(' ').trim()
1135
+ const delayMs = parseRelativeTime(timeArg)
1136
+ if (!delayMs || !textArg) {
1137
+ return reply([
1138
+ '⏰ <b>Reminders:</b>',
1139
+ 'Create: <code>/remind &lt;time&gt; &lt;text&gt;</code>',
1140
+ 'Examples: <code>/remind 10m Call colleague</code>, <code>/remind 2h Check deploy</code>',
1141
+ 'List: <code>/remind list</code>',
1142
+ 'Cancel: <code>/remind cancel ID</code>',
1143
+ ].join('\n'))
1144
+ }
1145
+ const dueAt = Date.now() + delayMs
1146
+ const task = await this.scheduler.schedule({
1147
+ platform: platform || 'telegram',
1148
+ chatId,
1149
+ threadId: threadId || 0,
1150
+ userId,
1151
+ text: textArg,
1152
+ dueAt,
1153
+ })
1154
+ const left = formatRemaining(delayMs, locale)
1155
+ return reply(t('remind.scheduled', { time: new Date(dueAt).toLocaleTimeString(), duration: left, text: textArg }, locale))
1156
+ }
1157
+
1158
+ if (cmd === '/voice') {
1159
+ const sub = String(parts[1] || 'status').toLowerCase()
1160
+ if (sub === 'summary') {
1161
+ const val = parts[2]?.toLowerCase()
1162
+ if (val === 'on' || val === 'off') {
1163
+ if (!this.config.tts) this.config.tts = {}
1164
+ this.config.tts.voiceSummary = val === 'on'
1165
+ return reply(`Voice summary (TL;DR): ${val === 'on' ? 'enabled' : 'disabled'}`)
1166
+ }
1167
+ const state = this.config.tts?.voiceSummary ? 'on' : 'off'
1168
+ return reply(`Voice summary (TL;DR): ${state}\nToggle: <code>/voice summary on|off</code>`)
1169
+ }
1170
+ if (sub === 'on' || sub === 'off') {
1171
+ this.voicePrefs.set(userId, sub === 'on')
1172
+ return reply(sub === 'on' ? 'Voice replies: on (for you)' : 'Voice replies: off (for you)')
1173
+ }
1174
+ const pref = this.voicePrefs.get(userId)
1175
+ const mode = this.tg().voiceMode || 'mirror'
1176
+ const prefLine = pref === null ? 'not set (/voice on|off)' : (pref ? 'on' : 'off')
1177
+ const summaryState = this.config.tts?.voiceSummary ? 'on' : 'off'
1178
+ return reply(`voiceMode=${mode}\nyour /voice: ${prefLine}\nglobal tts: ${this.config.tts?.enabled ? 'on' : 'off'}\nvoice summary: ${summaryState}`)
1179
+ }
1180
+
1181
+ if (cmd === '/topic') {
1182
+ const topicName = parts.slice(1).join(' ').trim()
1183
+ if (!topicName) {
1184
+ return reply('Usage: <code>/topic &lt;name&gt;</code>\nCreates a new topic in supergroup with an isolated session.')
1185
+ }
1186
+ const tgAdapter = this.getAdapter('telegram')
1187
+ if (!tgAdapter?.createForumTopic) {
1188
+ return reply('Topic creation is available only in Telegram.')
1189
+ }
1190
+ try {
1191
+ const res = await tgAdapter.createForumTopic(chatId, topicName)
1192
+ const newThreadId = res?.message_thread_id
1193
+ await reply(`🎯 Created new topic <b>«${topicName}»</b> (ID: <code>${newThreadId}</code>).\nSwitch to the topic to continue working!`)
1194
+ if (newThreadId) {
1195
+ await tgAdapter.sendTo(chatId, {
1196
+ text: `👋 Hello! This is an isolated session for task <b>«${topicName}»</b>.\nHow can I help?`,
1197
+ }, { threadId: newThreadId })
1198
+ }
1199
+ return
1200
+ } catch (err) {
1201
+ return reply(`Failed to create topic: ${err.message}\n(Ensure the bot is group administrator with Manage Topics permission)`)
1202
+ }
1203
+ }
1204
+
1205
+ if (cmd === '/top') {
1206
+ const mem = process.memoryUsage()
1207
+ const rssMb = (mem.rss / 1024 / 1024).toFixed(1)
1208
+ const heapMb = (mem.heapUsed / 1024 / 1024).toFixed(1)
1209
+ const sec = Math.floor((Date.now() - this.stats.startedAt) / 1000)
1210
+ const hh = String(Math.floor(sec / 3600)).padStart(2, '0')
1211
+ const mm = String(Math.floor((sec % 3600) / 60)).padStart(2, '0')
1212
+ const ss = String(sec % 60).padStart(2, '0')
1213
+ let activeReminders = 0
1214
+ try { activeReminders = (await this.scheduler.list()).length } catch {}
1215
+ let currentModel = 'not set'
1216
+ try {
1217
+ const m = this.resolveAgentModel()
1218
+ currentModel = `${m.provider}/${m.model}`
1219
+ } catch {}
1220
+
1221
+ return reply([
1222
+ '📊 <b>DSH System & Resources:</b>',
1223
+ `• <b>Memory (RSS):</b> ${rssMb} MB`,
1224
+ `• <b>Heap:</b> ${heapMb} MB`,
1225
+ `• <b>Uptime:</b> ${hh}:${mm}:${ss}`,
1226
+ `• <b>Active chats:</b> ${this.chats.size}`,
1227
+ `• <b>Queued reminders:</b> ${activeReminders}`,
1228
+ `• <b>Active model:</b> <code>${currentModel}</code>`,
1229
+ `• <b>Messages sent:</b> ${this.stats.sent}`,
1230
+ `• <b>Errors:</b> ${this.stats.errors}`,
1231
+ ].join('\n'))
1232
+ }
1233
+
1234
+ if (cmd === '/keyboard') {
1235
+ const sub = String(parts[1] || '').toLowerCase()
1236
+ const tgAdapter = this.getAdapter('telegram')
1237
+ if (sub === 'on') {
1238
+ if (tgAdapter) tgAdapter.quickActions = true
1239
+ return reply('Quick action keyboard enabled.', {
1240
+ replyMarkup: buildQuickActionsKeyboard(),
1241
+ })
1242
+ }
1243
+ if (sub === 'off') {
1244
+ if (tgAdapter) tgAdapter.quickActions = false
1245
+ return reply('Quick action keyboard disabled.', {
1246
+ replyMarkup: REMOVE_REPLY_KEYBOARD,
1247
+ })
1248
+ }
1249
+ const curState = tgAdapter?.quickActions ? 'enabled' : 'disabled'
1250
+ return reply([
1251
+ '⌨️ <b>Quick Action Keyboard:</b>',
1252
+ `Current state: <b>${curState}</b>`,
1253
+ '',
1254
+ 'Commands:',
1255
+ '<code>/keyboard on</code> show buttons',
1256
+ '<code>/keyboard off</code> hide buttons',
1257
+ ].join('\n'))
1258
+ }
1259
+
1260
+ if (cmd === '/tts') {
1261
+ const sub = String(parts[1] || 'status').toLowerCase()
1262
+ if (sub === 'on' || sub === 'off') {
1263
+ this.chatTts.set(chatId, sub === 'on')
1264
+ return reply(sub === 'on' ? 'Speech in this chat: on' : 'Speech in this chat: off')
1265
+ }
1266
+ const cur = this.chatTts.get(chatId)
1267
+ const line = cur === null ? 'not set (/tts on|off)' : (cur ? 'on' : 'off')
1268
+ return reply(`Speech in this chat: ${line}\nglobal tts: ${this.config.tts?.enabled ? 'on' : 'off'}`)
1269
+ }
1270
+
1271
+ if (cmd === '/mute') {
1272
+ this.setMuted(chatId, true)
1273
+ return reply(t('msg.muted_on', {}, locale))
1274
+ }
1275
+
1276
+ if (cmd === '/unmute') {
1277
+ this.setMuted(chatId, false)
1278
+ return reply(t('msg.muted_off', {}, locale))
1279
+ }
1280
+
1281
+ return reply(t('msg.unknown_command', { cmd }, locale))
1282
+ }
1283
+
1284
+ collectDynamicSkills() {
1285
+ const skills = []
1286
+ try {
1287
+ const skillsService = this.ctx.get?.('skills') || this.ctx.skills
1288
+ const allSkills = skillsService?.list?.() || []
1289
+ for (const s of allSkills) {
1290
+ if (!s || !s.name) continue
1291
+ if (s.userInvocable === false) continue
1292
+ skills.push({
1293
+ name: String(s.name),
1294
+ description: String(s.description || s.title || `Skill ${s.name}`).slice(0, 256),
1295
+ })
1296
+ }
1297
+ } catch (err) {
1298
+ this.ctx.logger?.debug?.(`Failed to collect dynamic skills: ${err?.message || err}`)
1299
+ }
1300
+ return skills
1301
+ }
1302
+
1303
+ async syncTelegramCommands() {
1304
+ const tgAdapter = this.adapters.get('telegram')
1305
+ if (!tgAdapter || typeof tgAdapter.registerCommands !== 'function') return
1306
+ const baseCommands = this.config.telegram?.commands || []
1307
+ const dynamicSkills = this.collectDynamicSkills()
1308
+ const merged = mergeDynamicCommands(baseCommands, dynamicSkills, 100)
1309
+ try {
1310
+ await tgAdapter.registerCommands(merged)
1311
+ this.ctx.logger?.info?.(`Synced ${merged.length} Telegram commands (including ${dynamicSkills.length} dynamic skills)`)
1312
+ } catch (err) {
1313
+ this.ctx.logger?.warn?.(`Failed to sync Telegram commands: ${err?.message || err}`)
1314
+ }
1315
+ }
1316
+
1317
+ async mirrorSessionToForumTopic(session) {
1318
+ if (!session || !session.id) return
1319
+ const sessionId = String(session.id)
1320
+ if (sessionId.startsWith('msgw-')) return
1321
+ if (this.sessionToThread.has(sessionId)) return
1322
+
1323
+ const tgCfg = this.config.telegram || {}
1324
+ if (!tgCfg.forumMirrorEnabled || !tgCfg.forumMirrorChatId) return
1325
+
1326
+ const tgAdapter = this.adapters.get('telegram')
1327
+ if (!tgAdapter || typeof tgAdapter.createForumTopic !== 'function') return
1328
+
1329
+ const forumChatId = tgCfg.forumMirrorChatId
1330
+ const title = String(session.title || session.meta?.name || `Session ${sessionId.slice(0, 8)}`).slice(0, 120)
1331
+
1332
+ try {
1333
+ const topic = await tgAdapter.createForumTopic(forumChatId, title)
1334
+ const threadId = topic?.message_thread_id
1335
+ if (!threadId) return
1336
+
1337
+ const threadKey = `${forumChatId}:${threadId}`
1338
+ this.sessionToThread.set(sessionId, { chatId: forumChatId, threadId })
1339
+ this.threadToSession.set(threadKey, sessionId)
1340
+
1341
+ const text = t('mirror.created', { sessionId, title }, 'en')
1342
+ await tgAdapter.sendTo(forumChatId, { text }, { threadId })
1343
+ this.ctx.logger?.info?.(`Mirrored session ${sessionId} to Telegram forum topic ${threadId} in ${forumChatId}`)
1344
+ } catch (err) {
1345
+ this.ctx.logger?.warn?.(`Failed to mirror session ${sessionId} to forum topic: ${err?.message || err}`)
1346
+ }
1347
+ }
1348
+
1349
+ async relayTurnToForumMirror(session, event) {
1350
+ if (!session || !session.id) return
1351
+ const sessionId = String(session.id)
1352
+ const threadInfo = this.sessionToThread.get(sessionId)
1353
+ if (!threadInfo) return
1354
+ if (this.pending.has(sessionId)) return
1355
+
1356
+ const tgAdapter = this.adapters.get('telegram')
1357
+ if (!tgAdapter) return
1358
+
1359
+ const messages = Array.isArray(session.messages)
1360
+ ? session.messages
1361
+ : (Array.isArray(session.history) ? session.history : [])
1362
+
1363
+ for (let i = messages.length - 1; i >= 0; i--) {
1364
+ const msg = messages[i]
1365
+ const role = msg.role || (msg.type === 'user' ? 'user' : 'assistant')
1366
+ if (role === 'assistant') {
1367
+ let text = ''
1368
+ if (typeof msg.content === 'string') text = msg.content
1369
+ else if (Array.isArray(msg.content)) {
1370
+ text = msg.content
1371
+ .map((p) => (typeof p === 'string' ? p : (p?.text || '')))
1372
+ .filter(Boolean)
1373
+ .join('\n')
1374
+ } else if (msg.text) text = msg.text
1375
+ const clean = stripReasoningPreamble(stripImageUrls(text)).trim()
1376
+ if (clean) {
1377
+ const maxLen = Number(this.config.agent?.maxMessageLength) || 4000
1378
+ const chunks = splitText(clean, maxLen)
1379
+ for (const chunk of chunks) {
1380
+ await tgAdapter.sendTo(threadInfo.chatId, { text: chunk }, { threadId: threadInfo.threadId })
1381
+ }
1382
+ }
1383
+ break
1384
+ }
1385
+ }
1386
+ }
1387
+
1388
+ async getOrCreateChat(key, input) {
1389
+ let chat = this.chats.get(key)
1390
+ if (!chat) {
1391
+ const threadKey = `${input.chatId}:${input.threadId || 0}`
1392
+ const existingSessionId = this.threadToSession.get(threadKey)
1393
+ chat = await this.createChat(key, input, existingSessionId)
1394
+ this.chats.set(key, chat)
1395
+ }
1396
+ chat.lastUsed = Date.now()
1397
+ chat.target = { platform: input.platform, chatId: input.chatId, threadId: input.threadId || 0 }
1398
+ return chat
1399
+ }
1400
+
1401
+ resolveAgentModel() {
1402
+ const agentCfg = this.config.agent || {}
1403
+ let provider = String(agentCfg.provider || '').trim()
1404
+ let model = String(agentCfg.model || '').trim()
1405
+ if (provider && model) return { provider, model }
1406
+ const selection = this.ctx.get('agentDefaultModel')?.currentSelection?.()
1407
+ if (!selection?.provider || !selection?.model) {
1408
+ throw new Error('Please select a model in Settings -> Models (or set agent.provider/model in profile)')
1409
+ }
1410
+ return { provider: provider || selection.provider, model: model || selection.model }
1411
+ }
1412
+
1413
+ async createChat(key, input, existingSessionId) {
1414
+ const { provider, model } = this.resolveAgentModel()
1415
+ const agentCfg = this.config.agent || {}
1416
+ const cwd = agentCfg.cwd || process.cwd()
1417
+ const self = this
1418
+ const agents = this.ctx.get?.('agents') || this.ctx.agents
1419
+ const targetSessionId = existingSessionId ? SessionId(existingSessionId) : SessionId(`msgw-${randomUUID()}`)
1420
+ const handle = await agents.create({
1421
+ sessionId: targetSessionId,
1422
+ meta: { cwd },
1423
+ agentOptions: { provider, model },
1424
+ setup: (agentCtx) => {
1425
+ installModelSelection(agentCtx, { current: { provider, model }, assembled: undefined })
1426
+ if (self.tg().approvalsEnabled !== false) {
1427
+ agentCtx.on('approval/request', (req, next) => self.answerApproval(key, req, next))
1428
+ }
1429
+ },
1430
+ })
1431
+ await handle.agent.whenIdle()
1432
+ const chat = {
1433
+ key, agent: handle.agent, dispose: handle.dispose, busy: Promise.resolve(),
1434
+ lastUsed: Date.now(), abort: undefined, pendingMedia: [], turnActive: false,
1435
+ sessionAllowlist: new Set(),
1436
+ target: input ? { platform: input.platform, chatId: input.chatId, threadId: input.threadId || 0 } : undefined,
1437
+ }
1438
+ this.sessionToChat.set(String(handle.agent.session.id), key)
1439
+ if (existingSessionId && input) {
1440
+ const threadKey = `${input.chatId}:${input.threadId || 0}`
1441
+ this.threadToSession.set(threadKey, existingSessionId)
1442
+ this.sessionToThread.set(existingSessionId, { chatId: input.chatId, threadId: input.threadId || 0 })
1443
+ }
1444
+ return chat
1445
+ }
1446
+
1447
+ async answerApproval(chatKeyValue, req, next) {
1448
+ try {
1449
+ const chat = this.chats.get(chatKeyValue)
1450
+ if (!chat?.target) return next()
1451
+ const tool = req.toolName || 'tool'
1452
+ if (chat.sessionAllowlist?.has(tool)) {
1453
+ return 'allowed-once'
1454
+ }
1455
+ const locale = this.resolveLocale(chat.target)
1456
+ const reason = req.reason ? `\n<i>${req.reason}</i>` : ''
1457
+ let detail = ''
1458
+ if (req.input && typeof req.input === 'object') {
1459
+ try {
1460
+ const jsonStr = JSON.stringify(req.input, null, 2)
1461
+ detail = `\n<pre><code>${jsonStr.slice(0, 500)}</code></pre>`
1462
+ } catch {}
1463
+ }
1464
+ const text = t('ask.confirm_title', { tool, reason: reason + detail }, locale)
1465
+ const buttons = [
1466
+ [
1467
+ { id: 'allow_once', text: t('ask.allow_once', {}, locale) },
1468
+ { id: 'allow_session', text: t('ask.allow_session', {}, locale) },
1469
+ { id: 'deny', text: t('ask.deny', {}, locale) },
1470
+ ],
1471
+ ]
1472
+ const result = await this.messengerAsk(chat.target, { text, buttons }, 300_000)
1473
+ if (result?.buttonId === 'allow_once' || result?.buttonId === 'allow') return 'allowed-once'
1474
+ if (result?.buttonId === 'allow_session') {
1475
+ if (!chat.sessionAllowlist) chat.sessionAllowlist = new Set()
1476
+ chat.sessionAllowlist.add(tool)
1477
+ return 'allowed-once'
1478
+ }
1479
+ if (result?.buttonId === 'deny') return 'rejected'
1480
+ return next()
1481
+ } catch {
1482
+ return next()
1483
+ }
1484
+ }
1485
+
1486
+ async buildUserContent(input, signal) {
1487
+ const { text, attachments = [], replyText, steer, personaOverride } = input
1488
+ const parts = []
1489
+ parts.push(String(this.config.agent?.instructionPrefix || MESSENGER_RELAY_INSTRUCTION))
1490
+ const activePersonaId = personaOverride || this.personas.getPersonaForChat(input.chatId, input.threadId)
1491
+ const activePersona = getPersona(activePersonaId)
1492
+ if (activePersona?.instruction) {
1493
+ parts.push(`[Persona: ${activePersona.name} (${activePersona.icon})]\n${activePersona.instruction}`)
1494
+ }
1495
+ if (steer) parts.push('[Steer / addition to current turn: combine with previous instruction, do not restart from scratch]')
1496
+ if (replyText?.trim()) parts.push(`[Replying to message: ${replyText.trim()}]`)
1497
+ const blocks = []
1498
+ for (const att of attachments) {
1499
+ if (att.kind === 'photo' || (att.kind === 'sticker' && att.mime?.startsWith('image/'))) {
1500
+ try {
1501
+ const { ref } = await attachInboundPhoto(this.ctx, att, {
1502
+ signal,
1503
+ maxBytes: Number(this.config.media?.maxImageBytes) || 20 * 1024 * 1024,
1504
+ })
1505
+ blocks.push({ type: 'image', attachment: ref })
1506
+ if (att.kind === 'sticker' && att.emoji) parts.push(`[Sticker ${att.emoji}]`)
1507
+ } catch (err) {
1508
+ if (signal?.aborted) throw err
1509
+ const msg = err instanceof Error ? err.message : String(err)
1510
+ parts.push(`[Failed to attach image: ${msg}]`)
1511
+ }
1512
+ } else if (att.kind === 'voice' || att.kind === 'audio') {
1513
+ try {
1514
+ const bytes = new Uint8Array(await readFile(att.path))
1515
+ const transcript = await transcribeVoice(this.baseUrl(), bytes, att.mime || 'audio/ogg', 'message', signal)
1516
+ parts.push(transcript ? `[Voice message transcript: ${transcript}]` : '[Voice message (unrecognized)]')
1517
+ } catch (err) {
1518
+ if (signal?.aborted) throw err
1519
+ const msg = err instanceof Error ? err.message : String(err)
1520
+ this.ctx.logger?.warn?.(`voice: ${msg}`)
1521
+ parts.push(`[Voice message (dsh-voice unavailable: ${msg})]`)
1522
+ }
1523
+ } else if (att.kind === 'document' || att.kind === 'video' || att.kind === 'animation' || att.kind === 'sticker') {
1524
+ let parsed = null
1525
+ if (att.kind === 'document' && att.path) {
1526
+ try {
1527
+ const maxDocBytes = Number(this.config.media?.maxTextInjectBytes) || 100 * 1024
1528
+ parsed = await parseDocument(att.path, { maxBytes: maxDocBytes })
1529
+ } catch {}
1530
+ }
1531
+ parts.push(formatInboundDocument(att, parsed))
1532
+ } else {
1533
+ parts.push(`[File: ${att.path}${att.name ? ` (${att.name})` : ''}]`)
1534
+ }
1535
+ }
1536
+ const photoHint = photoOnlyHint(attachments, text)
1537
+ if (photoHint) parts.push(photoHint)
1538
+ const docHint = documentOnlyHint(attachments, text)
1539
+ if (docHint) parts.push(docHint)
1540
+ if (text?.trim()) parts.push(text.trim())
1541
+ const textBlock = parts.filter(Boolean).join('\n\n')
1542
+ if (textBlock) blocks.unshift({ type: 'text', text: textBlock })
1543
+ if (!blocks.length) blocks.push({ type: 'text', text: '(empty message)' })
1544
+ return blocks
1545
+ }
1546
+
1547
+ async runTurn(chat, input, signal) {
1548
+ const { reply, typing, startStream, startProgress, react, inboundWasVoice, userId } = input
1549
+ chat.turnActive = true
1550
+ const sessionId = chat.agent.session.id
1551
+ const tg = this.tg()
1552
+ const streaming = tg.streaming === true && typeof startStream === 'function'
1553
+ const progressEnabled = tg.progressEnabled !== false
1554
+ const collector = { parts: [], lastText: '', streamText: '', toolName: '', images: [], reason: undefined, onStream: undefined }
1555
+ this.pending.set(sessionId, collector)
1556
+ let stopTyping = () => {}
1557
+ let stream = null
1558
+ let scheduler = null
1559
+ let progress = null
1560
+ try {
1561
+ if (signal.aborted) return
1562
+ if (typeof react === 'function' && tg.reactionsEnabled !== false) {
1563
+ react('👀').catch?.(() => {})
1564
+ }
1565
+ if (typeof typing === 'function') stopTyping = startTypingHeartbeat(typing, 4000)
1566
+ if (streaming) {
1567
+ try {
1568
+ stream = await startStream()
1569
+ scheduler = createEditScheduler((text) => stream.edit(text), Number(tg.streamEditIntervalMs) || 1200)
1570
+ collector.onStream = (text, toolName) => {
1571
+ if (text) stopTyping()
1572
+ if (!progressEnabled && !text) return
1573
+ scheduler.push(buildStreamPreview(text, progressEnabled ? toolName : ''))
1574
+ }
1575
+ if (progressEnabled) scheduler.push(buildStreamPreview('', ''))
1576
+ } catch (e) {
1577
+ this.ctx.logger?.warn?.(`stream start: ${e.message}`)
1578
+ stream = null
1579
+ }
1580
+ } else if (progressEnabled && typeof startProgress === 'function') {
1581
+ try {
1582
+ progress = await startProgress()
1583
+ const editProgress = createEditScheduler((text) => progress.edit(text), 800)
1584
+ collector.onStream = (_text, toolName) => {
1585
+ editProgress.push(formatProgressLine(toolName))
1586
+ }
1587
+ } catch (e) {
1588
+ this.ctx.logger?.warn?.(`progress start: ${e.message}`)
1589
+ progress = null
1590
+ }
1591
+ }
1592
+
1593
+
1594
+ const content = await this.buildUserContent(input, signal)
1595
+ chat.agent.followup(createUserMessage({
1596
+ content: ensureContentArray(content),
1597
+ source: { kind: 'user', plugin: PLUGIN, form: 'relay', origin: 'telegram' },
1598
+ }))
1599
+ const turnTimeoutMs = Number(this.config.agent?.turnTimeoutMs) || 600_000
1600
+ await whenIdleWithTimeout(chat.agent, turnTimeoutMs, signal)
1601
+ if (signal.aborted) {
1602
+ if (progress) try { await progress.remove() } catch {}
1603
+ if (typeof react === 'function') react('').catch?.(() => {})
1604
+ const stoppedMsg = t('msg.turn_stopped', {}, this.resolveLocale(input))
1605
+ if (stream) try { await stream.finalize(stoppedMsg) } catch {}
1606
+ else return reply(stoppedMsg)
1607
+ return
1608
+ }
1609
+ const sessions = this.ctx.get?.('sessions') || this.ctx.sessions
1610
+ await sessions?.flush?.(chat.agent.session)
1611
+ if (progress) try { await progress.remove() } catch {}
1612
+ progress = null
1613
+ if (typeof react === 'function') react('').catch?.(() => {})
1614
+ const rawAnswer = stripReasoningPreamble(stripImageUrls(collector.lastText || collector.streamText || collector.parts.join('\n\n')))
1615
+ const processed = processDiagramsAndTables(rawAnswer, {
1616
+ artifactPreviews: this.tg().artifactPreviews !== false,
1617
+ })
1618
+ const answer = processed.text
1619
+ if (collector.reason?.kind === 'error') {
1620
+ const err = collector.reason.error
1621
+ const msg = t('msg.agent_error', { code: err?.code || 'error', message: err?.message || 'unknown' }, this.resolveLocale(input))
1622
+ this.sendAlert('error', {
1623
+ code: err?.code || 'AGENT_ERROR',
1624
+ message: err?.message || 'unknown',
1625
+ sessionId,
1626
+ chatId: input.chatId,
1627
+ threadId: input.threadId,
1628
+ }).catch(() => {})
1629
+ if (stream) { await scheduler?.flush(); await stream.finalize(msg) }
1630
+ else await reply(msg)
1631
+ return
1632
+ }
1633
+ const files = await buildOutboundFiles(this.ctx, this.baseUrl(), collector, { signal, logger: this.ctx.logger })
1634
+ const allFiles = [...files, ...(processed.files || [])]
1635
+ if (!answer && !allFiles.length) {
1636
+ const noResp = t('msg.no_response', {}, this.resolveLocale(input))
1637
+ if (stream) { await scheduler?.flush(); await stream.finalize(noResp) }
1638
+ else await reply(noResp)
1639
+ return
1640
+ }
1641
+ const maxLen = Number(this.config.agent?.maxMessageLength) || 4000
1642
+ const chunks = answer ? splitText(answer, maxLen) : ['']
1643
+ if (stream) {
1644
+ await scheduler?.flush()
1645
+ await stream.finalize(chunks[0] || t('msg.no_response', {}, this.resolveLocale(input)))
1646
+ for (let i = 1; i < chunks.length; i++) await reply({ text: chunks[i] })
1647
+ if (allFiles.length) await reply({ files: allFiles })
1648
+ } else {
1649
+ for (let i = 0; i < chunks.length; i++) {
1650
+ await reply({ text: chunks[i] || undefined, files: i === 0 ? allFiles : [] })
1651
+ }
1652
+ }
1653
+ const chatTtsPref = this.chatTts.get(chat.target?.chatId)
1654
+ const speak = shouldSpeakReply({
1655
+ globalTts: Boolean(this.config.tts?.enabled),
1656
+ voiceMode: this.tg().voiceMode || 'mirror',
1657
+ inboundWasVoice: Boolean(inboundWasVoice),
1658
+ userPref: this.voicePrefs.get(userId),
1659
+ chatPref: chatTtsPref,
1660
+ })
1661
+ if (speak && !signal.aborted) {
1662
+ const isVoiceSummary = this.config.tts?.voiceSummary === true
1663
+ const ttsText = prepareTtsText(answer, this.config.tts?.maxChars, { voiceSummary: isVoiceSummary })
1664
+ if (ttsText) {
1665
+ try {
1666
+ const spoken = await speakText(this.baseUrl(), ttsText, signal)
1667
+ const voiceFile = await toTelegramVoiceFile(spoken, { logger: this.ctx.logger })
1668
+ if (!signal.aborted && voiceFile) await reply({ files: [voiceFile] })
1669
+ } catch (e) {
1670
+ if (!signal?.aborted) this.ctx.logger?.warn?.(`tts: ${e.message}`)
1671
+ }
1672
+ }
1673
+ }
1674
+ } catch (err) {
1675
+ if (!signal?.aborted) {
1676
+ this.sendAlert('error', {
1677
+ code: err?.code || 'EXCEPTION',
1678
+ message: err?.message || String(err),
1679
+ sessionId,
1680
+ chatId: input.chatId,
1681
+ threadId: input.threadId,
1682
+ }).catch(() => {})
1683
+ try {
1684
+ const excMsg = t('msg.exception', { message: err.message }, this.resolveLocale(input))
1685
+ if (stream) await stream.finalize(excMsg)
1686
+ else await reply(excMsg)
1687
+ } catch {}
1688
+ }
1689
+ } finally {
1690
+ stopTyping()
1691
+ if (progress) try { await progress.remove() } catch {}
1692
+ if (typeof react === 'function') react('').catch?.(() => {})
1693
+ chat.turnActive = false
1694
+ chat.abort = undefined
1695
+ this.pending.delete(sessionId)
1696
+ }
1697
+ }
1698
+
1699
+ reapIdle() {
1700
+ const rawTimeout = Number(this.config.agent?.idleTimeoutMs)
1701
+ const timeout = Number.isFinite(rawTimeout) && rawTimeout > 0 ? rawTimeout : 86_400_000
1702
+ const now = Date.now()
1703
+ for (const [key, chat] of this.chats) {
1704
+ if (!chat.turnActive && now - chat.lastUsed > timeout) {
1705
+ if (chat.agent?.session?.id) {
1706
+ this.sessionToChat.delete(String(chat.agent.session.id))
1707
+ }
1708
+ this.chats.delete(key)
1709
+ chat.dispose().catch(() => {})
1710
+ }
1711
+ }
1712
+ }
1713
+
1714
+ async approvePairingCode(code, actorUserId = 0) {
1715
+ const res = this.pairing.approveCode(code, actorUserId)
1716
+ if (!res.ok) return res
1717
+ const merged = this.effectiveAllowedIds()
1718
+ for (const a of this.adapterList) a.setAllowedUserIds?.(merged)
1719
+ try { await this.hooks?.persistAllowedUserIds?.(merged) } catch (e) {
1720
+ this.ctx.logger?.warn?.(`persist allowlist: ${e.message}`)
1721
+ }
1722
+ return { ...res, allowedUserIds: merged }
1723
+ }
1724
+
1725
+ rejectPairingCode(code) {
1726
+ return this.pairing.rejectCode(code)
1727
+ }
1728
+
1729
+ async probeTelegram(timeoutMs = 10000) {
1730
+ const adapter = this.getAdapter('telegram')
1731
+ if (!adapter) {
1732
+ return { ok: false, error: 'Telegram adapter not initialized' }
1733
+ }
1734
+ if (typeof adapter.probeHealth === 'function') {
1735
+ return adapter.probeHealth(timeoutMs)
1736
+ }
1737
+ return { ok: false, error: 'probeHealth not implemented on adapter' }
1738
+ }
1739
+
1740
+ getBotInfo() {
1741
+ const adapter = this.getAdapter('telegram')
1742
+ return {
1743
+ botId: adapter?.botId || 0,
1744
+ botUsername: adapter?.botUsername || '',
1745
+ pollingConflict: Boolean(adapter?.pollingConflict),
1746
+ }
1747
+ }
1748
+
1749
+ async messengerAskFromAgent(agent, payload, timeoutMs) {
1750
+ const sessionId = String(agent?.session?.id || '')
1751
+ const key = this.sessionToChat.get(sessionId)
1752
+ const chat = key ? this.chats.get(key) : null
1753
+ if (!chat?.target) throw new Error('messenger_ask: no telegram chat for this agent session')
1754
+ return this.messengerAsk(chat.target, payload, timeoutMs)
1755
+ }
1756
+
1757
+ get messenger() {
1758
+ return {
1759
+ adapters: () => [...this.adapters.keys()],
1760
+ activeChats: () => this.chats.size,
1761
+ home: (name) => this.resolveHomeTarget('telegram', name),
1762
+ homes: () => listHomes(this.tg()),
1763
+ pairingPending: () => this.pairing.listPending(),
1764
+ pairingApproved: () => this.pairing.listApproved(),
1765
+ send: (target, payload) => this.messengerSend(target, payload),
1766
+ ask: (target, payload, timeoutMs) => this.messengerAsk(target, payload, timeoutMs),
1767
+ progress: (target, payload) => this.messengerProgress(target, payload),
1768
+ probeTelegram: (timeoutMs) => this.probeTelegram(timeoutMs),
1769
+ getBotInfo: () => this.getBotInfo(),
1770
+ }
1771
+ }
1772
+ }