bosun 0.37.1 → 0.38.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/.env.example +4 -1
- package/README.md +7 -0
- package/agent-custom-tools.mjs +899 -0
- package/agent-pool.mjs +128 -2
- package/agent-prompts.mjs +238 -7
- package/agent-tool-config.mjs +14 -3
- package/bosun-skills.mjs +302 -4
- package/bosun.schema.json +157 -0
- package/cli.mjs +168 -14
- package/context-cache.mjs +1856 -0
- package/context-indexer.mjs +1076 -0
- package/context-shredding-config.mjs +680 -0
- package/desktop/launch.mjs +49 -1
- package/desktop/main.mjs +84 -18
- package/fleet-coordinator.mjs +34 -1
- package/kanban-adapter.mjs +30 -3
- package/library-manager.mjs +62 -6
- package/maintenance.mjs +39 -4
- package/monitor.mjs +134 -0
- package/package.json +23 -4
- package/primary-agent.mjs +52 -1
- package/session-tracker.mjs +6 -3
- package/setup-web-server.mjs +291 -10
- package/setup.mjs +78 -0
- package/task-cli.mjs +20 -0
- package/telegram-bot.mjs +98 -36
- package/telegram-poll-owner.mjs +248 -0
- package/telegram-sentinel.mjs +125 -40
- package/tools/dead-exports-scan.mjs +150 -0
- package/tools/emoji-scrub.mjs +153 -0
- package/tools/git-hot-files.mjs +64 -0
- package/tools/imports-graph.mjs +96 -0
- package/tools/list-todos.mjs +90 -0
- package/tools/test-file-pairs.mjs +107 -0
- package/tools/validate-no-floating-promises.mjs +105 -0
- package/ui/app.js +242 -202
- package/ui/components/agent-selector.js +433 -581
- package/ui/components/charts.js +17 -21
- package/ui/components/chat-view.js +496 -332
- package/ui/components/command-palette.js +286 -233
- package/ui/components/diff-viewer.js +96 -61
- package/ui/components/forms.js +122 -117
- package/ui/components/kanban-board.js +147 -121
- package/ui/components/session-list.js +285 -171
- package/ui/components/shared.js +337 -200
- package/ui/components/workspace-switcher.js +291 -132
- package/ui/demo.html +198 -3
- package/ui/index.html +67 -21
- package/ui/modules/icons.js +2 -0
- package/ui/modules/mic-track-registry.js +83 -0
- package/ui/modules/mui.js +536 -0
- package/ui/modules/router.js +2 -0
- package/ui/modules/settings-schema.js +26 -9
- package/ui/modules/state.js +34 -0
- package/ui/modules/streaming.js +1 -1
- package/ui/modules/voice-barge-in.js +27 -0
- package/ui/modules/voice-client-sdk.js +452 -69
- package/ui/modules/voice-client.js +855 -58
- package/ui/modules/voice-overlay.js +919 -104
- package/ui/modules/voice.js +7 -6
- package/ui/setup.html +440 -8
- package/ui/styles/base.css +22 -23
- package/ui/styles/components.css +18 -1
- package/ui/styles/kanban.css +4 -4
- package/ui/styles/layout.css +64 -4
- package/ui/styles/sessions.css +67 -33
- package/ui/styles.css +258 -0
- package/ui/tabs/agents.js +143 -150
- package/ui/tabs/chat.js +188 -156
- package/ui/tabs/control.js +105 -77
- package/ui/tabs/dashboard.js +35 -21
- package/ui/tabs/infra.js +316 -397
- package/ui/tabs/library.js +430 -226
- package/ui/tabs/logs.js +345 -247
- package/ui/tabs/manual-flows.js +1646 -0
- package/ui/tabs/settings.js +381 -185
- package/ui/tabs/tasks.js +313 -379
- package/ui/tabs/telemetry.js +603 -124
- package/ui/tabs/workflows.js +724 -195
- package/ui/vendor/emotion-react.js +13 -0
- package/ui/vendor/emotion-styled.js +13 -0
- package/ui/vendor/mui-material.js +269 -0
- package/ui/vendor/preact-jsx-runtime.js +10 -0
- package/ui-server.mjs +1980 -127
- package/voice-relay.mjs +363 -93
- package/voice-tools.mjs +191 -35
- package/workflow-engine.mjs +219 -9
- package/workflow-nodes.mjs +1081 -179
- package/workflow-templates/_helpers.mjs +5 -1
- package/workflow-templates/github.mjs +205 -94
- package/workflow-templates/research.mjs +273 -0
- package/workflow-templates/task-batch.mjs +247 -0
- package/workflow-templates/task-lifecycle.mjs +2 -0
- package/workflow-templates.mjs +90 -1
package/.env.example
CHANGED
|
@@ -21,7 +21,6 @@ SHARED_STATE_STALE_THRESHOLD_MS=300000
|
|
|
21
21
|
# Maximum retry attempts before permanently ignoring a task (default: 3)
|
|
22
22
|
SHARED_STATE_MAX_RETRIES=3
|
|
23
23
|
# Task claim owner staleness threshold in milliseconds (default: 600000 = 10 minutes)
|
|
24
|
-
# Used by task-claims.mjs to detect stale local claims
|
|
25
24
|
TASK_CLAIM_OWNER_STALE_TTL_MS=600000
|
|
26
25
|
|
|
27
26
|
# ─── Project Identity ─────────────────────────────────────────────────────────
|
|
@@ -178,6 +177,10 @@ VOICE_VISION_MODEL=gpt-4.1-mini
|
|
|
178
177
|
# Gemini provider mode (Tier 2 voice fallback + Gemini vision)
|
|
179
178
|
# GEMINI_API_KEY=
|
|
180
179
|
# GOOGLE_API_KEY=
|
|
180
|
+
# Transcription model used for audio-to-text (default: gpt-4o-transcribe)
|
|
181
|
+
# VOICE_TRANSCRIPTION_MODEL=gpt-4o-mini-transcribe
|
|
182
|
+
# Enable/disable input audio transcription in realtime sessions (default: true)
|
|
183
|
+
# VOICE_TRANSCRIPTION_ENABLED=true
|
|
181
184
|
# Voice output persona
|
|
182
185
|
VOICE_ID=alloy
|
|
183
186
|
# server_vad | semantic_vad | none
|
package/README.md
CHANGED
|
@@ -117,6 +117,13 @@ Set `primaryAgent` in `.bosun/bosun.config.json` or choose an executor preset du
|
|
|
117
117
|
- Use `/report weekly` as an alias.
|
|
118
118
|
- Optional scheduler knobs in `.env`: `TELEGRAM_WEEKLY_REPORT_ENABLED`, `TELEGRAM_WEEKLY_REPORT_DAY`, `TELEGRAM_WEEKLY_REPORT_HOUR` (UTC), and `TELEGRAM_WEEKLY_REPORT_DAYS`.
|
|
119
119
|
|
|
120
|
+
## Daemon and sentinel startup
|
|
121
|
+
|
|
122
|
+
- `bosun --daemon` starts the long-running daemon/monitor.
|
|
123
|
+
- `bosun --sentinel` starts only the Telegram sentinel companion process.
|
|
124
|
+
- `bosun --daemon --sentinel` starts daemon + sentinel together (recommended for unattended operation).
|
|
125
|
+
- `bosun --terminate` is the clean reset command when you suspect stale/ghost processes.
|
|
126
|
+
|
|
120
127
|
## Documentation
|
|
121
128
|
|
|
122
129
|
**Published docs (website):** https://bosun.engineer/docs/
|