bosun 0.27.5 → 0.28.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 +1 -1
- package/agent-event-bus.mjs +821 -0
- package/agent-pool.mjs +189 -1
- package/agent-supervisor.mjs +1236 -0
- package/anomaly-detector.mjs +32 -14
- package/config-doctor.mjs +88 -0
- package/error-detector.mjs +371 -2
- package/monitor.mjs +152 -34
- package/package.json +4 -2
- package/postinstall.mjs +169 -5
- package/primary-agent.mjs +264 -12
- package/review-agent.mjs +22 -0
- package/setup.mjs +5 -2
- package/task-executor.mjs +272 -21
- package/telegram-bot.mjs +75 -7
- package/ui/app.js +158 -38
- package/ui/components/agent-selector.js +637 -0
- package/ui/components/chat-view.js +282 -18
- package/ui/components/session-list.js +38 -72
- package/ui/components/shared.js +72 -3
- package/ui/demo.html +173 -52
- package/ui/favicon.png +0 -0
- package/ui/index.html +22 -17
- package/ui/logo.png +0 -0
- package/ui/logo.svg +31 -0
- package/ui/modules/agent-events.js +434 -0
- package/ui/modules/settings-schema.js +1 -1
- package/ui/modules/streaming.js +640 -0
- package/ui/styles/base.css +1 -0
- package/ui/styles/components.css +264 -14
- package/ui/styles/kanban.css +15 -15
- package/ui/styles/layout.css +314 -20
- package/ui/styles/sessions.css +617 -67
- package/ui/styles/variables.css +50 -50
- package/ui/styles/workspace-switcher.css +30 -13
- package/ui/styles/workspace-switcher.css.bak +693 -0
- package/ui/styles.monolith.css +2 -2
- package/ui/tabs/chat.js +320 -53
- package/ui/tabs/control.js +1 -1
- package/ui/tabs/dashboard.js +1 -1
- package/ui/tabs/settings.js +16 -3
- package/ui/tabs/tasks.js +303 -178
- package/ui-server.mjs +306 -14
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# bosun
|
|
1
|
+
#  bosun
|
|
2
2
|
|
|
3
3
|
Bosun is a production-grade supervisor for AI coding agents. It routes tasks across executors, automates PR lifecycles, and keeps operators in control through Telegram, the Mini App dashboard, and optional WhatsApp notifications.
|
|
4
4
|
|