@yemi33/minions 0.1.650 → 0.1.651
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 -0
- package/engine/timeout.js +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/timeout.js
CHANGED
|
@@ -132,8 +132,7 @@ function checkTimeouts(config) {
|
|
|
132
132
|
// Check if the agent actually completed (result event in live output)
|
|
133
133
|
// Optimization: only read file if recent activity (avoids reading stale 1MB logs)
|
|
134
134
|
let completedViaOutput = false;
|
|
135
|
-
try {
|
|
136
|
-
if (silentMs > 600000) throw new Error('skip'); // No point reading a file silent for >10min
|
|
135
|
+
if (silentMs <= 600000) try {
|
|
137
136
|
const liveLog = safeRead(liveLogPath);
|
|
138
137
|
if (liveLog && liveLog.includes('"type":"result"')) {
|
|
139
138
|
completedViaOutput = true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.651",
|
|
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"
|