@yemi33/minions 0.1.735 → 0.1.736
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 +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/timeout.js
CHANGED
|
@@ -132,8 +132,8 @@ function checkTimeouts(config) {
|
|
|
132
132
|
const timeout = config.engine?.agentTimeout || DEFAULTS.agentTimeout;
|
|
133
133
|
const heartbeatTimeout = config.engine?.heartbeatTimeout || DEFAULTS.heartbeatTimeout;
|
|
134
134
|
|
|
135
|
-
// Per-type heartbeat timeouts: merge
|
|
136
|
-
const perTypeTimeouts = { ...
|
|
135
|
+
// Per-type heartbeat timeouts: merge ENGINE_DEFAULTS ← config overrides
|
|
136
|
+
const perTypeTimeouts = { ...DEFAULTS.heartbeatTimeouts, ...(config.engine?.heartbeatTimeouts || {}) };
|
|
137
137
|
|
|
138
138
|
// 1. Check tracked processes for hard timeout (supports per-item deadline from fan-out)
|
|
139
139
|
for (const [id, info] of activeProcesses.entries()) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.736",
|
|
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"
|