@polderlabs/bizar 3.23.1 → 4.0.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 +72 -2
- 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 +249 -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 +424 -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 +499 -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 +1603 -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-git.test.mjs +138 -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/bin.mjs +43 -46
- package/cli/copy.mjs +3 -0
- package/cli/dev-link.mjs +17 -1
- package/cli/init.mjs +135 -1
- package/cli/install.mjs +10 -23
- package/cli/memory-constants.mjs +59 -0
- package/cli/memory.mjs +757 -0
- package/cli/service.mjs +5 -6
- package/config/skills/obsidian/SKILL.md +213 -65
- package/install.sh +48 -18
- 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 +1484 -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 +1127 -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/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 +548 -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 @@
|
|
|
1
|
+
{"0": "Community 0", "1": "Community 1", "2": "Community 2", "3": "Community 3", "4": "Community 4", "5": "Community 5", "6": "Community 6", "7": "Community 7", "8": "Community 8", "9": "Community 9", "10": "Community 10", "11": "Community 11", "12": "Community 12", "13": "Community 13", "14": "Community 14", "15": "Community 15", "16": "Community 16", "17": "Community 17", "18": "Community 18", "19": "Community 19", "20": "Community 20", "21": "Community 21", "22": "Community 22", "23": "Community 23", "24": "Community 24", "25": "Community 25", "26": "Community 26", "27": "Community 27", "28": "Community 28", "29": "Community 29", "30": "Community 30", "31": "Community 31", "32": "Community 32", "33": "Community 33", "34": "Community 34", "35": "Community 35", "36": "Community 36", "37": "Community 37", "38": "Community 38", "39": "Community 39", "40": "Community 40", "41": "Community 41", "42": "Community 42", "43": "Community 43", "44": "Community 44", "45": "Community 45", "46": "Community 46", "47": "Community 47", "48": "Community 48", "49": "Community 49", "50": "Community 50", "51": "Community 51", "52": "Community 52", "53": "Community 53", "54": "Community 54", "55": "Community 55", "56": "Community 56", "57": "Community 57", "58": "Community 58", "59": "Community 59", "60": "Community 60", "61": "Community 61", "62": "Community 62", "63": "Community 63", "64": "Community 64", "65": "Community 65", "66": "Community 66", "67": "Community 67", "68": "Community 68", "69": "Community 69", "70": "Community 70", "71": "Community 71", "72": "Community 72", "73": "Community 73"}
|
|
@@ -0,0 +1,404 @@
|
|
|
1
|
+
# Graph Report - . (2026-06-26)
|
|
2
|
+
|
|
3
|
+
## Corpus Check
|
|
4
|
+
- cluster-only mode — file stats not available
|
|
5
|
+
|
|
6
|
+
## Summary
|
|
7
|
+
- 1199 nodes · 2556 edges · 73 communities (68 shown, 5 thin omitted)
|
|
8
|
+
- Extraction: 99% EXTRACTED · 1% INFERRED · 0% AMBIGUOUS · INFERRED: 17 edges (avg confidence: 0.8)
|
|
9
|
+
- Token cost: 0 input · 0 output
|
|
10
|
+
|
|
11
|
+
## Graph Freshness
|
|
12
|
+
- Built from commit: `8292127c`
|
|
13
|
+
- Run `git rev-parse HEAD` and compare to check if the graph is stale.
|
|
14
|
+
- Run `graphify update .` after code changes (no API cost).
|
|
15
|
+
|
|
16
|
+
## Community Hubs (Navigation)
|
|
17
|
+
- [[_COMMUNITY_Community 0|Community 0]]
|
|
18
|
+
- [[_COMMUNITY_Community 1|Community 1]]
|
|
19
|
+
- [[_COMMUNITY_Community 2|Community 2]]
|
|
20
|
+
- [[_COMMUNITY_Community 3|Community 3]]
|
|
21
|
+
- [[_COMMUNITY_Community 4|Community 4]]
|
|
22
|
+
- [[_COMMUNITY_Community 5|Community 5]]
|
|
23
|
+
- [[_COMMUNITY_Community 6|Community 6]]
|
|
24
|
+
- [[_COMMUNITY_Community 7|Community 7]]
|
|
25
|
+
- [[_COMMUNITY_Community 8|Community 8]]
|
|
26
|
+
- [[_COMMUNITY_Community 9|Community 9]]
|
|
27
|
+
- [[_COMMUNITY_Community 10|Community 10]]
|
|
28
|
+
- [[_COMMUNITY_Community 11|Community 11]]
|
|
29
|
+
- [[_COMMUNITY_Community 12|Community 12]]
|
|
30
|
+
- [[_COMMUNITY_Community 13|Community 13]]
|
|
31
|
+
- [[_COMMUNITY_Community 14|Community 14]]
|
|
32
|
+
- [[_COMMUNITY_Community 15|Community 15]]
|
|
33
|
+
- [[_COMMUNITY_Community 16|Community 16]]
|
|
34
|
+
- [[_COMMUNITY_Community 17|Community 17]]
|
|
35
|
+
- [[_COMMUNITY_Community 18|Community 18]]
|
|
36
|
+
- [[_COMMUNITY_Community 19|Community 19]]
|
|
37
|
+
- [[_COMMUNITY_Community 20|Community 20]]
|
|
38
|
+
- [[_COMMUNITY_Community 21|Community 21]]
|
|
39
|
+
- [[_COMMUNITY_Community 22|Community 22]]
|
|
40
|
+
- [[_COMMUNITY_Community 23|Community 23]]
|
|
41
|
+
- [[_COMMUNITY_Community 24|Community 24]]
|
|
42
|
+
- [[_COMMUNITY_Community 25|Community 25]]
|
|
43
|
+
- [[_COMMUNITY_Community 26|Community 26]]
|
|
44
|
+
- [[_COMMUNITY_Community 27|Community 27]]
|
|
45
|
+
- [[_COMMUNITY_Community 28|Community 28]]
|
|
46
|
+
- [[_COMMUNITY_Community 29|Community 29]]
|
|
47
|
+
- [[_COMMUNITY_Community 30|Community 30]]
|
|
48
|
+
- [[_COMMUNITY_Community 31|Community 31]]
|
|
49
|
+
- [[_COMMUNITY_Community 32|Community 32]]
|
|
50
|
+
- [[_COMMUNITY_Community 33|Community 33]]
|
|
51
|
+
- [[_COMMUNITY_Community 34|Community 34]]
|
|
52
|
+
- [[_COMMUNITY_Community 35|Community 35]]
|
|
53
|
+
- [[_COMMUNITY_Community 36|Community 36]]
|
|
54
|
+
- [[_COMMUNITY_Community 37|Community 37]]
|
|
55
|
+
- [[_COMMUNITY_Community 38|Community 38]]
|
|
56
|
+
- [[_COMMUNITY_Community 39|Community 39]]
|
|
57
|
+
- [[_COMMUNITY_Community 40|Community 40]]
|
|
58
|
+
- [[_COMMUNITY_Community 41|Community 41]]
|
|
59
|
+
- [[_COMMUNITY_Community 42|Community 42]]
|
|
60
|
+
- [[_COMMUNITY_Community 43|Community 43]]
|
|
61
|
+
- [[_COMMUNITY_Community 44|Community 44]]
|
|
62
|
+
- [[_COMMUNITY_Community 45|Community 45]]
|
|
63
|
+
- [[_COMMUNITY_Community 46|Community 46]]
|
|
64
|
+
- [[_COMMUNITY_Community 47|Community 47]]
|
|
65
|
+
- [[_COMMUNITY_Community 48|Community 48]]
|
|
66
|
+
- [[_COMMUNITY_Community 49|Community 49]]
|
|
67
|
+
- [[_COMMUNITY_Community 50|Community 50]]
|
|
68
|
+
- [[_COMMUNITY_Community 51|Community 51]]
|
|
69
|
+
- [[_COMMUNITY_Community 52|Community 52]]
|
|
70
|
+
- [[_COMMUNITY_Community 53|Community 53]]
|
|
71
|
+
- [[_COMMUNITY_Community 54|Community 54]]
|
|
72
|
+
- [[_COMMUNITY_Community 55|Community 55]]
|
|
73
|
+
- [[_COMMUNITY_Community 56|Community 56]]
|
|
74
|
+
- [[_COMMUNITY_Community 57|Community 57]]
|
|
75
|
+
- [[_COMMUNITY_Community 58|Community 58]]
|
|
76
|
+
- [[_COMMUNITY_Community 59|Community 59]]
|
|
77
|
+
- [[_COMMUNITY_Community 60|Community 60]]
|
|
78
|
+
- [[_COMMUNITY_Community 61|Community 61]]
|
|
79
|
+
- [[_COMMUNITY_Community 62|Community 62]]
|
|
80
|
+
- [[_COMMUNITY_Community 63|Community 63]]
|
|
81
|
+
- [[_COMMUNITY_Community 64|Community 64]]
|
|
82
|
+
- [[_COMMUNITY_Community 65|Community 65]]
|
|
83
|
+
- [[_COMMUNITY_Community 67|Community 67]]
|
|
84
|
+
- [[_COMMUNITY_Community 68|Community 68]]
|
|
85
|
+
- [[_COMMUNITY_Community 70|Community 70]]
|
|
86
|
+
- [[_COMMUNITY_Community 71|Community 71]]
|
|
87
|
+
- [[_COMMUNITY_Community 72|Community 72]]
|
|
88
|
+
|
|
89
|
+
## God Nodes (most connected - your core abstractions)
|
|
90
|
+
1. `cn()` - 54 edges
|
|
91
|
+
2. `wrap()` - 49 edges
|
|
92
|
+
3. `useToast()` - 44 edges
|
|
93
|
+
4. `api` - 40 edges
|
|
94
|
+
5. `useModal()` - 33 edges
|
|
95
|
+
6. `Snapshot` - 29 edges
|
|
96
|
+
7. `createApiRouter()` - 27 edges
|
|
97
|
+
8. `Button` - 24 edges
|
|
98
|
+
9. `formatRelative()` - 22 edges
|
|
99
|
+
10. `Settings` - 21 edges
|
|
100
|
+
|
|
101
|
+
## Surprising Connections (you probably didn't know these)
|
|
102
|
+
- `main()` --calls--> `createServer()` [INFERRED]
|
|
103
|
+
tests/smoke-v2.mjs → src/server/server.mjs
|
|
104
|
+
- `main()` --calls--> `createV2Router()` [EXTRACTED]
|
|
105
|
+
tests/smoke-v2.mjs → src/server/routes-v2/index.mjs
|
|
106
|
+
- `startDashboard()` --calls--> `createServer()` [INFERRED]
|
|
107
|
+
src/cli.mjs → src/server/server.mjs
|
|
108
|
+
- `runTui()` --calls--> `createServer()` [INFERRED]
|
|
109
|
+
src/cli.mjs → src/server/server.mjs
|
|
110
|
+
- `tick()` --calls--> `broadcast()` [INFERRED]
|
|
111
|
+
src/server/bg-poller.mjs → src/server/server.mjs
|
|
112
|
+
|
|
113
|
+
## Import Cycles
|
|
114
|
+
- 2-file cycle: `src/server/dialog-poller.mjs -> src/server/server.mjs -> src/server/dialog-poller.mjs`
|
|
115
|
+
- 2-file cycle: `src/server/bg-poller.mjs -> src/server/server.mjs -> src/server/bg-poller.mjs`
|
|
116
|
+
|
|
117
|
+
## Communities (73 total, 5 thin omitted)
|
|
118
|
+
|
|
119
|
+
### Community 0 - "Community 0"
|
|
120
|
+
Cohesion: 0.06
|
|
121
|
+
Nodes (39): autoTitleFromContent(), launchBrowser(), autoTitleFromContent(), card(), DashboardSocket, __dirname, __filename, HOME (+31 more)
|
|
122
|
+
|
|
123
|
+
### Community 1 - "Community 1"
|
|
124
|
+
Cohesion: 0.14
|
|
125
|
+
Nodes (28): createActivityRouter(), createAgentsRouter(), createArtifactsRouter(), createAuthRouter(), createBackgroundRouter(), createChatRouter(), createConfigRouter(), createDiagnosticsRouter() (+20 more)
|
|
126
|
+
|
|
127
|
+
### Community 2 - "Community 2"
|
|
128
|
+
Cohesion: 0.10
|
|
129
|
+
Nodes (30): Card(), CardMeta(), CardProps, CardTitle(), EmptyState(), EmptyStateProps, Spinner(), SpinnerProps (+22 more)
|
|
130
|
+
|
|
131
|
+
### Community 3 - "Community 3"
|
|
132
|
+
Cohesion: 0.08
|
|
133
|
+
Nodes (25): BgStatusBadge(), STATUS_KIND, STATUS_LABELS, CollapsibleSection(), Props, MobileListItem(), Props, StatusBadge() (+17 more)
|
|
134
|
+
|
|
135
|
+
### Community 4 - "Community 4"
|
|
136
|
+
Cohesion: 0.06
|
|
137
|
+
Nodes (33): dependencies, blessed, chokidar, cors, croner, express, fuse.js, lucide-react (+25 more)
|
|
138
|
+
|
|
139
|
+
### Community 5 - "Community 5"
|
|
140
|
+
Cohesion: 0.09
|
|
141
|
+
Nodes (21): ArtifactMeta, ArtifactViewer(), fetchRawContent(), formatBytes(), getArtifactContentUrl(), openArtifactViewer(), Props, Task (+13 more)
|
|
142
|
+
|
|
143
|
+
### Community 6 - "Community 6"
|
|
144
|
+
Cohesion: 0.15
|
|
145
|
+
Nodes (27): useModal(), Notifications(), useToast(), Activity(), Agents(), BackgroundAgents(), Chat(), Config() (+19 more)
|
|
146
|
+
|
|
147
|
+
### Community 7 - "Community 7"
|
|
148
|
+
Cohesion: 0.08
|
|
149
|
+
Nodes (19): KillConfirmDialogProps, openKillConfirmDialog(), FOCUSABLE_SELECTOR, ModalApi, ModalContext, ModalProps, ModalProvider(), OpenModal (+11 more)
|
|
150
|
+
|
|
151
|
+
### Community 8 - "Community 8"
|
|
152
|
+
Cohesion: 0.09
|
|
153
|
+
Nodes (19): applyThemeTokens(), BudgetCheck, Canvas, CanvasElement, CanvasViewport, CustomTheme, DiagnosticItem, DialogComponent (+11 more)
|
|
154
|
+
|
|
155
|
+
### Community 9 - "Community 9"
|
|
156
|
+
Cohesion: 0.11
|
|
157
|
+
Nodes (17): requireAuth(), startBgRetryLoop(), stopBgRetryLoop(), broadcastDialog(), broadcast(), buildSnapshot(), buildSnapshotSafe(), createServer() (+9 more)
|
|
158
|
+
|
|
159
|
+
### Community 10 - "Community 10"
|
|
160
|
+
Cohesion: 0.11
|
|
161
|
+
Nodes (17): Button, ButtonProps, ButtonSize, ButtonVariant, CmdEntry, HelpDialogProps, ICONS, Props (+9 more)
|
|
162
|
+
|
|
163
|
+
### Community 11 - "Community 11"
|
|
164
|
+
Cohesion: 0.11
|
|
165
|
+
Nodes (16): CanvasContextMenu(), ContextMenuItem, ContextMenuState, Props, CanvasComment, CanvasConnection, truncate(), CanvasElementView() (+8 more)
|
|
166
|
+
|
|
167
|
+
### Community 12 - "Community 12"
|
|
168
|
+
Cohesion: 0.11
|
|
169
|
+
Nodes (17): MobileBottomSheet(), Props, Notification, MobileTopbar(), Props, TAB_LABELS, HistoryEntry, HistoryEvent (+9 more)
|
|
170
|
+
|
|
171
|
+
### Community 13 - "Community 13"
|
|
172
|
+
Cohesion: 0.17
|
|
173
|
+
Nodes (17): ALLOWED_BINARIES, auditLogPath(), authorizeFsPath(), authorizeSpawn(), computeModHash(), createAuditWriter(), createModSecurityContext(), DEFAULT_PERMISSIONS (+9 more)
|
|
174
|
+
|
|
175
|
+
### Community 14 - "Community 14"
|
|
176
|
+
Cohesion: 0.13
|
|
177
|
+
Nodes (17): ChatMessage, Mod, Snapshot, AgentDetailView(), MobileView, PlanDetailView(), TABS, TaskDetailView() (+9 more)
|
|
178
|
+
|
|
179
|
+
### Community 15 - "Community 15"
|
|
180
|
+
Cohesion: 0.10
|
|
181
|
+
Nodes (11): ConfigResponse, Diagnostics, AutoDetectBanner(), AutoDetectResult, McpDraft, NAV_ITEMS, NavId, OC_SECTIONS (+3 more)
|
|
182
|
+
|
|
183
|
+
### Community 16 - "Community 16"
|
|
184
|
+
Cohesion: 0.13
|
|
185
|
+
Nodes (18): Schedule, ACTIONS, DOWS, EditorState, formatNextShort(), formatRel(), HOURS, humanizeSchedule() (+10 more)
|
|
186
|
+
|
|
187
|
+
### Community 17 - "Community 17"
|
|
188
|
+
Cohesion: 0.13
|
|
189
|
+
Nodes (14): agentsStore, artifactsStore, plansStore, projectsStore, appendActivity(), atomicWriteJson(), genShortId(), HOME (+6 more)
|
|
190
|
+
|
|
191
|
+
### Community 18 - "Community 18"
|
|
192
|
+
Cohesion: 0.11
|
|
193
|
+
Nodes (16): HIDDEN_PATH, atomicWriteJson(), DASH_PACKAGE_JSON, DASHBOARD_VERSION, DEFAULT_SETTINGS, HOME, mergeSettings(), OPENCODE_DIR (+8 more)
|
|
194
|
+
|
|
195
|
+
### Community 19 - "Community 19"
|
|
196
|
+
Cohesion: 0.10
|
|
197
|
+
Nodes (20): compilerOptions, allowSyntheticDefaultImports, esModuleInterop, forceConsistentCasingInFileNames, isolatedModules, jsx, lib, module (+12 more)
|
|
198
|
+
|
|
199
|
+
### Community 20 - "Community 20"
|
|
200
|
+
Cohesion: 0.12
|
|
201
|
+
Nodes (14): ACTIONS, buildInitialState(), DOW_OPTIONS, EditorState, HOUR_OPTIONS, humanizeSchedule(), INTERVAL_UNITS, MINUTE_OPTIONS (+6 more)
|
|
202
|
+
|
|
203
|
+
### Community 21 - "Community 21"
|
|
204
|
+
Cohesion: 0.12
|
|
205
|
+
Nodes (8): backgroundStore, BG_DIRS, HOME, BG_DIRS, HOME, pickBgDir(), taskDelegator, writeBgStateFile()
|
|
206
|
+
|
|
207
|
+
### Community 22 - "Community 22"
|
|
208
|
+
Cohesion: 0.11
|
|
209
|
+
Nodes (19): description_i18n, ar, de, en, es, fr, id, it (+11 more)
|
|
210
|
+
|
|
211
|
+
### Community 23 - "Community 23"
|
|
212
|
+
Cohesion: 0.11
|
|
213
|
+
Nodes (19): title_i18n, ar, de, en, es, fr, id, it (+11 more)
|
|
214
|
+
|
|
215
|
+
### Community 24 - "Community 24"
|
|
216
|
+
Cohesion: 0.13
|
|
217
|
+
Nodes (12): AuditDialogProps, AuditResult, Props, RESULT_TYPE_BY_SCOPE, SCOPES, SearchModal(), api, ApiError (+4 more)
|
|
218
|
+
|
|
219
|
+
### Community 25 - "Community 25"
|
|
220
|
+
Cohesion: 0.14
|
|
221
|
+
Nodes (13): MobileBottomNav(), MobileTab, Props, MobileSearchModal(), Props, Scope, SCOPE_ICONS, SCOPES (+5 more)
|
|
222
|
+
|
|
223
|
+
### Community 26 - "Community 26"
|
|
224
|
+
Cohesion: 0.13
|
|
225
|
+
Nodes (10): _cache, CacheEntry, FileBrowser(), FileBrowserProps, pathSegments(), sortEntries(), DirectoryEntry, DirectoryListing (+2 more)
|
|
226
|
+
|
|
227
|
+
### Community 27 - "Community 27"
|
|
228
|
+
Cohesion: 0.19
|
|
229
|
+
Nodes (15): Overview, ProjectRecord, ScanResult, formatRelative(), ActivityFeedItem(), activityIcon(), activityNavTarget(), activitySeverity() (+7 more)
|
|
230
|
+
|
|
231
|
+
### Community 28 - "Community 28"
|
|
232
|
+
Cohesion: 0.14
|
|
233
|
+
Nodes (12): debounce(), hashText(), priorityColors, hasTaskArtifacts(), hasTaskChat(), MobileTasks(), NEXT_STATUS, Props (+4 more)
|
|
234
|
+
|
|
235
|
+
### Community 29 - "Community 29"
|
|
236
|
+
Cohesion: 0.24
|
|
237
|
+
Nodes (14): checkWebSocketAuth(), ensureSecretFileMode(), EXTRA_ALLOWED_ORIGINS, getDirectPeerAddress(), getForwardedPeerAddress(), getOrCreateSecret(), isAllowedDashboardOrigin(), isAllowedDashboardOriginForRequest() (+6 more)
|
|
238
|
+
|
|
239
|
+
### Community 30 - "Community 30"
|
|
240
|
+
Cohesion: 0.22
|
|
241
|
+
Nodes (14): deriveAbsoluteBgLogPath(), isBrokenBgLogPath(), atomicWriteJson(), BG_DIRS, _BG_RETRY_INTERNAL, buildReplayPromptText(), findBgFile(), HOME (+6 more)
|
|
242
|
+
|
|
243
|
+
### Community 31 - "Community 31"
|
|
244
|
+
Cohesion: 0.23
|
|
245
|
+
Nodes (12): buildAuthHeader(), createOpencodeSession(), extractContentFromOpencodeMessage(), finalizeText(), HOME, isLoopbackHostname(), isSafeServeBaseUrl(), listOpencodeMessages() (+4 more)
|
|
246
|
+
|
|
247
|
+
### Community 32 - "Community 32"
|
|
248
|
+
Cohesion: 0.19
|
|
249
|
+
Nodes (11): OPENCODE_JSON, safeReadJSON(), atomicWriteJson(), HOME, loadConfig(), mcpsStore, OPENCODE_AGENTS_DIR, OPENCODE_JSON (+3 more)
|
|
250
|
+
|
|
251
|
+
### Community 33 - "Community 33"
|
|
252
|
+
Cohesion: 0.17
|
|
253
|
+
Nodes (13): AGENTS_DIR, buildHierarchyTree(), defaultStatus(), fmVal(), HIERARCHY, HOME, isStuck(), parseFrontmatter() (+5 more)
|
|
254
|
+
|
|
255
|
+
### Community 34 - "Community 34"
|
|
256
|
+
Cohesion: 0.20
|
|
257
|
+
Nodes (15): atomicWriteJson(), ensureProjectsDir(), HOME, loadRegistry(), OPENCODE_DIR, PROJECT_ROOT_MARKERS, projectDir(), projectIdFromPath() (+7 more)
|
|
258
|
+
|
|
259
|
+
### Community 35 - "Community 35"
|
|
260
|
+
Cohesion: 0.22
|
|
261
|
+
Nodes (5): WsStatus, buildWsUrl(), Handler, StatusHandler, Ws
|
|
262
|
+
|
|
263
|
+
### Community 36 - "Community 36"
|
|
264
|
+
Cohesion: 0.21
|
|
265
|
+
Nodes (7): v2BasicAuth(), createV2EventsRouter(), createV2HealthRouter(), createV2Router(), __dirname, __filename, createV2SessionsRouter()
|
|
266
|
+
|
|
267
|
+
### Community 37 - "Community 37"
|
|
268
|
+
Cohesion: 0.13
|
|
269
|
+
Nodes (14): author, name, url, compat, agentSkills, description, homepage, license (+6 more)
|
|
270
|
+
|
|
271
|
+
### Community 38 - "Community 38"
|
|
272
|
+
Cohesion: 0.16
|
|
273
|
+
Nodes (10): AuditDialog(), CommandDialog(), HelpDialog(), KNOWN_TEMPLATES, PlanCreateDialog(), PlanCreateDialogProps, PlanListDialog(), VisualPlanDialog() (+2 more)
|
|
274
|
+
|
|
275
|
+
### Community 39 - "Community 39"
|
|
276
|
+
Cohesion: 0.16
|
|
277
|
+
Nodes (10): MobileModal(), Props, Agent, Plan, CATEGORIES, CATEGORY_COLORS, MobileAgents(), Props (+2 more)
|
|
278
|
+
|
|
279
|
+
### Community 40 - "Community 40"
|
|
280
|
+
Cohesion: 0.20
|
|
281
|
+
Nodes (9): defaultAllowedRoots(), FALLBACK_LOG_DIR, getActualBgLogPath(), getBgLogDir(), isDotRoot(), normalizeRoots(), FALLBACK, HOME (+1 more)
|
|
282
|
+
|
|
283
|
+
### Community 41 - "Community 41"
|
|
284
|
+
Cohesion: 0.15
|
|
285
|
+
Nodes (13): SettingsResponse, TailscaleStatus, ActivityLogCard(), FONT_FAMILIES, formatCountdown(), LAYOUTS, PairDeviceCard(), PairSession (+5 more)
|
|
286
|
+
|
|
287
|
+
### Community 42 - "Community 42"
|
|
288
|
+
Cohesion: 0.18
|
|
289
|
+
Nodes (11): BIZAR_HOME, checkPidAlive(), DASH_PACKAGE_JSON, diagnosticsStore, HOME, parseLogTs(), readRecentErrors(), SERVICE_LOG (+3 more)
|
|
290
|
+
|
|
291
|
+
### Community 43 - "Community 43"
|
|
292
|
+
Cohesion: 0.16
|
|
293
|
+
Nodes (7): modsLoader, HOME, searchStore, SETTINGS_DESCRIPTIONS, SETTINGS_FILE, PACKAGES, updateStore
|
|
294
|
+
|
|
295
|
+
### Community 44 - "Community 44"
|
|
296
|
+
Cohesion: 0.23
|
|
297
|
+
Nodes (13): extractArtifactFromMessage(), killTmuxFor(), _pollerInternals, processedArtifacts, recordPollerFailure(), scanForArtifact(), startBgPoller(), stopBgPoller() (+5 more)
|
|
298
|
+
|
|
299
|
+
### Community 45 - "Community 45"
|
|
300
|
+
Cohesion: 0.18
|
|
301
|
+
Nodes (10): atomicWriteJson(), atomicWriteText(), BIZAR_HOME, getReadSet(), HOME, loadReadSet(), LOG_FILE, READ_FILE (+2 more)
|
|
302
|
+
|
|
303
|
+
### Community 46 - "Community 46"
|
|
304
|
+
Cohesion: 0.21
|
|
305
|
+
Nodes (12): checkBudget(), HOME, isPrivateHostname(), LOG_DIR, LOG_FILE, logLine(), runAction(), runAgentAction() (+4 more)
|
|
306
|
+
|
|
307
|
+
### Community 47 - "Community 47"
|
|
308
|
+
Cohesion: 0.14
|
|
309
|
+
Nodes (14): od, capabilities, inputs, kind, mode, pipeline, platform, preview (+6 more)
|
|
310
|
+
|
|
311
|
+
### Community 48 - "Community 48"
|
|
312
|
+
Cohesion: 0.18
|
|
313
|
+
Nodes (7): _pollerInternals, startDialogPoller(), tick(), DIALOG_DIR, dialogStore, HOME, KNOWN_COMPONENTS
|
|
314
|
+
|
|
315
|
+
### Community 50 - "Community 50"
|
|
316
|
+
Cohesion: 0.26
|
|
317
|
+
Nodes (8): readActiveProjectId(), atomicWriteJson(), computeNextRun(), loadSchedules(), parseInterval(), safeReadJSON(), saveSchedules(), schedulesStore
|
|
318
|
+
|
|
319
|
+
### Community 51 - "Community 51"
|
|
320
|
+
Cohesion: 0.20
|
|
321
|
+
Nodes (8): atomicWriteJson(), CATEGORIES, execFileP, HOME, safeExec(), saveState(), skillsStore, STATE_FILE
|
|
322
|
+
|
|
323
|
+
### Community 52 - "Community 52"
|
|
324
|
+
Cohesion: 0.22
|
|
325
|
+
Nodes (6): emptyCanvas(), genId(), GLOBAL_PLANS_DIR, HOME, sanitizeCanvas(), sanitizeElement()
|
|
326
|
+
|
|
327
|
+
### Community 53 - "Community 53"
|
|
328
|
+
Cohesion: 0.25
|
|
329
|
+
Nodes (9): DEFAULT_DIR, DEFAULT_FILE, HOME, LEGACY_FILE, loadOrCreateAuth(), writeAuthFile(), main(), test() (+1 more)
|
|
330
|
+
|
|
331
|
+
### Community 54 - "Community 54"
|
|
332
|
+
Cohesion: 0.33
|
|
333
|
+
Nodes (8): agents, getStatus(), killAgent(), list(), onExit(), _resetForTests(), spawnAgent(), HAS_OPENCODE
|
|
334
|
+
|
|
335
|
+
### Community 55 - "Community 55"
|
|
336
|
+
Cohesion: 0.22
|
|
337
|
+
Nodes (6): ICONS, Toast, ToastApi, ToastContext, ToastKind, ToastProvider()
|
|
338
|
+
|
|
339
|
+
### Community 56 - "Community 56"
|
|
340
|
+
Cohesion: 0.25
|
|
341
|
+
Nodes (8): applyTheme(), ThemeName, formatCountdown(), MobileSettings(), PairSession, PRESET_ACCENTS, Props, THEMES
|
|
342
|
+
|
|
343
|
+
### Community 57 - "Community 57"
|
|
344
|
+
Cohesion: 0.28
|
|
345
|
+
Nodes (5): ARTIFACTS_DIR, HOME, isWithinArtifactsDir(), resolveBodyPath(), sanitizeMeta()
|
|
346
|
+
|
|
347
|
+
### Community 58 - "Community 58"
|
|
348
|
+
Cohesion: 0.28
|
|
349
|
+
Nodes (6): execFileP, HOME, SETTINGS_FILE, tailscaleStatus(), tailscaleStore, tailscaleVersion()
|
|
350
|
+
|
|
351
|
+
### Community 59 - "Community 59"
|
|
352
|
+
Cohesion: 0.25
|
|
353
|
+
Nodes (6): AgentCard(), CATEGORIES, categoryColor(), MODELS, Props, TOOL_OPTIONS
|
|
354
|
+
|
|
355
|
+
### Community 60 - "Community 60"
|
|
356
|
+
Cohesion: 0.36
|
|
357
|
+
Nodes (4): buildAllowedRootsFromSettings(), resolveSafePath(), buildAllowedRoots(), resolveTargetUnderParent()
|
|
358
|
+
|
|
359
|
+
### Community 61 - "Community 61"
|
|
360
|
+
Cohesion: 0.25
|
|
361
|
+
Nodes (6): ActivityItem, EVENT_KINDS, EventKind, KIND_LABELS, MobileActivity(), Props
|
|
362
|
+
|
|
363
|
+
### Community 62 - "Community 62"
|
|
364
|
+
Cohesion: 0.29
|
|
365
|
+
Nodes (5): activityLog, atomicWriteText(), HOME, LOG_FILE, rotateIfNeeded()
|
|
366
|
+
|
|
367
|
+
### Community 63 - "Community 63"
|
|
368
|
+
Cohesion: 0.38
|
|
369
|
+
Nodes (5): gc(), mint(), pairTokenMiddleware(), tokens, verify()
|
|
370
|
+
|
|
371
|
+
### Community 65 - "Community 65"
|
|
372
|
+
Cohesion: 0.50
|
|
373
|
+
Nodes (4): COLOR, JsonHighlight(), Token, tokenize()
|
|
374
|
+
|
|
375
|
+
### Community 67 - "Community 67"
|
|
376
|
+
Cohesion: 0.40
|
|
377
|
+
Nodes (5): assets, designSystem, skills, primary, context
|
|
378
|
+
|
|
379
|
+
### Community 68 - "Community 68"
|
|
380
|
+
Cohesion: 0.40
|
|
381
|
+
Nodes (5): useCase, en, zh-CN, exampleOutputs, query
|
|
382
|
+
|
|
383
|
+
## Knowledge Gaps
|
|
384
|
+
- **408 isolated node(s):** `$schema`, `specVersion`, `name`, `title`, `zh-CN` (+403 more)
|
|
385
|
+
These have ≤1 connection - possible missing edges or undocumented components.
|
|
386
|
+
- **5 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes.
|
|
387
|
+
|
|
388
|
+
## Suggested Questions
|
|
389
|
+
_Questions this graph is uniquely positioned to answer:_
|
|
390
|
+
|
|
391
|
+
- **Why does `pad()` connect `Community 0` to `Community 16`, `Community 20`?**
|
|
392
|
+
_High betweenness centrality (0.284) - this node is a cross-community bridge._
|
|
393
|
+
- **Why does `autoTitleFromContent()` connect `Community 0` to `Community 3`, `Community 28`?**
|
|
394
|
+
_High betweenness centrality (0.185) - this node is a cross-community bridge._
|
|
395
|
+
- **Why does `autoTitleFromContent()` connect `Community 0` to `Community 21`?**
|
|
396
|
+
_High betweenness centrality (0.173) - this node is a cross-community bridge._
|
|
397
|
+
- **What connects `$schema`, `specVersion`, `name` to the rest of the system?**
|
|
398
|
+
_408 weakly-connected nodes found - possible documentation gaps or missing edges._
|
|
399
|
+
- **Should `Community 0` be split into smaller, more focused modules?**
|
|
400
|
+
_Cohesion score 0.06079664570230608 - nodes in this community are weakly interconnected._
|
|
401
|
+
- **Should `Community 1` be split into smaller, more focused modules?**
|
|
402
|
+
_Cohesion score 0.14102564102564102 - nodes in this community are weakly interconnected._
|
|
403
|
+
- **Should `Community 2` be split into smaller, more focused modules?**
|
|
404
|
+
_Cohesion score 0.09716599190283401 - nodes in this community are weakly interconnected._
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"nodes": [], "edges": [], "skipped": "data json (not a config/manifest)"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"nodes": [{"id": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "label": "package.json", "file_type": "code", "source_file": "package.json", "source_location": "L1"}, {"id": "bizar_dash_package_name", "label": "name", "file_type": "code", "source_file": "package.json", "source_location": "L2"}, {"id": "bizar_dash_package_version", "label": "version", "file_type": "code", "source_file": "package.json", "source_location": "L3"}, {"id": "bizar_dash_package_description", "label": "description", "file_type": "code", "source_file": "package.json", "source_location": "L4"}, {"id": "bizar_dash_package_type", "label": "type", "file_type": "code", "source_file": "package.json", "source_location": "L5"}, {"id": "bizar_dash_package_main", "label": "main", "file_type": "code", "source_file": "package.json", "source_location": "L6"}, {"id": "bizar_dash_package_exports", "label": "exports", "file_type": "code", "source_file": "package.json", "source_location": "L7"}, {"id": "bizar_dash_package_exports_dash_cli", "label": "./dash-cli", "file_type": "code", "source_file": "package.json", "source_location": "L9"}, {"id": "bizar_dash_package_files", "label": "files", "file_type": "code", "source_file": "package.json", "source_location": "L11"}, {"id": "bizar_dash_package_scripts", "label": "scripts", "file_type": "code", "source_file": "package.json", "source_location": "L18"}, {"id": "bizar_dash_package_scripts_dev", "label": "dev", "file_type": "code", "source_file": "package.json", "source_location": "L19"}, {"id": "bizar_dash_package_scripts_build", "label": "build", "file_type": "code", "source_file": "package.json", "source_location": "L20"}, {"id": "bizar_dash_package_scripts_typecheck", "label": "typecheck", "file_type": "code", "source_file": "package.json", "source_location": "L21"}, {"id": "bizar_dash_package_dependencies", "label": "dependencies", "file_type": "code", "source_file": "package.json", "source_location": "L23"}, {"id": "bizar_dash_package_dependencies_blessed", "label": "blessed", "file_type": "code", "source_file": "package.json", "source_location": "L24"}, {"id": "bizar_dash_package_dependencies_chokidar", "label": "chokidar", "file_type": "code", "source_file": "package.json", "source_location": "L25"}, {"id": "bizar_dash_package_dependencies_cors", "label": "cors", "file_type": "code", "source_file": "package.json", "source_location": "L26"}, {"id": "bizar_dash_package_dependencies_croner", "label": "croner", "file_type": "code", "source_file": "package.json", "source_location": "L27"}, {"id": "bizar_dash_package_dependencies_express", "label": "express", "file_type": "code", "source_file": "package.json", "source_location": "L28"}, {"id": "bizar_dash_package_dependencies_fuse_js", "label": "fuse.js", "file_type": "code", "source_file": "package.json", "source_location": "L29"}, {"id": "bizar_dash_package_dependencies_lucide_react", "label": "lucide-react", "file_type": "code", "source_file": "package.json", "source_location": "L30"}, {"id": "bizar_dash_package_dependencies_qrcode_terminal", "label": "qrcode-terminal", "file_type": "code", "source_file": "package.json", "source_location": "L31"}, {"id": "bizar_dash_package_dependencies_qrcode_react", "label": "qrcode.react", "file_type": "code", "source_file": "package.json", "source_location": "L32"}, {"id": "bizar_dash_package_dependencies_react", "label": "react", "file_type": "code", "source_file": "package.json", "source_location": "L33"}, {"id": "bizar_dash_package_dependencies_react_dom", "label": "react-dom", "file_type": "code", "source_file": "package.json", "source_location": "L34"}, {"id": "bizar_dash_package_dependencies_react_markdown", "label": "react-markdown", "file_type": "code", "source_file": "package.json", "source_location": "L35"}, {"id": "bizar_dash_package_dependencies_remark_gfm", "label": "remark-gfm", "file_type": "code", "source_file": "package.json", "source_location": "L36"}, {"id": "bizar_dash_package_dependencies_ws", "label": "ws", "file_type": "code", "source_file": "package.json", "source_location": "L37"}, {"id": "bizar_dash_package_devdependencies", "label": "devDependencies", "file_type": "code", "source_file": "package.json", "source_location": "L39"}, {"id": "bizar_dash_package_devdependencies_types_react", "label": "@types/react", "file_type": "code", "source_file": "package.json", "source_location": "L40"}, {"id": "bizar_dash_package_devdependencies_types_react_dom", "label": "@types/react-dom", "file_type": "code", "source_file": "package.json", "source_location": "L41"}, {"id": "bizar_dash_package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "file_type": "code", "source_file": "package.json", "source_location": "L42"}, {"id": "bizar_dash_package_devdependencies_typescript", "label": "typescript", "file_type": "code", "source_file": "package.json", "source_location": "L43"}, {"id": "bizar_dash_package_devdependencies_vite", "label": "vite", "file_type": "code", "source_file": "package.json", "source_location": "L44"}], "edges": [{"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_name", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L2", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_version", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L3", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_description", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L4", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_type", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L5", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_main", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L6", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_exports", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L7", "weight": 1.0}, {"source": "bizar_dash_package_exports", "target": "bizar_dash_package_exports_dash_cli", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L9", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_files", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L11", "weight": 1.0}, {"source": "bizar_dash_package_files", "target": "ref_src", "relation": "extends", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_files", "target": "ref_dist", "relation": "extends", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_files", "target": "ref_vite_config_ts", "relation": "extends", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_files", "target": "ref_tsconfig_json", "relation": "extends", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_files", "target": "ref_templates", "relation": "extends", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_scripts", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L18", "weight": 1.0}, {"source": "bizar_dash_package_scripts", "target": "bizar_dash_package_scripts_dev", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L19", "weight": 1.0}, {"source": "bizar_dash_package_scripts", "target": "bizar_dash_package_scripts_build", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L20", "weight": 1.0}, {"source": "bizar_dash_package_scripts", "target": "bizar_dash_package_scripts_typecheck", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L21", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_dependencies", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L23", "weight": 1.0}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_blessed", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L24", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_blessed", "target": "blessed", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_chokidar", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L25", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_chokidar", "target": "chokidar", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_cors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L26", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_cors", "target": "cors", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_croner", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L27", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_croner", "target": "croner", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_express", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L28", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_express", "target": "express", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_fuse_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L29", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_fuse_js", "target": "fuse_js", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_lucide_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L30", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_lucide_react", "target": "lucide_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_qrcode_terminal", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L31", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_qrcode_terminal", "target": "qrcode_terminal", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_qrcode_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L32", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_qrcode_react", "target": "qrcode_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L33", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_react", "target": "react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_react_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L34", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_react_dom", "target": "react_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_react_markdown", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L35", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_react_markdown", "target": "react_markdown", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_remark_gfm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L36", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_remark_gfm", "target": "remark_gfm", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_dependencies", "target": "bizar_dash_package_dependencies_ws", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L37", "weight": 1.0}, {"source": "bizar_dash_package_dependencies_ws", "target": "ws", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_package_json", "target": "bizar_dash_package_devdependencies", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L39", "weight": 1.0}, {"source": "bizar_dash_package_devdependencies", "target": "bizar_dash_package_devdependencies_types_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L40", "weight": 1.0}, {"source": "bizar_dash_package_devdependencies_types_react", "target": "types_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_devdependencies", "target": "bizar_dash_package_devdependencies_types_react_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L41", "weight": 1.0}, {"source": "bizar_dash_package_devdependencies_types_react_dom", "target": "types_react_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_devdependencies", "target": "bizar_dash_package_devdependencies_vitejs_plugin_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L42", "weight": 1.0}, {"source": "bizar_dash_package_devdependencies_vitejs_plugin_react", "target": "vitejs_plugin_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_devdependencies", "target": "bizar_dash_package_devdependencies_typescript", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L43", "weight": 1.0}, {"source": "bizar_dash_package_devdependencies_typescript", "target": "typescript", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "bizar_dash_package_devdependencies", "target": "bizar_dash_package_devdependencies_vite", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L44", "weight": 1.0}, {"source": "bizar_dash_package_devdependencies_vite", "target": "vite", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L44", "weight": 1.0, "context": "import"}]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"nodes": [], "edges": [], "skipped": "data json (not a config/manifest)"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"nodes": [{"id": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "label": "open-design.json", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L1"}, {"id": "web_prototype_e1429c1737_open_design_schema", "label": "$schema", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L2"}, {"id": "web_prototype_e1429c1737_open_design_specversion", "label": "specVersion", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L3"}, {"id": "web_prototype_e1429c1737_open_design_name", "label": "name", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L4"}, {"id": "web_prototype_e1429c1737_open_design_title", "label": "title", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L5"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n", "label": "title_i18n", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L6"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_zh_cn", "label": "zh-CN", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L7"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_zh_tw", "label": "zh-TW", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L8"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_ja", "label": "ja", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L9"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_ko", "label": "ko", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L10"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_de", "label": "de", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L11"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_fr", "label": "fr", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L12"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_ru", "label": "ru", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L13"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_es", "label": "es", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L14"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_pt_br", "label": "pt-BR", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L15"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_it", "label": "it", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L16"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_vi", "label": "vi", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L17"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_pl", "label": "pl", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L18"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_id", "label": "id", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L19"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_nl", "label": "nl", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L20"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_ar", "label": "ar", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L21"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_tr", "label": "tr", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L22"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_uk", "label": "uk", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L23"}, {"id": "web_prototype_e1429c1737_open_design_title_i18n_en", "label": "en", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L24"}, {"id": "web_prototype_e1429c1737_open_design_version", "label": "version", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L26"}, {"id": "web_prototype_e1429c1737_open_design_description", "label": "description", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L27"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n", "label": "description_i18n", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L28"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_zh_cn", "label": "zh-CN", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L29"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_zh_tw", "label": "zh-TW", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L30"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_ja", "label": "ja", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L31"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_ko", "label": "ko", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L32"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_de", "label": "de", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L33"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_fr", "label": "fr", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L34"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_ru", "label": "ru", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L35"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_es", "label": "es", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L36"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_pt_br", "label": "pt-BR", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L37"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_it", "label": "it", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L38"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_vi", "label": "vi", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L39"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_pl", "label": "pl", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L40"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_id", "label": "id", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L41"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_nl", "label": "nl", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L42"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_ar", "label": "ar", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L43"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_tr", "label": "tr", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L44"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_uk", "label": "uk", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L45"}, {"id": "web_prototype_e1429c1737_open_design_description_i18n_en", "label": "en", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L46"}, {"id": "web_prototype_e1429c1737_open_design_license", "label": "license", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L48"}, {"id": "web_prototype_e1429c1737_open_design_author", "label": "author", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L49"}, {"id": "web_prototype_e1429c1737_open_design_author_name", "label": "name", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L50"}, {"id": "web_prototype_e1429c1737_open_design_author_url", "label": "url", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L51"}, {"id": "web_prototype_e1429c1737_open_design_homepage", "label": "homepage", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L53"}, {"id": "web_prototype_e1429c1737_open_design_tags", "label": "tags", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54"}, {"id": "web_prototype_e1429c1737_open_design_compat", "label": "compat", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L67"}, {"id": "web_prototype_e1429c1737_open_design_compat_agentskills", "label": "agentSkills", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L68"}, {"id": "web_prototype_e1429c1737_open_design_od", "label": "od", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L74"}, {"id": "web_prototype_e1429c1737_open_design_od_kind", "label": "kind", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L75"}, {"id": "web_prototype_e1429c1737_open_design_od_taskkind", "label": "taskKind", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L76"}, {"id": "web_prototype_e1429c1737_open_design_od_mode", "label": "mode", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L77"}, {"id": "web_prototype_e1429c1737_open_design_od_platform", "label": "platform", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L78"}, {"id": "web_prototype_e1429c1737_open_design_od_scenario", "label": "scenario", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L79"}, {"id": "web_prototype_e1429c1737_open_design_od_surface", "label": "surface", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L80"}, {"id": "web_prototype_e1429c1737_open_design_od_preview", "label": "preview", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L81"}, {"id": "web_prototype_e1429c1737_open_design_preview_type", "label": "type", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L82"}, {"id": "web_prototype_e1429c1737_open_design_preview_entry", "label": "entry", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L83"}, {"id": "web_prototype_e1429c1737_open_design_od_usecase", "label": "useCase", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L85"}, {"id": "web_prototype_e1429c1737_open_design_usecase_query", "label": "query", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L86"}, {"id": "web_prototype_e1429c1737_open_design_query_en", "label": "en", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L87"}, {"id": "web_prototype_e1429c1737_open_design_query_zh_cn", "label": "zh-CN", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L88"}, {"id": "web_prototype_e1429c1737_open_design_usecase_exampleoutputs", "label": "exampleOutputs", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L90"}, {"id": "web_prototype_e1429c1737_open_design_od_inputs", "label": "inputs", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L97"}, {"id": "web_prototype_e1429c1737_open_design_od_context", "label": "context", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L140"}, {"id": "web_prototype_e1429c1737_open_design_context_skills", "label": "skills", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L141"}, {"id": "web_prototype_e1429c1737_open_design_context_designsystem", "label": "designSystem", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L146"}, {"id": "web_prototype_e1429c1737_open_design_designsystem_primary", "label": "primary", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L147"}, {"id": "web_prototype_e1429c1737_open_design_context_assets", "label": "assets", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L149"}, {"id": "web_prototype_e1429c1737_open_design_od_pipeline", "label": "pipeline", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L156"}, {"id": "web_prototype_e1429c1737_open_design_pipeline_stages", "label": "stages", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L157"}, {"id": "web_prototype_e1429c1737_open_design_od_capabilities", "label": "capabilities", "file_type": "code", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L167"}], "edges": [{"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_schema", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L2", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_specversion", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L3", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_name", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L4", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_title", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L5", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_title_i18n", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L6", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_zh_cn", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L7", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_zh_tw", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L8", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_ja", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L9", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_ko", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L10", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_de", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L11", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_fr", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L12", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_ru", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L13", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_es", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L14", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_pt_br", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L15", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_it", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L16", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_vi", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L17", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_pl", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L18", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L19", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_nl", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L20", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_ar", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L21", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_tr", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L22", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_uk", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L23", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_title_i18n", "target": "web_prototype_e1429c1737_open_design_title_i18n_en", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L24", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_version", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L26", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_description", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L27", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_description_i18n", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L28", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_zh_cn", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L29", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_zh_tw", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L30", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_ja", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L31", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_ko", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L32", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_de", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L33", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_fr", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L34", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_ru", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L35", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_es", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L36", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_pt_br", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L37", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_it", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L38", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_vi", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L39", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_pl", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L40", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L41", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_nl", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L42", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_ar", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L43", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_tr", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L44", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_uk", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L45", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_description_i18n", "target": "web_prototype_e1429c1737_open_design_description_i18n_en", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L46", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_license", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L48", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_author", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L49", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_author", "target": "web_prototype_e1429c1737_open_design_author_name", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L50", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_author", "target": "web_prototype_e1429c1737_open_design_author_url", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L51", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_homepage", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L53", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_tags", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_example", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_first_party", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_prototype", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_design", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_web", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_desktop", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_mockup", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_landing", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_single_page", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_marketing_page", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_tags", "target": "ref_homepage", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_compat", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L67", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_compat", "target": "web_prototype_e1429c1737_open_design_compat_agentskills", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L68", "weight": 1.0}, {"source": "home_drb0rk_projects_bizarharness_bizar_dash_od_skills_web_prototype_e1429c1737_open_design_json", "target": "web_prototype_e1429c1737_open_design_od", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L74", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_kind", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L75", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_taskkind", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L76", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_mode", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L77", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_platform", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L78", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_scenario", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L79", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_surface", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L80", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_preview", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L81", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od_preview", "target": "web_prototype_e1429c1737_open_design_preview_type", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L82", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od_preview", "target": "web_prototype_e1429c1737_open_design_preview_entry", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L83", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_usecase", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L85", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od_usecase", "target": "web_prototype_e1429c1737_open_design_usecase_query", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L86", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_usecase_query", "target": "web_prototype_e1429c1737_open_design_query_en", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L87", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_usecase_query", "target": "web_prototype_e1429c1737_open_design_query_zh_cn", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L88", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od_usecase", "target": "web_prototype_e1429c1737_open_design_usecase_exampleoutputs", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L90", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_inputs", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L97", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_context", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L140", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od_context", "target": "web_prototype_e1429c1737_open_design_context_skills", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L141", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od_context", "target": "web_prototype_e1429c1737_open_design_context_designsystem", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L146", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_context_designsystem", "target": "web_prototype_e1429c1737_open_design_designsystem_primary", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L147", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od_context", "target": "web_prototype_e1429c1737_open_design_context_assets", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L149", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_context_assets", "target": "ref_example_html", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L149", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_context_assets", "target": "ref_assets_template_html", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L149", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_context_assets", "target": "ref_references_checklist_md", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L149", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_context_assets", "target": "ref_references_layouts_md", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L149", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_pipeline", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L156", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od_pipeline", "target": "web_prototype_e1429c1737_open_design_pipeline_stages", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L157", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od", "target": "web_prototype_e1429c1737_open_design_od_capabilities", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L167", "weight": 1.0}, {"source": "web_prototype_e1429c1737_open_design_od_capabilities", "target": "ref_prompt_inject", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L167", "weight": 1.0, "context": "import"}, {"source": "web_prototype_e1429c1737_open_design_od_capabilities", "target": "ref_fs_write", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".od-skills/web-prototype-e1429c1737/open-design.json", "source_location": "L167", "weight": 1.0, "context": "import"}]}
|