@yemi33/minions 0.1.463 → 0.1.465
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 +3 -1
- package/engine/timeout.js +10 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.465 (2026-04-07)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
+
- extend heartbeat timeout for Agent (subagent) tool calls — 30min
|
|
7
|
+
- extend heartbeat timeout for any Bash tool call (10min default)
|
|
6
8
|
- clear stale session.json on resume failure, hang kill, and orphan
|
|
7
9
|
|
|
8
10
|
## 0.1.462 (2026-04-07)
|
package/engine/timeout.js
CHANGED
|
@@ -187,9 +187,16 @@ function checkTimeouts(config) {
|
|
|
187
187
|
blockingTimeout = Math.max(heartbeatTimeout, taskTimeout + 60000); // task timeout + 1min grace
|
|
188
188
|
isBlocking = true;
|
|
189
189
|
}
|
|
190
|
-
// Bash
|
|
191
|
-
if (name === 'Bash'
|
|
192
|
-
|
|
190
|
+
// Bash tool call — may be running a long build/install with no stdout
|
|
191
|
+
if (name === 'Bash') {
|
|
192
|
+
// Use explicit timeout if set, otherwise default to 10min for any Bash call
|
|
193
|
+
const bashTimeout = input.timeout || 600000;
|
|
194
|
+
blockingTimeout = Math.max(heartbeatTimeout, bashTimeout + 60000);
|
|
195
|
+
isBlocking = true;
|
|
196
|
+
}
|
|
197
|
+
// Agent (subagent) tool call — parent waits silently for child to complete
|
|
198
|
+
if (name === 'Agent') {
|
|
199
|
+
blockingTimeout = Math.max(heartbeatTimeout, 1800000); // 30min for subagents
|
|
193
200
|
isBlocking = true;
|
|
194
201
|
}
|
|
195
202
|
break; // only check the most recent tool_use
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.465",
|
|
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"
|