botinabox 2.5.1 → 2.5.2

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.
Files changed (277) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +190 -190
  3. package/bin/botinabox.mjs +1 -1
  4. package/dist/channels/discord/adapter.d.ts +32 -0
  5. package/dist/channels/discord/adapter.js +70 -0
  6. package/dist/channels/discord/inbound.d.ts +25 -0
  7. package/dist/channels/discord/inbound.js +24 -0
  8. package/dist/channels/discord/models.d.ts +8 -0
  9. package/dist/channels/discord/models.js +5 -0
  10. package/dist/channels/discord/outbound.d.ts +14 -0
  11. package/dist/channels/discord/outbound.js +38 -0
  12. package/dist/channels/slack/adapter.d.ts +33 -0
  13. package/dist/channels/slack/adapter.js +74 -0
  14. package/dist/channels/slack/inbound.d.ts +59 -0
  15. package/dist/channels/slack/inbound.js +96 -0
  16. package/dist/channels/slack/index.d.ts +1 -1
  17. package/dist/channels/slack/models.d.ts +9 -0
  18. package/dist/channels/slack/models.js +5 -0
  19. package/dist/channels/slack/outbound.d.ts +12 -0
  20. package/dist/channels/slack/outbound.js +18 -0
  21. package/dist/channels/slack/transcribe.d.ts +41 -0
  22. package/dist/channels/slack/transcribe.js +106 -0
  23. package/dist/channels/webhook/adapter.d.ts +23 -0
  24. package/dist/channels/webhook/adapter.js +86 -0
  25. package/dist/channels/webhook/hmac.d.ts +13 -0
  26. package/dist/channels/webhook/hmac.js +26 -0
  27. package/dist/channels/webhook/models.d.ts +9 -0
  28. package/dist/channels/webhook/models.js +5 -0
  29. package/dist/channels/webhook/server.d.ts +20 -0
  30. package/dist/channels/webhook/server.js +91 -0
  31. package/dist/chat-pipeline-C-XlLGNl.d.ts +648 -0
  32. package/dist/chat-pipeline-CR1KF6eX.d.ts +652 -0
  33. package/dist/chat-pipeline-DisuC8SB.d.ts +643 -0
  34. package/dist/chat-pipeline-DuNX5WoL.d.ts +655 -0
  35. package/dist/chunk-2LGXQPEA.js +41 -0
  36. package/dist/chunk-3X3YKI4T.js +357 -0
  37. package/dist/chunk-D47AIFOD.js +351 -0
  38. package/dist/chunk-DSNJKNEW.js +328 -0
  39. package/dist/chunk-GS2JFL6I.js +144 -0
  40. package/dist/chunk-J6S6QMUY.js +144 -0
  41. package/dist/chunk-QLA6YOFN.js +22 -0
  42. package/dist/chunk-UACT2WXX.js +381 -0
  43. package/dist/cli/templates/config.yml.d.ts +7 -0
  44. package/dist/cli/templates/config.yml.js +61 -0
  45. package/dist/cli/templates/env.d.ts +1 -0
  46. package/dist/cli/templates/env.js +30 -0
  47. package/dist/cli/templates/index.ts.d.ts +2 -0
  48. package/dist/cli/templates/index.ts.js +30 -0
  49. package/dist/cli/templates/package.json.d.ts +5 -0
  50. package/dist/cli/templates/package.json.js +28 -0
  51. package/dist/cli.js +0 -0
  52. package/dist/connector-DDahQw-2.d.ts +63 -0
  53. package/dist/connectors/google/calendar-connector.d.ts +40 -0
  54. package/dist/connectors/google/calendar-connector.js +243 -0
  55. package/dist/connectors/google/gmail-connector.d.ts +42 -0
  56. package/dist/connectors/google/gmail-connector.js +345 -0
  57. package/dist/connectors/google/oauth.d.ts +48 -0
  58. package/dist/connectors/google/oauth.js +112 -0
  59. package/dist/connectors/google/types.d.ts +78 -0
  60. package/dist/connectors/google/types.js +2 -0
  61. package/dist/core/chat/auto-discovery.d.ts +16 -0
  62. package/dist/core/chat/auto-discovery.js +54 -0
  63. package/dist/core/chat/channel-registry.d.ts +45 -0
  64. package/dist/core/chat/channel-registry.js +96 -0
  65. package/dist/core/chat/chat-pipeline.d.ts +113 -0
  66. package/dist/core/chat/chat-pipeline.js +395 -0
  67. package/dist/core/chat/chat-responder.d.ts +90 -0
  68. package/dist/core/chat/chat-responder.js +185 -0
  69. package/dist/core/chat/formatter.d.ts +11 -0
  70. package/dist/core/chat/formatter.js +60 -0
  71. package/dist/core/chat/index.d.ts +24 -0
  72. package/dist/core/chat/index.js +18 -0
  73. package/dist/core/chat/message-interpreter.d.ts +91 -0
  74. package/dist/core/chat/message-interpreter.js +166 -0
  75. package/dist/core/chat/message-store.d.ts +66 -0
  76. package/dist/core/chat/message-store.js +131 -0
  77. package/dist/core/chat/notification-queue.d.ts +34 -0
  78. package/dist/core/chat/notification-queue.js +111 -0
  79. package/dist/core/chat/pipeline.d.ts +38 -0
  80. package/dist/core/chat/pipeline.js +89 -0
  81. package/dist/core/chat/policies.d.ts +16 -0
  82. package/dist/core/chat/policies.js +25 -0
  83. package/dist/core/chat/routing.d.ts +17 -0
  84. package/dist/core/chat/routing.js +36 -0
  85. package/dist/core/chat/session-key.d.ts +30 -0
  86. package/dist/core/chat/session-key.js +65 -0
  87. package/dist/core/chat/session-manager.d.ts +17 -0
  88. package/dist/core/chat/session-manager.js +23 -0
  89. package/dist/core/chat/text-chunker.d.ts +9 -0
  90. package/dist/core/chat/text-chunker.js +48 -0
  91. package/dist/core/chat/triage-router.d.ts +75 -0
  92. package/dist/core/chat/triage-router.js +142 -0
  93. package/dist/core/chat/types.d.ts +5 -0
  94. package/dist/core/chat/types.js +5 -0
  95. package/dist/core/config/defaults.d.ts +2 -0
  96. package/dist/core/config/defaults.js +38 -0
  97. package/dist/core/config/index.d.ts +6 -0
  98. package/dist/core/config/index.js +4 -0
  99. package/dist/core/config/interpolate.d.ts +5 -0
  100. package/dist/core/config/interpolate.js +27 -0
  101. package/dist/core/config/loader.d.ts +24 -0
  102. package/dist/core/config/loader.js +59 -0
  103. package/dist/core/config/schema.d.ts +5 -0
  104. package/dist/core/config/schema.js +119 -0
  105. package/dist/core/data/core-entity-contexts.d.ts +14 -0
  106. package/dist/core/data/core-entity-contexts.js +197 -0
  107. package/dist/core/data/core-migrations.d.ts +5 -0
  108. package/dist/core/data/core-migrations.js +45 -0
  109. package/dist/core/data/core-schema.d.ts +6 -0
  110. package/dist/core/data/core-schema.js +454 -0
  111. package/dist/core/data/data-store.d.ts +67 -0
  112. package/dist/core/data/data-store.js +218 -0
  113. package/dist/core/data/domain-entity-contexts.d.ts +29 -0
  114. package/dist/core/data/domain-entity-contexts.js +321 -0
  115. package/dist/core/data/domain-schema.d.ts +36 -0
  116. package/dist/core/data/domain-schema.js +323 -0
  117. package/dist/core/data/index.d.ts +7 -0
  118. package/dist/core/data/index.js +7 -0
  119. package/dist/core/data/types.d.ts +111 -0
  120. package/dist/core/data/types.js +1 -0
  121. package/dist/core/hooks/hook-bus.d.ts +18 -0
  122. package/dist/core/hooks/hook-bus.js +120 -0
  123. package/dist/core/hooks/index.d.ts +2 -0
  124. package/dist/core/hooks/index.js +1 -0
  125. package/dist/core/hooks/types.d.ts +19 -0
  126. package/dist/core/hooks/types.js +1 -0
  127. package/dist/core/index.d.ts +4 -0
  128. package/dist/core/index.js +4 -0
  129. package/dist/core/llm/auto-discovery.d.ts +11 -0
  130. package/dist/core/llm/auto-discovery.js +49 -0
  131. package/dist/core/llm/cost-tracker.d.ts +6 -0
  132. package/dist/core/llm/cost-tracker.js +38 -0
  133. package/dist/core/llm/index.d.ts +4 -0
  134. package/dist/core/llm/index.js +3 -0
  135. package/dist/core/llm/model-router.d.ts +25 -0
  136. package/dist/core/llm/model-router.js +49 -0
  137. package/dist/core/llm/provider-registry.d.ts +9 -0
  138. package/dist/core/llm/provider-registry.js +25 -0
  139. package/dist/core/llm/types.d.ts +2 -0
  140. package/dist/core/llm/types.js +2 -0
  141. package/dist/core/orchestrator/adapters/api-adapter.d.ts +34 -0
  142. package/dist/core/orchestrator/adapters/api-adapter.js +88 -0
  143. package/dist/core/orchestrator/adapters/cli-adapter.d.ts +22 -0
  144. package/dist/core/orchestrator/adapters/cli-adapter.js +69 -0
  145. package/dist/core/orchestrator/adapters/deterministic-adapter.d.ts +35 -0
  146. package/dist/core/orchestrator/adapters/deterministic-adapter.js +75 -0
  147. package/dist/core/orchestrator/adapters/env-whitelist.d.ts +4 -0
  148. package/dist/core/orchestrator/adapters/env-whitelist.js +27 -0
  149. package/dist/core/orchestrator/adapters/output-extractor.d.ts +11 -0
  150. package/dist/core/orchestrator/adapters/output-extractor.js +59 -0
  151. package/dist/core/orchestrator/adapters/process-manager.d.ts +15 -0
  152. package/dist/core/orchestrator/adapters/process-manager.js +26 -0
  153. package/dist/core/orchestrator/adapters/tool-loop.d.ts +22 -0
  154. package/dist/core/orchestrator/adapters/tool-loop.js +66 -0
  155. package/dist/core/orchestrator/agent-registry.d.ts +31 -0
  156. package/dist/core/orchestrator/agent-registry.js +135 -0
  157. package/dist/core/orchestrator/budget-controller.d.ts +19 -0
  158. package/dist/core/orchestrator/budget-controller.js +73 -0
  159. package/dist/core/orchestrator/chain-guard.d.ts +14 -0
  160. package/dist/core/orchestrator/chain-guard.js +23 -0
  161. package/dist/core/orchestrator/circuit-breaker.d.ts +65 -0
  162. package/dist/core/orchestrator/circuit-breaker.js +159 -0
  163. package/dist/core/orchestrator/claude-stream-parser.d.ts +31 -0
  164. package/dist/core/orchestrator/claude-stream-parser.js +99 -0
  165. package/dist/core/orchestrator/config-revisions.d.ts +6 -0
  166. package/dist/core/orchestrator/config-revisions.js +17 -0
  167. package/dist/core/orchestrator/dependency-resolver.d.ts +20 -0
  168. package/dist/core/orchestrator/dependency-resolver.js +78 -0
  169. package/dist/core/orchestrator/governance-gate.d.ts +110 -0
  170. package/dist/core/orchestrator/governance-gate.js +170 -0
  171. package/dist/core/orchestrator/learning-pipeline.d.ts +109 -0
  172. package/dist/core/orchestrator/learning-pipeline.js +249 -0
  173. package/dist/core/orchestrator/loop-detector.d.ts +51 -0
  174. package/dist/core/orchestrator/loop-detector.js +133 -0
  175. package/dist/core/orchestrator/ndjson-logger.d.ts +6 -0
  176. package/dist/core/orchestrator/ndjson-logger.js +18 -0
  177. package/dist/core/orchestrator/permission-relay.d.ts +72 -0
  178. package/dist/core/orchestrator/permission-relay.js +164 -0
  179. package/dist/core/orchestrator/run-manager.d.ts +31 -0
  180. package/dist/core/orchestrator/run-manager.js +178 -0
  181. package/dist/core/orchestrator/scheduler.d.ts +70 -0
  182. package/dist/core/orchestrator/scheduler.js +198 -0
  183. package/dist/core/orchestrator/secret-store.d.ts +57 -0
  184. package/dist/core/orchestrator/secret-store.js +171 -0
  185. package/dist/core/orchestrator/session-manager.d.ts +13 -0
  186. package/dist/core/orchestrator/session-manager.js +66 -0
  187. package/dist/core/orchestrator/task-queue.d.ts +34 -0
  188. package/dist/core/orchestrator/task-queue.js +83 -0
  189. package/dist/core/orchestrator/template-interpolate.d.ts +5 -0
  190. package/dist/core/orchestrator/template-interpolate.js +18 -0
  191. package/dist/core/orchestrator/user-registry.d.ts +47 -0
  192. package/dist/core/orchestrator/user-registry.js +76 -0
  193. package/dist/core/orchestrator/wakeup-queue.d.ts +9 -0
  194. package/dist/core/orchestrator/wakeup-queue.js +45 -0
  195. package/dist/core/orchestrator/workflow-engine.d.ts +47 -0
  196. package/dist/core/orchestrator/workflow-engine.js +204 -0
  197. package/dist/core/security/audit.d.ts +20 -0
  198. package/dist/core/security/audit.js +33 -0
  199. package/dist/core/security/column-validator.d.ts +20 -0
  200. package/dist/core/security/column-validator.js +37 -0
  201. package/dist/core/security/index.d.ts +5 -0
  202. package/dist/core/security/index.js +5 -0
  203. package/dist/core/security/process-env.d.ts +13 -0
  204. package/dist/core/security/process-env.js +49 -0
  205. package/dist/core/security/sanitizer.d.ts +11 -0
  206. package/dist/core/security/sanitizer.js +39 -0
  207. package/dist/core/security/types.d.ts +11 -0
  208. package/dist/core/security/types.js +1 -0
  209. package/dist/core/update/auto-update.d.ts +21 -0
  210. package/dist/core/update/auto-update.js +102 -0
  211. package/dist/core/update/backup-manager.d.ts +7 -0
  212. package/dist/core/update/backup-manager.js +24 -0
  213. package/dist/core/update/index.d.ts +8 -0
  214. package/dist/core/update/index.js +6 -0
  215. package/dist/core/update/migration-hooks.d.ts +11 -0
  216. package/dist/core/update/migration-hooks.js +10 -0
  217. package/dist/core/update/types.d.ts +11 -0
  218. package/dist/core/update/types.js +1 -0
  219. package/dist/core/update/update-checker.d.ts +11 -0
  220. package/dist/core/update/update-checker.js +63 -0
  221. package/dist/core/update/update-manager.d.ts +25 -0
  222. package/dist/core/update/update-manager.js +101 -0
  223. package/dist/core/update/version-utils.d.ts +6 -0
  224. package/dist/core/update/version-utils.js +34 -0
  225. package/dist/gmail-connector-2FVYTQJH.js +6 -0
  226. package/dist/gmail-connector-MNUBRNFM.js +6 -0
  227. package/dist/gmail-connector-PS2VLGNE.js +6 -0
  228. package/dist/gmail-connector-ULSMN6X2.js +6 -0
  229. package/dist/gmail-connector-URRFX6A3.js +6 -0
  230. package/dist/inbound-AFBUPSPG.js +10 -0
  231. package/dist/inbound-AFOHYNUY.js +6 -0
  232. package/dist/inbound-CGIXRXGC.js +8 -0
  233. package/dist/inbound-MCOLRH6U.js +10 -0
  234. package/dist/inbound-SNEMBLGA.js +6 -0
  235. package/dist/inbound-ZJHAYVMF.js +10 -0
  236. package/dist/index.d.ts +16 -3
  237. package/dist/index.js +67 -28
  238. package/dist/provider-qqJYv9nv.d.ts +75 -0
  239. package/dist/providers/anthropic/models.d.ts +2 -0
  240. package/dist/providers/anthropic/models.js +29 -0
  241. package/dist/providers/anthropic/provider.d.ts +13 -0
  242. package/dist/providers/anthropic/provider.js +119 -0
  243. package/dist/providers/anthropic/tool-converter.d.ts +10 -0
  244. package/dist/providers/anthropic/tool-converter.js +7 -0
  245. package/dist/providers/ollama/provider.d.ts +17 -0
  246. package/dist/providers/ollama/provider.js +185 -0
  247. package/dist/providers/openai/models.d.ts +2 -0
  248. package/dist/providers/openai/models.js +29 -0
  249. package/dist/providers/openai/provider.d.ts +13 -0
  250. package/dist/providers/openai/provider.js +163 -0
  251. package/dist/providers/openai/tool-converter.d.ts +10 -0
  252. package/dist/providers/openai/tool-converter.js +10 -0
  253. package/dist/shared/constants.d.ts +50 -0
  254. package/dist/shared/constants.js +64 -0
  255. package/dist/shared/index.d.ts +14 -0
  256. package/dist/shared/index.js +14 -0
  257. package/dist/shared/types/agent.d.ts +36 -0
  258. package/dist/shared/types/agent.js +2 -0
  259. package/dist/shared/types/channel.d.ts +70 -0
  260. package/dist/shared/types/channel.js +2 -0
  261. package/dist/shared/types/config.d.ts +111 -0
  262. package/dist/shared/types/config.js +2 -0
  263. package/dist/shared/types/connector.d.ts +77 -0
  264. package/dist/shared/types/connector.js +2 -0
  265. package/dist/shared/types/execution.d.ts +29 -0
  266. package/dist/shared/types/execution.js +2 -0
  267. package/dist/shared/types/provider.d.ts +73 -0
  268. package/dist/shared/types/provider.js +2 -0
  269. package/dist/shared/types/task.d.ts +47 -0
  270. package/dist/shared/types/task.js +2 -0
  271. package/dist/shared/types/workflow.d.ts +39 -0
  272. package/dist/shared/types/workflow.js +2 -0
  273. package/dist/shared/utils.d.ts +6 -0
  274. package/dist/shared/utils.js +13 -0
  275. package/dist/update-check.d.ts +5 -0
  276. package/dist/update-check.js +56 -0
  277. package/package.json +100 -100
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Discord outbound formatting.
3
+ * Discord uses native markdown — just enforce the 2000-char limit.
4
+ * Story 4.6
5
+ */
6
+ const DISCORD_MAX_LENGTH = 2000;
7
+ /**
8
+ * Split text into Discord-compatible chunks (2000 char max each).
9
+ */
10
+ export function chunkForDiscord(text) {
11
+ if (text.length <= DISCORD_MAX_LENGTH)
12
+ return [text];
13
+ const chunks = [];
14
+ let remaining = text;
15
+ while (remaining.length > DISCORD_MAX_LENGTH) {
16
+ // Try to split at a word boundary
17
+ const slice = remaining.slice(0, DISCORD_MAX_LENGTH);
18
+ const lastSpace = slice.lastIndexOf(" ");
19
+ if (lastSpace > 0) {
20
+ chunks.push(remaining.slice(0, lastSpace));
21
+ remaining = remaining.slice(lastSpace + 1);
22
+ }
23
+ else {
24
+ chunks.push(remaining.slice(0, DISCORD_MAX_LENGTH));
25
+ remaining = remaining.slice(DISCORD_MAX_LENGTH);
26
+ }
27
+ }
28
+ if (remaining.length > 0)
29
+ chunks.push(remaining);
30
+ return chunks;
31
+ }
32
+ /**
33
+ * Discord uses native markdown — no conversion needed.
34
+ * Returns the text unchanged (Discord renders it natively).
35
+ */
36
+ export function formatForDiscord(text) {
37
+ return text;
38
+ }
@@ -0,0 +1,33 @@
1
+ /**
2
+ * SlackAdapter — ChannelAdapter implementation for Slack.
3
+ * Story 4.5
4
+ */
5
+ import type { ChannelAdapter, ChannelCapabilities, ChannelMeta, ChannelConfig, InboundMessage, OutboundPayload, SendResult, HealthStatus } from "../../shared/index.js";
6
+ /** Minimal Bolt-compatible client interface for mockability. */
7
+ export interface BoltClient {
8
+ postMessage(channel: string, text: string, threadTs?: string): Promise<{
9
+ ok: boolean;
10
+ ts?: string;
11
+ }>;
12
+ }
13
+ export declare class SlackAdapter implements ChannelAdapter {
14
+ readonly id = "slack";
15
+ readonly meta: ChannelMeta;
16
+ readonly capabilities: ChannelCapabilities;
17
+ onMessage?: (message: InboundMessage) => Promise<void>;
18
+ private connected;
19
+ private config;
20
+ private client;
21
+ constructor(client?: BoltClient);
22
+ connect(config: ChannelConfig): Promise<void>;
23
+ disconnect(): Promise<void>;
24
+ healthCheck(): Promise<HealthStatus>;
25
+ send(target: {
26
+ peerId: string;
27
+ threadId?: string;
28
+ }, payload: OutboundPayload): Promise<SendResult>;
29
+ /** Simulate receiving an inbound message (for testing/webhooks). */
30
+ receive(event: Record<string, unknown>): Promise<void>;
31
+ }
32
+ /** Factory function — default export for auto-discovery. */
33
+ export default function createSlackAdapter(client?: BoltClient): SlackAdapter;
@@ -0,0 +1,74 @@
1
+ /**
2
+ * SlackAdapter — ChannelAdapter implementation for Slack.
3
+ * Story 4.5
4
+ */
5
+ import { formatForSlack } from "./outbound.js";
6
+ export class SlackAdapter {
7
+ id = "slack";
8
+ meta = {
9
+ displayName: "Slack",
10
+ icon: "https://slack.com/favicon.ico",
11
+ homepage: "https://slack.com",
12
+ };
13
+ capabilities = {
14
+ chatTypes: ["direct", "group", "channel"],
15
+ threads: true,
16
+ reactions: true,
17
+ editing: true,
18
+ media: true,
19
+ polls: false,
20
+ maxTextLength: 40_000,
21
+ formattingMode: "mrkdwn",
22
+ };
23
+ onMessage;
24
+ connected = false;
25
+ config = null;
26
+ client;
27
+ constructor(client) {
28
+ this.client = client ?? null;
29
+ }
30
+ async connect(config) {
31
+ this.config = config;
32
+ this.connected = true;
33
+ }
34
+ async disconnect() {
35
+ this.connected = false;
36
+ this.config = null;
37
+ }
38
+ async healthCheck() {
39
+ return { ok: this.connected };
40
+ }
41
+ async send(target, payload) {
42
+ if (!this.connected) {
43
+ return { success: false, error: "Not connected" };
44
+ }
45
+ const text = formatForSlack(payload.text);
46
+ if (this.client) {
47
+ try {
48
+ const result = await this.client.postMessage(target.peerId, text, target.threadId);
49
+ return { success: result.ok, messageId: result.ts };
50
+ }
51
+ catch (err) {
52
+ return { success: false, error: String(err) };
53
+ }
54
+ }
55
+ // No-op when no client provided
56
+ return { success: true };
57
+ }
58
+ /** Simulate receiving an inbound message (for testing/webhooks). */
59
+ async receive(event) {
60
+ if (this.onMessage) {
61
+ const { parseSlackEvent } = await import("./inbound.js");
62
+ const { enrichVoiceMessage } = await import("./inbound.js");
63
+ let msg = parseSlackEvent(event);
64
+ if (msg.body.includes("[Voice message") && this.config?.botToken) {
65
+ msg = await enrichVoiceMessage(msg, this.config.botToken);
66
+ }
67
+ await this.onMessage(msg);
68
+ }
69
+ }
70
+ }
71
+ /** Factory function — default export for auto-discovery. */
72
+ export default function createSlackAdapter(client) {
73
+ return new SlackAdapter(client);
74
+ }
@@ -0,0 +1,59 @@
1
+ /**
2
+ * Slack inbound message parsing.
3
+ * Story 4.5
4
+ */
5
+ import type { InboundMessage } from "../../shared/index.js";
6
+ export interface SlackFile {
7
+ id?: string;
8
+ filetype?: string;
9
+ subtype?: string;
10
+ url_private?: string;
11
+ preview?: string;
12
+ transcription?: {
13
+ status?: string;
14
+ preview?: {
15
+ content?: string;
16
+ };
17
+ };
18
+ [key: string]: unknown;
19
+ }
20
+ export interface SlackEvent {
21
+ type: string;
22
+ subtype?: string;
23
+ client_msg_id?: string;
24
+ ts?: string;
25
+ event_ts?: string;
26
+ channel?: string;
27
+ user?: string;
28
+ text?: string;
29
+ thread_ts?: string;
30
+ files?: SlackFile[];
31
+ [key: string]: unknown;
32
+ }
33
+ /**
34
+ * Extract the text content from a voice message file.
35
+ * Prefers the transcription preview; falls back to the file preview text.
36
+ * Returns null if the file is not a voice message or has no transcript.
37
+ */
38
+ export declare function extractVoiceTranscript(file: SlackFile): string | null;
39
+ /**
40
+ * Parse a Slack event into an InboundMessage.
41
+ *
42
+ * Handles standard text messages and voice messages (file_share subtype
43
+ * with audio files). Voice message transcripts are extracted and prefixed
44
+ * with `[Voice message]`.
45
+ */
46
+ export declare function parseSlackEvent(event: SlackEvent): InboundMessage;
47
+ /**
48
+ * Enrich a voice message with local transcription when Slack's built-in
49
+ * transcription is unavailable.
50
+ *
51
+ * Downloads the audio file from Slack using the bot token, converts to WAV,
52
+ * and transcribes locally via whisper-node. Returns the original message
53
+ * unchanged if transcription fails or is not needed.
54
+ *
55
+ * @param msg - The parsed inbound message (from parseSlackEvent)
56
+ * @param botToken - Slack bot token for authenticated file download
57
+ * @returns The message with body replaced by transcript, or original on failure
58
+ */
59
+ export declare function enrichVoiceMessage(msg: InboundMessage, botToken: string): Promise<InboundMessage>;
@@ -0,0 +1,96 @@
1
+ /**
2
+ * Slack inbound message parsing.
3
+ * Story 4.5
4
+ */
5
+ import { transcribeAudio, downloadAudio } from "./transcribe.js";
6
+ const AUDIO_TYPES = new Set(["aac", "mp4", "m4a", "ogg", "webm", "mp3", "wav"]);
7
+ /**
8
+ * Extract the text content from a voice message file.
9
+ * Prefers the transcription preview; falls back to the file preview text.
10
+ * Returns null if the file is not a voice message or has no transcript.
11
+ */
12
+ export function extractVoiceTranscript(file) {
13
+ const isAudio = file.subtype === "slack_audio" || AUDIO_TYPES.has(file.filetype ?? "");
14
+ if (!isAudio)
15
+ return null;
16
+ const transcript = file.transcription?.preview?.content ??
17
+ (typeof file.preview === "string" ? file.preview : null);
18
+ return transcript ?? null;
19
+ }
20
+ /**
21
+ * Parse a Slack event into an InboundMessage.
22
+ *
23
+ * Handles standard text messages and voice messages (file_share subtype
24
+ * with audio files). Voice message transcripts are extracted and prefixed
25
+ * with `[Voice message]`.
26
+ */
27
+ export function parseSlackEvent(event) {
28
+ const id = event.client_msg_id ?? event.ts ?? event.event_ts ?? `slack-${Date.now()}`;
29
+ const channel = event.channel ?? "unknown";
30
+ const from = event.user ?? "unknown";
31
+ const threadId = event.thread_ts !== undefined ? event.thread_ts : undefined;
32
+ const receivedAt = event.ts
33
+ ? new Date(parseFloat(event.ts) * 1000).toISOString()
34
+ : new Date().toISOString();
35
+ let body = event.text ?? "";
36
+ // Voice messages: extract transcript from audio file attachments
37
+ if (event.subtype === "file_share" && event.files?.length) {
38
+ for (const file of event.files) {
39
+ const transcript = extractVoiceTranscript(file);
40
+ if (transcript) {
41
+ body = body ? `${body}\n\n[Voice message] ${transcript}` : `[Voice message] ${transcript}`;
42
+ break; // Only one voice message per event
43
+ }
44
+ }
45
+ }
46
+ // If voice message had no Slack transcript, mark for local transcription
47
+ if (event.subtype === "file_share" && event.files?.length && !body) {
48
+ const hasAudio = event.files.some((f) => f.subtype === "slack_audio" || AUDIO_TYPES.has(f.filetype ?? ""));
49
+ if (hasAudio) {
50
+ body = "[Voice message — no transcript available]";
51
+ }
52
+ }
53
+ return {
54
+ id,
55
+ channel,
56
+ from,
57
+ body,
58
+ threadId,
59
+ receivedAt,
60
+ raw: event,
61
+ };
62
+ }
63
+ /**
64
+ * Enrich a voice message with local transcription when Slack's built-in
65
+ * transcription is unavailable.
66
+ *
67
+ * Downloads the audio file from Slack using the bot token, converts to WAV,
68
+ * and transcribes locally via whisper-node. Returns the original message
69
+ * unchanged if transcription fails or is not needed.
70
+ *
71
+ * @param msg - The parsed inbound message (from parseSlackEvent)
72
+ * @param botToken - Slack bot token for authenticated file download
73
+ * @returns The message with body replaced by transcript, or original on failure
74
+ */
75
+ export async function enrichVoiceMessage(msg, botToken) {
76
+ if (!msg.body.includes("[Voice message — no transcript available]"))
77
+ return msg;
78
+ const raw = msg.raw;
79
+ const files = raw?.files;
80
+ if (!files?.length)
81
+ return msg;
82
+ const audioFile = files.find((f) => f.subtype === "slack_audio" || AUDIO_TYPES.has(f.filetype ?? ""));
83
+ if (!audioFile?.url_private)
84
+ return msg;
85
+ const buffer = await downloadAudio(audioFile.url_private, botToken);
86
+ if (!buffer)
87
+ return msg;
88
+ const filename = audioFile.name ?? `voice.${audioFile.filetype ?? "aac"}`;
89
+ const transcript = await transcribeAudio(buffer, filename);
90
+ if (!transcript)
91
+ return msg;
92
+ return {
93
+ ...msg,
94
+ body: `[Voice message] ${transcript}`,
95
+ };
96
+ }
@@ -1,5 +1,5 @@
1
1
  import { C as ChannelAdapter, c as ChannelMeta, a as ChannelCapabilities, I as InboundMessage, b as ChannelConfig, H as HealthStatus, O as OutboundPayload, S as SendResult } from '../../channel-06G0vbIn.js';
2
- import { H as HookBus, c as ChatPipeline } from '../../chat-pipeline-BWrtVqEP.js';
2
+ import { H as HookBus, c as ChatPipeline } from '../../chat-pipeline-DuNX5WoL.js';
3
3
  import 'better-sqlite3';
4
4
  import '../../provider-DLGUfnNx.js';
5
5
 
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Slack channel configuration types.
3
+ * Story 4.5
4
+ */
5
+ export interface SlackConfig {
6
+ botToken: string;
7
+ appToken?: string;
8
+ signingSecret?: string;
9
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Slack channel configuration types.
3
+ * Story 4.5
4
+ */
5
+ export {};
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Slack outbound formatting.
3
+ * Story 4.5
4
+ */
5
+ /**
6
+ * Convert standard markdown to Slack's mrkdwn format.
7
+ * - **bold** → *bold*
8
+ * - _italic_ preserved
9
+ * - `code` preserved
10
+ * - ```code block``` preserved
11
+ */
12
+ export declare function formatForSlack(text: string): string;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Slack outbound formatting.
3
+ * Story 4.5
4
+ */
5
+ /**
6
+ * Convert standard markdown to Slack's mrkdwn format.
7
+ * - **bold** → *bold*
8
+ * - _italic_ preserved
9
+ * - `code` preserved
10
+ * - ```code block``` preserved
11
+ */
12
+ export function formatForSlack(text) {
13
+ // **bold** → *bold*
14
+ let result = text.replace(/\*\*(.+?)\*\*/gs, "*$1*");
15
+ // __bold__ → *bold*
16
+ result = result.replace(/__(.+?)__/gs, "*$1*");
17
+ return result;
18
+ }
@@ -0,0 +1,41 @@
1
+ /**
2
+ * Local voice transcription via whisper-node (whisper.cpp bindings).
3
+ *
4
+ * whisper-node is an optional dependency — if not installed, transcription
5
+ * degrades gracefully (returns null). Requires ffmpeg on the system PATH
6
+ * for audio format conversion.
7
+ *
8
+ * Setup:
9
+ * npm install whisper-node
10
+ * npx whisper-node download # download a model (e.g. base.en)
11
+ * brew install ffmpeg # or equivalent for your platform
12
+ */
13
+ export interface TranscribeOptions {
14
+ /** Whisper model name (default: "base.en"). Run `npx whisper-node download` to get models. */
15
+ modelName?: string;
16
+ /** Language code (default: "auto"). Use "en" for English-only models. */
17
+ language?: string;
18
+ }
19
+ export interface TranscribeResult {
20
+ /** The full transcribed text */
21
+ text: string;
22
+ /** Individual segments with timestamps */
23
+ segments: Array<{
24
+ start: string;
25
+ end: string;
26
+ speech: string;
27
+ }>;
28
+ }
29
+ /**
30
+ * Transcribe an audio buffer using whisper-node.
31
+ *
32
+ * @param audioBuffer - Raw audio data (any format ffmpeg can decode)
33
+ * @param filename - Original filename (used for temp file extension)
34
+ * @param opts - Transcription options
35
+ * @returns Transcribed text, or null if transcription fails or whisper-node is not installed
36
+ */
37
+ export declare function transcribeAudio(audioBuffer: Buffer, filename: string, opts?: TranscribeOptions): Promise<string | null>;
38
+ /**
39
+ * Download an audio file from a URL with bearer token authentication.
40
+ */
41
+ export declare function downloadAudio(url: string, token: string): Promise<Buffer | null>;
@@ -0,0 +1,106 @@
1
+ /**
2
+ * Local voice transcription via whisper-node (whisper.cpp bindings).
3
+ *
4
+ * whisper-node is an optional dependency — if not installed, transcription
5
+ * degrades gracefully (returns null). Requires ffmpeg on the system PATH
6
+ * for audio format conversion.
7
+ *
8
+ * Setup:
9
+ * npm install whisper-node
10
+ * npx whisper-node download # download a model (e.g. base.en)
11
+ * brew install ffmpeg # or equivalent for your platform
12
+ */
13
+ import { execFileSync } from "node:child_process";
14
+ import { writeFileSync, unlinkSync, mkdirSync } from "node:fs";
15
+ import { join } from "node:path";
16
+ import { randomUUID } from "node:crypto";
17
+ import os from "node:os";
18
+ import { createRequire } from "node:module";
19
+ const TEMP_DIR = join(os.tmpdir(), "botinabox-audio");
20
+ /**
21
+ * Transcribe an audio buffer using whisper-node.
22
+ *
23
+ * @param audioBuffer - Raw audio data (any format ffmpeg can decode)
24
+ * @param filename - Original filename (used for temp file extension)
25
+ * @param opts - Transcription options
26
+ * @returns Transcribed text, or null if transcription fails or whisper-node is not installed
27
+ */
28
+ export async function transcribeAudio(audioBuffer, filename, opts) {
29
+ // Lazy-load whisper-node (optional CJS dependency)
30
+ let whisper;
31
+ try {
32
+ const require = createRequire(import.meta.url);
33
+ const mod = require("whisper-node");
34
+ whisper = mod.whisper ?? mod.default ?? mod;
35
+ }
36
+ catch {
37
+ console.warn("[botinabox] whisper-node not installed — voice transcription unavailable. Run: npm install whisper-node && npx whisper-node download");
38
+ return null;
39
+ }
40
+ // Check ffmpeg availability
41
+ try {
42
+ execFileSync("ffmpeg", ["-version"], { stdio: "ignore" });
43
+ }
44
+ catch {
45
+ console.warn("[botinabox] ffmpeg not found — required for audio conversion. Install: brew install ffmpeg");
46
+ return null;
47
+ }
48
+ const id = randomUUID().slice(0, 8);
49
+ const ext = filename.split(".").pop() ?? "aac";
50
+ mkdirSync(TEMP_DIR, { recursive: true });
51
+ const inputPath = join(TEMP_DIR, `${id}.${ext}`);
52
+ const wavPath = join(TEMP_DIR, `${id}.wav`);
53
+ try {
54
+ // Write audio to temp file
55
+ writeFileSync(inputPath, audioBuffer);
56
+ // Convert to WAV 16kHz mono PCM (required by whisper.cpp)
57
+ execFileSync("ffmpeg", ["-y", "-i", inputPath, "-ar", "16000", "-ac", "1", "-c:a", "pcm_s16le", wavPath], {
58
+ stdio: "ignore",
59
+ timeout: 30_000,
60
+ });
61
+ // Transcribe
62
+ const segments = await whisper(wavPath, {
63
+ modelName: opts?.modelName ?? "base.en",
64
+ whisperOptions: {
65
+ language: opts?.language ?? "auto",
66
+ },
67
+ });
68
+ if (!segments || segments.length === 0)
69
+ return null;
70
+ return segments.map((s) => s.speech).join(" ").trim();
71
+ }
72
+ catch (err) {
73
+ console.error("[botinabox] Transcription failed:", err);
74
+ return null;
75
+ }
76
+ finally {
77
+ // Clean up temp files
78
+ try {
79
+ unlinkSync(inputPath);
80
+ }
81
+ catch { /* ignore */ }
82
+ try {
83
+ unlinkSync(wavPath);
84
+ }
85
+ catch { /* ignore */ }
86
+ }
87
+ }
88
+ /**
89
+ * Download an audio file from a URL with bearer token authentication.
90
+ */
91
+ export async function downloadAudio(url, token) {
92
+ try {
93
+ const resp = await fetch(url, {
94
+ headers: { Authorization: `Bearer ${token}` },
95
+ });
96
+ if (!resp.ok) {
97
+ console.error(`[botinabox] Audio download failed: ${resp.status} ${resp.statusText}`);
98
+ return null;
99
+ }
100
+ return Buffer.from(await resp.arrayBuffer());
101
+ }
102
+ catch (err) {
103
+ console.error("[botinabox] Audio download error:", err);
104
+ return null;
105
+ }
106
+ }
@@ -0,0 +1,23 @@
1
+ /**
2
+ * WebhookAdapter — ChannelAdapter implementation for webhook-based channels.
3
+ * Story 4.7
4
+ */
5
+ import type { ChannelAdapter, ChannelCapabilities, ChannelMeta, ChannelConfig, InboundMessage, OutboundPayload, SendResult, HealthStatus } from "../../shared/index.js";
6
+ export declare class WebhookAdapter implements ChannelAdapter {
7
+ readonly id = "webhook";
8
+ readonly meta: ChannelMeta;
9
+ readonly capabilities: ChannelCapabilities;
10
+ onMessage?: (message: InboundMessage) => Promise<void>;
11
+ private connected;
12
+ private config;
13
+ private webhookServer;
14
+ connect(config: ChannelConfig): Promise<void>;
15
+ disconnect(): Promise<void>;
16
+ healthCheck(): Promise<HealthStatus>;
17
+ send(target: {
18
+ peerId: string;
19
+ threadId?: string;
20
+ }, payload: OutboundPayload): Promise<SendResult>;
21
+ }
22
+ /** Factory function — default export for auto-discovery. */
23
+ export default function createWebhookAdapter(): WebhookAdapter;
@@ -0,0 +1,86 @@
1
+ /**
2
+ * WebhookAdapter — ChannelAdapter implementation for webhook-based channels.
3
+ * Story 4.7
4
+ */
5
+ import { WebhookServer } from "./server.js";
6
+ export class WebhookAdapter {
7
+ id = "webhook";
8
+ meta = {
9
+ displayName: "Webhook",
10
+ homepage: "https://example.com",
11
+ };
12
+ capabilities = {
13
+ chatTypes: ["direct"],
14
+ threads: false,
15
+ reactions: false,
16
+ editing: false,
17
+ media: false,
18
+ polls: false,
19
+ maxTextLength: 65535,
20
+ formattingMode: "plain",
21
+ };
22
+ onMessage;
23
+ connected = false;
24
+ config = null;
25
+ webhookServer = null;
26
+ async connect(config) {
27
+ this.config = config;
28
+ this.connected = true;
29
+ // Start webhook HTTP server if port is specified
30
+ if (this.config.port) {
31
+ this.webhookServer = new WebhookServer({
32
+ port: this.config.port,
33
+ secret: this.config.secret,
34
+ onMessage: async (msg) => {
35
+ if (this.onMessage)
36
+ await this.onMessage(msg);
37
+ },
38
+ });
39
+ await this.webhookServer.start();
40
+ }
41
+ }
42
+ async disconnect() {
43
+ if (this.webhookServer) {
44
+ await this.webhookServer.stop();
45
+ this.webhookServer = null;
46
+ }
47
+ this.connected = false;
48
+ this.config = null;
49
+ }
50
+ async healthCheck() {
51
+ return { ok: this.connected };
52
+ }
53
+ async send(target, payload) {
54
+ if (!this.connected) {
55
+ return { success: false, error: "Not connected" };
56
+ }
57
+ const callbackUrl = this.config?.callbackUrl;
58
+ if (!callbackUrl) {
59
+ // No callback URL configured — accept silently (fire-and-forget style)
60
+ return { success: true };
61
+ }
62
+ try {
63
+ const body = JSON.stringify({
64
+ to: target.peerId,
65
+ threadId: target.threadId,
66
+ text: payload.text,
67
+ });
68
+ const response = await fetch(callbackUrl, {
69
+ method: "POST",
70
+ headers: { "Content-Type": "application/json" },
71
+ body,
72
+ });
73
+ if (response.ok) {
74
+ return { success: true };
75
+ }
76
+ return { success: false, error: `HTTP ${response.status}` };
77
+ }
78
+ catch (err) {
79
+ return { success: false, error: String(err) };
80
+ }
81
+ }
82
+ }
83
+ /** Factory function — default export for auto-discovery. */
84
+ export default function createWebhookAdapter() {
85
+ return new WebhookAdapter();
86
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * HMAC signature verification for webhook payloads.
3
+ * Story 4.7
4
+ */
5
+ /**
6
+ * Verify that the HMAC-SHA256 signature of body matches the provided signature.
7
+ * Uses timing-safe comparison to prevent timing attacks.
8
+ *
9
+ * @param body - The raw request body string
10
+ * @param secret - The shared HMAC secret
11
+ * @param signature - The signature to verify (hex string, possibly prefixed with "sha256=")
12
+ */
13
+ export declare function verifyHmac(body: string, secret: string, signature: string): boolean;
@@ -0,0 +1,26 @@
1
+ /**
2
+ * HMAC signature verification for webhook payloads.
3
+ * Story 4.7
4
+ */
5
+ import { createHmac, timingSafeEqual } from "node:crypto";
6
+ /**
7
+ * Verify that the HMAC-SHA256 signature of body matches the provided signature.
8
+ * Uses timing-safe comparison to prevent timing attacks.
9
+ *
10
+ * @param body - The raw request body string
11
+ * @param secret - The shared HMAC secret
12
+ * @param signature - The signature to verify (hex string, possibly prefixed with "sha256=")
13
+ */
14
+ export function verifyHmac(body, secret, signature) {
15
+ const expected = createHmac("sha256", secret).update(body, "utf8").digest("hex");
16
+ // Strip optional "sha256=" prefix
17
+ const provided = signature.startsWith("sha256=") ? signature.slice(7) : signature;
18
+ if (expected.length !== provided.length)
19
+ return false;
20
+ try {
21
+ return timingSafeEqual(Buffer.from(expected, "hex"), Buffer.from(provided, "hex"));
22
+ }
23
+ catch {
24
+ return false;
25
+ }
26
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Webhook channel configuration types.
3
+ * Story 4.7
4
+ */
5
+ export interface WebhookConfig {
6
+ callbackUrl?: string;
7
+ secret?: string;
8
+ port?: number;
9
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Webhook channel configuration types.
3
+ * Story 4.7
4
+ */
5
+ export {};