@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,188 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* mod-instructions.node.test.mjs — Node-compatible test runner.
|
|
3
|
+
*
|
|
4
|
+
* Bun's homedir() doesn't pick up process.env.HOME changes at import
|
|
5
|
+
* time, so we run this suite with `node --test` instead, where env
|
|
6
|
+
* overrides work as expected.
|
|
7
|
+
*
|
|
8
|
+
* Run with: node --test tests/mod-instructions.node.test.mjs
|
|
9
|
+
*/
|
|
10
|
+
import { describe, it, before, after } from 'node:test';
|
|
11
|
+
import assert from 'node:assert/strict';
|
|
12
|
+
import {
|
|
13
|
+
existsSync,
|
|
14
|
+
mkdirSync,
|
|
15
|
+
rmSync,
|
|
16
|
+
writeFileSync,
|
|
17
|
+
} from 'node:fs';
|
|
18
|
+
import { join, resolve } from 'node:path';
|
|
19
|
+
import { homedir, tmpdir } from 'node:os';
|
|
20
|
+
|
|
21
|
+
// ── Sandbox HOME before importing the loader ─────────────────────
|
|
22
|
+
const SANDBOX_HOME = join(tmpdir(), `bizar-mod-test-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
23
|
+
process.env.HOME = SANDBOX_HOME;
|
|
24
|
+
process.env.XDG_CONFIG_HOME = join(SANDBOX_HOME, '.config');
|
|
25
|
+
|
|
26
|
+
const REPO = resolve(import.meta.dirname, '..');
|
|
27
|
+
const LOADER = join(REPO, 'src/server/mods-loader.mjs');
|
|
28
|
+
// Import AFTER HOME is set so the loader resolves constants correctly.
|
|
29
|
+
const loaderModule = await import(LOADER);
|
|
30
|
+
const { modsLoader } = loaderModule;
|
|
31
|
+
|
|
32
|
+
const TEST_MOD_ID = 'testmod';
|
|
33
|
+
|
|
34
|
+
function buildTestMod() {
|
|
35
|
+
const modDir = join(SANDBOX_HOME, '.config/bizar/mods', TEST_MOD_ID);
|
|
36
|
+
rmSync(modDir, { recursive: true, force: true });
|
|
37
|
+
mkdirSync(modDir, { recursive: true });
|
|
38
|
+
writeFileSync(join(modDir, 'mod.json'), JSON.stringify({
|
|
39
|
+
id: TEST_MOD_ID,
|
|
40
|
+
name: 'Test Mod',
|
|
41
|
+
version: '1.0.0',
|
|
42
|
+
description: 'A test mod for the instructions installer.',
|
|
43
|
+
permissions: [],
|
|
44
|
+
}, null, 2));
|
|
45
|
+
mkdirSync(join(modDir, 'agents'), { recursive: true });
|
|
46
|
+
writeFileSync(join(modDir, 'agents', 'thor.md'), '---\ndescription: test thor\n---\n# Thor override\n');
|
|
47
|
+
writeFileSync(join(modDir, 'agents', 'tyr.md'), '---\ndescription: test tyr\n---\n# Tyr override\n');
|
|
48
|
+
mkdirSync(join(modDir, 'commands'), { recursive: true });
|
|
49
|
+
writeFileSync(join(modDir, 'commands', 'plan.md'), '---\ndescription: test plan\n---\n# Plan command\n');
|
|
50
|
+
writeFileSync(join(modDir, 'INSTRUCTIONS.md'), '---\nname: test-instructions\n---\n# Test instructions\n');
|
|
51
|
+
mkdirSync(join(modDir, 'skills', 'my-skill'), { recursive: true });
|
|
52
|
+
writeFileSync(join(modDir, 'skills', 'my-skill', 'SKILL.md'), '---\nname: test-my-skill\n---\n# My skill\n');
|
|
53
|
+
return modDir;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
before(() => {
|
|
57
|
+
mkdirSync(join(SANDBOX_HOME, '.config/opencode/agents'), { recursive: true });
|
|
58
|
+
mkdirSync(join(SANDBOX_HOME, '.config/opencode/commands'), { recursive: true });
|
|
59
|
+
mkdirSync(join(SANDBOX_HOME, '.opencode/skills'), { recursive: true });
|
|
60
|
+
mkdirSync(join(SANDBOX_HOME, '.config/bizar/mods'), { recursive: true });
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
after(() => {
|
|
64
|
+
try {
|
|
65
|
+
rmSync(SANDBOX_HOME, { recursive: true, force: true });
|
|
66
|
+
} catch { /* ignore */ }
|
|
67
|
+
process.env.HOME = homedir();
|
|
68
|
+
delete process.env.XDG_CONFIG_HOME;
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
describe('mod instructions install/uninstall', () => {
|
|
72
|
+
it('installs agents, commands, INSTRUCTIONS, and skills with the right prefixes', () => {
|
|
73
|
+
const modDir = buildTestMod();
|
|
74
|
+
const counts = modsLoader.reinstallInstructions(TEST_MOD_ID);
|
|
75
|
+
assert.equal(counts.agents, 2);
|
|
76
|
+
assert.equal(counts.commands, 1);
|
|
77
|
+
assert.equal(counts.instructions, 1);
|
|
78
|
+
assert.equal(counts.skills, 1);
|
|
79
|
+
|
|
80
|
+
const agentsDir = join(SANDBOX_HOME, '.config/opencode/agents');
|
|
81
|
+
assert.ok(existsSync(join(agentsDir, `${TEST_MOD_ID}__thor.md`)));
|
|
82
|
+
assert.ok(existsSync(join(agentsDir, `${TEST_MOD_ID}__tyr.md`)));
|
|
83
|
+
assert.equal(existsSync(join(agentsDir, 'thor.md')), false);
|
|
84
|
+
|
|
85
|
+
const commandsDir = join(SANDBOX_HOME, '.config/opencode/commands');
|
|
86
|
+
assert.ok(existsSync(join(commandsDir, `${TEST_MOD_ID}__plan.md`)));
|
|
87
|
+
|
|
88
|
+
const skillsDir = join(SANDBOX_HOME, '.opencode/skills');
|
|
89
|
+
assert.ok(existsSync(join(skillsDir, `${TEST_MOD_ID}-instructions`, 'SKILL.md')));
|
|
90
|
+
assert.ok(existsSync(join(skillsDir, `${TEST_MOD_ID}-my-skill`, 'SKILL.md')));
|
|
91
|
+
|
|
92
|
+
rmSync(modDir, { recursive: true, force: true });
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
it('does not touch files installed by other mods or base agents', () => {
|
|
96
|
+
const modDir = buildTestMod();
|
|
97
|
+
const agentsDir = join(SANDBOX_HOME, '.config/opencode/agents');
|
|
98
|
+
writeFileSync(join(agentsDir, 'othermod__thor.md'), '# othermod thor');
|
|
99
|
+
writeFileSync(join(agentsDir, 'odin.md'), '# base odin');
|
|
100
|
+
|
|
101
|
+
const counts = modsLoader.reinstallInstructions(TEST_MOD_ID);
|
|
102
|
+
assert.equal(counts.agents, 2);
|
|
103
|
+
assert.ok(existsSync(join(agentsDir, 'othermod__thor.md')));
|
|
104
|
+
assert.ok(existsSync(join(agentsDir, `${TEST_MOD_ID}__thor.md`)));
|
|
105
|
+
assert.ok(existsSync(join(agentsDir, 'odin.md')));
|
|
106
|
+
|
|
107
|
+
rmSync(modDir, { recursive: true, force: true });
|
|
108
|
+
try { rmSync(join(agentsDir, 'othermod__thor.md')); } catch { /* ignore */ }
|
|
109
|
+
try { rmSync(join(agentsDir, 'odin.md')); } catch { /* ignore */ }
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
it('uninstall removes only what this mod installed', () => {
|
|
113
|
+
const modDir = buildTestMod();
|
|
114
|
+
modsLoader.reinstallInstructions(TEST_MOD_ID);
|
|
115
|
+
|
|
116
|
+
const agentsDir = join(SANDBOX_HOME, '.config/opencode/agents');
|
|
117
|
+
writeFileSync(join(agentsDir, 'othermod__thor.md'), '# othermod');
|
|
118
|
+
writeFileSync(join(agentsDir, 'odin.md'), '# base odin');
|
|
119
|
+
|
|
120
|
+
const ok = modsLoader.uninstall(TEST_MOD_ID);
|
|
121
|
+
assert.equal(ok, true);
|
|
122
|
+
|
|
123
|
+
assert.equal(existsSync(join(agentsDir, `${TEST_MOD_ID}__thor.md`)), false);
|
|
124
|
+
assert.equal(existsSync(join(agentsDir, `${TEST_MOD_ID}__tyr.md`)), false);
|
|
125
|
+
const commandsDir = join(SANDBOX_HOME, '.config/opencode/commands');
|
|
126
|
+
assert.equal(existsSync(join(commandsDir, `${TEST_MOD_ID}__plan.md`)), false);
|
|
127
|
+
const skillsDir = join(SANDBOX_HOME, '.opencode/skills');
|
|
128
|
+
assert.equal(existsSync(join(skillsDir, `${TEST_MOD_ID}-instructions`)), false);
|
|
129
|
+
assert.equal(existsSync(join(skillsDir, `${TEST_MOD_ID}-my-skill`)), false);
|
|
130
|
+
|
|
131
|
+
assert.ok(existsSync(join(agentsDir, 'othermod__thor.md')));
|
|
132
|
+
assert.ok(existsSync(join(agentsDir, 'odin.md')));
|
|
133
|
+
|
|
134
|
+
try { rmSync(join(agentsDir, 'othermod__thor.md')); } catch { /* ignore */ }
|
|
135
|
+
try { rmSync(join(agentsDir, 'odin.md')); } catch { /* ignore */ }
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
it('install/uninstall round-trips cleanly', () => {
|
|
139
|
+
for (let i = 0; i < 2; i++) {
|
|
140
|
+
const modDir = buildTestMod();
|
|
141
|
+
const agentsDir = join(SANDBOX_HOME, '.config/opencode/agents');
|
|
142
|
+
|
|
143
|
+
const counts = modsLoader.reinstallInstructions(TEST_MOD_ID);
|
|
144
|
+
assert.equal(counts.agents, 2);
|
|
145
|
+
assert.ok(existsSync(join(agentsDir, `${TEST_MOD_ID}__thor.md`)));
|
|
146
|
+
|
|
147
|
+
modsLoader.uninstall(TEST_MOD_ID);
|
|
148
|
+
|
|
149
|
+
assert.equal(existsSync(join(agentsDir, `${TEST_MOD_ID}__thor.md`)), false);
|
|
150
|
+
assert.equal(existsSync(modDir), false);
|
|
151
|
+
}
|
|
152
|
+
});
|
|
153
|
+
|
|
154
|
+
it('listModInstructions reports exactly the files this mod installed', () => {
|
|
155
|
+
const modDir = buildTestMod();
|
|
156
|
+
modsLoader.reinstallInstructions(TEST_MOD_ID);
|
|
157
|
+
|
|
158
|
+
const list = modsLoader.listModInstructions(TEST_MOD_ID);
|
|
159
|
+
assert.deepEqual(list.agents.sort(), [
|
|
160
|
+
`${TEST_MOD_ID}__thor.md`,
|
|
161
|
+
`${TEST_MOD_ID}__tyr.md`,
|
|
162
|
+
]);
|
|
163
|
+
assert.deepEqual(list.commands, [`${TEST_MOD_ID}__plan.md`]);
|
|
164
|
+
assert.deepEqual(list.skills.sort(), [
|
|
165
|
+
`${TEST_MOD_ID}-instructions`,
|
|
166
|
+
`${TEST_MOD_ID}-my-skill`,
|
|
167
|
+
]);
|
|
168
|
+
|
|
169
|
+
modsLoader.uninstall(TEST_MOD_ID);
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
it('ignores non-md files in agents/ and commands/', () => {
|
|
173
|
+
const modDir = buildTestMod();
|
|
174
|
+
writeFileSync(join(modDir, 'agents', 'thor.txt'), 'should not be installed');
|
|
175
|
+
writeFileSync(join(modDir, 'commands', 'plan.txt'), 'should not be installed');
|
|
176
|
+
|
|
177
|
+
const counts = modsLoader.reinstallInstructions(TEST_MOD_ID);
|
|
178
|
+
assert.equal(counts.agents, 2);
|
|
179
|
+
assert.equal(counts.commands, 1);
|
|
180
|
+
|
|
181
|
+
const agentsDir = join(SANDBOX_HOME, '.config/opencode/agents');
|
|
182
|
+
const commandsDir = join(SANDBOX_HOME, '.config/opencode/commands');
|
|
183
|
+
assert.equal(existsSync(join(agentsDir, `${TEST_MOD_ID}__thor.txt`)), false);
|
|
184
|
+
assert.equal(existsSync(join(commandsDir, `${TEST_MOD_ID}__plan.txt`)), false);
|
|
185
|
+
|
|
186
|
+
modsLoader.uninstall(TEST_MOD_ID);
|
|
187
|
+
});
|
|
188
|
+
});
|
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* mod-security unit tests.
|
|
3
|
+
*
|
|
4
|
+
* Covers permission parsing, filesystem sandboxing, subprocess
|
|
5
|
+
* allowlisting, and integrity hashing. These run as plain Node tests
|
|
6
|
+
* — no dashboard, no express, no DB.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { describe, it, expect, beforeEach, afterEach } from 'bun:test';
|
|
10
|
+
import { mkdirSync, writeFileSync, rmSync, existsSync, statSync } from 'node:fs';
|
|
11
|
+
import { join, resolve } from 'node:path';
|
|
12
|
+
import { tmpdir } from 'node:os';
|
|
13
|
+
import { createHash } from 'node:crypto';
|
|
14
|
+
|
|
15
|
+
import {
|
|
16
|
+
parsePermissions,
|
|
17
|
+
authorizeFsPath,
|
|
18
|
+
authorizeSpawn,
|
|
19
|
+
computeModHash,
|
|
20
|
+
verifyModIntegrity,
|
|
21
|
+
createAuditWriter,
|
|
22
|
+
createModSecurityContext,
|
|
23
|
+
ALLOWED_BINARIES,
|
|
24
|
+
} from '../src/server/mod-security';
|
|
25
|
+
|
|
26
|
+
// ---- Helpers ----
|
|
27
|
+
function freshTmp() {
|
|
28
|
+
const d = join(tmpdir(), `modsec-test-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
29
|
+
mkdirSync(d, { recursive: true });
|
|
30
|
+
return d;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
describe('parsePermissions', () => {
|
|
34
|
+
it('accepts well-formed permission tokens', () => {
|
|
35
|
+
const r = parsePermissions([
|
|
36
|
+
'fs:read:/abs/path',
|
|
37
|
+
'fs:write:/abs/path/*',
|
|
38
|
+
'process:spawn:bizar',
|
|
39
|
+
'network:example.com',
|
|
40
|
+
]);
|
|
41
|
+
expect(r.invalid).toEqual([]);
|
|
42
|
+
expect(r.allowed.size).toBe(4);
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
it('flags malformed tokens', () => {
|
|
46
|
+
const r = parsePermissions([
|
|
47
|
+
'garbage',
|
|
48
|
+
42,
|
|
49
|
+
null,
|
|
50
|
+
'unknown:foo',
|
|
51
|
+
]);
|
|
52
|
+
expect(r.invalid.length).toBe(4);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('mixes valid and invalid', () => {
|
|
56
|
+
const r = parsePermissions(['fs:read:/x', 'no-colon']);
|
|
57
|
+
expect(r.invalid).toEqual(['no-colon']);
|
|
58
|
+
expect(r.allowed.has('fs:read:/x')).toBe(true);
|
|
59
|
+
});
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
describe('authorizeFsPath', () => {
|
|
63
|
+
const perms = new Set([
|
|
64
|
+
'fs:read:/allowed',
|
|
65
|
+
'fs:read:/allowed/sub/*',
|
|
66
|
+
'fs:write:/writable/*',
|
|
67
|
+
'fs:read:~/config/bizar', // home-relative
|
|
68
|
+
]);
|
|
69
|
+
|
|
70
|
+
it('accepts exact match', () => {
|
|
71
|
+
expect(authorizeFsPath(perms, 'read', '/allowed')).toBe('/allowed');
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
it('accepts prefix match', () => {
|
|
75
|
+
expect(authorizeFsPath(perms, 'read', '/allowed/sub/x')).toBe('/allowed/sub/x');
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
it('rejects path outside scope', () => {
|
|
79
|
+
expect(() => authorizeFsPath(perms, 'read', '/notallowed')).toThrow(/not authorized/);
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
it('rejects null bytes', () => {
|
|
83
|
+
expect(() => authorizeFsPath(perms, 'read', '/allowed\0bad')).toThrow(/null bytes/);
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
it('expands ~ in scope', () => {
|
|
87
|
+
// ~/config/bizar resolves to homedir + /config/bizar
|
|
88
|
+
const r = authorizeFsPath(perms, 'read', '~/config/bizar/x');
|
|
89
|
+
expect(r).toContain('/config/bizar');
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
it('write scope does not grant read', () => {
|
|
93
|
+
expect(() => authorizeFsPath(perms, 'write', '/allowed')).toThrow(/not authorized/);
|
|
94
|
+
});
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
describe('authorizeSpawn', () => {
|
|
98
|
+
it('allows whitelisted binaries without explicit perm', () => {
|
|
99
|
+
for (const bin of ['bizar', 'opencode', 'python3', 'git', 'node', 'npm']) {
|
|
100
|
+
expect(() => authorizeSpawn(new Set(), () => {}, bin)).not.toThrow();
|
|
101
|
+
}
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
it('rejects non-whitelisted binaries without explicit perm', () => {
|
|
105
|
+
expect(() => authorizeSpawn(new Set(), () => {}, 'curl')).toThrow(/not authorized/);
|
|
106
|
+
expect(() => authorizeSpawn(new Set(), () => {}, 'wget')).toThrow(/not authorized/);
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
it('allows non-whitelisted with explicit permission', () => {
|
|
110
|
+
const perms = new Set(['process:spawn:curl']);
|
|
111
|
+
expect(() => authorizeSpawn(perms, () => {}, 'curl')).not.toThrow();
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
it('process:spawn:* wildcard allows any', () => {
|
|
115
|
+
const perms = new Set(['process:spawn:*']);
|
|
116
|
+
expect(() => authorizeSpawn(perms, () => {}, 'anything')).not.toThrow();
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
it('rejects paths (must use bare name or full perms)', () => {
|
|
120
|
+
expect(() => authorizeSpawn(new Set(), () => {}, '/bin/ls')).toThrow(/not authorized/);
|
|
121
|
+
const perms = new Set(['process:spawn:/bin/ls']);
|
|
122
|
+
expect(() => authorizeSpawn(perms, () => {}, '/bin/ls')).not.toThrow();
|
|
123
|
+
});
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
describe('computeModHash + verifyModIntegrity', () => {
|
|
127
|
+
let modDir;
|
|
128
|
+
beforeEach(() => {
|
|
129
|
+
modDir = freshTmp();
|
|
130
|
+
writeFileSync(join(modDir, 'mod.json'), '{"id":"test","version":"1.0.0"}');
|
|
131
|
+
writeFileSync(join(modDir, 'route.mjs'), 'export default function(){}');
|
|
132
|
+
});
|
|
133
|
+
afterEach(() => {
|
|
134
|
+
rmSync(modDir, { recursive: true, force: true });
|
|
135
|
+
});
|
|
136
|
+
|
|
137
|
+
it('hash is deterministic for identical content', () => {
|
|
138
|
+
const a = computeModHash(modDir);
|
|
139
|
+
const b = computeModHash(modDir);
|
|
140
|
+
expect(a).toBe(b);
|
|
141
|
+
expect(a.length).toBe(64);
|
|
142
|
+
});
|
|
143
|
+
|
|
144
|
+
it('hash changes when a file changes', () => {
|
|
145
|
+
const before = computeModHash(modDir);
|
|
146
|
+
writeFileSync(join(modDir, 'route.mjs'), 'export default function() {/* changed */}');
|
|
147
|
+
const after = computeModHash(modDir);
|
|
148
|
+
expect(after).not.toBe(before);
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
it('hash changes when a file is added', () => {
|
|
152
|
+
const before = computeModHash(modDir);
|
|
153
|
+
writeFileSync(join(modDir, 'README.md'), '# hi');
|
|
154
|
+
const after = computeModHash(modDir);
|
|
155
|
+
expect(after).not.toBe(before);
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
it('verifyModIntegrity returns ok=true when hash matches', () => {
|
|
159
|
+
const hash = computeModHash(modDir);
|
|
160
|
+
const mod = {
|
|
161
|
+
id: 'test',
|
|
162
|
+
version: '1.0.0',
|
|
163
|
+
path: modDir,
|
|
164
|
+
_integrity: hash,
|
|
165
|
+
};
|
|
166
|
+
const r = verifyModIntegrity(mod);
|
|
167
|
+
expect(r.ok).toBe(true);
|
|
168
|
+
expect(r.hash).toBe(hash);
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
it('verifyModIntegrity returns ok=false on mismatch', () => {
|
|
172
|
+
const mod = {
|
|
173
|
+
id: 'test', version: '1.0.0', path: modDir,
|
|
174
|
+
_integrity: 'a'.repeat(64), // wrong hash
|
|
175
|
+
};
|
|
176
|
+
const r = verifyModIntegrity(mod);
|
|
177
|
+
expect(r.ok).toBe(false);
|
|
178
|
+
expect(r.expected).toBe('a'.repeat(64));
|
|
179
|
+
expect(r.reason).toContain('modified');
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
it('verifyModIntegrity returns ok="unsigned" when no _integrity field', () => {
|
|
183
|
+
const mod = { id: 'test', version: '1.0.0', path: modDir };
|
|
184
|
+
const r = verifyModIntegrity(mod);
|
|
185
|
+
expect(r.ok).toBe('unsigned');
|
|
186
|
+
});
|
|
187
|
+
|
|
188
|
+
it('skips node_modules and .DS_Store', () => {
|
|
189
|
+
mkdirSync(join(modDir, 'node_modules'));
|
|
190
|
+
writeFileSync(join(modDir, 'node_modules', 'x.js'), 'noise');
|
|
191
|
+
writeFileSync(join(modDir, '.DS_Store'), 'noise');
|
|
192
|
+
const a = computeModHash(modDir);
|
|
193
|
+
// Remove the noise and re-hash
|
|
194
|
+
rmSync(join(modDir, 'node_modules'), { recursive: true, force: true });
|
|
195
|
+
rmSync(join(modDir, '.DS_Store'));
|
|
196
|
+
const b = computeModHash(modDir);
|
|
197
|
+
expect(a).toBe(b);
|
|
198
|
+
});
|
|
199
|
+
});
|
|
200
|
+
|
|
201
|
+
describe('createAuditWriter', () => {
|
|
202
|
+
let logPath;
|
|
203
|
+
beforeEach(() => {
|
|
204
|
+
logPath = join(tmpdir(), `audit-test-${Date.now()}.log`);
|
|
205
|
+
// Override the audit path by calling on a temp file via writeFileSync.
|
|
206
|
+
// createAuditWriter uses a hard-coded path; we'll read it directly.
|
|
207
|
+
});
|
|
208
|
+
afterEach(() => {
|
|
209
|
+
// Best-effort cleanup; we don't know the exact path the writer used.
|
|
210
|
+
});
|
|
211
|
+
|
|
212
|
+
it('writes a JSON line per audit call', () => {
|
|
213
|
+
// Create a mod-like object and call createAuditWriter
|
|
214
|
+
// We can't easily override the path, so we just verify the contract.
|
|
215
|
+
const mod = { id: 'audit-test-mod', version: '1.0.0' };
|
|
216
|
+
const audit = createAuditWriter(mod);
|
|
217
|
+
expect(typeof audit).toBe('function');
|
|
218
|
+
// Calling it shouldn't throw.
|
|
219
|
+
audit('test:event', { ok: true });
|
|
220
|
+
});
|
|
221
|
+
});
|
|
222
|
+
|
|
223
|
+
describe('createModSecurityContext', () => {
|
|
224
|
+
it('returns parsed perms, audit writer, and fs helpers', () => {
|
|
225
|
+
const mod = {
|
|
226
|
+
id: 'ctx-test',
|
|
227
|
+
version: '1.0.0',
|
|
228
|
+
permissions: ['fs:read:/x', 'bogus'],
|
|
229
|
+
path: '/some/path',
|
|
230
|
+
};
|
|
231
|
+
const ctx = createModSecurityContext(mod);
|
|
232
|
+
expect(ctx.permissions.has('fs:read:/x')).toBe(true);
|
|
233
|
+
expect(ctx.invalidPermissions).toEqual(['bogus']);
|
|
234
|
+
expect(typeof ctx.audit).toBe('function');
|
|
235
|
+
expect(typeof ctx.fs.readFileSync).toBe('function');
|
|
236
|
+
expect(typeof ctx.authorizeSpawn).toBe('function');
|
|
237
|
+
});
|
|
238
|
+
|
|
239
|
+
it('fs.readFileSync throws on out-of-scope paths', () => {
|
|
240
|
+
const mod = {
|
|
241
|
+
id: 'sandbox-test',
|
|
242
|
+
version: '1.0.0',
|
|
243
|
+
permissions: ['fs:read:/allowed'],
|
|
244
|
+
path: '/x',
|
|
245
|
+
};
|
|
246
|
+
const ctx = createModSecurityContext(mod);
|
|
247
|
+
expect(() => ctx.fs.readFileSync('/forbidden')).toThrow(/not authorized/);
|
|
248
|
+
});
|
|
249
|
+
|
|
250
|
+
it('authorizeSpawn rejects non-allowed binaries', () => {
|
|
251
|
+
const mod = {
|
|
252
|
+
id: 'spawn-test',
|
|
253
|
+
version: '1.0.0',
|
|
254
|
+
permissions: [],
|
|
255
|
+
path: '/x',
|
|
256
|
+
};
|
|
257
|
+
const ctx = createModSecurityContext(mod);
|
|
258
|
+
expect(() => ctx.authorizeSpawn('curl')).toThrow(/not authorized/);
|
|
259
|
+
});
|
|
260
|
+
|
|
261
|
+
it('verifyIntegrity returns the integrity object', () => {
|
|
262
|
+
const mod = {
|
|
263
|
+
id: 'integrity-test',
|
|
264
|
+
version: '1.0.0',
|
|
265
|
+
permissions: [],
|
|
266
|
+
path: '/tmp',
|
|
267
|
+
};
|
|
268
|
+
const ctx = createModSecurityContext(mod);
|
|
269
|
+
// No _integrity field on this fake mod, so should be 'unsigned'
|
|
270
|
+
const r = ctx.verifyIntegrity();
|
|
271
|
+
expect(['true', 'unsigned', 'false']).toContain(String(r.ok));
|
|
272
|
+
});
|
|
273
|
+
});
|