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.
- package/.env.example +10 -0
- package/README.md +1 -0
- package/agent-pool.mjs +329 -44
- package/anomaly-detector.mjs +13 -1
- package/claude-shell.mjs +44 -6
- package/codex-config.mjs +56 -2
- package/codex-shell.mjs +68 -21
- package/config.mjs +77 -2
- package/copilot-shell.mjs +53 -14
- package/desktop/main.mjs +6 -3
- package/kanban-adapter.mjs +6 -2
- package/maintenance.mjs +109 -0
- package/monitor.mjs +170 -38
- package/package.json +2 -1
- package/repo-config.mjs +9 -0
- package/repo-root.mjs +41 -0
- package/setup-web-server.mjs +20 -2
- package/stream-resilience.mjs +79 -0
- package/task-executor.mjs +253 -85
- package/task-store.mjs +39 -0
- package/telegram-bot.mjs +313 -103
- package/ui/app.js +44 -29
- package/ui/components/chat-view.js +101 -10
- package/ui/components/shared.js +49 -0
- package/ui/demo.html +13 -0
- package/ui/index.html +5 -5
- package/ui/modules/router.js +157 -6
- package/ui/modules/state.js +31 -0
- package/ui/setup.html +3 -0
- package/ui/styles/components.css +29 -0
- package/ui/styles/layout.css +19 -15
- package/ui/styles/sessions.css +58 -7
- package/ui/styles.css +160 -16
- package/ui/tabs/agents.js +166 -20
- package/ui/tabs/chat.js +16 -0
- package/ui/tabs/dashboard.js +34 -9
- package/ui/tabs/library.js +36 -6
- package/ui/tabs/settings.js +9 -1
- package/ui/tabs/tasks.js +245 -10
- package/ui/tabs/workflows.js +106 -3
- package/ui-server.mjs +277 -42
- package/workflow-engine.mjs +26 -3
- package/workflow-migration.mjs +1 -0
- package/workflow-nodes.mjs +145 -23
- package/workflow-templates/reliability.mjs +94 -0
- 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
|