bosun 0.41.7 → 0.41.9

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 (43) hide show
  1. package/README.md +23 -1
  2. package/agent/agent-event-bus.mjs +31 -2
  3. package/agent/agent-pool.mjs +251 -11
  4. package/agent/agent-prompts.mjs +5 -1
  5. package/agent/agent-supervisor.mjs +22 -0
  6. package/agent/primary-agent.mjs +115 -5
  7. package/cli.mjs +3 -2
  8. package/config/config.mjs +4 -1
  9. package/desktop/main.mjs +350 -25
  10. package/desktop/preload.cjs +8 -0
  11. package/desktop/preload.mjs +19 -0
  12. package/entrypoint.mjs +332 -0
  13. package/infra/health-status.mjs +72 -0
  14. package/infra/library-manager.mjs +58 -1
  15. package/infra/maintenance.mjs +1 -2
  16. package/infra/monitor.mjs +25 -7
  17. package/infra/session-tracker.mjs +30 -3
  18. package/package.json +10 -4
  19. package/server/bosun-mcp-server.mjs +1004 -0
  20. package/server/setup-web-server.mjs +287 -258
  21. package/server/ui-server.mjs +218 -23
  22. package/shell/claude-shell.mjs +14 -1
  23. package/shell/codex-model-profiles.mjs +166 -29
  24. package/shell/codex-shell.mjs +56 -18
  25. package/shell/opencode-providers.mjs +20 -8
  26. package/task/task-executor.mjs +28 -0
  27. package/task/task-store.mjs +13 -4
  28. package/tools/list-todos.mjs +7 -1
  29. package/ui/app.js +3 -2
  30. package/ui/components/agent-selector.js +127 -0
  31. package/ui/components/session-list.js +2 -0
  32. package/ui/demo-defaults.js +6 -6
  33. package/ui/modules/router.js +2 -0
  34. package/ui/modules/state.js +13 -5
  35. package/ui/tabs/chat.js +3 -0
  36. package/ui/tabs/library.js +284 -52
  37. package/ui/tabs/tasks.js +5 -13
  38. package/workflow/workflow-engine.mjs +16 -4
  39. package/workflow/workflow-nodes/definitions.mjs +37 -0
  40. package/workflow/workflow-nodes.mjs +489 -153
  41. package/workflow/workflow-templates.mjs +0 -5
  42. package/workflow-templates/github.mjs +106 -16
  43. package/workspace/worktree-manager.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bosun",
3
- "version": "0.41.7",
3
+ "version": "0.41.9",
4
4
  "description": "Bosun Autonomous Engineering — manages AI agent executors with failover, extremely powerful workflow builder, and a massive amount of included default workflow templates for autonomous engineering, creates PRs via Vibe-Kanban API, and sends Telegram notifications. Supports N executors with weighted distribution, multi-repo projects, and auto-setup.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -45,6 +45,7 @@
45
45
  "./maintenance": "./infra/maintenance.mjs",
46
46
  "./mcp-workflow-adapter": "./workflow/mcp-workflow-adapter.mjs",
47
47
  "./telegram-bot": "./telegram/telegram-bot.mjs",
48
+ "./mcp-server": "./server/bosun-mcp-server.mjs",
48
49
  "./ui-server": "./server/ui-server.mjs",
49
50
  "./workspace-manager": "./workspace/workspace-manager.mjs",
50
51
  "./github-app-auth": "./github/github-app-auth.mjs",
@@ -81,10 +82,13 @@
81
82
  "./context-indexer": "./workspace/context-indexer.mjs",
82
83
  "./msg-hub": "./workflow/msg-hub.mjs",
83
84
  "./declarative-workflows": "./workflow/declarative-workflows.mjs",
84
- "./pipeline": "./workflow/pipeline.mjs"
85
+ "./pipeline": "./workflow/pipeline.mjs",
86
+ "./entrypoint": "./entrypoint.mjs"
85
87
  },
86
88
  "bin": {
87
89
  "bosun": "cli.mjs",
90
+ "bosun-entrypoint": "entrypoint.mjs",
91
+ "bosun-mcp": "server/bosun-mcp-server.mjs",
88
92
  "bosun-task": "task/task-cli-bin.mjs",
89
93
  "bosun-setup": "setup.mjs",
90
94
  "bosun-chat-id": "telegram/get-telegram-chat-id.mjs",
@@ -214,7 +218,6 @@
214
218
  "lib/codebase-audit-manifests.mjs",
215
219
  "lib/logger.mjs",
216
220
  "lib/codebase-audit.mjs",
217
- "lib/codebase-audit-warnings.mjs",
218
221
  "lib/session-insights.mjs",
219
222
  "infra/library-manager.mjs",
220
223
  "infra/library-manager-utils.mjs",
@@ -247,6 +250,7 @@
247
250
  "infra/session-tracker.mjs",
248
251
  "infra/test-runtime.mjs",
249
252
  "setup.mjs",
253
+ "server/bosun-mcp-server.mjs",
250
254
  "server/setup-web-server.mjs",
251
255
  "shell/pwsh-runtime.mjs",
252
256
  "workspace/shared-knowledge.mjs",
@@ -346,7 +350,9 @@
346
350
  "tools/",
347
351
  "ui/vendor/",
348
352
  "workflow/msg-hub.mjs",
349
- "workflow/declarative-workflows.mjs"
353
+ "workflow/declarative-workflows.mjs",
354
+ "entrypoint.mjs",
355
+ "infra/health-status.mjs"
350
356
  ],
351
357
  "dependencies": {
352
358
  "@anthropic-ai/claude-agent-sdk": "latest",