@polderlabs/bizar 6.2.5 → 6.3.0

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 (329) hide show
  1. package/.claude/CLAUDE.md +15 -0
  2. package/.claude/agents/_shared/AGENT_BASELINE.md +168 -0
  3. package/.claude/agents/_shared/CLAUDE_TOOLS.md +412 -0
  4. package/.claude/agents/_shared/SKILLS.md +109 -0
  5. package/.claude/agents/agent-browser.md +80 -0
  6. package/.claude/agents/baldr.md +49 -0
  7. package/.claude/agents/forseti.md +51 -0
  8. package/.claude/agents/frigg.md +42 -0
  9. package/.claude/agents/heimdall.md +33 -0
  10. package/.claude/agents/hermod.md +53 -0
  11. package/.claude/agents/mimir.md +49 -0
  12. package/.claude/agents/odin.md +287 -0
  13. package/.claude/agents/quick.md +34 -0
  14. package/.claude/agents/semble-search.md +50 -0
  15. package/.claude/agents/thor.md +53 -0
  16. package/.claude/agents/tyr.md +56 -0
  17. package/.claude/agents/vidarr.md +54 -0
  18. package/.claude/agents/vor.md +53 -0
  19. package/.claude/commands/audit.md +25 -0
  20. package/.claude/commands/bizar.md +22 -0
  21. package/.claude/commands/explain.md +17 -0
  22. package/.claude/commands/init.md +29 -0
  23. package/.claude/commands/learn.md +44 -0
  24. package/.claude/commands/plan.md +35 -0
  25. package/.claude/commands/plow-through.md +50 -0
  26. package/.claude/commands/pr-review.md +49 -0
  27. package/.claude/commands/setup-provider.md +96 -0
  28. package/.claude/commands/tailscale-serve.md +100 -0
  29. package/.claude/commands/team.md +132 -0
  30. package/.claude/commands/test.md +62 -0
  31. package/.claude/commands/validate.md +68 -0
  32. package/.claude/commands/visual-plan.md +24 -0
  33. package/.claude/hooks/README.md +92 -0
  34. package/.claude/hooks/posttooluse-editwrite.mjs +91 -0
  35. package/.claude/hooks/pretooluse-bash.mjs +81 -0
  36. package/.claude/hooks/pretooluse-editwrite.mjs +139 -0
  37. package/.claude/hooks/sessionend-recall.mjs +74 -0
  38. package/.claude/hooks/sessionstart-prime.mjs +80 -0
  39. package/.claude/hooks/userpromptsubmit-tag.mjs +80 -0
  40. package/.claude/settings.json +116 -0
  41. package/.claude/skills/9router/SKILL.md +80 -0
  42. package/.claude/skills/9router-chat/SKILL.md +73 -0
  43. package/.claude/skills/9router-embeddings/SKILL.md +69 -0
  44. package/.claude/skills/9router-image/SKILL.md +86 -0
  45. package/.claude/skills/9router-stt/SKILL.md +79 -0
  46. package/.claude/skills/9router-tts/SKILL.md +80 -0
  47. package/.claude/skills/9router-web-fetch/SKILL.md +99 -0
  48. package/.claude/skills/9router-web-search/SKILL.md +91 -0
  49. package/.claude/skills/bizar/README.md +9 -0
  50. package/.claude/skills/bizar/SKILL.md +450 -0
  51. package/.claude/skills/cpp-coding-standards/README.md +28 -0
  52. package/.claude/skills/cpp-coding-standards/SKILL.md +634 -0
  53. package/.claude/skills/cpp-coding-standards/references/concurrency.md +320 -0
  54. package/.claude/skills/cpp-coding-standards/references/error-handling.md +229 -0
  55. package/.claude/skills/cpp-coding-standards/references/memory-safety.md +216 -0
  56. package/.claude/skills/cpp-coding-standards/references/modern-idioms.md +282 -0
  57. package/.claude/skills/cpp-coding-standards/references/review-checklist.md +96 -0
  58. package/.claude/skills/cpp-testing/README.md +28 -0
  59. package/.claude/skills/cpp-testing/SKILL.md +304 -0
  60. package/.claude/skills/cpp-testing/references/coverage.md +370 -0
  61. package/.claude/skills/cpp-testing/references/framework-compare.md +175 -0
  62. package/.claude/skills/cpp-testing/references/host-test-for-embedded.md +499 -0
  63. package/.claude/skills/cpp-testing/references/mocking.md +364 -0
  64. package/.claude/skills/cpp-testing/references/tdd-workflow.md +308 -0
  65. package/.claude/skills/cubesandbox/SKILL.md +148 -0
  66. package/.claude/skills/embedded-esp-idf/README.md +41 -0
  67. package/.claude/skills/embedded-esp-idf/SKILL.md +439 -0
  68. package/.claude/skills/embedded-esp-idf/references/freertos-patterns.md +214 -0
  69. package/.claude/skills/embedded-esp-idf/references/host-tests.md +164 -0
  70. package/.claude/skills/embedded-esp-idf/references/idf-py-commands.md +157 -0
  71. package/.claude/skills/embedded-esp-idf/references/kconfig.md +159 -0
  72. package/.claude/skills/embedded-esp-idf/references/logging-discipline.md +118 -0
  73. package/.claude/skills/embedded-esp-idf/references/memory-and-iram.md +137 -0
  74. package/.claude/skills/embedded-esp-idf/references/nvs.md +121 -0
  75. package/.claude/skills/embedded-esp-idf/references/packed-structs.md +192 -0
  76. package/.claude/skills/embedded-esp-idf/scripts/idf_env.sh +47 -0
  77. package/.claude/skills/embedded-esp-idf/scripts/size_check.sh +77 -0
  78. package/.claude/skills/glyph/SKILL.md +163 -0
  79. package/.claude/skills/harness-engineering/SKILL.md +143 -0
  80. package/.claude/skills/lightrag/SKILL.md +81 -0
  81. package/.claude/skills/memory-protocol/SKILL.md +105 -0
  82. package/.claude/skills/obsidian/SKILL.md +306 -0
  83. package/.claude/skills/read-the-damn-docs/SKILL.md +113 -0
  84. package/.claude/skills/self-improvement/SKILL.md +64 -0
  85. package/README.md +87 -59
  86. package/bizar-dash/dist/assets/{EnvVarsSection-DXM8gRm_.js → EnvVarsSection-B58aiJiE.js} +1 -1
  87. package/bizar-dash/dist/assets/{EnvVarsSection-DXM8gRm_.js.map → EnvVarsSection-B58aiJiE.js.map} +1 -1
  88. package/bizar-dash/dist/assets/{MobileChat-BnKN_Ks_.js → MobileChat-BJrqwVDd.js} +1 -1
  89. package/bizar-dash/dist/assets/{MobileChat-BnKN_Ks_.js.map → MobileChat-BJrqwVDd.js.map} +1 -1
  90. package/bizar-dash/dist/assets/{MobileSettings-DjCPxC-Q.js → MobileSettings-CEQNJNLJ.js} +1 -1
  91. package/bizar-dash/dist/assets/{MobileSettings-DjCPxC-Q.js.map → MobileSettings-CEQNJNLJ.js.map} +1 -1
  92. package/bizar-dash/dist/assets/{main-DYiZqMrn.js → main-IvfQAOfy.js} +1 -1
  93. package/bizar-dash/dist/assets/{main-DYiZqMrn.js.map → main-IvfQAOfy.js.map} +1 -1
  94. package/bizar-dash/dist/assets/{markdown-C6mXtQxD.js → markdown-tOLaD6nm.js} +1 -1
  95. package/bizar-dash/dist/assets/{markdown-C6mXtQxD.js.map → markdown-tOLaD6nm.js.map} +1 -1
  96. package/bizar-dash/dist/assets/{mobile-CMHqtLV2.js → mobile-DYCHcUpq.js} +1 -1
  97. package/bizar-dash/dist/assets/{mobile-CMHqtLV2.js.map → mobile-DYCHcUpq.js.map} +1 -1
  98. package/bizar-dash/dist/assets/{mobile-layout-3jIhHX_p.js → mobile-layout-CBHjpwsb.js} +2 -2
  99. package/bizar-dash/dist/assets/{mobile-layout-3jIhHX_p.js.map → mobile-layout-CBHjpwsb.js.map} +1 -1
  100. package/bizar-dash/dist/assets/{useSlashCommands-DtITw8Xv.js → useSlashCommands-Bd7_FA6U.js} +2 -2
  101. package/bizar-dash/dist/assets/{useSlashCommands-DtITw8Xv.js.map → useSlashCommands-Bd7_FA6U.js.map} +1 -1
  102. package/bizar-dash/dist/assets/{vendor-CeHGtduv.js → vendor-C843201K.js} +12 -12
  103. package/bizar-dash/dist/assets/vendor-C843201K.js.map +1 -0
  104. package/bizar-dash/dist/index.html +6 -6
  105. package/bizar-dash/dist/mobile.html +2 -2
  106. package/bizar-dash/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -1
  107. package/bizar-dash/src/server/api.mjs +4 -4
  108. package/bizar-dash/src/server/background-store.mjs +15 -16
  109. package/bizar-dash/src/server/bg-poller.mjs +25 -35
  110. package/bizar-dash/src/server/bg-retry.mjs +66 -194
  111. package/bizar-dash/src/server/claude-bg-spawner.mjs +390 -0
  112. package/bizar-dash/src/server/claude-info.mjs +412 -0
  113. package/bizar-dash/src/server/{cline-runner.mjs → claude-runner.mjs} +53 -48
  114. package/bizar-dash/src/server/claude-sdk.mjs +191 -0
  115. package/bizar-dash/src/server/providers-store.mjs +22 -49
  116. package/bizar-dash/src/server/routes/background.mjs +24 -20
  117. package/bizar-dash/src/server/routes/chat.mjs +223 -326
  118. package/bizar-dash/src/server/routes/claude-session-detail.mjs +329 -0
  119. package/bizar-dash/src/server/routes/claude-sessions.mjs +259 -0
  120. package/bizar-dash/src/server/routes/tasks.mjs +20 -28
  121. package/bizar-dash/src/server/task-delegator.mjs +76 -77
  122. package/bizar-dash/src/web/components/chat/useChat.ts +23 -27
  123. package/bizar-dash/src/web/views/Chat.tsx +8 -8
  124. package/cli/bin.mjs +17 -18
  125. package/cli/commands/claude-cmd.mjs +348 -0
  126. package/cli/commands/install.mjs +12 -11
  127. package/cli/commands/validate.mjs +252 -325
  128. package/cli/dev-link.test.mjs +11 -11
  129. package/cli/doctor.mjs +131 -213
  130. package/cli/install.mjs +33 -37
  131. package/cli/install.test.mjs +9 -9
  132. package/cli/provision-claude.mjs +893 -0
  133. package/cli/provision.mjs +224 -227
  134. package/cli/utils.mjs +72 -58
  135. package/config/AGENTS.md +28 -28
  136. package/install.sh +66 -44
  137. package/package.json +19 -11
  138. package/packages/sdk/ARCHITECTURE.md +40 -36
  139. package/packages/sdk/package-lock.json +32 -0
  140. package/packages/sdk/package.json +15 -5
  141. package/{plugins/bizar → packages/sdk}/src/dangerous-patterns.ts +6 -28
  142. package/packages/sdk/src/fingerprint.ts +0 -0
  143. package/packages/sdk/src/index.ts +38 -73
  144. package/packages/sdk/src/mcp/bin.ts +51 -0
  145. package/packages/sdk/src/mcp/server.ts +498 -0
  146. package/{plugins/bizar/src/memory-vault.ts → packages/sdk/src/memory/index.ts} +18 -21
  147. package/packages/sdk/tests/sdk.test.mjs +148 -0
  148. package/packages/sdk/vitest.config.ts +1 -1
  149. package/scripts/bh-full-e2e.mjs +166 -363
  150. package/scripts/check-deps.mjs +28 -46
  151. package/scripts/mirror-claude-md.sh +78 -0
  152. package/scripts/test-in-container.sh +31 -9
  153. package/templates/clean-state-checklist.md +3 -3
  154. package/templates/sprint-contract.md +2 -2
  155. package/bizar-dash/.bizar/activity.log +0 -3
  156. package/bizar-dash/.omx/logs/omx-2026-07-07.jsonl +0 -1
  157. package/bizar-dash/.omx/state/session.json +0 -10
  158. package/bizar-dash/bizar-design/EXPLANATION.md +0 -307
  159. package/bizar-dash/bizar-design/INSTRUCTIONS.md +0 -149
  160. package/bizar-dash/bizar-design/canvas.html +0 -281
  161. package/bizar-dash/bizar-design/canvas.html.artifact.json +0 -19
  162. package/bizar-dash/bizar-design/components.css +0 -1665
  163. package/bizar-dash/bizar-design/components.html +0 -557
  164. package/bizar-dash/bizar-design/components.html.artifact.json +0 -19
  165. package/bizar-dash/bizar-design/desktop/agents.html +0 -74
  166. package/bizar-dash/bizar-design/desktop/agents.html.artifact.json +0 -19
  167. package/bizar-dash/bizar-design/desktop/memory.html +0 -75
  168. package/bizar-dash/bizar-design/desktop/memory.html.artifact.json +0 -19
  169. package/bizar-dash/bizar-design/desktop/metrics.html +0 -63
  170. package/bizar-dash/bizar-design/desktop/metrics.html.artifact.json +0 -19
  171. package/bizar-dash/bizar-design/desktop/overview.html +0 -95
  172. package/bizar-dash/bizar-design/desktop/overview.html.artifact.json +0 -19
  173. package/bizar-dash/bizar-design/desktop/settings.html +0 -70
  174. package/bizar-dash/bizar-design/desktop/settings.html.artifact.json +0 -19
  175. package/bizar-dash/bizar-design/icons.svg +0 -44
  176. package/bizar-dash/bizar-design/index.html +0 -192
  177. package/bizar-dash/bizar-design/index.html.artifact.json +0 -19
  178. package/bizar-dash/bizar-design/mobile/agents.html +0 -29
  179. package/bizar-dash/bizar-design/mobile/agents.html.artifact.json +0 -19
  180. package/bizar-dash/bizar-design/mobile/memory.html +0 -28
  181. package/bizar-dash/bizar-design/mobile/memory.html.artifact.json +0 -19
  182. package/bizar-dash/bizar-design/mobile/metrics.html +0 -29
  183. package/bizar-dash/bizar-design/mobile/metrics.html.artifact.json +0 -19
  184. package/bizar-dash/bizar-design/mobile/overview.html +0 -33
  185. package/bizar-dash/bizar-design/mobile/overview.html.artifact.json +0 -19
  186. package/bizar-dash/bizar-design/mobile/settings.html +0 -28
  187. package/bizar-dash/bizar-design/mobile/settings.html.artifact.json +0 -19
  188. package/bizar-dash/bizar-design/prototype.js +0 -114
  189. package/bizar-dash/bizar-design/tokens.css +0 -106
  190. package/bizar-dash/dist/assets/vendor-CeHGtduv.js.map +0 -1
  191. package/bizar-dash/node_modules/.package-lock.json +0 -6
  192. package/bizar-dash/package-lock.json +0 -6
  193. package/bizar-dash/src/server/cline-sdk.mjs +0 -132
  194. package/bizar-dash/src/server/routes/cline-session-detail.mjs +0 -559
  195. package/bizar-dash/src/server/routes/cline-sessions.mjs +0 -291
  196. package/cli/commands/cline-cmd.mjs +0 -289
  197. package/cli/commands/validate.test.mjs +0 -379
  198. package/cli/doctor.test.mjs +0 -350
  199. package/config/cline.json.template +0 -342
  200. package/packages/sdk/src/client.ts +0 -188
  201. package/packages/sdk/src/cline-events.ts +0 -134
  202. package/packages/sdk/src/cline-types.ts +0 -66
  203. package/packages/sdk/src/cline.ts +0 -339
  204. package/packages/sdk/src/errors.ts +0 -129
  205. package/packages/sdk/src/events.ts +0 -153
  206. package/packages/sdk/src/types.ts +0 -176
  207. package/packages/sdk/tests/client.test.ts +0 -217
  208. package/packages/sdk/tests/errors.test.ts +0 -108
  209. package/packages/sdk/tests/events.test.ts +0 -139
  210. package/packages/sdk/tests/fixtures/fetch-mock.ts +0 -152
  211. package/packages/sdk/tests/fixtures/sse-mock.ts +0 -30
  212. package/plugins/bizar/ARCHITECTURE.md +0 -142
  213. package/plugins/bizar/CONSTRAINTS.md +0 -67
  214. package/plugins/bizar/LICENSE +0 -21
  215. package/plugins/bizar/README.md +0 -448
  216. package/plugins/bizar/index.ts +0 -925
  217. package/plugins/bizar/package.json +0 -39
  218. package/plugins/bizar/scripts/check-forbidden-imports.sh +0 -33
  219. package/plugins/bizar/src/background-state.ts +0 -641
  220. package/plugins/bizar/src/background.ts +0 -1806
  221. package/plugins/bizar/src/cline-runner.ts +0 -203
  222. package/plugins/bizar/src/clineruntime.ts +0 -227
  223. package/plugins/bizar/src/commands-impl.ts +0 -151
  224. package/plugins/bizar/src/commands.ts +0 -1799
  225. package/plugins/bizar/src/compaction.d.mts +0 -48
  226. package/plugins/bizar/src/compaction.mjs +0 -192
  227. package/plugins/bizar/src/dashboard-client.ts +0 -233
  228. package/plugins/bizar/src/event-stream.ts +0 -606
  229. package/plugins/bizar/src/fingerprint.ts +0 -120
  230. package/plugins/bizar/src/handoff.ts +0 -79
  231. package/plugins/bizar/src/hooks/memory-flush-on-compact.ts +0 -123
  232. package/plugins/bizar/src/hooks/memory-inject.ts +0 -247
  233. package/plugins/bizar/src/hooks/memory-write-on-end.ts +0 -188
  234. package/plugins/bizar/src/hooks/skill-curator.ts +0 -180
  235. package/plugins/bizar/src/http-client.ts +0 -467
  236. package/plugins/bizar/src/key-rotation.ts +0 -218
  237. package/plugins/bizar/src/logger.ts +0 -144
  238. package/plugins/bizar/src/loop-engineering.ts +0 -241
  239. package/plugins/bizar/src/loop.ts +0 -176
  240. package/plugins/bizar/src/mistake-recovery.ts +0 -98
  241. package/plugins/bizar/src/odin.ts +0 -227
  242. package/plugins/bizar/src/options.ts +0 -470
  243. package/plugins/bizar/src/plan-fs.ts +0 -323
  244. package/plugins/bizar/src/reasoning-clean.ts +0 -454
  245. package/plugins/bizar/src/report.ts +0 -178
  246. package/plugins/bizar/src/research-prompt.ts +0 -35
  247. package/plugins/bizar/src/serve-info.ts +0 -228
  248. package/plugins/bizar/src/serve.ts +0 -496
  249. package/plugins/bizar/src/settings.ts +0 -349
  250. package/plugins/bizar/src/state.ts +0 -298
  251. package/plugins/bizar/src/tool-discipline.ts +0 -105
  252. package/plugins/bizar/src/tools/agent-browser.ts +0 -315
  253. package/plugins/bizar/src/tools/bg-collect.ts +0 -131
  254. package/plugins/bizar/src/tools/bg-get-comments.ts +0 -266
  255. package/plugins/bizar/src/tools/bg-kill.ts +0 -116
  256. package/plugins/bizar/src/tools/bg-pause.ts +0 -99
  257. package/plugins/bizar/src/tools/bg-report-progress.ts +0 -115
  258. package/plugins/bizar/src/tools/bg-resume.ts +0 -94
  259. package/plugins/bizar/src/tools/bg-send-message.ts +0 -223
  260. package/plugins/bizar/src/tools/bg-spawn.ts +0 -502
  261. package/plugins/bizar/src/tools/bg-status.ts +0 -130
  262. package/plugins/bizar/src/tools/graph-query.ts +0 -278
  263. package/plugins/bizar/src/tools/loop-engineering.ts +0 -193
  264. package/plugins/bizar/src/tools/memory-list.ts +0 -43
  265. package/plugins/bizar/src/tools/memory-read.ts +0 -69
  266. package/plugins/bizar/src/tools/memory-search.ts +0 -47
  267. package/plugins/bizar/src/tools/memory-write.ts +0 -54
  268. package/plugins/bizar/src/tools/open-kb.ts +0 -198
  269. package/plugins/bizar/src/tools/plan-action.ts +0 -785
  270. package/plugins/bizar/src/tools/read-glyph-feedback.ts +0 -191
  271. package/plugins/bizar/src/tools/sandbox.ts +0 -232
  272. package/plugins/bizar/src/tools/team-spawn.ts +0 -73
  273. package/plugins/bizar/src/tools/team-status.ts +0 -76
  274. package/plugins/bizar/src/tools/wait-for-feedback.ts +0 -415
  275. package/plugins/bizar/src/trajectory.ts +0 -104
  276. package/plugins/bizar/tests/README.md +0 -99
  277. package/plugins/bizar/tests/attach-handler-bug.test.ts +0 -169
  278. package/plugins/bizar/tests/background-state.test.ts +0 -277
  279. package/plugins/bizar/tests/background.test.ts +0 -402
  280. package/plugins/bizar/tests/block.test.ts +0 -195
  281. package/plugins/bizar/tests/canonical-key-order.test.ts +0 -75
  282. package/plugins/bizar/tests/clineruntime-config.test.ts +0 -283
  283. package/plugins/bizar/tests/commands-impl.test.ts +0 -316
  284. package/plugins/bizar/tests/commands.test.ts +0 -584
  285. package/plugins/bizar/tests/compaction.test.ts +0 -264
  286. package/plugins/bizar/tests/config.test.ts +0 -128
  287. package/plugins/bizar/tests/dashboard-client.test.ts +0 -159
  288. package/plugins/bizar/tests/dispose.test.ts +0 -336
  289. package/plugins/bizar/tests/event-stream.test.ts +0 -409
  290. package/plugins/bizar/tests/event.test.ts +0 -262
  291. package/plugins/bizar/tests/fingerprint.test.ts +0 -190
  292. package/plugins/bizar/tests/http-client.test.ts +0 -404
  293. package/plugins/bizar/tests/init-helpers.test.ts +0 -203
  294. package/plugins/bizar/tests/integration/slash-command.test.ts +0 -349
  295. package/plugins/bizar/tests/integration/tool-routing.test.ts +0 -98
  296. package/plugins/bizar/tests/key-rotation.test.ts +0 -396
  297. package/plugins/bizar/tests/loop-engineering.test.ts +0 -168
  298. package/plugins/bizar/tests/loop.test.ts +0 -397
  299. package/plugins/bizar/tests/memory-write-on-end.test.ts +0 -92
  300. package/plugins/bizar/tests/mistake-recovery.test.ts +0 -116
  301. package/plugins/bizar/tests/odin.test.ts +0 -125
  302. package/plugins/bizar/tests/options.test.ts +0 -329
  303. package/plugins/bizar/tests/reasoning-clean.test.ts +0 -422
  304. package/plugins/bizar/tests/safety.test.ts +0 -281
  305. package/plugins/bizar/tests/serve.test.ts +0 -339
  306. package/plugins/bizar/tests/settings.test.ts +0 -351
  307. package/plugins/bizar/tests/stall-think.test.ts +0 -750
  308. package/plugins/bizar/tests/state.test.ts +0 -276
  309. package/plugins/bizar/tests/tool-discipline.test.ts +0 -77
  310. package/plugins/bizar/tests/tools/agent-browser.test.ts +0 -98
  311. package/plugins/bizar/tests/tools/bg-collect.test.ts +0 -337
  312. package/plugins/bizar/tests/tools/bg-get-comments.test.ts +0 -485
  313. package/plugins/bizar/tests/tools/bg-kill.test.ts +0 -235
  314. package/plugins/bizar/tests/tools/bg-pause.test.ts +0 -61
  315. package/plugins/bizar/tests/tools/bg-report-progress.test.ts +0 -79
  316. package/plugins/bizar/tests/tools/bg-resume.test.ts +0 -40
  317. package/plugins/bizar/tests/tools/bg-send-message.test.ts +0 -116
  318. package/plugins/bizar/tests/tools/bg-spawn-delegation.test.ts +0 -147
  319. package/plugins/bizar/tests/tools/bg-spawn-http.test.ts +0 -233
  320. package/plugins/bizar/tests/tools/bg-spawn.test.ts +0 -311
  321. package/plugins/bizar/tests/tools/bg-status.test.ts +0 -217
  322. package/plugins/bizar/tests/tools/cline-runner.test.ts +0 -115
  323. package/plugins/bizar/tests/tools/plan-action.test.ts +0 -599
  324. package/plugins/bizar/tests/tools/read-glyph-feedback.test.ts +0 -253
  325. package/plugins/bizar/tests/tools/sandbox.test.ts +0 -117
  326. package/plugins/bizar/tests/tools/wait-for-feedback.test.ts +0 -390
  327. package/plugins/bizar/tests/update-deadlock.test.ts +0 -151
  328. package/plugins/bizar/tsconfig.json +0 -29
  329. package/scripts/mirror-agents-md.sh +0 -69
@@ -1,599 +0,0 @@
1
- /**
2
- * plan-action.test.ts
3
- *
4
- * Tests for the `planAction` core function in src/tools/plan-action.ts.
5
- *
6
- * The tool factory (`createPlanActionTool`) is a thin Zod schema + JSON
7
- * wrapper around `planAction`. Testing the core function directly is
8
- * faster and lets us drive edge cases that the framework would reject
9
- * before reaching our code.
10
- *
11
- * Groups (13 tests):
12
- * 1. get_canvas (success + missing + corrupt)
13
- * 2. add_element (id generation + defaults)
14
- * 3. update_element (patch + missing)
15
- * 4. delete_element (cascade connections/comments)
16
- * 5. add_connection (id generation + shorthand normalization)
17
- * 6. delete_connection (success + missing)
18
- * 7. add_comment (id + timestamp)
19
- * 8. reply_to_comment (append to thread + missing)
20
- * 9. set_status (update meta.json + touch plan.json)
21
- * 10. invalid slug
22
- * 11. corrupt plan.json does not throw
23
- * 12. concurrent writes do not lose data
24
- * 13. unknown action
25
- */
26
-
27
- import { describe, test, expect, beforeAll, afterAll } from "bun:test";
28
- import {
29
- mkdtempSync,
30
- rmSync,
31
- mkdirSync,
32
- writeFileSync,
33
- existsSync,
34
- readFileSync,
35
- } from "node:fs";
36
- import { join } from "node:path";
37
- import { tmpdir } from "node:os";
38
-
39
- import { planAction } from "../../src/tools/plan-action.js";
40
-
41
- // ---------------------------------------------------------------------------
42
- // Fixtures
43
- // ---------------------------------------------------------------------------
44
-
45
- class MockLogger {
46
- messages: Array<{ level: string; message: string }> = [];
47
- log(opts: { level: string; message: string }) { this.messages.push(opts); }
48
- debug(m: string) { this.messages.push({ level: "debug", message: m }); }
49
- info(m: string) { this.messages.push({ level: "info", message: m }); }
50
- warn(m: string) { this.messages.push({ level: "warn", message: m }); }
51
- error(m: string) { this.messages.push({ level: "error", message: m }); }
52
- }
53
-
54
- let worktree: string;
55
- const logger = new MockLogger();
56
- const locks = new Map<string, Promise<unknown>>();
57
-
58
- beforeAll(() => {
59
- worktree = mkdtempSync(join(tmpdir(), "bizar-plan-action-test-"));
60
- });
61
-
62
- afterAll(() => {
63
- if (worktree) rmSync(worktree, { recursive: true, force: true });
64
- });
65
-
66
- function planDir(slug: string) {
67
- return join(worktree, "plans", slug);
68
- }
69
-
70
- function planJsonPath(slug: string) {
71
- return join(planDir(slug), "plan.json");
72
- }
73
-
74
- function metaJsonPath(slug: string) {
75
- return join(planDir(slug), "meta.json");
76
- }
77
-
78
- function seedCanvas(slug: string, canvas: unknown) {
79
- mkdirSync(planDir(slug), { recursive: true });
80
- writeFileSync(planJsonPath(slug), JSON.stringify(canvas), "utf-8");
81
- }
82
-
83
- function seedMeta(slug: string, meta: unknown) {
84
- mkdirSync(planDir(slug), { recursive: true });
85
- writeFileSync(metaJsonPath(slug), JSON.stringify(meta), "utf-8");
86
- }
87
-
88
- function readCanvas(slug: string): unknown {
89
- return JSON.parse(readFileSync(planJsonPath(slug), "utf-8"));
90
- }
91
-
92
- // ===========================================================================
93
- // Group 1 — get_canvas
94
- // ===========================================================================
95
-
96
- describe("planAction — get_canvas", () => {
97
- test("returns the full plan.json when present", async () => {
98
- const slug = "get-canvas-ok";
99
- seedCanvas(slug, {
100
- schemaVersion: 2,
101
- title: "Test",
102
- elements: [{ id: "el_a", title: "A" }],
103
- comments: [],
104
- });
105
- const r = await planAction(worktree, logger, locks, {
106
- action: "get_canvas",
107
- planSlug: slug,
108
- });
109
- expect(r.ok).toBe(true);
110
- if (r.ok) {
111
- expect(r.action).toBe("get_canvas");
112
- const canvas = r.canvas as { title?: string; elements?: unknown[] };
113
- expect(canvas.title).toBe("Test");
114
- expect(canvas.elements).toHaveLength(1);
115
- }
116
- });
117
-
118
- test("returns error when plan.json does not exist", async () => {
119
- const r = await planAction(worktree, logger, locks, {
120
- action: "get_canvas",
121
- planSlug: "nonexistent-plan",
122
- });
123
- expect(r.ok).toBe(false);
124
- if (!r.ok) {
125
- expect(r.error).toMatch(/Plan not found/);
126
- expect(r.planSlug).toBe("nonexistent-plan");
127
- }
128
- });
129
- });
130
-
131
- // ===========================================================================
132
- // Group 2 — add_element
133
- // ===========================================================================
134
-
135
- describe("planAction — add_element", () => {
136
- test("writes a new element with a generated id when none provided", async () => {
137
- const slug = "add-element-gen";
138
- await planAction(worktree, logger, locks, {
139
- action: "add_element",
140
- planSlug: slug,
141
- element: { title: "Generated" },
142
- });
143
- const canvas = readCanvas(slug) as { elements: Array<{ id: string; title: string }> };
144
- expect(canvas.elements).toHaveLength(1);
145
- expect(canvas.elements[0]!.id).toMatch(/^el_/);
146
- expect(canvas.elements[0]!.title).toBe("Generated");
147
- });
148
-
149
- test("preserves a provided id when present", async () => {
150
- const slug = "add-element-id";
151
- await planAction(worktree, logger, locks, {
152
- action: "add_element",
153
- planSlug: slug,
154
- element: { id: "el_custom", title: "Custom" },
155
- });
156
- const canvas = readCanvas(slug) as { elements: Array<{ id: string }> };
157
- expect(canvas.elements[0]!.id).toBe("el_custom");
158
- });
159
-
160
- test("applies default position/size when missing", async () => {
161
- const slug = "add-element-defaults";
162
- await planAction(worktree, logger, locks, {
163
- action: "add_element",
164
- planSlug: slug,
165
- element: { title: "T" },
166
- });
167
- const canvas = readCanvas(slug) as {
168
- elements: Array<{ x: number; y: number; width: number; height: number; type: string }>;
169
- };
170
- expect(canvas.elements[0]!.x).toBe(80);
171
- expect(canvas.elements[0]!.y).toBe(80);
172
- expect(canvas.elements[0]!.width).toBe(240);
173
- expect(canvas.elements[0]!.height).toBe(160);
174
- expect(canvas.elements[0]!.type).toBe("text");
175
- });
176
-
177
- test("returns an error when 'element' arg is missing", async () => {
178
- const r = await planAction(worktree, logger, locks, {
179
- action: "add_element",
180
- planSlug: "missing-element-arg",
181
- });
182
- expect(r.ok).toBe(false);
183
- if (!r.ok) {
184
- expect(r.error).toMatch(/Missing required argument: "element"/);
185
- }
186
- });
187
- });
188
-
189
- // ===========================================================================
190
- // Group 3 — update_element
191
- // ===========================================================================
192
-
193
- describe("planAction — update_element", () => {
194
- test("patches an existing element", async () => {
195
- const slug = "update-elem-ok";
196
- seedCanvas(slug, {
197
- schemaVersion: 2,
198
- elements: [{ id: "el_x", title: "Old", x: 10 }],
199
- });
200
- const r = await planAction(worktree, logger, locks, {
201
- action: "update_element",
202
- planSlug: slug,
203
- elementId: "el_x",
204
- element: { title: "New", x: 20 },
205
- });
206
- expect(r.ok).toBe(true);
207
- const canvas = readCanvas(slug) as { elements: Array<{ title: string; x: number; id: string }> };
208
- expect(canvas.elements[0]!.title).toBe("New");
209
- expect(canvas.elements[0]!.x).toBe(20);
210
- expect(canvas.elements[0]!.id).toBe("el_x"); // id preserved
211
- });
212
-
213
- test("returns error when element not found", async () => {
214
- const slug = "update-elem-missing";
215
- seedCanvas(slug, { schemaVersion: 2, elements: [] });
216
- const r = await planAction(worktree, logger, locks, {
217
- action: "update_element",
218
- planSlug: slug,
219
- elementId: "el_nope",
220
- element: { title: "X" },
221
- });
222
- expect(r.ok).toBe(false);
223
- if (!r.ok) expect(r.error).toMatch(/Element not found/);
224
- });
225
-
226
- test("returns error when elementId is missing", async () => {
227
- const r = await planAction(worktree, logger, locks, {
228
- action: "update_element",
229
- planSlug: "update-elem-no-id",
230
- element: { title: "X" },
231
- });
232
- expect(r.ok).toBe(false);
233
- if (!r.ok) expect(r.error).toMatch(/Missing required argument: "elementId"/);
234
- });
235
- });
236
-
237
- // ===========================================================================
238
- // Group 4 — delete_element (cascade)
239
- // ===========================================================================
240
-
241
- describe("planAction — delete_element", () => {
242
- test("removes the element and its connections + comments", async () => {
243
- const slug = "delete-elem-cascade";
244
- seedCanvas(slug, {
245
- schemaVersion: 2,
246
- elements: [
247
- { id: "el_a" },
248
- { id: "el_b" },
249
- ],
250
- connections: [
251
- { id: "conn_1", fromElementId: "el_a", toElementId: "el_b" },
252
- { id: "conn_2", fromElementId: "el_b", toElementId: "el_a" },
253
- ],
254
- comments: [
255
- { id: "c_1", elementId: "el_a", text: "Pinned to a" },
256
- { id: "c_2", elementId: "el_b", text: "Pinned to b" },
257
- { id: "c_3", elementId: null, text: "Canvas pinned" },
258
- ],
259
- });
260
- const r = await planAction(worktree, logger, locks, {
261
- action: "delete_element",
262
- planSlug: slug,
263
- elementId: "el_a",
264
- });
265
- expect(r.ok).toBe(true);
266
- if (r.ok) {
267
- expect(r.removed).toBe(1);
268
- expect(r.removedConnections).toBe(2);
269
- expect(r.removedComments).toBe(1); // only c_1; canvas-pinned c_3 kept
270
- }
271
- const canvas = readCanvas(slug) as {
272
- elements: unknown[];
273
- connections: unknown[];
274
- comments: Array<{ elementId: string | null }>;
275
- };
276
- expect(canvas.elements).toHaveLength(1);
277
- expect(canvas.connections).toHaveLength(0);
278
- expect(canvas.comments).toHaveLength(2);
279
- expect(canvas.comments.find((c) => c.elementId === null)).toBeDefined();
280
- });
281
- });
282
-
283
- // ===========================================================================
284
- // Group 5 — add_connection
285
- // ===========================================================================
286
-
287
- describe("planAction — add_connection", () => {
288
- test("writes a new connection with a generated id", async () => {
289
- const slug = "add-conn-gen";
290
- await planAction(worktree, logger, locks, {
291
- action: "add_connection",
292
- planSlug: slug,
293
- connection: { from: "el_a", to: "el_b" },
294
- });
295
- const canvas = readCanvas(slug) as { connections: Array<{ id: string; fromElementId: string; toElementId: string }> };
296
- expect(canvas.connections).toHaveLength(1);
297
- expect(canvas.connections[0]!.id).toMatch(/^conn_/);
298
- expect(canvas.connections[0]!.fromElementId).toBe("el_a");
299
- expect(canvas.connections[0]!.toElementId).toBe("el_b");
300
- });
301
-
302
- test("preserves a provided id", async () => {
303
- const slug = "add-conn-id";
304
- await planAction(worktree, logger, locks, {
305
- action: "add_connection",
306
- planSlug: slug,
307
- connection: { id: "conn_custom", fromElementId: "el_a", toElementId: "el_b" },
308
- });
309
- const canvas = readCanvas(slug) as { connections: Array<{ id: string }> };
310
- expect(canvas.connections[0]!.id).toBe("conn_custom");
311
- });
312
- });
313
-
314
- // ===========================================================================
315
- // Group 6 — delete_connection
316
- // ===========================================================================
317
-
318
- describe("planAction — delete_connection", () => {
319
- test("removes the connection", async () => {
320
- const slug = "del-conn-ok";
321
- seedCanvas(slug, {
322
- schemaVersion: 2,
323
- connections: [
324
- { id: "conn_x", fromElementId: "el_a", toElementId: "el_b" },
325
- ],
326
- });
327
- const r = await planAction(worktree, logger, locks, {
328
- action: "delete_connection",
329
- planSlug: slug,
330
- connectionId: "conn_x",
331
- });
332
- expect(r.ok).toBe(true);
333
- const canvas = readCanvas(slug) as { connections: unknown[] };
334
- expect(canvas.connections).toHaveLength(0);
335
- });
336
-
337
- test("returns error when connection not found", async () => {
338
- const slug = "del-conn-missing";
339
- seedCanvas(slug, { schemaVersion: 2, connections: [] });
340
- const r = await planAction(worktree, logger, locks, {
341
- action: "delete_connection",
342
- planSlug: slug,
343
- connectionId: "conn_nope",
344
- });
345
- expect(r.ok).toBe(false);
346
- if (!r.ok) expect(r.error).toMatch(/Connection not found/);
347
- });
348
- });
349
-
350
- // ===========================================================================
351
- // Group 7 — add_comment
352
- // ===========================================================================
353
-
354
- describe("planAction — add_comment", () => {
355
- test("writes a comment with generated id and timestamp", async () => {
356
- const slug = "add-comment-gen";
357
- await planAction(worktree, logger, locks, {
358
- action: "add_comment",
359
- planSlug: slug,
360
- comment: { elementId: "el_a", text: "Hi", author: "DrB0rk" },
361
- });
362
- const canvas = readCanvas(slug) as { comments: Array<{ id: string; created: string; thread: unknown[] }> };
363
- expect(canvas.comments).toHaveLength(1);
364
- expect(canvas.comments[0]!.id).toMatch(/^c_/);
365
- expect(canvas.comments[0]!.created).toMatch(/T/); // ISO-ish
366
- expect(canvas.comments[0]!.thread).toEqual([]);
367
- });
368
- });
369
-
370
- // ===========================================================================
371
- // Group 8 — reply_to_comment
372
- // ===========================================================================
373
-
374
- describe("planAction — reply_to_comment", () => {
375
- test("appends a reply to an existing comment's thread", async () => {
376
- const slug = "reply-comment-ok";
377
- seedCanvas(slug, {
378
- schemaVersion: 2,
379
- comments: [{ id: "c_target", elementId: "el_a", text: "Hello" }],
380
- });
381
- const r = await planAction(worktree, logger, locks, {
382
- action: "reply_to_comment",
383
- planSlug: slug,
384
- commentId: "c_target",
385
- reply: { author: "ai", text: "Done" },
386
- });
387
- expect(r.ok).toBe(true);
388
- if (r.ok) {
389
- expect(r.commentId).toBe("c_target");
390
- expect(r.replyId).toMatch(/^r_/);
391
- }
392
- const canvas = readCanvas(slug) as {
393
- comments: Array<{ thread: Array<{ id: string; author: string; text: string }> }>;
394
- };
395
- expect(canvas.comments[0]!.thread).toHaveLength(1);
396
- expect(canvas.comments[0]!.thread[0]!.author).toBe("ai");
397
- expect(canvas.comments[0]!.thread[0]!.text).toBe("Done");
398
- });
399
-
400
- test("returns error when comment not found", async () => {
401
- const slug = "reply-comment-missing";
402
- seedCanvas(slug, { schemaVersion: 2, comments: [] });
403
- const r = await planAction(worktree, logger, locks, {
404
- action: "reply_to_comment",
405
- planSlug: slug,
406
- commentId: "c_nope",
407
- reply: { text: "Hi" },
408
- });
409
- expect(r.ok).toBe(false);
410
- if (!r.ok) expect(r.error).toMatch(/Comment not found/);
411
- });
412
- });
413
-
414
- // ===========================================================================
415
- // Group 9 — set_status
416
- // ===========================================================================
417
-
418
- describe("planAction — set_status", () => {
419
- test("updates meta.json status", async () => {
420
- const slug = "set-status-ok";
421
- seedMeta(slug, { status: "draft" });
422
- const r = await planAction(worktree, logger, locks, {
423
- action: "set_status",
424
- planSlug: slug,
425
- status: "approved",
426
- });
427
- expect(r.ok).toBe(true);
428
- if (r.ok) expect(r.status).toBe("approved");
429
- const meta = JSON.parse(readFileSync(metaJsonPath(slug), "utf-8"));
430
- expect(meta.status).toBe("approved");
431
- expect(meta.lastEdited).toMatch(/T/);
432
- });
433
-
434
- test("creates meta.json if missing", async () => {
435
- const slug = "set-status-create";
436
- mkdirSync(planDir(slug), { recursive: true });
437
- const r = await planAction(worktree, logger, locks, {
438
- action: "set_status",
439
- planSlug: slug,
440
- status: "rejected",
441
- });
442
- expect(r.ok).toBe(true);
443
- expect(existsSync(metaJsonPath(slug))).toBe(true);
444
- });
445
-
446
- test("rejects invalid status value", async () => {
447
- const r = await planAction(worktree, logger, locks, {
448
- action: "set_status",
449
- planSlug: "set-status-bad",
450
- status: "wat" as never,
451
- });
452
- expect(r.ok).toBe(false);
453
- if (!r.ok) expect(r.error).toMatch(/Invalid status/);
454
- });
455
- });
456
-
457
- // ===========================================================================
458
- // Group 10 — invalid slug
459
- // ===========================================================================
460
-
461
- describe("planAction — invalid slug", () => {
462
- test("rejects UPPERCASE slug", async () => {
463
- const r = await planAction(worktree, logger, locks, {
464
- action: "get_canvas",
465
- planSlug: "UPPERCASE",
466
- });
467
- expect(r.ok).toBe(false);
468
- if (!r.ok) expect(r.error).toMatch(/Invalid planSlug/);
469
- });
470
-
471
- test("rejects empty slug", async () => {
472
- const r = await planAction(worktree, logger, locks, {
473
- action: "get_canvas",
474
- planSlug: "",
475
- });
476
- expect(r.ok).toBe(false);
477
- });
478
-
479
- test("rejects path-traversal slug", async () => {
480
- const r = await planAction(worktree, logger, locks, {
481
- action: "get_canvas",
482
- planSlug: "../etc",
483
- });
484
- expect(r.ok).toBe(false);
485
- if (!r.ok) expect(r.error).toMatch(/Invalid planSlug/);
486
- });
487
- });
488
-
489
- // ===========================================================================
490
- // Group 11 — corrupt plan.json does not throw
491
- // ===========================================================================
492
-
493
- describe("planAction — corrupt plan.json", () => {
494
- test("does not throw and returns an error result on invalid JSON", async () => {
495
- const slug = "corrupt-plan";
496
- mkdirSync(planDir(slug), { recursive: true });
497
- writeFileSync(planJsonPath(slug), "{ not valid json :: !!", "utf-8");
498
- const r = await planAction(worktree, logger, locks, {
499
- action: "add_element",
500
- planSlug: slug,
501
- element: { title: "Should fail" },
502
- });
503
- expect(r.ok).toBe(false);
504
- if (!r.ok) {
505
- expect(r.error).toMatch(/corrupt/i);
506
- }
507
- // Original corrupt file is preserved
508
- expect(readFileSync(planJsonPath(slug), "utf-8")).toBe("{ not valid json :: !!");
509
- });
510
-
511
- test("does not throw when plan.json is null", async () => {
512
- const slug = "null-plan";
513
- mkdirSync(planDir(slug), { recursive: true });
514
- writeFileSync(planJsonPath(slug), "null", "utf-8");
515
- const r = await planAction(worktree, logger, locks, {
516
- action: "add_element",
517
- planSlug: slug,
518
- element: { title: "X" },
519
- });
520
- expect(r.ok).toBe(false);
521
- });
522
- });
523
-
524
- // ===========================================================================
525
- // Group 12 — concurrent writes do not lose data
526
- // ===========================================================================
527
-
528
- describe("planAction — concurrency", () => {
529
- test("parallel add_element calls all land on disk", async () => {
530
- const slug = "concurrent-add";
531
- const N = 30;
532
- const results = await Promise.all(
533
- Array.from({ length: N }, (_, i) =>
534
- planAction(worktree, logger, locks, {
535
- action: "add_element",
536
- planSlug: slug,
537
- element: { title: `e-${i}` },
538
- }),
539
- ),
540
- );
541
- const oks = results.filter((r) => r.ok);
542
- expect(oks).toHaveLength(N);
543
- const canvas = readCanvas(slug) as { elements: unknown[] };
544
- expect(canvas.elements).toHaveLength(N);
545
- const ids = new Set(
546
- ((canvas.elements as Array<{ id: string }>)).map((e) => e.id),
547
- );
548
- expect(ids.size).toBe(N); // all ids unique
549
- });
550
-
551
- test("parallel delete + add does not corrupt the file", async () => {
552
- const slug = "concurrent-mixed";
553
- // Seed 10 elements
554
- seedCanvas(slug, {
555
- schemaVersion: 2,
556
- elements: Array.from({ length: 10 }, (_, i) => ({ id: `el_seed_${i}` })),
557
- });
558
- // Fire 10 deletes + 10 adds in parallel
559
- const ops = [
560
- ...Array.from({ length: 10 }, (_, i) =>
561
- planAction(worktree, logger, locks, {
562
- action: "delete_element",
563
- planSlug: slug,
564
- elementId: `el_seed_${i}`,
565
- }),
566
- ),
567
- ...Array.from({ length: 10 }, (_, i) =>
568
- planAction(worktree, logger, locks, {
569
- action: "add_element",
570
- planSlug: slug,
571
- element: { title: `new-${i}` },
572
- }),
573
- ),
574
- ];
575
- const results = await Promise.all(ops);
576
- expect(results.every((r) => r.ok)).toBe(true);
577
- // File is still valid JSON
578
- const canvas = JSON.parse(readFileSync(planJsonPath(slug), "utf-8")) as {
579
- elements: unknown[];
580
- };
581
- expect(Array.isArray(canvas.elements)).toBe(true);
582
- expect(canvas.elements).toHaveLength(10); // 10 deletes + 10 adds = 10
583
- });
584
- });
585
-
586
- // ===========================================================================
587
- // Group 13 — unknown action
588
- // ===========================================================================
589
-
590
- describe("planAction — unknown action", () => {
591
- test("returns error for unknown action", async () => {
592
- const r = await planAction(worktree, logger, locks, {
593
- action: "nuke_plan",
594
- planSlug: "unknown-action",
595
- });
596
- expect(r.ok).toBe(false);
597
- if (!r.ok) expect(r.error).toMatch(/Unknown action/);
598
- });
599
- });