@polderlabs/bizar 3.23.1 → 4.2.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.
- package/README.md +83 -16
- package/bizar-dash/.bizar/activity.log +3 -0
- package/bizar-dash/.bizar/graph/.graphify_analysis.json +1540 -0
- package/bizar-dash/.bizar/graph/.graphify_labels.json +1 -0
- package/bizar-dash/.bizar/graph/GRAPH_REPORT.md +404 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/0661b816358db84dfdb7f10443db8a61152fd20b3fee950caf8fbf32920a1790.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/16da06d774142a6e5d74829ad982531286a6193ef798de8f593db029e123ec32.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/27e5697c01254c69c64c5a33896669073b40afb5ba88375102ae77fa5404136d.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/532997898027254aa4c0932243dc71d2f55888181232b65974961934997dc85b.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/84e3451a64c7f99f0cd6a88b0748d7426780486f53ab4935b7476b28c08f8293.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/88e5ea5f3e78fa69353fe9e6a8d1a05391d54605e25600cb125531eb5a6432ff.json +1 -0
- package/bizar-dash/.bizar/graph/cache/stat-index.json +1 -0
- package/bizar-dash/.bizar/graph/graph.html +307 -0
- package/bizar-dash/.bizar/graph/graph.json +40267 -0
- package/bizar-dash/.bizar/graph/manifest.json +762 -0
- package/bizar-dash/.graphifyignore +40 -0
- package/bizar-dash/.obsidian/README.md +14 -0
- package/bizar-dash/.obsidian/daily/2026-06-25.md +9 -0
- package/bizar-dash/.obsidian/vault.json +7 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/SKILL.md +103 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/assets/template.html +338 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/example.html +81 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/open-design.json +172 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/references/checklist.md +44 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/references/layouts.md +247 -0
- package/bizar-dash/CHANGELOG.md +474 -0
- package/bizar-dash/DESIGN.md +136 -0
- package/bizar-dash/dist/assets/main-B3RgW6FS.js +331 -0
- package/bizar-dash/dist/assets/main-B3RgW6FS.js.map +1 -0
- package/bizar-dash/dist/assets/main-DlJ8wgLR.css +1 -0
- package/bizar-dash/dist/assets/mobile-CsZQAswA.css +1 -0
- package/bizar-dash/dist/assets/mobile-DbxIw8BG.js +2 -0
- package/bizar-dash/dist/assets/mobile-DbxIw8BG.js.map +1 -0
- package/bizar-dash/dist/assets/mobile-Dvq2d53Y.js +354 -0
- package/bizar-dash/dist/assets/mobile-Dvq2d53Y.js.map +1 -0
- package/bizar-dash/dist/index.html +40 -0
- package/bizar-dash/dist/mobile.html +22 -0
- package/bizar-dash/plans/debug-plan/comments.json +1 -0
- package/bizar-dash/plans/debug-plan/meta.json +10 -0
- package/bizar-dash/plans/debug-plan/plan.json +174 -0
- package/bizar-dash/scripts/smoke-bg-retry.mjs +246 -0
- package/bizar-dash/src/cli/dashboard-ports.mjs +488 -0
- package/bizar-dash/src/cli.mjs +522 -0
- package/bizar-dash/src/server/activity-log.mjs +174 -0
- package/bizar-dash/src/server/agents-store.mjs +465 -0
- package/bizar-dash/src/server/api.mjs +138 -0
- package/bizar-dash/src/server/artifact-template.html +810 -0
- package/bizar-dash/src/server/artifacts-store.mjs +733 -0
- package/bizar-dash/src/server/auth.mjs +381 -0
- package/bizar-dash/src/server/background-store.mjs +447 -0
- package/bizar-dash/src/server/bg-poller.mjs +305 -0
- package/bizar-dash/src/server/bg-retry.mjs +574 -0
- package/bizar-dash/src/server/browser.mjs +40 -0
- package/bizar-dash/src/server/diagnostics-store.mjs +148 -0
- package/bizar-dash/src/server/dialog-poller.mjs +105 -0
- package/bizar-dash/src/server/dialog-store.mjs +177 -0
- package/bizar-dash/src/server/glyphs/mdx-compiler.mjs +583 -0
- package/bizar-dash/src/server/lib/path-safe.mjs +283 -0
- package/bizar-dash/src/server/memory-git.mjs +329 -0
- package/bizar-dash/src/server/memory-lightrag.mjs +767 -0
- package/bizar-dash/src/server/memory-schema.mjs +145 -0
- package/bizar-dash/src/server/memory-secrets.mjs +84 -0
- package/bizar-dash/src/server/memory-store.mjs +471 -0
- package/bizar-dash/src/server/mod-security.mjs +398 -0
- package/bizar-dash/src/server/mods-loader.mjs +1067 -0
- package/bizar-dash/src/server/notifications-store.mjs +243 -0
- package/bizar-dash/src/server/obsidian-store.mjs +318 -0
- package/bizar-dash/src/server/opencode-runner.mjs +279 -0
- package/bizar-dash/src/server/pair-store.mjs +138 -0
- package/bizar-dash/src/server/projects-store.mjs +364 -0
- package/bizar-dash/src/server/providers-store.mjs +789 -0
- package/bizar-dash/src/server/routes/_shared.mjs +415 -0
- package/bizar-dash/src/server/routes/activity.mjs +110 -0
- package/bizar-dash/src/server/routes/agents.mjs +134 -0
- package/bizar-dash/src/server/routes/artifacts.mjs +279 -0
- package/bizar-dash/src/server/routes/auth.mjs +69 -0
- package/bizar-dash/src/server/routes/background.mjs +165 -0
- package/bizar-dash/src/server/routes/chat.mjs +485 -0
- package/bizar-dash/src/server/routes/config.mjs +129 -0
- package/bizar-dash/src/server/routes/diagnostics.mjs +50 -0
- package/bizar-dash/src/server/routes/dialogs.mjs +86 -0
- package/bizar-dash/src/server/routes/fs.mjs +429 -0
- package/bizar-dash/src/server/routes/history.mjs +78 -0
- package/bizar-dash/src/server/routes/memory.mjs +658 -0
- package/bizar-dash/src/server/routes/misc.mjs +89 -0
- package/bizar-dash/src/server/routes/mods.mjs +359 -0
- package/bizar-dash/src/server/routes/notifications.mjs +54 -0
- package/bizar-dash/src/server/routes/obsidian.mjs +239 -0
- package/bizar-dash/src/server/routes/opencode-sessions.mjs +55 -0
- package/bizar-dash/src/server/routes/overview.mjs +91 -0
- package/bizar-dash/src/server/routes/pair.mjs +67 -0
- package/bizar-dash/src/server/routes/projects.mjs +175 -0
- package/bizar-dash/src/server/routes/providers.mjs +47 -0
- package/bizar-dash/src/server/routes/schedules.mjs +104 -0
- package/bizar-dash/src/server/routes/settings.mjs +51 -0
- package/bizar-dash/src/server/routes/skills.mjs +76 -0
- package/bizar-dash/src/server/routes/tasks.mjs +468 -0
- package/bizar-dash/src/server/routes/themes.mjs +51 -0
- package/bizar-dash/src/server/routes-v2/auth.mjs +59 -0
- package/bizar-dash/src/server/routes-v2/events.mjs +107 -0
- package/bizar-dash/src/server/routes-v2/health.mjs +21 -0
- package/bizar-dash/src/server/routes-v2/index.mjs +90 -0
- package/bizar-dash/src/server/routes-v2/sessions.mjs +111 -0
- package/bizar-dash/src/server/schedules-runner.mjs +369 -0
- package/bizar-dash/src/server/schedules-store.mjs +268 -0
- package/bizar-dash/src/server/search-store.mjs +220 -0
- package/bizar-dash/src/server/serve-info.mjs +684 -0
- package/bizar-dash/src/server/server.mjs +796 -0
- package/bizar-dash/src/server/settings-store.mjs +45 -0
- package/bizar-dash/src/server/skills-store.mjs +300 -0
- package/bizar-dash/src/server/state.mjs +437 -0
- package/bizar-dash/src/server/tailscale-store.mjs +113 -0
- package/bizar-dash/src/server/task-delegator.mjs +824 -0
- package/bizar-dash/src/server/tasks-store.mjs +508 -0
- package/bizar-dash/src/server/tui.mjs +923 -0
- package/bizar-dash/src/server/update-store.mjs +168 -0
- package/bizar-dash/src/server/v2-auth-file.mjs +99 -0
- package/bizar-dash/src/server/v2-event-bus.mjs +128 -0
- package/bizar-dash/src/server/watcher.mjs +81 -0
- package/bizar-dash/src/server/yaml.mjs +238 -0
- package/bizar-dash/src/web/App.tsx +718 -0
- package/bizar-dash/src/web/MobileApp.tsx +408 -0
- package/bizar-dash/src/web/components/ArtifactCreateDialog.tsx +95 -0
- package/bizar-dash/src/web/components/ArtifactListDialog.tsx +55 -0
- package/bizar-dash/src/web/components/ArtifactViewer.tsx +143 -0
- package/bizar-dash/src/web/components/AuditDialog.tsx +79 -0
- package/bizar-dash/src/web/components/BgStatusBadge.tsx +32 -0
- package/bizar-dash/src/web/components/Button.tsx +56 -0
- package/bizar-dash/src/web/components/CanvasContextMenu.tsx +68 -0
- package/bizar-dash/src/web/components/Card.tsx +40 -0
- package/bizar-dash/src/web/components/CollapsibleSection.tsx +72 -0
- package/bizar-dash/src/web/components/CommandDialog.tsx +66 -0
- package/bizar-dash/src/web/components/EmptyState.tsx +30 -0
- package/bizar-dash/src/web/components/FileBrowser.tsx +633 -0
- package/bizar-dash/src/web/components/HelpDialog.tsx +55 -0
- package/bizar-dash/src/web/components/KillConfirmDialog.tsx +88 -0
- package/bizar-dash/src/web/components/Modal.tsx +215 -0
- package/bizar-dash/src/web/components/Notifications.tsx +241 -0
- package/bizar-dash/src/web/components/SearchModal.tsx +224 -0
- package/bizar-dash/src/web/components/Sidebar.tsx +66 -0
- package/bizar-dash/src/web/components/Spinner.tsx +19 -0
- package/bizar-dash/src/web/components/StatusBadge.tsx +25 -0
- package/bizar-dash/src/web/components/Tag.tsx +28 -0
- package/bizar-dash/src/web/components/Toast.tsx +150 -0
- package/bizar-dash/src/web/components/Topbar.tsx +368 -0
- package/bizar-dash/src/web/components/VisualPlanDialog.tsx +58 -0
- package/bizar-dash/src/web/components/chat/AgentChip.tsx +68 -0
- package/bizar-dash/src/web/components/chat/ChatBubble.tsx +60 -0
- package/bizar-dash/src/web/components/chat/ChatThread.tsx +88 -0
- package/bizar-dash/src/web/components/chat/ChatTopBar.tsx +50 -0
- package/bizar-dash/src/web/components/chat/Composer.tsx +164 -0
- package/bizar-dash/src/web/components/chat/ConfirmModal.tsx +54 -0
- package/bizar-dash/src/web/components/chat/EmptyState.tsx +21 -0
- package/bizar-dash/src/web/components/chat/FirstRunGreeting.tsx +18 -0
- package/bizar-dash/src/web/components/chat/FloatingComposer.tsx +32 -0
- package/bizar-dash/src/web/components/chat/InfoPanel.tsx +119 -0
- package/bizar-dash/src/web/components/chat/LoadingSkeleton.tsx +19 -0
- package/bizar-dash/src/web/components/chat/MessageBubble.tsx +60 -0
- package/bizar-dash/src/web/components/chat/SessionList.tsx +153 -0
- package/bizar-dash/src/web/components/chat/StreamingIndicator.tsx +9 -0
- package/bizar-dash/src/web/components/chat/SuggestionCards.tsx +55 -0
- package/bizar-dash/src/web/components/chat/WelcomeScreen.tsx +36 -0
- package/bizar-dash/src/web/components/chat/index.ts +20 -0
- package/bizar-dash/src/web/components/chat/useAutoGrowTextarea.ts +18 -0
- package/bizar-dash/src/web/components/chat/useChat.ts +219 -0
- package/bizar-dash/src/web/components/chat/useSlashCommands.ts +47 -0
- package/bizar-dash/src/web/index.html +37 -0
- package/bizar-dash/src/web/lib/api.ts +193 -0
- package/bizar-dash/src/web/lib/markdown.tsx +59 -0
- package/bizar-dash/src/web/lib/types.ts +668 -0
- package/bizar-dash/src/web/lib/utils.ts +114 -0
- package/bizar-dash/src/web/lib/ws.ts +176 -0
- package/bizar-dash/src/web/main.tsx +34 -0
- package/bizar-dash/src/web/mobile/MobileApp.tsx +278 -0
- package/bizar-dash/src/web/mobile/MobileBottomNav.tsx +38 -0
- package/bizar-dash/src/web/mobile/MobileTopbar.tsx +115 -0
- package/bizar-dash/src/web/mobile/components/MobileBottomSheet.tsx +182 -0
- package/bizar-dash/src/web/mobile/components/MobileListItem.tsx +64 -0
- package/bizar-dash/src/web/mobile/components/MobileModal.tsx +123 -0
- package/bizar-dash/src/web/mobile/views/MobileActivity.tsx +273 -0
- package/bizar-dash/src/web/mobile/views/MobileAgents.tsx +374 -0
- package/bizar-dash/src/web/mobile/views/MobileArtifactCanvas.tsx +439 -0
- package/bizar-dash/src/web/mobile/views/MobileArtifacts.tsx +143 -0
- package/bizar-dash/src/web/mobile/views/MobileChat.tsx +180 -0
- package/bizar-dash/src/web/mobile/views/MobileConfig.tsx +175 -0
- package/bizar-dash/src/web/mobile/views/MobileHistory.tsx +191 -0
- package/bizar-dash/src/web/mobile/views/MobileMods.tsx +149 -0
- package/bizar-dash/src/web/mobile/views/MobileMore.tsx +121 -0
- package/bizar-dash/src/web/mobile/views/MobileNotifications.tsx +137 -0
- package/bizar-dash/src/web/mobile/views/MobilePlans.tsx +26 -0
- package/bizar-dash/src/web/mobile/views/MobileSchedules.tsx +685 -0
- package/bizar-dash/src/web/mobile/views/MobileSearchModal.tsx +172 -0
- package/bizar-dash/src/web/mobile/views/MobileSettings.tsx +388 -0
- package/bizar-dash/src/web/mobile/views/MobileSkills.tsx +153 -0
- package/bizar-dash/src/web/mobile/views/MobileTasks.tsx +564 -0
- package/bizar-dash/src/web/mobile.html +20 -0
- package/bizar-dash/src/web/mobile.tsx +13 -0
- package/bizar-dash/src/web/styles/chat.css +198 -0
- package/bizar-dash/src/web/styles/glyphs.css +960 -0
- package/bizar-dash/src/web/styles/main.css +8855 -0
- package/bizar-dash/src/web/styles/mobile-chat.css +5 -0
- package/bizar-dash/src/web/styles/mobile.css +1960 -0
- package/bizar-dash/src/web/views/Activity.tsx +1203 -0
- package/bizar-dash/src/web/views/Agents.tsx +701 -0
- package/bizar-dash/src/web/views/Artifacts.tsx +1480 -0
- package/bizar-dash/src/web/views/BackgroundAgents.tsx +450 -0
- package/bizar-dash/src/web/views/Chat.tsx +190 -0
- package/bizar-dash/src/web/views/Config.tsx +2063 -0
- package/bizar-dash/src/web/views/History.tsx +335 -0
- package/bizar-dash/src/web/views/ModView.tsx +207 -0
- package/bizar-dash/src/web/views/Mods.tsx +693 -0
- package/bizar-dash/src/web/views/Overview.tsx +812 -0
- package/bizar-dash/src/web/views/Providers.tsx +302 -0
- package/bizar-dash/src/web/views/Schedules.tsx +802 -0
- package/bizar-dash/src/web/views/Settings.tsx +1787 -0
- package/bizar-dash/src/web/views/Skills.tsx +431 -0
- package/bizar-dash/src/web/views/Tasks.tsx +1523 -0
- package/bizar-dash/src/web/views/glyphs/GlyphRenderer.tsx +613 -0
- package/bizar-dash/src/web/views/glyphs/components.tsx +1098 -0
- package/bizar-dash/templates/mod/FORMAT.md +76 -0
- package/bizar-dash/templates/mod/hello-mod/README.md +19 -0
- package/bizar-dash/templates/mod/hello-mod/agents/greeter.md +8 -0
- package/bizar-dash/templates/mod/hello-mod/commands/hello.md +6 -0
- package/bizar-dash/templates/mod/hello-mod/mod.json +20 -0
- package/bizar-dash/templates/mod/hello-mod/routes/ping.mjs +9 -0
- package/bizar-dash/templates/mod/hello-mod/views/HelloView.tsx +10 -0
- package/bizar-dash/tests/dashboard-ports.test.mjs +138 -0
- package/bizar-dash/tests/graphify-mod-spawn.node.test.mjs +90 -0
- package/bizar-dash/tests/memory-cli.test.mjs +542 -0
- package/bizar-dash/tests/memory-config.test.mjs +422 -0
- package/bizar-dash/tests/memory-git.test.mjs +246 -0
- package/bizar-dash/tests/memory-lightrag.test.mjs +153 -0
- package/bizar-dash/tests/memory-protocol-drift.test.mjs +45 -0
- package/bizar-dash/tests/memory-schema.test.mjs +198 -0
- package/bizar-dash/tests/memory-secrets.test.mjs +121 -0
- package/bizar-dash/tests/memory-store.test.mjs +390 -0
- package/bizar-dash/tests/memory-sync.test.mjs +141 -0
- package/bizar-dash/tests/mod-instructions.node.test.mjs +188 -0
- package/bizar-dash/tests/mod-security.test.mjs +273 -0
- package/bizar-dash/tests/mod-upgrade.node.test.mjs +357 -0
- package/bizar-dash/tests/no-agent-browser.node.test.mjs +98 -0
- package/bizar-dash/tests/obsidian-back-compat.test.mjs +199 -0
- package/bizar-dash/tests/opencode-runner.test.mjs +172 -0
- package/bizar-dash/tests/path-safe.test.mjs +108 -0
- package/bizar-dash/tests/providers-store-backup-keys.node.test.mjs +333 -0
- package/bizar-dash/tests/smoke-v2.mjs +212 -0
- package/bizar-dash/tests/strip-thinking.test.mjs +175 -0
- package/bizar-dash/tests/submit-feedback.test.mjs +353 -0
- package/bizar-dash/tests/tmux-wrap.test.mjs +145 -0
- package/bizar-dash/tests/yaml.test.mjs +128 -0
- package/bizar-dash/tsconfig.json +23 -0
- package/bizar-dash/vite.config.ts +27 -0
- package/cli/atomic.mjs +73 -0
- package/cli/banner.mjs +1 -1
- package/cli/bin.mjs +44 -47
- package/cli/bootstrap.mjs +1 -1
- package/cli/copy.mjs +25 -16
- package/cli/dev-link.mjs +17 -1
- package/cli/doctor.mjs +4 -4
- package/cli/doctor.test.mjs +2 -2
- package/cli/init.mjs +135 -1
- package/cli/install.mjs +31 -39
- package/cli/memory-constants.mjs +59 -0
- package/cli/memory.mjs +1436 -0
- package/cli/service.mjs +5 -6
- package/cli/utils.mjs +6 -3
- package/config/AGENTS.md +7 -7
- package/config/agents/_shared/AGENT_BASELINE.md +59 -61
- package/config/opencode.json +13 -38
- package/config/skills/memory-protocol/SKILL.md +105 -0
- package/config/skills/obsidian/SKILL.md +270 -65
- package/install.sh +59 -19
- package/package.json +49 -14
- package/packages/sdk/LICENSE +21 -0
- package/packages/sdk/README.md +80 -0
- package/packages/sdk/src/client.ts +183 -0
- package/packages/sdk/src/errors.ts +120 -0
- package/packages/sdk/src/events.ts +153 -0
- package/packages/sdk/src/index.ts +63 -0
- package/packages/sdk/src/types.ts +176 -0
- package/packages/sdk/src/version.ts +4 -0
- package/packages/sdk/tests/client.test.ts +217 -0
- package/packages/sdk/tests/errors.test.ts +108 -0
- package/packages/sdk/tests/events.test.ts +139 -0
- package/packages/sdk/tests/fixtures/fetch-mock.ts +152 -0
- package/packages/sdk/tests/fixtures/sse-mock.ts +30 -0
- package/packages/sdk/tsconfig.json +25 -0
- package/packages/sdk/vitest.config.ts +9 -0
- package/plugins/bizar/LICENSE +21 -0
- package/plugins/bizar/README.md +448 -0
- package/plugins/bizar/dist/index.js +29901 -0
- package/plugins/bizar/index.ts +1491 -0
- package/plugins/bizar/scripts/check-forbidden-imports.sh +33 -0
- package/plugins/bizar/src/background-state.ts +551 -0
- package/plugins/bizar/src/background.ts +1250 -0
- package/plugins/bizar/src/commands-impl.ts +464 -0
- package/plugins/bizar/src/commands.ts +1168 -0
- package/plugins/bizar/src/dashboard-client.ts +233 -0
- package/plugins/bizar/src/event-stream.ts +606 -0
- package/plugins/bizar/src/fingerprint.ts +120 -0
- package/plugins/bizar/src/handoff.ts +79 -0
- package/plugins/bizar/src/http-client.ts +467 -0
- package/plugins/bizar/src/key-rotation.ts +218 -0
- package/plugins/bizar/src/logger.ts +144 -0
- package/plugins/bizar/src/loop.ts +176 -0
- package/plugins/bizar/src/opencode-runner.ts +390 -0
- package/plugins/bizar/src/options.ts +421 -0
- package/plugins/bizar/src/plan-fs.ts +323 -0
- package/plugins/bizar/src/reasoning-clean.ts +454 -0
- package/plugins/bizar/src/report.ts +178 -0
- package/plugins/bizar/src/research-prompt.ts +35 -0
- package/plugins/bizar/src/serve-info.ts +228 -0
- package/plugins/bizar/src/serve.ts +496 -0
- package/plugins/bizar/src/settings.ts +349 -0
- package/plugins/bizar/src/state.ts +298 -0
- package/plugins/bizar/src/tools/bg-collect.ts +104 -0
- package/plugins/bizar/src/tools/bg-get-comments.ts +239 -0
- package/plugins/bizar/src/tools/bg-kill.ts +87 -0
- package/plugins/bizar/src/tools/bg-spawn.ts +401 -0
- package/plugins/bizar/src/tools/bg-status.ts +99 -0
- package/plugins/bizar/src/tools/open-kb.ts +191 -0
- package/plugins/bizar/src/tools/plan-action.ts +767 -0
- package/plugins/bizar/src/tools/read-glyph-feedback.ts +170 -0
- package/plugins/bizar/src/tools/wait-for-feedback.ts +402 -0
- package/plugins/bizar/tests/attach-handler-bug.test.ts +169 -0
- package/plugins/bizar/tests/background-state.test.ts +277 -0
- package/plugins/bizar/tests/background.test.ts +402 -0
- package/plugins/bizar/tests/block.test.ts +195 -0
- package/plugins/bizar/tests/canonical-key-order.test.ts +75 -0
- package/plugins/bizar/tests/commands-impl.test.ts +442 -0
- package/plugins/bizar/tests/commands.test.ts +584 -0
- package/plugins/bizar/tests/config.test.ts +122 -0
- package/plugins/bizar/tests/dashboard-client.test.ts +159 -0
- package/plugins/bizar/tests/dispose.test.ts +336 -0
- package/plugins/bizar/tests/event-stream.test.ts +409 -0
- package/plugins/bizar/tests/event.test.ts +262 -0
- package/plugins/bizar/tests/fingerprint.test.ts +162 -0
- package/plugins/bizar/tests/http-client.test.ts +404 -0
- package/plugins/bizar/tests/init-helpers.test.ts +203 -0
- package/plugins/bizar/tests/integration/slash-command.test.ts +348 -0
- package/plugins/bizar/tests/integration/tool-routing.test.ts +314 -0
- package/plugins/bizar/tests/key-rotation.test.ts +396 -0
- package/plugins/bizar/tests/loop.test.ts +397 -0
- package/plugins/bizar/tests/options.test.ts +276 -0
- package/plugins/bizar/tests/reasoning-clean.test.ts +422 -0
- package/plugins/bizar/tests/serve.test.ts +339 -0
- package/plugins/bizar/tests/settings.test.ts +351 -0
- package/plugins/bizar/tests/stall-think.test.ts +750 -0
- package/plugins/bizar/tests/state.test.ts +276 -0
- package/plugins/bizar/tests/tools/bg-collect.test.ts +337 -0
- package/plugins/bizar/tests/tools/bg-get-comments.test.ts +485 -0
- package/plugins/bizar/tests/tools/bg-kill.test.ts +235 -0
- package/plugins/bizar/tests/tools/bg-spawn-delegation.test.ts +147 -0
- package/plugins/bizar/tests/tools/bg-spawn.test.ts +311 -0
- package/plugins/bizar/tests/tools/bg-status.test.ts +217 -0
- package/plugins/bizar/tests/tools/opencode-runner.test.ts +115 -0
- package/plugins/bizar/tests/tools/plan-action.test.ts +599 -0
- package/plugins/bizar/tests/tools/read-glyph-feedback.test.ts +253 -0
- package/plugins/bizar/tests/tools/wait-for-feedback.test.ts +390 -0
- package/plugins/bizar/tests/update-deadlock.test.ts +145 -0
- package/plugins/bizar/tsconfig.json +29 -0
|
@@ -0,0 +1,584 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* commands.test.ts
|
|
3
|
+
*
|
|
4
|
+
* Tests for the pure `parseSlashCommand` function in src/commands.ts.
|
|
5
|
+
*
|
|
6
|
+
* The parser is a pure function — no I/O, no Date.now() — so all tests
|
|
7
|
+
* just feed it text and assert on the returned descriptor.
|
|
8
|
+
*
|
|
9
|
+
* Groups:
|
|
10
|
+
* 1. /visual-plan on/off/status
|
|
11
|
+
* 2. /plan new (with and without template)
|
|
12
|
+
* 3. /plan list
|
|
13
|
+
* 4. /plan open
|
|
14
|
+
* 5. /help / /commands
|
|
15
|
+
* 6. non-slash messages → null
|
|
16
|
+
* 7. unknown commands → error response
|
|
17
|
+
* 8. invalid input → error response
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
import { describe, test, expect } from "bun:test";
|
|
21
|
+
import { parseSlashCommand } from "../src/commands";
|
|
22
|
+
import {
|
|
23
|
+
DEFAULT_PLAN_SETTINGS,
|
|
24
|
+
type PlanSettings,
|
|
25
|
+
} from "../src/settings";
|
|
26
|
+
|
|
27
|
+
const baseCtx = {
|
|
28
|
+
currentSettings: DEFAULT_PLAN_SETTINGS,
|
|
29
|
+
availablePlanSlugs: [] as readonly string[],
|
|
30
|
+
defaultPort: 4321,
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
function ctxWith(
|
|
34
|
+
overrides: Partial<{
|
|
35
|
+
currentSettings: PlanSettings;
|
|
36
|
+
availablePlanSlugs: readonly string[];
|
|
37
|
+
defaultPort: number;
|
|
38
|
+
}> = {},
|
|
39
|
+
) {
|
|
40
|
+
return {
|
|
41
|
+
currentSettings: overrides.currentSettings ?? DEFAULT_PLAN_SETTINGS,
|
|
42
|
+
availablePlanSlugs: overrides.availablePlanSlugs ?? [],
|
|
43
|
+
defaultPort: overrides.defaultPort ?? 4321,
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// ===========================================================================
|
|
48
|
+
// Group 1 — /visual-plan on/off/status
|
|
49
|
+
// ===========================================================================
|
|
50
|
+
|
|
51
|
+
describe("parseSlashCommand — /visual-plan", () => {
|
|
52
|
+
test("'/visual-plan on' returns settingsPatch: { visualPlanEnabled: true }", () => {
|
|
53
|
+
const r = parseSlashCommand("/visual-plan on", baseCtx);
|
|
54
|
+
expect(r).not.toBeNull();
|
|
55
|
+
expect(r!.handled).toBe(true);
|
|
56
|
+
expect(r!.settingsPatch).toEqual({ visualPlanEnabled: true });
|
|
57
|
+
expect(r!.response).toMatch(/on/i);
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
test("'/visual-plan off' returns settingsPatch: { visualPlanEnabled: false }", () => {
|
|
61
|
+
const r = parseSlashCommand("/visual-plan off", baseCtx);
|
|
62
|
+
expect(r).not.toBeNull();
|
|
63
|
+
expect(r!.settingsPatch).toEqual({ visualPlanEnabled: false });
|
|
64
|
+
expect(r!.response).toMatch(/off/i);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
test("'/visual-plan' (no arg) returns current state without mutation", () => {
|
|
68
|
+
const on = ctxWith({ currentSettings: { ...DEFAULT_PLAN_SETTINGS, visualPlanEnabled: true } });
|
|
69
|
+
const r = parseSlashCommand("/visual-plan", on);
|
|
70
|
+
expect(r).not.toBeNull();
|
|
71
|
+
expect(r!.settingsPatch).toBeUndefined();
|
|
72
|
+
expect(r!.response).toMatch(/on/);
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
test("'/visual-plan' reflects off state correctly", () => {
|
|
76
|
+
const off = ctxWith({ currentSettings: { ...DEFAULT_PLAN_SETTINGS, visualPlanEnabled: false } });
|
|
77
|
+
const r = parseSlashCommand("/visual-plan", off);
|
|
78
|
+
expect(r!.response).toMatch(/off/);
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
test("'/visual-plan status' returns status without mutation", () => {
|
|
82
|
+
const r = parseSlashCommand("/visual-plan status", baseCtx);
|
|
83
|
+
expect(r!.settingsPatch).toBeUndefined();
|
|
84
|
+
expect(r!.response).toMatch(/off/);
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
test("'/visual-plan true' is treated like 'on'", () => {
|
|
88
|
+
const r = parseSlashCommand("/visual-plan true", baseCtx);
|
|
89
|
+
expect(r!.settingsPatch).toEqual({ visualPlanEnabled: true });
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
test("'/visual-plan false' is treated like 'off'", () => {
|
|
93
|
+
const r = parseSlashCommand("/visual-plan false", baseCtx);
|
|
94
|
+
expect(r!.settingsPatch).toEqual({ visualPlanEnabled: false });
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
test("'/visual-plan nonsense' returns an error response (still handled)", () => {
|
|
98
|
+
const r = parseSlashCommand("/visual-plan nonsense", baseCtx);
|
|
99
|
+
expect(r).not.toBeNull();
|
|
100
|
+
expect(r!.handled).toBe(true);
|
|
101
|
+
expect(r!.settingsPatch).toBeUndefined();
|
|
102
|
+
expect(r!.response).toMatch(/Unknown argument/);
|
|
103
|
+
});
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
// ===========================================================================
|
|
107
|
+
// Group 2 — /plan new
|
|
108
|
+
// ===========================================================================
|
|
109
|
+
|
|
110
|
+
describe("parseSlashCommand — /plan new", () => {
|
|
111
|
+
test("'/plan new foo' returns success response + sideEffect=create_plan", () => {
|
|
112
|
+
const r = parseSlashCommand("/plan new foo", baseCtx);
|
|
113
|
+
expect(r).not.toBeNull();
|
|
114
|
+
expect(r!.handled).toBe(true);
|
|
115
|
+
expect(r!.sideEffect).toEqual({
|
|
116
|
+
kind: "create_plan",
|
|
117
|
+
slug: "foo",
|
|
118
|
+
template: null,
|
|
119
|
+
});
|
|
120
|
+
expect(r!.settingsPatch).toEqual({ lastUsedSlug: "foo" });
|
|
121
|
+
expect(r!.response).toMatch(/foo/);
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
test("'/plan new foo feature-design' uses the named template", () => {
|
|
125
|
+
const r = parseSlashCommand("/plan new foo feature-design", baseCtx);
|
|
126
|
+
expect(r!.sideEffect).toEqual({
|
|
127
|
+
kind: "create_plan",
|
|
128
|
+
slug: "foo",
|
|
129
|
+
template: "feature-design",
|
|
130
|
+
});
|
|
131
|
+
expect(r!.response).toMatch(/feature-design/);
|
|
132
|
+
});
|
|
133
|
+
|
|
134
|
+
test("'/plan new foo decision-record' uses the decision-record template", () => {
|
|
135
|
+
const r = parseSlashCommand("/plan new foo decision-record", baseCtx);
|
|
136
|
+
expect(r!.sideEffect).toEqual({
|
|
137
|
+
kind: "create_plan",
|
|
138
|
+
slug: "foo",
|
|
139
|
+
template: "decision-record",
|
|
140
|
+
});
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
test("'/plan new foo unknown-template' returns an error response", () => {
|
|
144
|
+
const r = parseSlashCommand("/plan new foo unknown-template", baseCtx);
|
|
145
|
+
expect(r!.handled).toBe(true);
|
|
146
|
+
expect(r!.sideEffect).toBeUndefined();
|
|
147
|
+
expect(r!.response).toMatch(/Unknown template/);
|
|
148
|
+
});
|
|
149
|
+
|
|
150
|
+
test("'/plan new' (no slug) returns a usage message", () => {
|
|
151
|
+
const r = parseSlashCommand("/plan new", baseCtx);
|
|
152
|
+
expect(r!.response).toMatch(/Usage/);
|
|
153
|
+
expect(r!.sideEffect).toBeUndefined();
|
|
154
|
+
});
|
|
155
|
+
|
|
156
|
+
test("'/plan new UPPERCASE' rejects invalid slug", () => {
|
|
157
|
+
const r = parseSlashCommand("/plan new UPPERCASE", baseCtx);
|
|
158
|
+
expect(r!.response).toMatch(/Invalid slug/);
|
|
159
|
+
expect(r!.sideEffect).toBeUndefined();
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
test("'/plan new my-feature' (with hyphen) is accepted", () => {
|
|
163
|
+
const r = parseSlashCommand("/plan new my-feature", baseCtx);
|
|
164
|
+
expect(r!.sideEffect).toEqual({
|
|
165
|
+
kind: "create_plan",
|
|
166
|
+
slug: "my-feature",
|
|
167
|
+
template: null,
|
|
168
|
+
});
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
test("'/plan new' falls back to currentSettings.defaultTemplate", () => {
|
|
172
|
+
const ctx = ctxWith({
|
|
173
|
+
currentSettings: { ...DEFAULT_PLAN_SETTINGS, defaultTemplate: "bug-investigation" },
|
|
174
|
+
});
|
|
175
|
+
const r = parseSlashCommand("/plan new foo", ctx);
|
|
176
|
+
expect(r!.response).toMatch(/bug-investigation/);
|
|
177
|
+
expect(r!.sideEffect).toEqual({
|
|
178
|
+
kind: "create_plan",
|
|
179
|
+
slug: "foo",
|
|
180
|
+
template: null, // null in sideEffect; the template name in the response reflects the default
|
|
181
|
+
});
|
|
182
|
+
});
|
|
183
|
+
});
|
|
184
|
+
|
|
185
|
+
// ===========================================================================
|
|
186
|
+
// Group 3 — /plan list
|
|
187
|
+
// ===========================================================================
|
|
188
|
+
|
|
189
|
+
describe("parseSlashCommand — /plan list", () => {
|
|
190
|
+
test("'/plan list' with no plans returns 'no plans found' message", () => {
|
|
191
|
+
const r = parseSlashCommand("/plan list", baseCtx);
|
|
192
|
+
expect(r!.sideEffect).toEqual({ kind: "list_plans" });
|
|
193
|
+
expect(r!.response).toMatch(/No plans found/);
|
|
194
|
+
});
|
|
195
|
+
|
|
196
|
+
test("'/plan list' with available plans lists them", () => {
|
|
197
|
+
const ctx = ctxWith({ availablePlanSlugs: ["alpha", "beta", "gamma"] });
|
|
198
|
+
const r = parseSlashCommand("/plan list", ctx);
|
|
199
|
+
expect(r!.sideEffect).toEqual({ kind: "list_plans" });
|
|
200
|
+
expect(r!.response).toContain("alpha");
|
|
201
|
+
expect(r!.response).toContain("beta");
|
|
202
|
+
expect(r!.response).toContain("gamma");
|
|
203
|
+
expect(r!.response).toContain("(3)");
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
test("'/plan ls' is accepted as alias for list", () => {
|
|
207
|
+
const r = parseSlashCommand("/plan ls", baseCtx);
|
|
208
|
+
expect(r!.sideEffect).toEqual({ kind: "list_plans" });
|
|
209
|
+
});
|
|
210
|
+
});
|
|
211
|
+
|
|
212
|
+
// ===========================================================================
|
|
213
|
+
// Group 4 — /plan open
|
|
214
|
+
// ===========================================================================
|
|
215
|
+
|
|
216
|
+
describe("parseSlashCommand — /plan open", () => {
|
|
217
|
+
test("'/plan open foo' returns the URL and updates lastUsedSlug", () => {
|
|
218
|
+
const r = parseSlashCommand("/plan open foo", baseCtx);
|
|
219
|
+
expect(r!.handled).toBe(true);
|
|
220
|
+
expect(r!.sideEffect).toEqual({ kind: "open_plan_url", slug: "foo" });
|
|
221
|
+
expect(r!.settingsPatch).toEqual({ lastUsedSlug: "foo" });
|
|
222
|
+
expect(r!.response).toContain("http://localhost:4321/foo/");
|
|
223
|
+
});
|
|
224
|
+
|
|
225
|
+
test("'/plan open' (no slug) returns a usage message", () => {
|
|
226
|
+
const r = parseSlashCommand("/plan open", baseCtx);
|
|
227
|
+
expect(r!.response).toMatch(/Usage/);
|
|
228
|
+
expect(r!.sideEffect).toBeUndefined();
|
|
229
|
+
});
|
|
230
|
+
|
|
231
|
+
test("'/plan open UPPERCASE' rejects invalid slug", () => {
|
|
232
|
+
const r = parseSlashCommand("/plan open UPPERCASE", baseCtx);
|
|
233
|
+
expect(r!.response).toMatch(/Invalid slug/);
|
|
234
|
+
expect(r!.sideEffect).toBeUndefined();
|
|
235
|
+
});
|
|
236
|
+
|
|
237
|
+
test("'/plan open' respects custom defaultPort in context", () => {
|
|
238
|
+
const ctx = ctxWith({ defaultPort: 5555 });
|
|
239
|
+
const r = parseSlashCommand("/plan open foo", ctx);
|
|
240
|
+
expect(r!.response).toContain("http://localhost:5555/foo/");
|
|
241
|
+
});
|
|
242
|
+
});
|
|
243
|
+
|
|
244
|
+
// ===========================================================================
|
|
245
|
+
// Group 5 — /help / /commands
|
|
246
|
+
// ===========================================================================
|
|
247
|
+
|
|
248
|
+
describe("parseSlashCommand — /help", () => {
|
|
249
|
+
test("'/help' returns the help text", () => {
|
|
250
|
+
const r = parseSlashCommand("/help", baseCtx);
|
|
251
|
+
expect(r!.handled).toBe(true);
|
|
252
|
+
expect(r!.response).toMatch(/Available commands/);
|
|
253
|
+
expect(r!.response).toMatch(/visual-plan/);
|
|
254
|
+
expect(r!.response).toMatch(/plan new/);
|
|
255
|
+
});
|
|
256
|
+
|
|
257
|
+
test("'/commands' is an alias for /help", () => {
|
|
258
|
+
const r = parseSlashCommand("/commands", baseCtx);
|
|
259
|
+
expect(r!.response).toMatch(/Available commands/);
|
|
260
|
+
});
|
|
261
|
+
});
|
|
262
|
+
|
|
263
|
+
// ===========================================================================
|
|
264
|
+
// Group 6 — non-slash messages return null
|
|
265
|
+
// ===========================================================================
|
|
266
|
+
|
|
267
|
+
describe("parseSlashCommand — non-slash messages", () => {
|
|
268
|
+
test("regular text returns null", () => {
|
|
269
|
+
expect(parseSlashCommand("hello world", baseCtx)).toBeNull();
|
|
270
|
+
});
|
|
271
|
+
|
|
272
|
+
test("empty string returns null", () => {
|
|
273
|
+
expect(parseSlashCommand("", baseCtx)).toBeNull();
|
|
274
|
+
});
|
|
275
|
+
|
|
276
|
+
test("whitespace-only returns null", () => {
|
|
277
|
+
expect(parseSlashCommand(" \t\n ", baseCtx)).toBeNull();
|
|
278
|
+
});
|
|
279
|
+
|
|
280
|
+
test("just a slash returns null", () => {
|
|
281
|
+
expect(parseSlashCommand("/", baseCtx)).toBeNull();
|
|
282
|
+
});
|
|
283
|
+
|
|
284
|
+
test("just whitespace and a slash returns null", () => {
|
|
285
|
+
expect(parseSlashCommand(" / ", baseCtx)).toBeNull();
|
|
286
|
+
});
|
|
287
|
+
|
|
288
|
+
test("non-string input returns null", () => {
|
|
289
|
+
expect(parseSlashCommand(null as never, baseCtx)).toBeNull();
|
|
290
|
+
expect(parseSlashCommand(undefined as never, baseCtx)).toBeNull();
|
|
291
|
+
expect(parseSlashCommand(42 as never, baseCtx)).toBeNull();
|
|
292
|
+
});
|
|
293
|
+
});
|
|
294
|
+
|
|
295
|
+
// ===========================================================================
|
|
296
|
+
// Group 7 — unknown commands return error response (still handled)
|
|
297
|
+
// ===========================================================================
|
|
298
|
+
|
|
299
|
+
describe("parseSlashCommand — unknown commands", () => {
|
|
300
|
+
test("'/unknown' returns error response (handled, not null)", () => {
|
|
301
|
+
const r = parseSlashCommand("/unknown", baseCtx);
|
|
302
|
+
expect(r).not.toBeNull();
|
|
303
|
+
expect(r!.handled).toBe(true);
|
|
304
|
+
expect(r!.response).toMatch(/Unknown command/);
|
|
305
|
+
expect(r!.response).toContain("/unknown");
|
|
306
|
+
});
|
|
307
|
+
|
|
308
|
+
test("'/foo bar baz' returns error response", () => {
|
|
309
|
+
const r = parseSlashCommand("/foo bar baz", baseCtx);
|
|
310
|
+
expect(r!.response).toMatch(/Unknown command/);
|
|
311
|
+
});
|
|
312
|
+
|
|
313
|
+
test("'/plan delete foo bar' routes to bizar_plan_action (delete_element)", () => {
|
|
314
|
+
const r = parseSlashCommand("/plan delete foo bar", baseCtx);
|
|
315
|
+
expect(r).not.toBeNull();
|
|
316
|
+
expect(r!.handled).toBe(true);
|
|
317
|
+
expect(r!.sideEffect).toEqual({
|
|
318
|
+
kind: "tool_invocation",
|
|
319
|
+
toolName: "bizar_plan_action",
|
|
320
|
+
args: { action: "delete_element", planSlug: "foo", elementId: "bar" },
|
|
321
|
+
});
|
|
322
|
+
expect(r!.settingsPatch).toEqual({ lastUsedSlug: "foo" });
|
|
323
|
+
});
|
|
324
|
+
});
|
|
325
|
+
|
|
326
|
+
// ===========================================================================
|
|
327
|
+
// Group 8 — case-insensitivity
|
|
328
|
+
// ===========================================================================
|
|
329
|
+
|
|
330
|
+
describe("parseSlashCommand — case-insensitivity", () => {
|
|
331
|
+
test("'/VISUAL-PLAN ON' (uppercase) is treated like '/visual-plan on'", () => {
|
|
332
|
+
const r = parseSlashCommand("/VISUAL-PLAN ON", baseCtx);
|
|
333
|
+
expect(r!.settingsPatch).toEqual({ visualPlanEnabled: true });
|
|
334
|
+
});
|
|
335
|
+
|
|
336
|
+
test("'/Help' (mixed case) is treated like '/help'", () => {
|
|
337
|
+
const r = parseSlashCommand("/Help", baseCtx);
|
|
338
|
+
expect(r!.response).toMatch(/Available commands/);
|
|
339
|
+
});
|
|
340
|
+
});
|
|
341
|
+
|
|
342
|
+
// ===========================================================================
|
|
343
|
+
// Group 9 — /plan (no subcommand) shows usage
|
|
344
|
+
// ===========================================================================
|
|
345
|
+
|
|
346
|
+
describe("parseSlashCommand — /plan usage", () => {
|
|
347
|
+
test("'/plan' (no subcommand) shows usage", () => {
|
|
348
|
+
const r = parseSlashCommand("/plan", baseCtx);
|
|
349
|
+
expect(r!.response).toMatch(/Plan commands:/);
|
|
350
|
+
expect(r!.response).toMatch(/\/plan new/);
|
|
351
|
+
expect(r!.response).toMatch(/\/plan list/);
|
|
352
|
+
});
|
|
353
|
+
});
|
|
354
|
+
|
|
355
|
+
// ===========================================================================
|
|
356
|
+
// Group 10 — v0.5.0 subcommands (R3)
|
|
357
|
+
// ===========================================================================
|
|
358
|
+
|
|
359
|
+
describe("parseSlashCommand — /plan get", () => {
|
|
360
|
+
test("'/plan get foo' routes to bizar_plan_action get_canvas", () => {
|
|
361
|
+
const r = parseSlashCommand("/plan get foo", baseCtx);
|
|
362
|
+
expect(r).not.toBeNull();
|
|
363
|
+
expect(r!.handled).toBe(true);
|
|
364
|
+
expect(r!.sideEffect).toEqual({
|
|
365
|
+
kind: "tool_invocation",
|
|
366
|
+
toolName: "bizar_plan_action",
|
|
367
|
+
args: { action: "get_canvas", planSlug: "foo" },
|
|
368
|
+
});
|
|
369
|
+
expect(r!.settingsPatch).toEqual({ lastUsedSlug: "foo" });
|
|
370
|
+
});
|
|
371
|
+
|
|
372
|
+
test("'/plan get' (no slug) returns usage", () => {
|
|
373
|
+
const r = parseSlashCommand("/plan get", baseCtx);
|
|
374
|
+
expect(r!.response).toMatch(/Usage/);
|
|
375
|
+
});
|
|
376
|
+
});
|
|
377
|
+
|
|
378
|
+
describe("parseSlashCommand — /plan add", () => {
|
|
379
|
+
test("'/plan add foo --title X --type task' builds add_element args", () => {
|
|
380
|
+
const r = parseSlashCommand("/plan add foo --title X --type task", baseCtx);
|
|
381
|
+
expect(r!.handled).toBe(true);
|
|
382
|
+
expect(r!.sideEffect).toEqual({
|
|
383
|
+
kind: "tool_invocation",
|
|
384
|
+
toolName: "bizar_plan_action",
|
|
385
|
+
args: {
|
|
386
|
+
action: "add_element",
|
|
387
|
+
planSlug: "foo",
|
|
388
|
+
element: { title: "X", type: "task" },
|
|
389
|
+
},
|
|
390
|
+
});
|
|
391
|
+
expect(r!.settingsPatch).toEqual({ lastUsedSlug: "foo" });
|
|
392
|
+
});
|
|
393
|
+
|
|
394
|
+
test("'/plan add foo --title \"Hello world\"' preserves quoted strings", () => {
|
|
395
|
+
const r = parseSlashCommand('/plan add foo --title "Hello world"', baseCtx);
|
|
396
|
+
expect(r!.sideEffect).toMatchObject({
|
|
397
|
+
kind: "tool_invocation",
|
|
398
|
+
toolName: "bizar_plan_action",
|
|
399
|
+
args: {
|
|
400
|
+
action: "add_element",
|
|
401
|
+
planSlug: "foo",
|
|
402
|
+
element: { title: "Hello world" },
|
|
403
|
+
},
|
|
404
|
+
});
|
|
405
|
+
});
|
|
406
|
+
|
|
407
|
+
test("'/plan add foo --x 100 --y 200' parses numeric flags", () => {
|
|
408
|
+
const r = parseSlashCommand("/plan add foo --x 100 --y 200", baseCtx);
|
|
409
|
+
expect(r!.sideEffect).toMatchObject({
|
|
410
|
+
args: {
|
|
411
|
+
action: "add_element",
|
|
412
|
+
planSlug: "foo",
|
|
413
|
+
element: { x: 100, y: 200 },
|
|
414
|
+
},
|
|
415
|
+
});
|
|
416
|
+
});
|
|
417
|
+
|
|
418
|
+
test("'/plan add foo' (no flags) returns usage", () => {
|
|
419
|
+
const r = parseSlashCommand("/plan add foo", baseCtx);
|
|
420
|
+
expect(r!.response).toMatch(/Usage/);
|
|
421
|
+
expect(r!.response).toMatch(/At least one/);
|
|
422
|
+
});
|
|
423
|
+
});
|
|
424
|
+
|
|
425
|
+
describe("parseSlashCommand — /plan update", () => {
|
|
426
|
+
test("'/plan update foo el_1 --x 50 --y 60' builds update_element args", () => {
|
|
427
|
+
const r = parseSlashCommand("/plan update foo el_1 --x 50 --y 60", baseCtx);
|
|
428
|
+
expect(r!.sideEffect).toEqual({
|
|
429
|
+
kind: "tool_invocation",
|
|
430
|
+
toolName: "bizar_plan_action",
|
|
431
|
+
args: {
|
|
432
|
+
action: "update_element",
|
|
433
|
+
planSlug: "foo",
|
|
434
|
+
elementId: "el_1",
|
|
435
|
+
element: { x: 50, y: 60 },
|
|
436
|
+
},
|
|
437
|
+
});
|
|
438
|
+
});
|
|
439
|
+
|
|
440
|
+
test("'/plan update foo el_1' (no flags) returns usage", () => {
|
|
441
|
+
const r = parseSlashCommand("/plan update foo el_1", baseCtx);
|
|
442
|
+
expect(r!.response).toMatch(/Usage/);
|
|
443
|
+
});
|
|
444
|
+
});
|
|
445
|
+
|
|
446
|
+
describe("parseSlashCommand — /plan comment", () => {
|
|
447
|
+
test("'/plan comment foo \"Make it bigger\"' builds add_comment (canvas-pinned)", () => {
|
|
448
|
+
const r = parseSlashCommand('/plan comment foo "Make it bigger"', baseCtx);
|
|
449
|
+
expect(r!.sideEffect).toEqual({
|
|
450
|
+
kind: "tool_invocation",
|
|
451
|
+
toolName: "bizar_plan_action",
|
|
452
|
+
args: {
|
|
453
|
+
action: "add_comment",
|
|
454
|
+
planSlug: "foo",
|
|
455
|
+
comment: {
|
|
456
|
+
elementId: null,
|
|
457
|
+
author: "user",
|
|
458
|
+
text: "Make it bigger",
|
|
459
|
+
},
|
|
460
|
+
},
|
|
461
|
+
});
|
|
462
|
+
});
|
|
463
|
+
|
|
464
|
+
test("'/plan comment foo el_1 \"text\"' pins comment to element", () => {
|
|
465
|
+
const r = parseSlashCommand('/plan comment foo el_1 "text"', baseCtx);
|
|
466
|
+
expect(r!.sideEffect).toEqual({
|
|
467
|
+
kind: "tool_invocation",
|
|
468
|
+
toolName: "bizar_plan_action",
|
|
469
|
+
args: {
|
|
470
|
+
action: "add_comment",
|
|
471
|
+
planSlug: "foo",
|
|
472
|
+
comment: { elementId: "el_1", author: "user", text: "text" },
|
|
473
|
+
},
|
|
474
|
+
});
|
|
475
|
+
});
|
|
476
|
+
});
|
|
477
|
+
|
|
478
|
+
describe("parseSlashCommand — /plan comments (list)", () => {
|
|
479
|
+
test("'/plan comments foo' routes to bizar_get_plan_comments", () => {
|
|
480
|
+
const r = parseSlashCommand("/plan comments foo", baseCtx);
|
|
481
|
+
expect(r!.sideEffect).toEqual({
|
|
482
|
+
kind: "tool_invocation",
|
|
483
|
+
toolName: "bizar_get_plan_comments",
|
|
484
|
+
args: { planSlug: "foo" },
|
|
485
|
+
});
|
|
486
|
+
});
|
|
487
|
+
|
|
488
|
+
test("'/plan comments foo el_1' filters by elementId", () => {
|
|
489
|
+
const r = parseSlashCommand("/plan comments foo el_1", baseCtx);
|
|
490
|
+
expect(r!.sideEffect).toEqual({
|
|
491
|
+
kind: "tool_invocation",
|
|
492
|
+
toolName: "bizar_get_plan_comments",
|
|
493
|
+
args: { planSlug: "foo", elementId: "el_1" },
|
|
494
|
+
});
|
|
495
|
+
});
|
|
496
|
+
});
|
|
497
|
+
|
|
498
|
+
describe("parseSlashCommand — /plan status", () => {
|
|
499
|
+
test("'/plan status foo approved' builds set_status args", () => {
|
|
500
|
+
const r = parseSlashCommand("/plan status foo approved", baseCtx);
|
|
501
|
+
expect(r!.sideEffect).toEqual({
|
|
502
|
+
kind: "tool_invocation",
|
|
503
|
+
toolName: "bizar_plan_action",
|
|
504
|
+
args: { action: "set_status", planSlug: "foo", status: "approved" },
|
|
505
|
+
});
|
|
506
|
+
});
|
|
507
|
+
|
|
508
|
+
test("'/plan status foo bogus' rejects invalid status", () => {
|
|
509
|
+
const r = parseSlashCommand("/plan status foo bogus", baseCtx);
|
|
510
|
+
expect(r!.response).toMatch(/Invalid status/);
|
|
511
|
+
expect(r!.sideEffect).toBeUndefined();
|
|
512
|
+
});
|
|
513
|
+
});
|
|
514
|
+
|
|
515
|
+
describe("parseSlashCommand — /plan wait (deferred)", () => {
|
|
516
|
+
test("'/plan wait foo' returns the deferred response (no side effect, no block)", () => {
|
|
517
|
+
const r = parseSlashCommand("/plan wait foo", baseCtx);
|
|
518
|
+
expect(r).not.toBeNull();
|
|
519
|
+
expect(r!.handled).toBe(true);
|
|
520
|
+
expect(r!.sideEffect).toBeUndefined();
|
|
521
|
+
expect(r!.response).toMatch(/deferred/i);
|
|
522
|
+
expect(r!.response).toMatch(/bizar_wait_for_feedback/);
|
|
523
|
+
});
|
|
524
|
+
|
|
525
|
+
test("'/plan wait' (no slug) returns usage", () => {
|
|
526
|
+
const r = parseSlashCommand("/plan wait", baseCtx);
|
|
527
|
+
expect(r!.response).toMatch(/Usage/);
|
|
528
|
+
});
|
|
529
|
+
});
|
|
530
|
+
|
|
531
|
+
describe("parseSlashCommand — /help includes new subcommands", () => {
|
|
532
|
+
test("'/help' lists get, add, update, delete, comment, comments, status, wait", () => {
|
|
533
|
+
const r = parseSlashCommand("/help", baseCtx);
|
|
534
|
+
const text = r!.response;
|
|
535
|
+
for (const cmd of [
|
|
536
|
+
"/plan get",
|
|
537
|
+
"/plan add",
|
|
538
|
+
"/plan update",
|
|
539
|
+
"/plan delete",
|
|
540
|
+
"/plan comment",
|
|
541
|
+
"/plan comments",
|
|
542
|
+
"/plan status",
|
|
543
|
+
"/plan wait",
|
|
544
|
+
]) {
|
|
545
|
+
expect(text).toContain(cmd);
|
|
546
|
+
}
|
|
547
|
+
});
|
|
548
|
+
});
|
|
549
|
+
|
|
550
|
+
// ===========================================================================
|
|
551
|
+
// Group 11 — v4.0.0 /kb
|
|
552
|
+
// ===========================================================================
|
|
553
|
+
|
|
554
|
+
describe("parseSlashCommand — /kb", () => {
|
|
555
|
+
test("parses '/kb' slash command", () => {
|
|
556
|
+
const result = parseSlashCommand("/kb", baseCtx);
|
|
557
|
+
expect(result).not.toBeNull();
|
|
558
|
+
expect(result!.handled).toBe(true);
|
|
559
|
+
expect(result!.sideEffect).toEqual({
|
|
560
|
+
kind: "tool_invocation",
|
|
561
|
+
toolName: "bizar_open_kb",
|
|
562
|
+
args: {},
|
|
563
|
+
});
|
|
564
|
+
});
|
|
565
|
+
|
|
566
|
+
test("'/kb' with args returns help", () => {
|
|
567
|
+
const result = parseSlashCommand("/kb foo", baseCtx);
|
|
568
|
+
expect(result).not.toBeNull();
|
|
569
|
+
expect(result!.handled).toBe(true);
|
|
570
|
+
expect(result!.sideEffect).toBeUndefined();
|
|
571
|
+
expect(result!.response).toContain("Unknown argument");
|
|
572
|
+
});
|
|
573
|
+
|
|
574
|
+
test("'/kb' case-insensitive", () => {
|
|
575
|
+
const r = parseSlashCommand("/KB", baseCtx);
|
|
576
|
+
expect(r).not.toBeNull();
|
|
577
|
+
expect(r!.handled).toBe(true);
|
|
578
|
+
expect(r!.sideEffect).toEqual({
|
|
579
|
+
kind: "tool_invocation",
|
|
580
|
+
toolName: "bizar_open_kb",
|
|
581
|
+
args: {},
|
|
582
|
+
});
|
|
583
|
+
});
|
|
584
|
+
});
|