bosun 0.34.9 → 0.35.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 (46) hide show
  1. package/.env.example +10 -0
  2. package/README.md +1 -0
  3. package/agent-pool.mjs +329 -44
  4. package/anomaly-detector.mjs +13 -1
  5. package/claude-shell.mjs +44 -6
  6. package/codex-config.mjs +56 -2
  7. package/codex-shell.mjs +68 -21
  8. package/config.mjs +77 -2
  9. package/copilot-shell.mjs +53 -14
  10. package/desktop/main.mjs +6 -3
  11. package/kanban-adapter.mjs +6 -2
  12. package/maintenance.mjs +109 -0
  13. package/monitor.mjs +170 -38
  14. package/package.json +2 -1
  15. package/repo-config.mjs +9 -0
  16. package/repo-root.mjs +41 -0
  17. package/setup-web-server.mjs +20 -2
  18. package/stream-resilience.mjs +79 -0
  19. package/task-executor.mjs +253 -85
  20. package/task-store.mjs +39 -0
  21. package/telegram-bot.mjs +313 -103
  22. package/ui/app.js +44 -29
  23. package/ui/components/chat-view.js +101 -10
  24. package/ui/components/shared.js +49 -0
  25. package/ui/demo.html +13 -0
  26. package/ui/index.html +5 -5
  27. package/ui/modules/router.js +157 -6
  28. package/ui/modules/state.js +31 -0
  29. package/ui/setup.html +3 -0
  30. package/ui/styles/components.css +29 -0
  31. package/ui/styles/layout.css +19 -15
  32. package/ui/styles/sessions.css +58 -7
  33. package/ui/styles.css +160 -16
  34. package/ui/tabs/agents.js +166 -20
  35. package/ui/tabs/chat.js +16 -0
  36. package/ui/tabs/dashboard.js +34 -9
  37. package/ui/tabs/library.js +36 -6
  38. package/ui/tabs/settings.js +9 -1
  39. package/ui/tabs/tasks.js +245 -10
  40. package/ui/tabs/workflows.js +106 -3
  41. package/ui-server.mjs +277 -42
  42. package/workflow-engine.mjs +26 -3
  43. package/workflow-migration.mjs +1 -0
  44. package/workflow-nodes.mjs +145 -23
  45. package/workflow-templates/reliability.mjs +94 -0
  46. package/workflow-templates.mjs +6 -0
package/.env.example CHANGED
@@ -83,6 +83,16 @@ TELEGRAM_MINIAPP_ENABLED=false
83
83
  # Public hostname override. By default the server auto-detects your LAN IP.
84
84
  # Set this when using a tunnel (ngrok, Cloudflare) or a public domain.
85
85
  # TELEGRAM_UI_PUBLIC_HOST=your-lan-ip-or-domain
86
+ # Browser URL handling:
87
+ # manual (default) = never auto-open browser windows/tabs
88
+ # auto = permit auto-open when BOSUN_UI_AUTO_OPEN_BROWSER=true
89
+ # BOSUN_UI_BROWSER_OPEN_MODE=manual
90
+ # Legacy auto-open toggle for UI server (requires BOSUN_UI_BROWSER_OPEN_MODE=auto)
91
+ # BOSUN_UI_AUTO_OPEN_BROWSER=false
92
+ # Show full /?token=... browser URL in logs (default: false; token is hidden)
93
+ # BOSUN_UI_LOG_TOKENIZED_BROWSER_URL=false
94
+ # Setup wizard browser auto-open (default: true when mode=auto)
95
+ # BOSUN_SETUP_AUTO_OPEN_BROWSER=true
86
96
  # Full public URL override (takes precedence over host/port auto-detection).
87
97
  # Use when you have a reverse proxy or tunnel with HTTPS.
88
98
  # TELEGRAM_UI_BASE_URL=https://your-public-ui.example.com
package/README.md CHANGED
@@ -48,6 +48,7 @@ Requires:
48
48
 
49
49
  - Routes work across Codex, Copilot, and Claude executors
50
50
  - Automates retries, failover, and PR lifecycle management
51
+ - Auto-labels attached PRs with `bosun-needs-fix` when CI fails (`Build + Tests`)
51
52
  - Monitors runs and recovers from stalled or broken states
52
53
  - Provides Telegram control and a Mini App dashboard
53
54
  - Integrates with GitHub, Jira, and Vibe-Kanban boards