@covibes/zeroshot 4.1.3 → 4.2.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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [4.2.0](https://github.com/covibes/zeroshot/compare/v4.1.4...v4.2.0) (2026-01-06)
2
+
3
+
4
+ ### Features
5
+
6
+ * **security:** add automated security scanning and dependency management ([7b6ae13](https://github.com/covibes/zeroshot/commit/7b6ae139e97ddcefa46ab3e264e25f6f609163dd))
7
+
8
+ ## [4.1.4](https://github.com/covibes/zeroshot/compare/v4.1.3...v4.1.4) (2026-01-06)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **ci:** enforce CI testing for all releases ([3fad703](https://github.com/covibes/zeroshot/commit/3fad703fb6eb6b7ac8f98400466bac92329c8561))
14
+
1
15
  ## [4.1.3](https://github.com/covibes/zeroshot/compare/v4.1.2...v4.1.3) (2026-01-06)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@covibes/zeroshot",
3
- "version": "4.1.3",
3
+ "version": "4.2.0",
4
4
  "description": "Multi-agent orchestration engine for Claude - cluster coordinator and CLI",
5
5
  "main": "src/orchestrator.js",
6
6
  "bin": {
@@ -38,7 +38,7 @@ export function listTasks(options = {}) {
38
38
 
39
39
  const statusColor =
40
40
  {
41
- running: chalk.blue,
41
+ running: chalk.green,
42
42
  completed: chalk.green,
43
43
  failed: chalk.red,
44
44
  stale: chalk.yellow,
@@ -75,7 +75,7 @@ export function listTasks(options = {}) {
75
75
 
76
76
  const statusColor =
77
77
  {
78
- running: chalk.blue,
78
+ running: chalk.green,
79
79
  completed: chalk.green,
80
80
  failed: chalk.red,
81
81
  stale: chalk.yellow,
@@ -18,7 +18,7 @@ export function showStatus(taskId) {
18
18
 
19
19
  const statusColor =
20
20
  {
21
- running: chalk.blue,
21
+ running: chalk.green,
22
22
  completed: chalk.green,
23
23
  failed: chalk.red,
24
24
  }[task.status] || chalk.yellow;
package/task-lib/tui.js CHANGED
@@ -283,7 +283,7 @@ class TaskTUI {
283
283
  const items = this.tasks.map((task) => {
284
284
  const statusIcon =
285
285
  {
286
- running: '{blue-fg}●{/}',
286
+ running: '{green-fg}●{/}',
287
287
  completed: '{green-fg}●{/}',
288
288
  failed: '{red-fg}●{/}',
289
289
  stale: '{yellow-fg}●{/}',
@@ -372,7 +372,7 @@ class TaskTUI {
372
372
 
373
373
  getStatusColor(status) {
374
374
  const colors = {
375
- running: '{blue-fg}running{/}',
375
+ running: '{green-fg}running{/}',
376
376
  completed: '{green-fg}completed{/}',
377
377
  failed: '{red-fg}failed{/}',
378
378
  stale: '{yellow-fg}stale{/}',