@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 +6 -8
- package/engine/copilot-models.json +1 -1
- package/engine/runtimes/copilot.js +1 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
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
|
-
-
|
|
6
|
+
- stream Copilot task completion summaries
|
|
11
7
|
|
|
12
|
-
|
|
13
|
-
|
|
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
|
|
|
@@ -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.
|
|
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"
|