@brianli/kimaki 0.4.72-brianli.1

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 (328) hide show
  1. package/bin.js +2 -0
  2. package/dist/ai-tool-to-genai.js +233 -0
  3. package/dist/ai-tool-to-genai.test.js +267 -0
  4. package/dist/ai-tool.js +6 -0
  5. package/dist/bin.js +87 -0
  6. package/dist/bot-token.js +121 -0
  7. package/dist/bot-token.test.js +134 -0
  8. package/dist/channel-management.js +101 -0
  9. package/dist/cli-parsing.test.js +89 -0
  10. package/dist/cli.js +2529 -0
  11. package/dist/commands/abort.js +82 -0
  12. package/dist/commands/action-buttons.js +257 -0
  13. package/dist/commands/add-project.js +114 -0
  14. package/dist/commands/agent.js +291 -0
  15. package/dist/commands/ask-question.js +223 -0
  16. package/dist/commands/compact.js +120 -0
  17. package/dist/commands/context-usage.js +140 -0
  18. package/dist/commands/create-new-project.js +118 -0
  19. package/dist/commands/diff.js +128 -0
  20. package/dist/commands/file-upload.js +275 -0
  21. package/dist/commands/fork.js +217 -0
  22. package/dist/commands/gemini-apikey.js +70 -0
  23. package/dist/commands/login.js +490 -0
  24. package/dist/commands/mention-mode.js +51 -0
  25. package/dist/commands/merge-worktree.js +124 -0
  26. package/dist/commands/model.js +694 -0
  27. package/dist/commands/permissions.js +163 -0
  28. package/dist/commands/queue.js +217 -0
  29. package/dist/commands/remove-project.js +115 -0
  30. package/dist/commands/restart-opencode-server.js +116 -0
  31. package/dist/commands/resume.js +159 -0
  32. package/dist/commands/run-command.js +79 -0
  33. package/dist/commands/session-id.js +78 -0
  34. package/dist/commands/session.js +192 -0
  35. package/dist/commands/share.js +80 -0
  36. package/dist/commands/types.js +2 -0
  37. package/dist/commands/undo-redo.js +159 -0
  38. package/dist/commands/unset-model.js +152 -0
  39. package/dist/commands/upgrade.js +42 -0
  40. package/dist/commands/user-command.js +148 -0
  41. package/dist/commands/verbosity.js +60 -0
  42. package/dist/commands/worktree-settings.js +50 -0
  43. package/dist/commands/worktree.js +299 -0
  44. package/dist/condense-memory.js +33 -0
  45. package/dist/config.js +110 -0
  46. package/dist/database.js +1050 -0
  47. package/dist/db.js +159 -0
  48. package/dist/db.test.js +49 -0
  49. package/dist/discord-api.js +28 -0
  50. package/dist/discord-auth.js +231 -0
  51. package/dist/discord-auth.test.js +80 -0
  52. package/dist/discord-bot.js +997 -0
  53. package/dist/discord-utils.js +560 -0
  54. package/dist/discord-utils.test.js +115 -0
  55. package/dist/errors.js +167 -0
  56. package/dist/escape-backticks.test.js +429 -0
  57. package/dist/format-tables.js +122 -0
  58. package/dist/format-tables.test.js +199 -0
  59. package/dist/forum-sync/config.js +79 -0
  60. package/dist/forum-sync/discord-operations.js +154 -0
  61. package/dist/forum-sync/index.js +5 -0
  62. package/dist/forum-sync/markdown.js +117 -0
  63. package/dist/forum-sync/sync-to-discord.js +417 -0
  64. package/dist/forum-sync/sync-to-files.js +190 -0
  65. package/dist/forum-sync/types.js +53 -0
  66. package/dist/forum-sync/watchers.js +307 -0
  67. package/dist/gateway-consumer.js +232 -0
  68. package/dist/gateway-consumer.test.js +18 -0
  69. package/dist/genai-worker-wrapper.js +111 -0
  70. package/dist/genai-worker.js +311 -0
  71. package/dist/genai.js +232 -0
  72. package/dist/generated/browser.js +17 -0
  73. package/dist/generated/client.js +35 -0
  74. package/dist/generated/commonInputTypes.js +10 -0
  75. package/dist/generated/enums.js +30 -0
  76. package/dist/generated/internal/class.js +41 -0
  77. package/dist/generated/internal/prismaNamespace.js +239 -0
  78. package/dist/generated/internal/prismaNamespaceBrowser.js +209 -0
  79. package/dist/generated/models/bot_api_keys.js +1 -0
  80. package/dist/generated/models/bot_tokens.js +1 -0
  81. package/dist/generated/models/channel_agents.js +1 -0
  82. package/dist/generated/models/channel_directories.js +1 -0
  83. package/dist/generated/models/channel_mention_mode.js +1 -0
  84. package/dist/generated/models/channel_models.js +1 -0
  85. package/dist/generated/models/channel_verbosity.js +1 -0
  86. package/dist/generated/models/channel_worktrees.js +1 -0
  87. package/dist/generated/models/forum_sync_configs.js +1 -0
  88. package/dist/generated/models/global_models.js +1 -0
  89. package/dist/generated/models/ipc_requests.js +1 -0
  90. package/dist/generated/models/part_messages.js +1 -0
  91. package/dist/generated/models/scheduled_tasks.js +1 -0
  92. package/dist/generated/models/session_agents.js +1 -0
  93. package/dist/generated/models/session_models.js +1 -0
  94. package/dist/generated/models/session_start_sources.js +1 -0
  95. package/dist/generated/models/thread_sessions.js +1 -0
  96. package/dist/generated/models/thread_worktrees.js +1 -0
  97. package/dist/generated/models.js +1 -0
  98. package/dist/heap-monitor.js +95 -0
  99. package/dist/hrana-server.js +416 -0
  100. package/dist/hrana-server.test.js +368 -0
  101. package/dist/image-utils.js +112 -0
  102. package/dist/interaction-handler.js +327 -0
  103. package/dist/ipc-polling.js +251 -0
  104. package/dist/kimaki-digital-twin.e2e.test.js +165 -0
  105. package/dist/limit-heading-depth.js +25 -0
  106. package/dist/limit-heading-depth.test.js +105 -0
  107. package/dist/logger.js +160 -0
  108. package/dist/markdown.js +342 -0
  109. package/dist/markdown.test.js +253 -0
  110. package/dist/message-formatting.js +433 -0
  111. package/dist/message-formatting.test.js +73 -0
  112. package/dist/openai-realtime.js +228 -0
  113. package/dist/opencode-plugin-loading.e2e.test.js +91 -0
  114. package/dist/opencode-plugin.js +536 -0
  115. package/dist/opencode-plugin.test.js +98 -0
  116. package/dist/opencode.js +409 -0
  117. package/dist/privacy-sanitizer.js +105 -0
  118. package/dist/runtime-mode.js +51 -0
  119. package/dist/runtime-mode.test.js +115 -0
  120. package/dist/sentry.js +127 -0
  121. package/dist/session-handler/state.js +151 -0
  122. package/dist/session-handler.js +1874 -0
  123. package/dist/session-search.js +100 -0
  124. package/dist/session-search.test.js +40 -0
  125. package/dist/startup-service.js +153 -0
  126. package/dist/system-message.js +499 -0
  127. package/dist/task-runner.js +282 -0
  128. package/dist/task-schedule.js +191 -0
  129. package/dist/task-schedule.test.js +71 -0
  130. package/dist/thinking-utils.js +35 -0
  131. package/dist/thread-message-queue.e2e.test.js +781 -0
  132. package/dist/tools.js +359 -0
  133. package/dist/unnest-code-blocks.js +136 -0
  134. package/dist/unnest-code-blocks.test.js +641 -0
  135. package/dist/upgrade.js +114 -0
  136. package/dist/utils.js +109 -0
  137. package/dist/voice-handler.js +606 -0
  138. package/dist/voice.js +304 -0
  139. package/dist/voice.test.js +187 -0
  140. package/dist/wait-session.js +94 -0
  141. package/dist/worker-types.js +4 -0
  142. package/dist/worktree-utils.js +727 -0
  143. package/dist/xml.js +92 -0
  144. package/dist/xml.test.js +32 -0
  145. package/package.json +82 -0
  146. package/schema.prisma +246 -0
  147. package/skills/batch/SKILL.md +87 -0
  148. package/skills/critique/SKILL.md +129 -0
  149. package/skills/errore/SKILL.md +589 -0
  150. package/skills/goke/.prettierrc +5 -0
  151. package/skills/goke/CHANGELOG.md +40 -0
  152. package/skills/goke/LICENSE +21 -0
  153. package/skills/goke/README.md +666 -0
  154. package/skills/goke/SKILL.md +458 -0
  155. package/skills/goke/package.json +43 -0
  156. package/skills/goke/src/__test__/coerce.test.ts +411 -0
  157. package/skills/goke/src/__test__/index.test.ts +1798 -0
  158. package/skills/goke/src/__test__/types.test-d.ts +111 -0
  159. package/skills/goke/src/coerce.ts +547 -0
  160. package/skills/goke/src/goke.ts +1362 -0
  161. package/skills/goke/src/index.ts +16 -0
  162. package/skills/goke/src/mri.ts +164 -0
  163. package/skills/goke/tsconfig.json +15 -0
  164. package/skills/jitter/EDITOR.md +219 -0
  165. package/skills/jitter/EXPORT-INTERNALS.md +309 -0
  166. package/skills/jitter/SKILL.md +158 -0
  167. package/skills/jitter/jitter-clipboard.json +1042 -0
  168. package/skills/jitter/package.json +14 -0
  169. package/skills/jitter/tsconfig.json +15 -0
  170. package/skills/jitter/utils/actions.ts +212 -0
  171. package/skills/jitter/utils/export.ts +114 -0
  172. package/skills/jitter/utils/index.ts +141 -0
  173. package/skills/jitter/utils/snapshot.ts +154 -0
  174. package/skills/jitter/utils/traverse.ts +246 -0
  175. package/skills/jitter/utils/types.ts +279 -0
  176. package/skills/jitter/utils/wait.ts +133 -0
  177. package/skills/playwriter/SKILL.md +31 -0
  178. package/skills/security-review/SKILL.md +208 -0
  179. package/skills/simplify/SKILL.md +58 -0
  180. package/skills/termcast/SKILL.md +945 -0
  181. package/skills/tuistory/SKILL.md +250 -0
  182. package/skills/zustand-centralized-state/SKILL.md +582 -0
  183. package/src/__snapshots__/compact-session-context-no-system.md +35 -0
  184. package/src/__snapshots__/compact-session-context.md +41 -0
  185. package/src/__snapshots__/first-session-no-info.md +17 -0
  186. package/src/__snapshots__/first-session-with-info.md +23 -0
  187. package/src/__snapshots__/session-1.md +17 -0
  188. package/src/__snapshots__/session-2.md +5871 -0
  189. package/src/__snapshots__/session-3.md +17 -0
  190. package/src/__snapshots__/session-with-tools.md +5871 -0
  191. package/src/ai-tool-to-genai.test.ts +296 -0
  192. package/src/ai-tool-to-genai.ts +282 -0
  193. package/src/ai-tool.ts +39 -0
  194. package/src/bin.ts +108 -0
  195. package/src/bot-token.test.ts +171 -0
  196. package/src/bot-token.ts +159 -0
  197. package/src/channel-management.ts +172 -0
  198. package/src/cli-parsing.test.ts +132 -0
  199. package/src/cli.ts +3605 -0
  200. package/src/commands/abort.ts +112 -0
  201. package/src/commands/action-buttons.ts +376 -0
  202. package/src/commands/add-project.ts +152 -0
  203. package/src/commands/agent.ts +404 -0
  204. package/src/commands/ask-question.ts +330 -0
  205. package/src/commands/compact.ts +157 -0
  206. package/src/commands/context-usage.ts +199 -0
  207. package/src/commands/create-new-project.ts +179 -0
  208. package/src/commands/diff.ts +165 -0
  209. package/src/commands/file-upload.ts +389 -0
  210. package/src/commands/fork.ts +320 -0
  211. package/src/commands/gemini-apikey.ts +104 -0
  212. package/src/commands/login.ts +634 -0
  213. package/src/commands/mention-mode.ts +77 -0
  214. package/src/commands/merge-worktree.ts +177 -0
  215. package/src/commands/model.ts +961 -0
  216. package/src/commands/permissions.ts +261 -0
  217. package/src/commands/queue.ts +296 -0
  218. package/src/commands/remove-project.ts +155 -0
  219. package/src/commands/restart-opencode-server.ts +162 -0
  220. package/src/commands/resume.ts +242 -0
  221. package/src/commands/run-command.ts +123 -0
  222. package/src/commands/session-id.ts +109 -0
  223. package/src/commands/session.ts +250 -0
  224. package/src/commands/share.ts +106 -0
  225. package/src/commands/types.ts +25 -0
  226. package/src/commands/undo-redo.ts +221 -0
  227. package/src/commands/unset-model.ts +189 -0
  228. package/src/commands/upgrade.ts +52 -0
  229. package/src/commands/user-command.ts +193 -0
  230. package/src/commands/verbosity.ts +88 -0
  231. package/src/commands/worktree-settings.ts +79 -0
  232. package/src/commands/worktree.ts +431 -0
  233. package/src/condense-memory.ts +36 -0
  234. package/src/config.ts +148 -0
  235. package/src/database.ts +1530 -0
  236. package/src/db.test.ts +60 -0
  237. package/src/db.ts +190 -0
  238. package/src/discord-api.ts +35 -0
  239. package/src/discord-bot.ts +1316 -0
  240. package/src/discord-utils.test.ts +132 -0
  241. package/src/discord-utils.ts +767 -0
  242. package/src/errors.ts +213 -0
  243. package/src/escape-backticks.test.ts +469 -0
  244. package/src/format-tables.test.ts +223 -0
  245. package/src/format-tables.ts +145 -0
  246. package/src/forum-sync/config.ts +92 -0
  247. package/src/forum-sync/discord-operations.ts +241 -0
  248. package/src/forum-sync/index.ts +9 -0
  249. package/src/forum-sync/markdown.ts +176 -0
  250. package/src/forum-sync/sync-to-discord.ts +595 -0
  251. package/src/forum-sync/sync-to-files.ts +294 -0
  252. package/src/forum-sync/types.ts +175 -0
  253. package/src/forum-sync/watchers.ts +454 -0
  254. package/src/genai-worker-wrapper.ts +164 -0
  255. package/src/genai-worker.ts +386 -0
  256. package/src/genai.ts +321 -0
  257. package/src/generated/browser.ts +109 -0
  258. package/src/generated/client.ts +131 -0
  259. package/src/generated/commonInputTypes.ts +512 -0
  260. package/src/generated/enums.ts +46 -0
  261. package/src/generated/internal/class.ts +362 -0
  262. package/src/generated/internal/prismaNamespace.ts +2251 -0
  263. package/src/generated/internal/prismaNamespaceBrowser.ts +308 -0
  264. package/src/generated/models/bot_api_keys.ts +1288 -0
  265. package/src/generated/models/bot_tokens.ts +1577 -0
  266. package/src/generated/models/channel_agents.ts +1256 -0
  267. package/src/generated/models/channel_directories.ts +2104 -0
  268. package/src/generated/models/channel_mention_mode.ts +1300 -0
  269. package/src/generated/models/channel_models.ts +1288 -0
  270. package/src/generated/models/channel_verbosity.ts +1224 -0
  271. package/src/generated/models/channel_worktrees.ts +1308 -0
  272. package/src/generated/models/forum_sync_configs.ts +1452 -0
  273. package/src/generated/models/global_models.ts +1288 -0
  274. package/src/generated/models/ipc_requests.ts +1485 -0
  275. package/src/generated/models/part_messages.ts +1302 -0
  276. package/src/generated/models/scheduled_tasks.ts +2320 -0
  277. package/src/generated/models/session_agents.ts +1086 -0
  278. package/src/generated/models/session_models.ts +1114 -0
  279. package/src/generated/models/session_start_sources.ts +1408 -0
  280. package/src/generated/models/thread_sessions.ts +1599 -0
  281. package/src/generated/models/thread_worktrees.ts +1352 -0
  282. package/src/generated/models.ts +29 -0
  283. package/src/heap-monitor.ts +121 -0
  284. package/src/hrana-server.test.ts +428 -0
  285. package/src/hrana-server.ts +547 -0
  286. package/src/image-utils.ts +149 -0
  287. package/src/interaction-handler.ts +461 -0
  288. package/src/ipc-polling.ts +325 -0
  289. package/src/kimaki-digital-twin.e2e.test.ts +201 -0
  290. package/src/limit-heading-depth.test.ts +116 -0
  291. package/src/limit-heading-depth.ts +26 -0
  292. package/src/logger.ts +203 -0
  293. package/src/markdown.test.ts +360 -0
  294. package/src/markdown.ts +410 -0
  295. package/src/message-formatting.test.ts +81 -0
  296. package/src/message-formatting.ts +549 -0
  297. package/src/openai-realtime.ts +362 -0
  298. package/src/opencode-plugin-loading.e2e.test.ts +112 -0
  299. package/src/opencode-plugin.test.ts +108 -0
  300. package/src/opencode-plugin.ts +652 -0
  301. package/src/opencode.ts +554 -0
  302. package/src/privacy-sanitizer.ts +142 -0
  303. package/src/schema.sql +158 -0
  304. package/src/sentry.ts +137 -0
  305. package/src/session-handler/state.ts +232 -0
  306. package/src/session-handler.ts +2668 -0
  307. package/src/session-search.test.ts +50 -0
  308. package/src/session-search.ts +148 -0
  309. package/src/startup-service.ts +200 -0
  310. package/src/system-message.ts +568 -0
  311. package/src/task-runner.ts +425 -0
  312. package/src/task-schedule.test.ts +84 -0
  313. package/src/task-schedule.ts +287 -0
  314. package/src/thinking-utils.ts +61 -0
  315. package/src/thread-message-queue.e2e.test.ts +997 -0
  316. package/src/tools.ts +432 -0
  317. package/src/unnest-code-blocks.test.ts +679 -0
  318. package/src/unnest-code-blocks.ts +168 -0
  319. package/src/upgrade.ts +127 -0
  320. package/src/utils.ts +145 -0
  321. package/src/voice-handler.ts +852 -0
  322. package/src/voice.test.ts +219 -0
  323. package/src/voice.ts +444 -0
  324. package/src/wait-session.ts +147 -0
  325. package/src/worker-types.ts +64 -0
  326. package/src/worktree-utils.ts +988 -0
  327. package/src/xml.test.ts +38 -0
  328. package/src/xml.ts +121 -0
@@ -0,0 +1,652 @@
1
+ // OpenCode plugin for Kimaki Discord bot.
2
+ // Provides tools for Discord integration like listing users for mentions.
3
+ // Also injects synthetic message parts for branch changes and idle-time awareness.
4
+
5
+ import type { Plugin } from '@opencode-ai/plugin'
6
+ import type { ToolContext } from '@opencode-ai/plugin/tool'
7
+ import crypto from 'node:crypto'
8
+ import fs from 'node:fs'
9
+ import path from 'node:path'
10
+ import dedent from 'string-dedent'
11
+ import { z } from 'zod'
12
+
13
+ // Inlined from '@opencode-ai/plugin/tool' because the subpath value import
14
+ // fails at runtime in global npm installs (#35). Opencode loads this plugin
15
+ // file in its own process and resolves modules from kimaki's install dir,
16
+ // but the '/tool' subpath export isn't found by opencode's module resolver.
17
+ // The type-only imports above are fine (erased at compile time).
18
+ // The opencode docs recommend `import { tool } from '@opencode-ai/plugin'`
19
+ // (main entry) but their index.d.ts uses `export * from "./tool"` which
20
+ // doesn't re-export the tool function under nodenext resolution because
21
+ // tool is a merged function+namespace declaration.
22
+ function tool<Args extends z.ZodRawShape>(input: {
23
+ description: string
24
+ args: Args
25
+ execute(
26
+ args: z.infer<z.ZodObject<Args>>,
27
+ context: ToolContext,
28
+ ): Promise<string>
29
+ }) {
30
+ return input
31
+ }
32
+ import { createOpencodeClient } from '@opencode-ai/sdk/v2'
33
+ import { REST, Routes } from 'discord.js'
34
+ import * as errore from 'errore'
35
+ import { getPrisma, createIpcRequest, getIpcRequestById } from './database.js'
36
+ import { getBotToken } from './bot-token.js'
37
+ import { createDiscordRest } from './discord-api.js'
38
+ import { setDataDir } from './config.js'
39
+ import { archiveThread, reactToThread } from './discord-utils.js'
40
+ import { createLogger, formatErrorWithStack, LogPrefix, setLogFilePath } from './logger.js'
41
+ import { initSentry, notifyError } from './sentry.js'
42
+ import { execAsync } from './worktree-utils.js'
43
+
44
+ // Regex to match emoji characters (covers most common emojis)
45
+ // Includes: emoji presentation sequences, skin tone modifiers, ZWJ sequences, regional indicators
46
+ const EMOJI_REGEX =
47
+ /^(?:\p{Emoji_Presentation}|\p{Emoji}\uFE0F|\p{Regional_Indicator}{2}|\p{Emoji_Modifier_Base}\p{Emoji_Modifier}?|[\u{1F3FB}-\u{1F3FF}]|(?:\p{Emoji}(?:\u{200D}\p{Emoji})+))$/u
48
+
49
+ function isEmoji(str: string): boolean {
50
+ return EMOJI_REGEX.test(str)
51
+ }
52
+
53
+ const logger = createLogger(LogPrefix.OPENCODE)
54
+
55
+ // condenseMemoryMd lives in condense-memory.ts — must NOT be exported from
56
+ // this file because OpenCode's plugin loader calls every exported function
57
+ // as a plugin initializer, which would crash marked's Lexer with non-string input.
58
+ import { condenseMemoryMd } from './condense-memory.js'
59
+
60
+ const FILE_UPLOAD_TIMEOUT_MS = 6 * 60 * 1000
61
+ const DEFAULT_FILE_UPLOAD_MAX_FILES = 5
62
+ const ACTION_BUTTON_TIMEOUT_MS = 30 * 1000
63
+
64
+ type GitState = {
65
+ key: string
66
+ kind: 'branch' | 'detached-head' | 'detached-submodule'
67
+ label: string
68
+ warning: string | null
69
+ }
70
+
71
+ async function resolveGitState({
72
+ directory,
73
+ }: {
74
+ directory: string
75
+ }): Promise<GitState | null> {
76
+ const branchResult = await errore.tryAsync(() => {
77
+ return execAsync('git symbolic-ref --short HEAD', { cwd: directory })
78
+ })
79
+ if (!(branchResult instanceof Error)) {
80
+ const branch = branchResult.stdout.trim()
81
+ if (branch) {
82
+ return {
83
+ key: `branch:${branch}`,
84
+ kind: 'branch',
85
+ label: branch,
86
+ warning: null,
87
+ }
88
+ }
89
+ }
90
+
91
+ const shaResult = await errore.tryAsync(() => {
92
+ return execAsync('git rev-parse --short HEAD', { cwd: directory })
93
+ })
94
+ if (shaResult instanceof Error) {
95
+ return null
96
+ }
97
+
98
+ const shortSha = shaResult.stdout.trim()
99
+ if (!shortSha) {
100
+ return null
101
+ }
102
+
103
+ const superprojectResult = await errore.tryAsync(() => {
104
+ return execAsync('git rev-parse --show-superproject-working-tree', {
105
+ cwd: directory,
106
+ })
107
+ })
108
+ const superproject =
109
+ superprojectResult instanceof Error ? '' : superprojectResult.stdout.trim()
110
+ if (superproject) {
111
+ return {
112
+ key: `detached-submodule:${shortSha}`,
113
+ kind: 'detached-submodule',
114
+ label: `detached submodule @ ${shortSha}`,
115
+ warning:
116
+ `[Warning: Submodule is in detached HEAD at ${shortSha}. ` +
117
+ 'Create or switch to a branch before committing.]',
118
+ }
119
+ }
120
+
121
+ return {
122
+ key: `detached-head:${shortSha}`,
123
+ kind: 'detached-head',
124
+ label: `detached HEAD @ ${shortSha}`,
125
+ warning:
126
+ `[Warning: Repository is in detached HEAD at ${shortSha}. ` +
127
+ 'Create or switch to a branch before committing.]',
128
+ }
129
+ }
130
+
131
+ const kimakiPlugin: Plugin = async ({ directory }) => {
132
+ // Initialize Sentry in the plugin process (runs inside OpenCode server, not bot)
133
+ initSentry()
134
+
135
+ const botToken = getBotToken({ allowDatabase: false })?.token
136
+ const dataDir = process.env.KIMAKI_DATA_DIR
137
+ if (dataDir) {
138
+ setDataDir(dataDir)
139
+ // Append to the same log file the bot process created (no truncation)
140
+ setLogFilePath(dataDir)
141
+ }
142
+ if (!botToken) {
143
+ // No token available, skip Discord tools
144
+ return {}
145
+ }
146
+
147
+ const rest = createDiscordRest(botToken)
148
+ const port = process.env.OPENCODE_PORT
149
+ const client = port
150
+ ? createOpencodeClient({
151
+ baseUrl: `http://127.0.0.1:${port}`,
152
+ })
153
+ : null
154
+
155
+ // Per-session state for synthetic part injection
156
+ const sessionGitStates = new Map<string, GitState>()
157
+ const sessionLastMessageTime = new Map<string, number>()
158
+ // Track whether we've already injected MEMORY.md contents for each session
159
+ const sessionMemoryInjected = new Set<string>()
160
+
161
+ return {
162
+ tool: {
163
+ kimaki_list_discord_users: tool({
164
+ description:
165
+ 'Search for Discord users in a guild/server. Returns user IDs needed for mentions (<@userId>). Use the guildId from the system message.',
166
+ args: {
167
+ guildId: z.string().describe('Discord guild/server ID'),
168
+ query: z
169
+ .string()
170
+ .optional()
171
+ .describe(
172
+ 'Search query to filter users by name (optional, returns first 20 if not provided)',
173
+ ),
174
+ },
175
+ async execute({ guildId, query }) {
176
+ type GuildMember = {
177
+ user: { id: string; username: string; global_name?: string }
178
+ nick?: string
179
+ }
180
+
181
+ const members: GuildMember[] = await (async () => {
182
+ if (query) {
183
+ return (await rest.get(Routes.guildMembersSearch(guildId), {
184
+ query: new URLSearchParams({ query, limit: '20' }),
185
+ })) as GuildMember[]
186
+ }
187
+ // No query, list first 20 members
188
+ return (await rest.get(Routes.guildMembers(guildId), {
189
+ query: new URLSearchParams({ limit: '20' }),
190
+ })) as GuildMember[]
191
+ })()
192
+
193
+ if (members.length === 0) {
194
+ return query
195
+ ? `No users found matching "${query}"`
196
+ : 'No users found in guild'
197
+ }
198
+
199
+ const userList = members
200
+ .map((m) => {
201
+ const displayName =
202
+ m.nick || m.user.global_name || m.user.username
203
+ return `- ${displayName} (ID: ${m.user.id}) - mention: <@${m.user.id}>`
204
+ })
205
+ .join('\n')
206
+
207
+ const header = query
208
+ ? `Found ${members.length} users matching "${query}":`
209
+ : `Found ${members.length} users:`
210
+
211
+ return `${header}\n${userList}`
212
+ },
213
+ }),
214
+ kimaki_mark_thread: tool({
215
+ description:
216
+ 'Mark the current Discord thread with emoji reactions and update the session title. Only pass emoji characters (e.g., "🚀", "🐛", "📦"). Do NOT use ✅ as it is reserved for "session completed" indicator. This lets users create custom tagging systems visible in both Discord and OpenCode.',
217
+ args: {
218
+ emojis: z
219
+ .array(z.string())
220
+ .describe(
221
+ 'Array of emoji characters to add as reactions and prepend to session title. Only emojis allowed, no text.',
222
+ ),
223
+ },
224
+ async execute({ emojis }, context) {
225
+ if (!emojis || emojis.length === 0) {
226
+ return 'No emojis provided'
227
+ }
228
+
229
+ // Validate all inputs are emojis
230
+ const invalidEmojis = emojis.filter((e) => {
231
+ return !isEmoji(e)
232
+ })
233
+ if (invalidEmojis.length > 0) {
234
+ throw new Error(
235
+ `Invalid emoji characters: ${invalidEmojis.join(', ')}. Only emoji characters are allowed.`,
236
+ )
237
+ }
238
+
239
+ const prisma = await getPrisma()
240
+ const row = await prisma.thread_sessions.findFirst({
241
+ where: { session_id: context.sessionID },
242
+ select: { thread_id: true },
243
+ })
244
+
245
+ if (!row?.thread_id) {
246
+ return 'Could not find thread for current session'
247
+ }
248
+
249
+ // Add reactions to thread starter message (reactToThread handles errors internally)
250
+ const addedEmojis: string[] = []
251
+ for (const emoji of emojis) {
252
+ await reactToThread({ rest, threadId: row.thread_id, emoji })
253
+ addedEmojis.push(emoji)
254
+ }
255
+
256
+ // Update session title with emoji prefix
257
+ if (client && addedEmojis.length > 0) {
258
+ const updateResult = await errore.tryAsync({
259
+ try: async () => {
260
+ const sessionResponse = await client.session.get({
261
+ sessionID: context.sessionID,
262
+ })
263
+ if (sessionResponse.data) {
264
+ const currentTitle = sessionResponse.data.title || ''
265
+ const emojiPrefix = addedEmojis.join('')
266
+ // Avoid duplicating emojis if they're already at the start
267
+ const newTitle = currentTitle.startsWith(emojiPrefix)
268
+ ? currentTitle
269
+ : `${emojiPrefix} ${currentTitle}`.trim()
270
+ await client.session.update({
271
+ sessionID: context.sessionID,
272
+ title: newTitle,
273
+ })
274
+ }
275
+ },
276
+ catch: (error) => {
277
+ return new Error('Failed to update session title', {
278
+ cause: error,
279
+ })
280
+ },
281
+ })
282
+ if (updateResult instanceof Error) {
283
+ logger.warn(
284
+ `[kimaki_mark_thread] ${formatErrorWithStack(updateResult)}`,
285
+ )
286
+ }
287
+ }
288
+
289
+ return addedEmojis.length > 0
290
+ ? `Marked thread with: ${addedEmojis.join(' ')}`
291
+ : 'Failed to add any emoji reactions'
292
+ },
293
+ }),
294
+ kimaki_file_upload: tool({
295
+ description:
296
+ 'Prompt the Discord user to upload files using a native file picker modal. ' +
297
+ 'The user sees a button, clicks it, and gets a file upload dialog. ' +
298
+ 'Returns the local file paths of downloaded files in the project directory. ' +
299
+ 'Use this when you need the user to provide files (images, documents, configs, etc.). ' +
300
+ 'IMPORTANT: Always call this tool last in your message, after all text parts.',
301
+ args: {
302
+ prompt: z
303
+ .string()
304
+ .describe(
305
+ 'Message shown to the user explaining what files to upload',
306
+ ),
307
+ maxFiles: z
308
+ .number()
309
+ .min(1)
310
+ .max(10)
311
+ .optional()
312
+ .describe(
313
+ 'Maximum number of files the user can upload (1-10, default 5)',
314
+ ),
315
+ },
316
+ async execute({ prompt, maxFiles }, context) {
317
+ const prisma = await getPrisma()
318
+ const row = await prisma.thread_sessions.findFirst({
319
+ where: { session_id: context.sessionID },
320
+ select: { thread_id: true },
321
+ })
322
+
323
+ if (!row?.thread_id) {
324
+ return 'Could not find thread for current session'
325
+ }
326
+
327
+ // Insert IPC request for the bot to pick up via polling
328
+ const ipcRow = await createIpcRequest({
329
+ type: 'file_upload',
330
+ sessionId: context.sessionID,
331
+ threadId: row.thread_id,
332
+ payload: JSON.stringify({
333
+ prompt,
334
+ maxFiles: maxFiles || DEFAULT_FILE_UPLOAD_MAX_FILES,
335
+ directory: context.directory,
336
+ }),
337
+ })
338
+
339
+ // Poll for response from the bot process
340
+ const deadline = Date.now() + FILE_UPLOAD_TIMEOUT_MS
341
+ const POLL_INTERVAL_MS = 300
342
+ while (Date.now() < deadline) {
343
+ await new Promise((resolve) => {
344
+ setTimeout(resolve, POLL_INTERVAL_MS)
345
+ })
346
+ const updated = await getIpcRequestById({ id: ipcRow.id })
347
+ if (!updated || updated.status === 'cancelled') {
348
+ return 'File upload was cancelled'
349
+ }
350
+ if (updated.response) {
351
+ const parsed = JSON.parse(updated.response) as {
352
+ filePaths?: string[]
353
+ error?: string
354
+ }
355
+ if (parsed.error) {
356
+ return `File upload failed: ${parsed.error}`
357
+ }
358
+ const filePaths = parsed.filePaths || []
359
+ if (filePaths.length === 0) {
360
+ return 'No files were uploaded (user may have cancelled or sent a new message)'
361
+ }
362
+ return `Files uploaded successfully:\n${filePaths.join('\n')}`
363
+ }
364
+ }
365
+
366
+ return 'File upload timed out - user did not upload files within the time limit'
367
+ },
368
+ }),
369
+ kimaki_action_buttons: tool({
370
+ description: dedent`
371
+ Show action buttons in the current Discord thread for quick confirmations.
372
+ Use this when the user can respond by clicking one of up to 3 buttons.
373
+ Prefer a single button whenever possible.
374
+ Default color is white (same visual style as permission deny button).
375
+ If you need more than 3 options, use the question tool instead.
376
+ IMPORTANT: Always call this tool last in your message, after all text parts.
377
+
378
+ Examples:
379
+ - buttons: [{"label":"Yes, proceed"}]
380
+ - buttons: [{"label":"Approve","color":"green"}]
381
+ - buttons: [
382
+ {"label":"Confirm","color":"blue"},
383
+ {"label":"Cancel","color":"white"}
384
+ ]
385
+ `,
386
+ args: {
387
+ buttons: z
388
+ .array(
389
+ z.object({
390
+ label: z
391
+ .string()
392
+ .min(1)
393
+ .max(80)
394
+ .describe('Button label shown to the user (1-80 chars)'),
395
+ color: z
396
+ .enum(['white', 'blue', 'green', 'red'])
397
+ .optional()
398
+ .describe(
399
+ 'Optional button color. white is default and preferred for most confirmations.',
400
+ ),
401
+ }),
402
+ )
403
+ .min(1)
404
+ .max(3)
405
+ .describe(
406
+ 'Array of 1-3 action buttons. Prefer one button whenever possible.',
407
+ ),
408
+ },
409
+ async execute({ buttons }, context) {
410
+ const prisma = await getPrisma()
411
+ const row = await prisma.thread_sessions.findFirst({
412
+ where: { session_id: context.sessionID },
413
+ select: { thread_id: true },
414
+ })
415
+
416
+ if (!row?.thread_id) {
417
+ return 'Could not find thread for current session'
418
+ }
419
+
420
+ // Insert IPC request for the bot to pick up via polling
421
+ const ipcRow = await createIpcRequest({
422
+ type: 'action_buttons',
423
+ sessionId: context.sessionID,
424
+ threadId: row.thread_id,
425
+ payload: JSON.stringify({
426
+ buttons,
427
+ directory: context.directory,
428
+ }),
429
+ })
430
+
431
+ // Wait for bot to acknowledge (status changes from pending to processing/completed)
432
+ const deadline = Date.now() + ACTION_BUTTON_TIMEOUT_MS
433
+ const POLL_INTERVAL_MS = 200
434
+ while (Date.now() < deadline) {
435
+ await new Promise((resolve) => {
436
+ setTimeout(resolve, POLL_INTERVAL_MS)
437
+ })
438
+ const updated = await getIpcRequestById({ id: ipcRow.id })
439
+ if (!updated || updated.status === 'cancelled') {
440
+ return 'Action button request was cancelled'
441
+ }
442
+ if (updated.response) {
443
+ const parsed = JSON.parse(updated.response) as {
444
+ ok?: boolean
445
+ error?: string
446
+ }
447
+ if (parsed.error) {
448
+ return `Action button request failed: ${parsed.error}`
449
+ }
450
+ return `Action button(s) shown: ${buttons.map((button) => button.label).join(', ')}`
451
+ }
452
+ }
453
+
454
+ return 'Action button request timed out'
455
+ },
456
+ }),
457
+ kimaki_archive_thread: tool({
458
+ description:
459
+ 'Archive the current Discord thread to hide it from the Discord left sidebar. Only call this when the user explicitly asks to close or archive the thread and only after your final message contains no new information the user needs to read (for example, after confirming a git push). If the user asks to set a reminder or scheduled task and it is successfully created, archive the thread after sending the final confirmation. If you archive too early, the user may miss that message notification in Discord. This tool also aborts the current session, so it should ALWAYS be called as the last tool in your response.',
460
+ args: {},
461
+ async execute(_args, context) {
462
+ const prisma = await getPrisma()
463
+ const row = await prisma.thread_sessions.findFirst({
464
+ where: { session_id: context.sessionID },
465
+ select: { thread_id: true },
466
+ })
467
+
468
+ if (!row?.thread_id) {
469
+ return 'Could not find thread for current session'
470
+ }
471
+
472
+ await archiveThread({
473
+ rest,
474
+ threadId: row.thread_id,
475
+ sessionId: context.sessionID,
476
+ client,
477
+ archiveDelay: 10_000,
478
+ })
479
+
480
+ return 'Thread archived and session stopped'
481
+ },
482
+ }),
483
+ },
484
+
485
+ // Inject synthetic parts for branch changes and idle-time gaps.
486
+ // Synthetic parts are hidden from the TUI but sent to the model,
487
+ // keeping it aware of context changes without cluttering the UI.
488
+ 'chat.message': async (input, output) => {
489
+ const hookResult = await errore.tryAsync({
490
+ try: async () => {
491
+ const now = Date.now()
492
+ const first = output.parts[0]
493
+ if (!first) {
494
+ return
495
+ }
496
+
497
+ const { sessionID } = input
498
+ const messageID =
499
+ typeof first === 'object' && first !== null && 'messageID' in first
500
+ ? first.messageID
501
+ : ''
502
+
503
+ // -- Branch / detached HEAD detection --
504
+ // Injects context when git state first appears or changes mid-session.
505
+ const gitState = await resolveGitState({ directory })
506
+ if (gitState) {
507
+ const previousState = sessionGitStates.get(sessionID)
508
+ if (!previousState || previousState.key !== gitState.key) {
509
+ const info = (() => {
510
+ if (gitState.warning) {
511
+ return gitState.warning
512
+ }
513
+ if (previousState?.kind === 'branch') {
514
+ return `[Branch changed: ${previousState.label} -> ${gitState.label}]`
515
+ }
516
+ return `[Current branch: ${gitState.label}]`
517
+ })()
518
+
519
+ sessionGitStates.set(sessionID, gitState)
520
+ output.parts.push({
521
+ id: crypto.randomUUID(),
522
+ sessionID,
523
+ messageID,
524
+ type: 'text' as const,
525
+ text: info,
526
+ synthetic: true,
527
+ })
528
+ }
529
+ }
530
+
531
+ // -- MEMORY.md injection --
532
+ // On the first user message in a session, read MEMORY.md from the
533
+ // project root and inject a condensed table of contents (headings
534
+ // with line numbers, bodies collapsed to ...). The agent can use
535
+ // Read with offset/limit to drill into specific sections.
536
+ if (!sessionMemoryInjected.has(sessionID)) {
537
+ sessionMemoryInjected.add(sessionID)
538
+ const memoryPath = path.join(directory, 'MEMORY.md')
539
+ const memoryContent = await fs.promises
540
+ .readFile(memoryPath, 'utf-8')
541
+ .catch(() => null)
542
+ if (memoryContent) {
543
+ const condensed = condenseMemoryMd(memoryContent)
544
+ output.parts.push({
545
+ id: crypto.randomUUID(),
546
+ sessionID,
547
+ messageID,
548
+ type: 'text' as const,
549
+ text: `<system-reminder>Project memory from MEMORY.md (condensed table of contents, line numbers shown):\n${condensed}\nOnly headings are shown above — section bodies are hidden. Use Grep to search MEMORY.md for specific topics, or Read with offset and limit to read a section's content. When writing to MEMORY.md, make headings detailed and descriptive since they are the only thing visible in this prompt. You can update MEMORY.md to store learnings, tips, insights that will help prevent same mistakes, and context worth preserving across sessions.</system-reminder>`,
550
+ synthetic: true,
551
+ })
552
+ }
553
+ }
554
+
555
+ // -- Time since last message --
556
+ // If more than 10 minutes passed since the last user message in this session,
557
+ // inject current time context so the model is aware of the gap.
558
+ const lastTime = sessionLastMessageTime.get(sessionID)
559
+ sessionLastMessageTime.set(sessionID, now)
560
+
561
+ if (lastTime) {
562
+ const elapsed = now - lastTime
563
+ const TEN_MINUTES = 10 * 60 * 1000
564
+ if (elapsed >= TEN_MINUTES) {
565
+ const totalMinutes = Math.floor(elapsed / 60_000)
566
+ const hours = Math.floor(totalMinutes / 60)
567
+ const minutes = totalMinutes % 60
568
+ const elapsedStr =
569
+ hours > 0 ? `${hours}h ${minutes}m` : `${totalMinutes}m`
570
+
571
+ const utcStr = new Date(now)
572
+ .toISOString()
573
+ .replace('T', ' ')
574
+ .replace(/\.\d+Z$/, ' UTC')
575
+ const localTz = Intl.DateTimeFormat().resolvedOptions().timeZone
576
+ const localStr = new Date(now).toLocaleString('en-US', {
577
+ timeZone: localTz,
578
+ year: 'numeric',
579
+ month: '2-digit',
580
+ day: '2-digit',
581
+ hour: '2-digit',
582
+ minute: '2-digit',
583
+ hour12: false,
584
+ })
585
+
586
+ output.parts.push({
587
+ id: crypto.randomUUID(),
588
+ sessionID,
589
+ messageID,
590
+ type: 'text' as const,
591
+ text: `[${elapsedStr} since last message | UTC: ${utcStr} | Local (${localTz}): ${localStr}]`,
592
+ synthetic: true,
593
+ })
594
+
595
+ // -- Memory save reminder on idle gap --
596
+ // When the user comes back after a long break, remind the model
597
+ // to save any important context from the previous conversation.
598
+ output.parts.push({
599
+ id: crypto.randomUUID(),
600
+ sessionID,
601
+ messageID,
602
+ type: 'text' as const,
603
+ text: '<system-reminder>Long gap since last message. If the previous conversation had important learnings, tips, insights that will help prevent same mistakes, or context worth preserving, update MEMORY.md before starting the new task.</system-reminder>',
604
+ synthetic: true,
605
+ })
606
+ }
607
+ }
608
+ },
609
+ catch: (error) => {
610
+ return new Error('chat.message hook failed', { cause: error })
611
+ },
612
+ })
613
+ if (hookResult instanceof Error) {
614
+ logger.warn(
615
+ `[opencode-plugin chat.message] ${formatErrorWithStack(hookResult)}`,
616
+ )
617
+ void notifyError(hookResult, 'opencode-plugin chat.message hook failed')
618
+ }
619
+ },
620
+
621
+ // Clean up per-session tracking state when sessions are deleted
622
+ event: async ({ event }) => {
623
+ const cleanupResult = await errore.tryAsync({
624
+ try: async () => {
625
+ if (event.type !== 'session.deleted') {
626
+ return
627
+ }
628
+
629
+ const id = event.properties?.info?.id
630
+ if (!id) {
631
+ return
632
+ }
633
+
634
+ sessionGitStates.delete(id)
635
+ sessionLastMessageTime.delete(id)
636
+ sessionMemoryInjected.delete(id)
637
+ },
638
+ catch: (error) => {
639
+ return new Error('event hook failed', { cause: error })
640
+ },
641
+ })
642
+ if (cleanupResult instanceof Error) {
643
+ logger.warn(
644
+ `[opencode-plugin event] ${formatErrorWithStack(cleanupResult)}`,
645
+ )
646
+ void notifyError(cleanupResult, 'opencode-plugin event hook failed')
647
+ }
648
+ },
649
+ }
650
+ }
651
+
652
+ export { kimakiPlugin }