@yemi33/minions 0.1.1717 → 0.1.1718
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 -3
- package/engine/copilot-models.json +1 -1
- package/engine.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1718 (2026-05-04)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
- prevent deferred steering crash (#2060)
|
|
7
|
+
|
|
8
|
+
## 0.1.1716 (2026-05-04)
|
|
4
9
|
|
|
5
10
|
### Features
|
|
6
|
-
- Harden update init timeout (#2059)
|
|
7
|
-
- harden claude auth classifier (#2058)
|
|
8
11
|
- add CC post-dispatch stop rule (#2057)
|
|
9
12
|
|
|
10
13
|
## 0.1.1715 (2026-05-04)
|
package/engine.js
CHANGED
|
@@ -1400,9 +1400,9 @@ async function spawnAgent(dispatchItem, config) {
|
|
|
1400
1400
|
const hardContractFail = completionContractFailure?.severity === 'hard'
|
|
1401
1401
|
|| completionContractFailure?.nonTerminal === true;
|
|
1402
1402
|
const effectiveResult = hardContractFail ? DISPATCH_RESULT.ERROR : (((code === 0 && !agentReportedFailure) || autoRecovered) ? DISPATCH_RESULT.SUCCESS : DISPATCH_RESULT.ERROR);
|
|
1403
|
-
const
|
|
1403
|
+
const finalCompletionReportPath = structuredCompletion?._path || dispatchItem.meta?.completionReportPath || shared.dispatchCompletionReportPath(id);
|
|
1404
1404
|
const completionOpts = {
|
|
1405
|
-
...(
|
|
1405
|
+
...(finalCompletionReportPath ? { completionReportPath: finalCompletionReportPath } : {}),
|
|
1406
1406
|
...(structuredCompletion ? { structuredCompletion } : {}),
|
|
1407
1407
|
};
|
|
1408
1408
|
const completeOpts = hardContractFail
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1718",
|
|
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"
|