@yemi33/minions 0.1.1746 → 0.1.1747
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 +5 -1
- package/engine/copilot-models.json +1 -1
- package/engine/timeout.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1747 (2026-05-06)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
6
|
- treat null branch-change as unconfirmed (#2096) (#2115)
|
|
7
7
|
|
|
8
|
+
### Other
|
|
9
|
+
- test(dashboard): add unit tests for meeting/pipeline/work-item helpers (#2117)
|
|
10
|
+
- test(timeout): add unit tests for parse helpers and runtime capability check (#2116)
|
|
11
|
+
|
|
8
12
|
## 0.1.1745 (2026-05-06)
|
|
9
13
|
|
|
10
14
|
### Features
|
package/engine/timeout.js
CHANGED
|
@@ -562,4 +562,6 @@ module.exports = {
|
|
|
562
562
|
checkSteering,
|
|
563
563
|
checkIdleThreshold,
|
|
564
564
|
isOsPidAliveForDispatch,
|
|
565
|
+
parseProcessExitCode, terminalResultIndicatesError, parseTerminalResultFallbackExitCode, // exported for testing
|
|
566
|
+
readFileTail, runtimeSupportsMidRunSessionId, // exported for testing
|
|
565
567
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1747",
|
|
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"
|