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.
Files changed (43) hide show
  1. package/.env.example +4 -1
  2. package/agent-tool-config.mjs +338 -0
  3. package/bosun-skills.mjs +59 -4
  4. package/bosun.schema.json +1 -1
  5. package/desktop/launch.mjs +18 -0
  6. package/desktop/main.mjs +52 -13
  7. package/fleet-coordinator.mjs +34 -1
  8. package/kanban-adapter.mjs +30 -3
  9. package/library-manager.mjs +66 -0
  10. package/maintenance.mjs +30 -5
  11. package/monitor.mjs +56 -0
  12. package/package.json +4 -1
  13. package/setup-web-server.mjs +73 -12
  14. package/setup.mjs +3 -3
  15. package/ui/app.js +40 -3
  16. package/ui/components/session-list.js +25 -7
  17. package/ui/components/workspace-switcher.js +48 -1
  18. package/ui/demo.html +176 -0
  19. package/ui/modules/mic-track-registry.js +83 -0
  20. package/ui/modules/settings-schema.js +4 -1
  21. package/ui/modules/state.js +25 -0
  22. package/ui/modules/streaming.js +1 -1
  23. package/ui/modules/voice-barge-in.js +27 -0
  24. package/ui/modules/voice-client-sdk.js +268 -42
  25. package/ui/modules/voice-client.js +665 -61
  26. package/ui/modules/voice-overlay.js +829 -47
  27. package/ui/setup.html +151 -9
  28. package/ui/styles.css +258 -0
  29. package/ui/tabs/chat.js +11 -0
  30. package/ui/tabs/library.js +890 -15
  31. package/ui/tabs/settings.js +51 -11
  32. package/ui/tabs/telemetry.js +327 -105
  33. package/ui/tabs/workflows.js +86 -0
  34. package/ui-server.mjs +1201 -107
  35. package/voice-action-dispatcher.mjs +81 -0
  36. package/voice-agents-sdk.mjs +2 -2
  37. package/voice-relay.mjs +131 -14
  38. package/voice-tools.mjs +475 -9
  39. package/workflow-engine.mjs +54 -0
  40. package/workflow-nodes.mjs +177 -28
  41. package/workflow-templates/github.mjs +205 -94
  42. package/workflow-templates/task-batch.mjs +247 -0
  43. package/workflow-templates.mjs +15 -0
@@ -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
  });