bosun 0.37.0 → 0.37.2
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/agent-tool-config.mjs +338 -0
- package/bosun-skills.mjs +59 -4
- package/bosun.schema.json +1 -1
- package/desktop/launch.mjs +18 -0
- package/desktop/main.mjs +52 -13
- package/fleet-coordinator.mjs +34 -1
- package/kanban-adapter.mjs +30 -3
- package/library-manager.mjs +66 -0
- package/maintenance.mjs +30 -5
- package/monitor.mjs +56 -0
- package/package.json +4 -1
- package/setup-web-server.mjs +73 -12
- package/setup.mjs +3 -3
- package/ui/app.js +40 -3
- package/ui/components/session-list.js +25 -7
- package/ui/components/workspace-switcher.js +48 -1
- package/ui/demo.html +176 -0
- package/ui/modules/mic-track-registry.js +83 -0
- package/ui/modules/settings-schema.js +4 -1
- package/ui/modules/state.js +25 -0
- package/ui/modules/streaming.js +1 -1
- package/ui/modules/voice-barge-in.js +27 -0
- package/ui/modules/voice-client-sdk.js +268 -42
- package/ui/modules/voice-client.js +665 -61
- package/ui/modules/voice-overlay.js +829 -47
- package/ui/setup.html +151 -9
- package/ui/styles.css +258 -0
- package/ui/tabs/chat.js +11 -0
- package/ui/tabs/library.js +890 -15
- package/ui/tabs/settings.js +51 -11
- package/ui/tabs/telemetry.js +327 -105
- package/ui/tabs/workflows.js +86 -0
- package/ui-server.mjs +1201 -107
- package/voice-action-dispatcher.mjs +81 -0
- package/voice-agents-sdk.mjs +2 -2
- package/voice-relay.mjs +131 -14
- package/voice-tools.mjs +475 -9
- package/workflow-engine.mjs +54 -0
- package/workflow-nodes.mjs +177 -28
- package/workflow-templates/github.mjs +205 -94
- package/workflow-templates/task-batch.mjs +247 -0
- package/workflow-templates.mjs +15 -0
package/workflow-templates.mjs
CHANGED
|
@@ -100,6 +100,12 @@ import {
|
|
|
100
100
|
VE_ORCHESTRATOR_LITE_TEMPLATE,
|
|
101
101
|
} from "./workflow-templates/task-lifecycle.mjs";
|
|
102
102
|
|
|
103
|
+
// Task Batch (parallel dispatch)
|
|
104
|
+
import {
|
|
105
|
+
TASK_BATCH_PROCESSOR_TEMPLATE,
|
|
106
|
+
TASK_BATCH_PR_TEMPLATE,
|
|
107
|
+
} from "./workflow-templates/task-batch.mjs";
|
|
108
|
+
|
|
103
109
|
// ── Re-export individual templates for direct import ────────────────────────
|
|
104
110
|
|
|
105
111
|
export {
|
|
@@ -139,6 +145,8 @@ export {
|
|
|
139
145
|
SECRET_SCANNER_TEMPLATE,
|
|
140
146
|
TASK_LIFECYCLE_TEMPLATE,
|
|
141
147
|
VE_ORCHESTRATOR_LITE_TEMPLATE,
|
|
148
|
+
TASK_BATCH_PROCESSOR_TEMPLATE,
|
|
149
|
+
TASK_BATCH_PR_TEMPLATE,
|
|
142
150
|
};
|
|
143
151
|
|
|
144
152
|
// ═══════════════════════════════════════════════════════════════════════════
|
|
@@ -201,6 +209,9 @@ export const WORKFLOW_TEMPLATES = Object.freeze([
|
|
|
201
209
|
// ── Task Lifecycle (workflow-first core) ──
|
|
202
210
|
TASK_LIFECYCLE_TEMPLATE,
|
|
203
211
|
VE_ORCHESTRATOR_LITE_TEMPLATE,
|
|
212
|
+
// ── Task Batch (parallel dispatch) ──
|
|
213
|
+
TASK_BATCH_PROCESSOR_TEMPLATE,
|
|
214
|
+
TASK_BATCH_PR_TEMPLATE,
|
|
204
215
|
]);
|
|
205
216
|
|
|
206
217
|
const _TEMPLATE_BY_ID = new Map(
|
|
@@ -490,6 +501,7 @@ export const WORKFLOW_SETUP_PROFILES = Object.freeze({
|
|
|
490
501
|
"template-task-archiver",
|
|
491
502
|
"template-sync-engine",
|
|
492
503
|
"template-sdk-conflict-resolver",
|
|
504
|
+
"template-task-batch-processor",
|
|
493
505
|
]),
|
|
494
506
|
}),
|
|
495
507
|
workflowFirst: Object.freeze({
|
|
@@ -534,6 +546,9 @@ export const WORKFLOW_SETUP_PROFILES = Object.freeze({
|
|
|
534
546
|
"template-release-pipeline",
|
|
535
547
|
// Security
|
|
536
548
|
"template-dependency-audit",
|
|
549
|
+
// Batch dispatch
|
|
550
|
+
"template-task-batch-processor",
|
|
551
|
+
"template-task-batch-pr",
|
|
537
552
|
]),
|
|
538
553
|
}),
|
|
539
554
|
});
|