@yemi33/minions 0.1.1624 → 0.1.1625

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,16 +1,14 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.1624 (2026-04-29)
4
-
5
- ### Features
6
- - harden ADO repository polling (#1872)
7
- - resilient file-bug label preflight (#1840) (#1867)
3
+ ## 0.1.1625 (2026-04-29)
8
4
 
9
5
  ### Fixes
10
- - use elapsed time for PR pollers (#1870)
6
+ - stream Copilot task completion summaries
11
7
 
12
- ### Other
13
- - test(dispatch): add unit tests for cancelPendingWorkItems, writeInboxAlert, cleanDispatchEntries (#1874)
8
+ ## 0.1.1623 (2026-04-29)
9
+
10
+ ### Features
11
+ - resilient file-bug label preflight (#1840) (#1867)
14
12
 
15
13
  ## 0.1.1621 (2026-04-29)
16
14
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-04-29T15:04:42.719Z"
4
+ "cachedAt": "2026-04-29T17:18:42.809Z"
5
5
  }
@@ -552,12 +552,11 @@ function createStreamConsumer(ctx) {
552
552
  // inspect...") is progress text only — terminal text comes from non-tool
553
553
  // assistant messages or trailing deltas.
554
554
  let copilotMessageBuffer = '';
555
- let copilotTaskCompleteSeen = false;
556
555
 
557
556
  function _captureTaskComplete(summary, success = true) {
558
557
  if (typeof summary !== 'string' || !summary) return;
559
- copilotTaskCompleteSeen = true;
560
558
  copilotMessageBuffer = '';
559
+ ctx.pushText(summary);
561
560
  ctx.notifyTaskComplete(summary, success !== false);
562
561
  }
563
562
 
@@ -579,7 +578,6 @@ function createStreamConsumer(ctx) {
579
578
  }
580
579
 
581
580
  if (obj.type === 'assistant.message_delta' && typeof obj.data?.deltaContent === 'string') {
582
- if (copilotTaskCompleteSeen) return;
583
581
  copilotMessageBuffer += obj.data.deltaContent;
584
582
  ctx.pushText(copilotMessageBuffer);
585
583
  return;
@@ -629,7 +627,6 @@ function createStreamConsumer(ctx) {
629
627
 
630
628
  function reset() {
631
629
  copilotMessageBuffer = '';
632
- copilotTaskCompleteSeen = false;
633
630
  }
634
631
 
635
632
  return { consume, reset };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1624",
3
+ "version": "0.1.1625",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"