@polderlabs/bizar 5.6.0-beta.9 → 6.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/bizar-dash/.omx/logs/omx-2026-07-07.jsonl +1 -0
  2. package/bizar-dash/.omx/state/session.json +10 -0
  3. package/bizar-dash/DESIGN.md +1119 -98
  4. package/bizar-dash/bizar-design/EXPLANATION.md +307 -0
  5. package/bizar-dash/bizar-design/INSTRUCTIONS.md +149 -0
  6. package/bizar-dash/bizar-design/canvas.html +281 -0
  7. package/bizar-dash/bizar-design/canvas.html.artifact.json +19 -0
  8. package/bizar-dash/bizar-design/components.css +1665 -0
  9. package/bizar-dash/bizar-design/components.html +557 -0
  10. package/bizar-dash/bizar-design/components.html.artifact.json +19 -0
  11. package/bizar-dash/bizar-design/desktop/agents.html +74 -0
  12. package/bizar-dash/bizar-design/desktop/agents.html.artifact.json +19 -0
  13. package/bizar-dash/bizar-design/desktop/memory.html +75 -0
  14. package/bizar-dash/bizar-design/desktop/memory.html.artifact.json +19 -0
  15. package/bizar-dash/bizar-design/desktop/metrics.html +63 -0
  16. package/bizar-dash/bizar-design/desktop/metrics.html.artifact.json +19 -0
  17. package/bizar-dash/bizar-design/desktop/overview.html +95 -0
  18. package/bizar-dash/bizar-design/desktop/overview.html.artifact.json +19 -0
  19. package/bizar-dash/bizar-design/desktop/settings.html +70 -0
  20. package/bizar-dash/bizar-design/desktop/settings.html.artifact.json +19 -0
  21. package/bizar-dash/bizar-design/icons.svg +44 -0
  22. package/bizar-dash/bizar-design/index.html +192 -0
  23. package/bizar-dash/bizar-design/index.html.artifact.json +19 -0
  24. package/bizar-dash/bizar-design/mobile/agents.html +29 -0
  25. package/bizar-dash/bizar-design/mobile/agents.html.artifact.json +19 -0
  26. package/bizar-dash/bizar-design/mobile/memory.html +28 -0
  27. package/bizar-dash/bizar-design/mobile/memory.html.artifact.json +19 -0
  28. package/bizar-dash/bizar-design/mobile/metrics.html +29 -0
  29. package/bizar-dash/bizar-design/mobile/metrics.html.artifact.json +19 -0
  30. package/bizar-dash/bizar-design/mobile/overview.html +33 -0
  31. package/bizar-dash/bizar-design/mobile/overview.html.artifact.json +19 -0
  32. package/bizar-dash/bizar-design/mobile/settings.html +28 -0
  33. package/bizar-dash/bizar-design/mobile/settings.html.artifact.json +19 -0
  34. package/bizar-dash/bizar-design/prototype.js +114 -0
  35. package/bizar-dash/bizar-design/tokens.css +106 -0
  36. package/bizar-dash/critique.json +26 -0
  37. package/bizar-dash/image-1.png +0 -0
  38. package/bizar-dash/image-2.png +0 -0
  39. package/bizar-dash/image-3.png +0 -0
  40. package/bizar-dash/image-4.png +0 -0
  41. package/bizar-dash/image-5.png +0 -0
  42. package/bizar-dash/image-6.png +0 -0
  43. package/bizar-dash/image-7.png +0 -0
  44. package/bizar-dash/image.png +0 -0
  45. package/bizar-dash/src/server/memory-git.mjs +41 -2
  46. package/bizar-dash/src/server/routes/memory.mjs +42 -0
  47. package/bizar-dash/tests/memory-link.test.mjs +134 -0
  48. package/cli/commands/util.mjs +14 -1
  49. package/cli/dev-link.test.mjs +24 -11
  50. package/cli/doctor.mjs +48 -48
  51. package/cli/doctor.test.mjs +13 -8
  52. package/cli/install.mjs +44 -0
  53. package/cli/install.test.mjs +7 -8
  54. package/cli/memory.mjs +123 -20
  55. package/cli/plugin-runtime-deps.mjs +250 -0
  56. package/cli/plugin-runtime-deps.test.mjs +378 -0
  57. package/cli/post-install-smoke.mjs +3 -96
  58. package/cli/post-install-smoke.test.mjs +5 -3
  59. package/cli/provision.mjs +575 -43
  60. package/cli/provision.test.mjs +42 -0
  61. package/cli/utils.mjs +28 -0
  62. package/config/cline.json.template +75 -16
  63. package/config/skills/9router/SKILL.md +80 -0
  64. package/config/skills/9router-chat/SKILL.md +73 -0
  65. package/config/skills/9router-embeddings/SKILL.md +69 -0
  66. package/config/skills/9router-image/SKILL.md +86 -0
  67. package/config/skills/9router-stt/SKILL.md +79 -0
  68. package/config/skills/9router-tts/SKILL.md +80 -0
  69. package/config/skills/9router-web-fetch/SKILL.md +99 -0
  70. package/config/skills/9router-web-search/SKILL.md +91 -0
  71. package/package.json +5 -12
  72. package/packages/sdk/package.json +1 -1
  73. package/plugins/bizar/index.ts +55 -4
  74. package/plugins/bizar/package.json +28 -0
  75. package/plugins/bizar/src/clineruntime.ts +96 -14
  76. package/plugins/bizar/src/commands.ts +632 -1
  77. package/plugins/bizar/src/loop-engineering.ts +241 -0
  78. package/plugins/bizar/src/mistake-recovery.ts +98 -0
  79. package/plugins/bizar/src/odin.ts +227 -0
  80. package/plugins/bizar/src/options.ts +44 -2
  81. package/plugins/bizar/src/tool-discipline.ts +105 -0
  82. package/plugins/bizar/src/tools/loop-engineering.ts +193 -0
  83. package/plugins/bizar/src/tools/read-glyph-feedback.ts +4 -3
  84. package/plugins/bizar/src/trajectory.ts +104 -0
  85. package/plugins/bizar/tests/clineruntime-config.test.ts +177 -0
  86. package/plugins/bizar/tests/commands-impl.test.ts +7 -7
  87. package/plugins/bizar/tests/config.test.ts +10 -4
  88. package/plugins/bizar/tests/integration/slash-command.test.ts +4 -3
  89. package/plugins/bizar/tests/loop-engineering.test.ts +168 -0
  90. package/plugins/bizar/tests/memory-write-on-end.test.ts +3 -3
  91. package/plugins/bizar/tests/mistake-recovery.test.ts +116 -0
  92. package/plugins/bizar/tests/odin.test.ts +125 -0
  93. package/plugins/bizar/tests/options.test.ts +53 -0
  94. package/plugins/bizar/tests/safety.test.ts +9 -5
  95. package/plugins/bizar/tests/tool-discipline.test.ts +77 -0
  96. package/plugins/bizar/tests/tools/bg-status.test.ts +10 -10
  97. package/plugins/bizar/tests/update-deadlock.test.ts +7 -1
  98. package/config/cline.json +0 -334
  99. package/plugins/bizar/dist/index.js +0 -447728
@@ -0,0 +1 @@
1
+ {"event":"session_start","session_id":"019f3ed8-46df-7603-95cd-888f805514c7","native_session_id":"019f3ed8-46df-7603-95cd-888f805514c7","pid":1695074,"timestamp":"2026-07-07T23:09:51.188Z","_ts":"2026-07-07T23:09:51.188Z"}
@@ -0,0 +1,10 @@
1
+ {
2
+ "session_id": "019f3ed8-46df-7603-95cd-888f805514c7",
3
+ "native_session_id": "019f3ed8-46df-7603-95cd-888f805514c7",
4
+ "started_at": "2026-07-07T23:09:51.188Z",
5
+ "cwd": "/home/drb0rk/Projects/BizarHarness/bizar-dash",
6
+ "pid": 1695074,
7
+ "platform": "linux",
8
+ "pid_start_ticks": 11316930,
9
+ "pid_cmdline": "/home/drb0rk/.local/npm/lib/node_modules/@openai/codex/node_modules/@openai/codex-linux-x64/vendor/x86_64-unknown-linux-musl/bin/codex exec --json --skip-git-repo-check --sandbox workspace-write -c sandbox_workspace_write.network_access=true -C /home/drb0rk/Projects/BizarHarness/bizar-dash --model gpt-5.3-codex -c model_reasoning_effort=\"medium\""
10
+ }