bosun 0.37.2 → 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/README.md +7 -0
- package/agent-custom-tools.mjs +899 -0
- package/agent-pool.mjs +128 -2
- package/agent-prompts.mjs +238 -7
- package/bosun-skills.mjs +243 -0
- 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 +31 -1
- package/desktop/main.mjs +32 -5
- package/library-manager.mjs +14 -6
- package/maintenance.mjs +11 -1
- package/monitor.mjs +78 -0
- package/package.json +22 -4
- package/primary-agent.mjs +52 -1
- package/session-tracker.mjs +6 -3
- package/setup-web-server.mjs +220 -0
- 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 +208 -205
- 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 +260 -164
- package/ui/components/shared.js +337 -200
- package/ui/components/workspace-switcher.js +243 -131
- package/ui/demo.html +88 -3
- package/ui/index.html +67 -21
- package/ui/modules/icons.js +2 -0
- package/ui/modules/mui.js +536 -0
- package/ui/modules/router.js +2 -0
- package/ui/modules/settings-schema.js +23 -9
- package/ui/modules/state.js +9 -0
- package/ui/modules/voice-client-sdk.js +201 -40
- package/ui/modules/voice-client.js +194 -1
- package/ui/modules/voice-overlay.js +149 -116
- package/ui/modules/voice.js +7 -6
- package/ui/setup.html +290 -0
- 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/tabs/agents.js +143 -150
- package/ui/tabs/chat.js +177 -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 +255 -261
- package/ui/tabs/logs.js +345 -247
- package/ui/tabs/manual-flows.js +1646 -0
- package/ui/tabs/settings.js +337 -181
- package/ui/tabs/tasks.js +313 -379
- package/ui/tabs/telemetry.js +368 -111
- package/ui/tabs/workflows.js +702 -190
- 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 +1024 -29
- package/voice-relay.mjs +246 -84
- package/voice-tools.mjs +191 -35
- package/workflow-engine.mjs +165 -9
- package/workflow-nodes.mjs +904 -151
- package/workflow-templates/_helpers.mjs +5 -1
- package/workflow-templates/research.mjs +273 -0
- package/workflow-templates/task-lifecycle.mjs +2 -0
- package/workflow-templates.mjs +75 -1
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/
|