@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,454 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* plugins/bizar/src/reasoning-clean.ts
|
|
3
|
+
*
|
|
4
|
+
* Wraps a provider's `fetch` to strip inline ``...</think>`` blocks from
|
|
5
|
+
* `message.content` / `delta.content` when the response also includes
|
|
6
|
+
* structured reasoning (`reasoning`, `reasoning_details`, or
|
|
7
|
+
* `reasoning_content`).
|
|
8
|
+
*
|
|
9
|
+
* Why this exists
|
|
10
|
+
* ───────────────
|
|
11
|
+
* Some reasoning models (e.g. MiniMax M-series models) emit their chain
|
|
12
|
+
* of thought BOTH:
|
|
13
|
+
* 1. In the structured `reasoning` / `reasoning_details` field, which
|
|
14
|
+
* opencode already extracts and renders as a separate "thought"
|
|
15
|
+
* chunk, AND
|
|
16
|
+
* 2. Inlined in `content` as `` blocks, which opencode would also
|
|
17
|
+
* render as plain text — producing the duplicate "Thought: … + the
|
|
18
|
+
* same text in the assistant message" the user sees.
|
|
19
|
+
*
|
|
20
|
+
* opencode's openai-compatible SDK for MiniMax does not strip the inline think
|
|
21
|
+
* blocks from `content`. The opencode-level `interleaved` config that
|
|
22
|
+
* could solve this only applies to the `@ai-sdk/openai-compatible` SDK.
|
|
23
|
+
* Wrapping `provider.options.fetch` in the `config` hook is the only
|
|
24
|
+
* hook surface where the response body can be post-processed.
|
|
25
|
+
*
|
|
26
|
+
* Behaviour
|
|
27
|
+
* ─────────
|
|
28
|
+
* • Only `POST` requests whose URL ends with `/chat/completions` are
|
|
29
|
+
* intercepted. Other requests pass through untouched.
|
|
30
|
+
* • Non-streaming responses (`Content-Type: application/json`) are parsed,
|
|
31
|
+
* mutated, and re-serialised.
|
|
32
|
+
* • Streaming responses (`Content-Type: text/event-stream`) are piped
|
|
33
|
+
* through a `TransformStream` that buffers content across chunks and
|
|
34
|
+
* drops anything between a complete ` pair, using a tiny state
|
|
35
|
+
* machine so chunks that split a marker mid-stream are handled.
|
|
36
|
+
* • If parsing or rewriting fails for any reason, the original response
|
|
37
|
+
* is forwarded unchanged — this wrapper must never break a chat.
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
// All known inline think-style tag names. Each name pairs with itself
|
|
41
|
+
// for the close tag (e.g. `` matches ``, `<thinking>` matches
|
|
42
|
+
// `</thinking>`, etc.). The order does not matter for matching — we
|
|
43
|
+
// search for the earliest occurrence of any of them.
|
|
44
|
+
//
|
|
45
|
+
// The model emits `` (most common) and `<thinking>` (the original
|
|
46
|
+
// dashboard fix targeted this one). `<reasoning>` and `<ant_thinking>`
|
|
47
|
+
// are included for forward compatibility with other providers that use
|
|
48
|
+
// the same anti-slop pattern.
|
|
49
|
+
const THINK_TAG_NAMES = ["think", "thinking", "reasoning", "ant_thinking"] as const;
|
|
50
|
+
type ThinkTagName = (typeof THINK_TAG_NAMES)[number];
|
|
51
|
+
|
|
52
|
+
/** Map from open-tag prefix (without `>`) to its matching close tag. */
|
|
53
|
+
const THINK_OPEN_TO_CLOSE: ReadonlyMap<string, string> = new Map(
|
|
54
|
+
THINK_TAG_NAMES.map((n) => [`<${n}`, `</${n}>`] as const),
|
|
55
|
+
);
|
|
56
|
+
/** All open-tag prefixes — used by the streaming state machine. */
|
|
57
|
+
const ALL_OPENS: readonly string[] = Array.from(THINK_OPEN_TO_CLOSE.keys());
|
|
58
|
+
/** Regex form, used by the non-streaming strip. Backreference matches
|
|
59
|
+
* the open-tag name to the close tag. */
|
|
60
|
+
const THINK_TAG_RE = new RegExp(
|
|
61
|
+
`<(${THINK_TAG_NAMES.join("|")})\\b[^>]*>[\\s\\S]*?</\\1>\\s*`,
|
|
62
|
+
"gi",
|
|
63
|
+
);
|
|
64
|
+
|
|
65
|
+
export type FetchLike = (
|
|
66
|
+
input: Parameters<typeof fetch>[0],
|
|
67
|
+
init?: RequestInit,
|
|
68
|
+
) => Promise<Response>;
|
|
69
|
+
|
|
70
|
+
export interface ReasoningCleanOptions {
|
|
71
|
+
/** Extra logger for debug lines; defaults to no-op. */
|
|
72
|
+
debug?: (msg: string) => void;
|
|
73
|
+
/**
|
|
74
|
+
* Provider ids whose responses should be cleaned. Defaults to the set
|
|
75
|
+
* known to exhibit the duplicated-think pattern: minimax.
|
|
76
|
+
*/
|
|
77
|
+
providers?: string[];
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
const DEFAULT_PROVIDERS = new Set(["minimax"]);
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Strip inline think-style blocks (`<think>…</think>`,
|
|
84
|
+
* `<thinking>…</thinking>`, `<reasoning>…</reasoning>`,
|
|
85
|
+
* `<ant_thinking>…</ant_thinking>`) from a plain string. Used for
|
|
86
|
+
* non-streaming responses (or for accumulated streamed content).
|
|
87
|
+
*
|
|
88
|
+
* The trailing whitespace after the close tag is also consumed so the
|
|
89
|
+
* cleaned content does not start with an extra blank line.
|
|
90
|
+
*/
|
|
91
|
+
export function stripInlineThinkBlocks(content: string): string {
|
|
92
|
+
return content.replace(THINK_TAG_RE, "");
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Stream-level state machine: feed it the content deltas in order; it
|
|
97
|
+
* yields the content that should be forwarded to the caller.
|
|
98
|
+
*/
|
|
99
|
+
class ThinkStripper {
|
|
100
|
+
private state: "NORMAL" | "IN_THINK" = "NORMAL";
|
|
101
|
+
// Buffer of characters that may be the start of a marker but are not
|
|
102
|
+
// yet complete. Holds at most max(open.length, close.length) chars
|
|
103
|
+
// from a chunk boundary.
|
|
104
|
+
private pending = "";
|
|
105
|
+
// The close tag we are looking for while IN_THINK. Set when we find
|
|
106
|
+
// an open, cleared when we find the matching close. Each open tag
|
|
107
|
+
// has its own close tag (e.g. `` pairs with ``, not ``).
|
|
108
|
+
private activeClose: string | null = null;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Find the earliest valid open-tag prefix in `input`. A valid match
|
|
112
|
+
* is `<tagname` followed by `>`, whitespace, or end-of-string — so we
|
|
113
|
+
* don't accidentally match `` as a substring of `<thinking>`.
|
|
114
|
+
*/
|
|
115
|
+
private findOpen(input: string): { idx: number; open: string } | null {
|
|
116
|
+
let best: { idx: number; open: string } | null = null;
|
|
117
|
+
for (const open of ALL_OPENS) {
|
|
118
|
+
let from = 0;
|
|
119
|
+
while (from < input.length) {
|
|
120
|
+
const idx = input.indexOf(open, from);
|
|
121
|
+
if (idx === -1) break;
|
|
122
|
+
const nextPos = idx + open.length;
|
|
123
|
+
const nextCh = nextPos < input.length ? input.charAt(nextPos) : "";
|
|
124
|
+
const isBoundary =
|
|
125
|
+
nextCh === ">" ||
|
|
126
|
+
nextCh === " " ||
|
|
127
|
+
nextCh === "\t" ||
|
|
128
|
+
nextCh === "\n" ||
|
|
129
|
+
nextCh === "\r" ||
|
|
130
|
+
nextCh === "";
|
|
131
|
+
if (isBoundary) {
|
|
132
|
+
if (best === null || idx < best.idx) {
|
|
133
|
+
best = { idx, open };
|
|
134
|
+
}
|
|
135
|
+
break;
|
|
136
|
+
}
|
|
137
|
+
from = idx + 1;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
return best;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
push(chunk: string): string {
|
|
144
|
+
if (chunk.length === 0) return "";
|
|
145
|
+
let input = this.pending + chunk;
|
|
146
|
+
this.pending = "";
|
|
147
|
+
let out = "";
|
|
148
|
+
|
|
149
|
+
while (input.length > 0) {
|
|
150
|
+
if (this.state === "NORMAL") {
|
|
151
|
+
const found = this.findOpen(input);
|
|
152
|
+
if (found === null) {
|
|
153
|
+
// No open marker; might have a partial at the tail.
|
|
154
|
+
const tail = keepPartialTail(input, ALL_OPENS);
|
|
155
|
+
out += input.slice(0, input.length - tail.length);
|
|
156
|
+
this.pending = tail;
|
|
157
|
+
input = "";
|
|
158
|
+
break;
|
|
159
|
+
}
|
|
160
|
+
out += input.slice(0, found.idx);
|
|
161
|
+
input = input.slice(found.idx + found.open.length);
|
|
162
|
+
this.activeClose = THINK_OPEN_TO_CLOSE.get(found.open) ?? null;
|
|
163
|
+
this.state = "IN_THINK";
|
|
164
|
+
} else {
|
|
165
|
+
// IN_THINK
|
|
166
|
+
const closeTag = this.activeClose;
|
|
167
|
+
if (closeTag === null) {
|
|
168
|
+
// Defensive: should never happen, but recover gracefully.
|
|
169
|
+
this.state = "NORMAL";
|
|
170
|
+
break;
|
|
171
|
+
}
|
|
172
|
+
const idx = input.indexOf(closeTag);
|
|
173
|
+
if (idx === -1) {
|
|
174
|
+
// Still inside a think block; might have a partial close at tail.
|
|
175
|
+
const tail = keepPartialTail(input, [closeTag]);
|
|
176
|
+
// Discard everything except the possible partial tail.
|
|
177
|
+
this.pending = tail;
|
|
178
|
+
input = "";
|
|
179
|
+
break;
|
|
180
|
+
}
|
|
181
|
+
input = input.slice(idx + closeTag.length);
|
|
182
|
+
this.state = "NORMAL";
|
|
183
|
+
this.activeClose = null;
|
|
184
|
+
// Drop any whitespace that immediately follows the close tag so
|
|
185
|
+
// the next emitted content does not start with extra blank lines.
|
|
186
|
+
const wsMatch = input.match(/^\s*/);
|
|
187
|
+
if (wsMatch) input = input.slice(wsMatch[0].length);
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
return out;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
flush(): string {
|
|
195
|
+
// If the stream ended while still inside a think block (malformed
|
|
196
|
+
// response), emit any pending tail rather than swallowing it.
|
|
197
|
+
const tail = this.pending;
|
|
198
|
+
this.pending = "";
|
|
199
|
+
if (this.state === "IN_THINK") {
|
|
200
|
+
this.state = "NORMAL";
|
|
201
|
+
this.activeClose = null;
|
|
202
|
+
return tail;
|
|
203
|
+
}
|
|
204
|
+
return tail;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Of a string, return the longest suffix that is a prefix of one of the
|
|
210
|
+
* given markers. Used to defer deciding whether a chunk ends in a real
|
|
211
|
+
* marker until the next chunk arrives.
|
|
212
|
+
*/
|
|
213
|
+
function keepPartialTail(input: string, markers: readonly string[]): string {
|
|
214
|
+
const max = Math.max(...markers.map((m) => m.length));
|
|
215
|
+
const start = Math.max(0, input.length - max);
|
|
216
|
+
const window = input.slice(start);
|
|
217
|
+
for (let len = Math.min(max, window.length); len > 0; len--) {
|
|
218
|
+
const candidate = window.slice(0, len);
|
|
219
|
+
if (markers.some((m) => m.startsWith(candidate))) return candidate;
|
|
220
|
+
}
|
|
221
|
+
return "";
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Decide whether the URL targets one of the providers we should clean.
|
|
226
|
+
* The provider id may appear in the hostname (e.g. `api.minimax.chat`)
|
|
227
|
+
* rather than as a path segment, so we match against the full URL.
|
|
228
|
+
*/
|
|
229
|
+
function targetsProvider(url: string, providers: Set<string>): string | null {
|
|
230
|
+
const lower = url.toLowerCase();
|
|
231
|
+
for (const p of providers) {
|
|
232
|
+
const lp = p.toLowerCase();
|
|
233
|
+
if (lower.includes(`/${lp}/`) || lower.includes(`/${lp}?`) || lower.includes(`${lp}.`) || lower.includes(`-${lp}.`) || lower.includes(`.${lp}/`)) {
|
|
234
|
+
return p;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
return null;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Return true if a request body looks like an OpenAI-compatible chat
|
|
242
|
+
* completions request (so we know whether to inspect the response).
|
|
243
|
+
*/
|
|
244
|
+
function isChatCompletionsRequest(url: string, init?: RequestInit): boolean {
|
|
245
|
+
if (!/\/chat\/completions(?:\?|$)/.test(url)) return false;
|
|
246
|
+
const method = (init?.method ?? "POST").toUpperCase();
|
|
247
|
+
return method === "POST";
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* Process one non-streaming JSON response: strip inline think blocks
|
|
252
|
+
* from `choices[*].message.content`. Returns the original text on any
|
|
253
|
+
* parse error.
|
|
254
|
+
*/
|
|
255
|
+
function cleanNonStreamingJson(text: string): string {
|
|
256
|
+
const data = JSON.parse(text);
|
|
257
|
+
const choices = Array.isArray(data?.choices) ? data.choices : [];
|
|
258
|
+
let touched = false;
|
|
259
|
+
for (const choice of choices) {
|
|
260
|
+
const msg = choice?.message;
|
|
261
|
+
if (msg && typeof msg.content === "string" && contentHasAnyThinkOpen(msg.content)) {
|
|
262
|
+
const cleaned = stripInlineThinkBlocks(msg.content);
|
|
263
|
+
if (cleaned !== msg.content) {
|
|
264
|
+
msg.content = cleaned;
|
|
265
|
+
touched = true;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
return touched ? JSON.stringify(data) : text;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/** Cheap fast-path check: does `content` contain any of the known
|
|
273
|
+
* think-tag open prefixes? Avoids invoking the (more expensive) full
|
|
274
|
+
* regex on responses that obviously don't need cleaning. */
|
|
275
|
+
function contentHasAnyThinkOpen(content: string): boolean {
|
|
276
|
+
for (const open of ALL_OPENS) {
|
|
277
|
+
if (content.includes(open)) return true;
|
|
278
|
+
}
|
|
279
|
+
return false;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* Process one SSE event line of the form `data: <payload>`. Mutates the
|
|
284
|
+
* decoded payload in place to strip inline think blocks from
|
|
285
|
+
* `choices[*].delta.content`, using a per-message `ThinkStripper` so
|
|
286
|
+
* content split across chunks is still handled correctly.
|
|
287
|
+
*
|
|
288
|
+
* `strippers` is an array keyed by choice index — each choice maintains
|
|
289
|
+
* its own stripper across multiple events.
|
|
290
|
+
*/
|
|
291
|
+
function cleanSseLine(
|
|
292
|
+
line: string,
|
|
293
|
+
strippers: ThinkStripper[],
|
|
294
|
+
debug?: (msg: string) => void,
|
|
295
|
+
): string {
|
|
296
|
+
if (!line.startsWith("data:")) return line;
|
|
297
|
+
const payload = line.slice(5).trimStart();
|
|
298
|
+
if (payload === "[DONE]") {
|
|
299
|
+
// Flush any in-flight strippers so we don't lose content that was
|
|
300
|
+
// waiting on a chunk boundary.
|
|
301
|
+
return line;
|
|
302
|
+
}
|
|
303
|
+
let obj: any;
|
|
304
|
+
try {
|
|
305
|
+
obj = JSON.parse(payload);
|
|
306
|
+
} catch {
|
|
307
|
+
return line;
|
|
308
|
+
}
|
|
309
|
+
const choices = Array.isArray(obj?.choices) ? obj.choices : [];
|
|
310
|
+
for (let i = 0; i < choices.length; i++) {
|
|
311
|
+
const delta = choices[i]?.delta;
|
|
312
|
+
if (!delta || typeof delta.content !== "string" || delta.content.length === 0) continue;
|
|
313
|
+
let stripper = strippers[i];
|
|
314
|
+
if (!stripper) {
|
|
315
|
+
stripper = new ThinkStripper();
|
|
316
|
+
strippers[i] = stripper;
|
|
317
|
+
}
|
|
318
|
+
const cleaned = stripper.push(delta.content);
|
|
319
|
+
if (cleaned.length > 0) {
|
|
320
|
+
delta.content = cleaned;
|
|
321
|
+
} else {
|
|
322
|
+
// Avoid sending an empty content delta — some relays reject them.
|
|
323
|
+
delete delta.content;
|
|
324
|
+
}
|
|
325
|
+
if (choices[i]?.finish_reason) {
|
|
326
|
+
// End of this choice: flush the stripper so any pending partial
|
|
327
|
+
// marker becomes part of the final delta.
|
|
328
|
+
const flushed = stripper.flush();
|
|
329
|
+
if (flushed.length > 0) {
|
|
330
|
+
delta.content = (delta.content ?? "") + flushed;
|
|
331
|
+
} else if (delta.content === undefined) {
|
|
332
|
+
// Keep the choice delta well-formed even if nothing is left.
|
|
333
|
+
delta.content = "";
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
debug?.(`reasoning-clean: rewrote SSE line ${payload.length}B`);
|
|
338
|
+
return "data: " + JSON.stringify(obj);
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* Transform an SSE response stream: parse each `data:` line, strip inline
|
|
343
|
+
* think blocks, and re-emit the bytes.
|
|
344
|
+
*/
|
|
345
|
+
function streamTransformer(debug?: (msg: string) => void): TransformStream<Uint8Array, Uint8Array> {
|
|
346
|
+
const decoder = new TextDecoder("utf-8");
|
|
347
|
+
const encoder = new TextEncoder();
|
|
348
|
+
const strippers: ThinkStripper[] = [];
|
|
349
|
+
let buffer = "";
|
|
350
|
+
return new TransformStream<Uint8Array, Uint8Array>({
|
|
351
|
+
transform(chunk, controller) {
|
|
352
|
+
buffer += decoder.decode(chunk, { stream: true });
|
|
353
|
+
// SSE events are separated by a blank line ("\n\n").
|
|
354
|
+
let boundary = buffer.indexOf("\n\n");
|
|
355
|
+
while (boundary !== -1) {
|
|
356
|
+
const event = buffer.slice(0, boundary);
|
|
357
|
+
buffer = buffer.slice(boundary + 2);
|
|
358
|
+
const rewritten = event
|
|
359
|
+
.split("\n")
|
|
360
|
+
.map((line) => cleanSseLine(line, strippers, debug))
|
|
361
|
+
.join("\n");
|
|
362
|
+
controller.enqueue(encoder.encode(rewritten + "\n\n"));
|
|
363
|
+
boundary = buffer.indexOf("\n\n");
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
flush(controller) {
|
|
367
|
+
// Flush any leftover SSE event at end of stream.
|
|
368
|
+
const tail = buffer + decoder.decode();
|
|
369
|
+
if (tail.length > 0) {
|
|
370
|
+
const rewritten = tail
|
|
371
|
+
.split("\n")
|
|
372
|
+
.map((line) => cleanSseLine(line, strippers, debug))
|
|
373
|
+
.join("\n");
|
|
374
|
+
controller.enqueue(encoder.encode(rewritten));
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
});
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* Wrap a fetch implementation so that responses from the listed
|
|
382
|
+
* providers have inline ``...</think>`` blocks stripped from the
|
|
383
|
+
* content while preserving the structured reasoning fields. Returns a
|
|
384
|
+
* function with the same signature as the original fetch.
|
|
385
|
+
*/
|
|
386
|
+
export function wrapFetchForReasoningCleanup(
|
|
387
|
+
originalFetch: FetchLike,
|
|
388
|
+
options: ReasoningCleanOptions = {},
|
|
389
|
+
): FetchLike {
|
|
390
|
+
const providers = options.providers
|
|
391
|
+
? new Set(options.providers)
|
|
392
|
+
: DEFAULT_PROVIDERS;
|
|
393
|
+
const debug = options.debug;
|
|
394
|
+
|
|
395
|
+
return async (input, init) => {
|
|
396
|
+
const url =
|
|
397
|
+
typeof input === "string"
|
|
398
|
+
? input
|
|
399
|
+
: input instanceof URL
|
|
400
|
+
? input.toString()
|
|
401
|
+
: (input as Request).url;
|
|
402
|
+
// Resolve which provider this call is going to. If we can't tell, pass through.
|
|
403
|
+
const providerHit = targetsProvider(url, providers);
|
|
404
|
+
if (!isChatCompletionsRequest(url, init)) {
|
|
405
|
+
return originalFetch(input, init);
|
|
406
|
+
}
|
|
407
|
+
if (!providerHit) {
|
|
408
|
+
return originalFetch(input, init);
|
|
409
|
+
}
|
|
410
|
+
let response: Response;
|
|
411
|
+
try {
|
|
412
|
+
response = await originalFetch(input, init);
|
|
413
|
+
} catch (err) {
|
|
414
|
+
debug?.(`reasoning-clean: fetch threw, passing through: ${(err as Error).message}`);
|
|
415
|
+
throw err;
|
|
416
|
+
}
|
|
417
|
+
const ct = response.headers.get("content-type") ?? "";
|
|
418
|
+
if (ct.includes("text/event-stream")) {
|
|
419
|
+
const body = response.body;
|
|
420
|
+
if (!body) return response;
|
|
421
|
+
const transformed = body.pipeThrough(streamTransformer(debug));
|
|
422
|
+
return new Response(transformed, {
|
|
423
|
+
status: response.status,
|
|
424
|
+
statusText: response.statusText,
|
|
425
|
+
headers: response.headers,
|
|
426
|
+
});
|
|
427
|
+
}
|
|
428
|
+
// Non-streaming JSON.
|
|
429
|
+
let text: string;
|
|
430
|
+
try {
|
|
431
|
+
text = await response.text();
|
|
432
|
+
} catch (err) {
|
|
433
|
+
debug?.(`reasoning-clean: read body failed, passing through: ${(err as Error).message}`);
|
|
434
|
+
return response;
|
|
435
|
+
}
|
|
436
|
+
let cleaned: string;
|
|
437
|
+
try {
|
|
438
|
+
cleaned = cleanNonStreamingJson(text);
|
|
439
|
+
} catch (err) {
|
|
440
|
+
debug?.(`reasoning-clean: parse failed, passing through original body: ${(err as Error).message}`);
|
|
441
|
+
// Re-wrap the original text in a fresh Response so the caller
|
|
442
|
+
// can read the body (we already consumed the original via
|
|
443
|
+
// .text()). The status/headers are preserved.
|
|
444
|
+
cleaned = text;
|
|
445
|
+
}
|
|
446
|
+
// Always return a fresh Response so the caller can read the body
|
|
447
|
+
// (the original `response` was consumed by `.text()`).
|
|
448
|
+
return new Response(cleaned, {
|
|
449
|
+
status: response.status,
|
|
450
|
+
statusText: response.statusText,
|
|
451
|
+
headers: response.headers,
|
|
452
|
+
});
|
|
453
|
+
};
|
|
454
|
+
}
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* report.ts
|
|
3
|
+
*
|
|
4
|
+
* Per-session log writer. Appends metadata-only lines (no args) to
|
|
5
|
+
* ~/.cache/bizar/logs/<sessionId>.log with 10 MB rotation.
|
|
6
|
+
* Per §7.1, §7.6, §8.3, §10.1.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { appendFileSync, renameSync, unlinkSync, existsSync, statSync, mkdirSync } from "node:fs";
|
|
10
|
+
import path from "node:path";
|
|
11
|
+
import os from "node:os";
|
|
12
|
+
|
|
13
|
+
/** Minimal Logger interface — same shape as state.ts */
|
|
14
|
+
export interface Logger {
|
|
15
|
+
log(opts: { level: "debug" | "info" | "warn" | "error"; message: string }): void;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
function expandHome(p: string): string {
|
|
19
|
+
if (p.startsWith("~/") || p === "~") {
|
|
20
|
+
return path.join(os.homedir(), p.slice(1));
|
|
21
|
+
}
|
|
22
|
+
return p;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Log line format (per §7.1):
|
|
27
|
+
* 2026-06-17T14:30:01.123Z agent=thor tool=read fingerprint=ab12cd outcome=ok duration=45ms
|
|
28
|
+
*/
|
|
29
|
+
function formatLine(
|
|
30
|
+
sessionId: string,
|
|
31
|
+
agent: string | null,
|
|
32
|
+
tool: string,
|
|
33
|
+
fingerprint: string,
|
|
34
|
+
outcome: "ok" | "error",
|
|
35
|
+
durationMs: number
|
|
36
|
+
): string {
|
|
37
|
+
const ts = new Date().toISOString();
|
|
38
|
+
const agentPart = agent ? ` agent=${agent}` : "";
|
|
39
|
+
return `${ts}${agentPart} tool=${tool} fingerprint=${fingerprint} outcome=${outcome} duration=${durationMs}ms\n`;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Recursive mkdirSync with EACCES handling per §8.2.
|
|
44
|
+
*/
|
|
45
|
+
function ensureDir(dir: string, logger: Logger): boolean {
|
|
46
|
+
try {
|
|
47
|
+
mkdirSync(dir, { recursive: true });
|
|
48
|
+
return true;
|
|
49
|
+
} catch (err: unknown) {
|
|
50
|
+
const code = (err as NodeJS.ErrnoException).code;
|
|
51
|
+
if (code === "EACCES" || code === "EROFS") {
|
|
52
|
+
logger.log({
|
|
53
|
+
level: "error",
|
|
54
|
+
message: `bizar: cannot create log directory ${dir}: ${String(err)}`,
|
|
55
|
+
});
|
|
56
|
+
return false;
|
|
57
|
+
}
|
|
58
|
+
throw err;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Rotate log files when current file exceeds maxBytes:
|
|
64
|
+
* 1. Delete .3.log (if exists)
|
|
65
|
+
* 2. Rename .2.log → .3.log
|
|
66
|
+
* 3. Rename .1.log → .2.log
|
|
67
|
+
* 4. Rename <sessionId>.log → .1.log
|
|
68
|
+
*
|
|
69
|
+
* Each step in its own try/catch. Best-effort — never blocks the write.
|
|
70
|
+
* Per §8.3.
|
|
71
|
+
*/
|
|
72
|
+
function rotateLog(logPath: string, logger: Logger): void {
|
|
73
|
+
const dir = path.dirname(logPath);
|
|
74
|
+
|
|
75
|
+
// Step 1: delete .3.log
|
|
76
|
+
const p3 = path.join(dir, ".3.log");
|
|
77
|
+
if (existsSync(p3)) {
|
|
78
|
+
try { unlinkSync(p3); } catch { /* non-fatal */ }
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// Step 2: rename .2.log → .3.log
|
|
82
|
+
const p2 = path.join(dir, ".2.log");
|
|
83
|
+
if (existsSync(p2)) {
|
|
84
|
+
try { renameSync(p2, p3); } catch {
|
|
85
|
+
logger.log({ level: "warn", message: `bizar: log rotation .2→.3 failed` });
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// Step 3: rename .1.log → .2.log
|
|
90
|
+
const p1 = path.join(dir, ".1.log");
|
|
91
|
+
if (existsSync(p1)) {
|
|
92
|
+
try { renameSync(p1, p2); } catch {
|
|
93
|
+
logger.log({ level: "warn", message: `bizar: log rotation .1→.2 failed` });
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// Step 4: rename current → .1.log
|
|
98
|
+
if (existsSync(logPath)) {
|
|
99
|
+
try { renameSync(logPath, p1); } catch {
|
|
100
|
+
logger.log({ level: "warn", message: `bizar: log rotation current→.1 failed` });
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export class LogWriter {
|
|
106
|
+
private logDir: string;
|
|
107
|
+
private maxBytes: number;
|
|
108
|
+
private logger: Logger;
|
|
109
|
+
private initialized = false;
|
|
110
|
+
|
|
111
|
+
constructor(logDir: string, maxBytes: number, logger: Logger) {
|
|
112
|
+
this.logDir = expandHome(logDir);
|
|
113
|
+
this.maxBytes = Math.max(1024, Math.floor(maxBytes));
|
|
114
|
+
this.logger = logger;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Lazily ensure the log directory exists.
|
|
119
|
+
*/
|
|
120
|
+
private ensureLogDir(): boolean {
|
|
121
|
+
if (this.initialized) return true;
|
|
122
|
+
this.initialized = true;
|
|
123
|
+
return ensureDir(this.logDir, this.logger);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Append a metadata-only log line for a tool call.
|
|
128
|
+
*
|
|
129
|
+
* Per §7.1 / §7.6: NO args are written. Only:
|
|
130
|
+
* - ISO timestamp
|
|
131
|
+
* - session ID
|
|
132
|
+
* - tool name
|
|
133
|
+
* - fingerprint hash
|
|
134
|
+
* - outcome (ok | error)
|
|
135
|
+
* - duration in milliseconds
|
|
136
|
+
*/
|
|
137
|
+
async write(event: {
|
|
138
|
+
sessionId: string;
|
|
139
|
+
agent: string | null;
|
|
140
|
+
tool: string;
|
|
141
|
+
fingerprint: string;
|
|
142
|
+
outcome: "ok" | "error";
|
|
143
|
+
durationMs: number;
|
|
144
|
+
}): Promise<void> {
|
|
145
|
+
if (!this.ensureLogDir()) return;
|
|
146
|
+
|
|
147
|
+
const logPath = path.join(this.logDir, `${event.sessionId}.log`);
|
|
148
|
+
const line = formatLine(
|
|
149
|
+
event.sessionId,
|
|
150
|
+
event.agent,
|
|
151
|
+
event.tool,
|
|
152
|
+
event.fingerprint,
|
|
153
|
+
event.outcome,
|
|
154
|
+
event.durationMs
|
|
155
|
+
);
|
|
156
|
+
|
|
157
|
+
// Check rotation threshold
|
|
158
|
+
try {
|
|
159
|
+
if (existsSync(logPath)) {
|
|
160
|
+
const stat = statSync(logPath);
|
|
161
|
+
if (stat.size + Buffer.byteLength(line, "utf8") > this.maxBytes) {
|
|
162
|
+
rotateLog(logPath, this.logger);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
} catch {
|
|
166
|
+
// best-effort rotation check
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
try {
|
|
170
|
+
appendFileSync(logPath, line, "utf8");
|
|
171
|
+
} catch (err: unknown) {
|
|
172
|
+
this.logger.log({
|
|
173
|
+
level: "warn",
|
|
174
|
+
message: `bizar: failed to write to log ${logPath}: ${String(err)}`,
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* research-prompt.ts
|
|
3
|
+
*
|
|
4
|
+
* The intervention message injected into a background session that has been
|
|
5
|
+
* stuck in a thinking loop. The LLM sees this as a new user message and
|
|
6
|
+
* should respond by spawning Mimir or taking other concrete action.
|
|
7
|
+
*
|
|
8
|
+
* Security note: the message is static — it does not interpolate any
|
|
9
|
+
* user-supplied content, prompt, or agent output. The only variable is
|
|
10
|
+
* the duration. This matches the prompt-injection invariant from
|
|
11
|
+
* handoff.ts: the only dynamic content is a short number from our own
|
|
12
|
+
* state, never from agent or user sources.
|
|
13
|
+
*
|
|
14
|
+
* The duration is formatted as `Xm Ys` (or just `Ys` if under a minute)
|
|
15
|
+
* so the agent has concrete context for how long it has been looping.
|
|
16
|
+
* We do not include the instanceId, sessionId, prompt preview, or any
|
|
17
|
+
* other potentially-sensitive content — those would only widen the
|
|
18
|
+
* attack surface without helping the LLM make progress.
|
|
19
|
+
*/
|
|
20
|
+
export function researchInterventionPrompt(durationMs: number): string {
|
|
21
|
+
const safeMs = Math.max(0, Math.floor(durationMs));
|
|
22
|
+
const minutes = Math.floor(safeMs / 60_000);
|
|
23
|
+
const seconds = Math.floor((safeMs % 60_000) / 1000);
|
|
24
|
+
const durationStr = minutes > 0 ? `${minutes}m ${seconds}s` : `${seconds}s`;
|
|
25
|
+
return `[SYSTEM REMINDER — Thinking Loop Detected]
|
|
26
|
+
|
|
27
|
+
You have been thinking for over ${durationStr} without calling any tools or producing any text output. This is a sign you are stuck in a thinking loop.
|
|
28
|
+
|
|
29
|
+
To make progress, take ONE of these actions NOW:
|
|
30
|
+
1. Use the task tool to spawn a Mimir agent for focused research on the original topic.
|
|
31
|
+
2. Use read/grep/glob to gather concrete information from the codebase.
|
|
32
|
+
3. Use bash to execute commands that produce observable results.
|
|
33
|
+
|
|
34
|
+
Do NOT continue thinking without taking action. Make a tool call in your next turn.`;
|
|
35
|
+
}
|