@yemi33/minions 0.1.537 → 0.1.538
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 +2 -1
- package/engine.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.538 (2026-04-07)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
+
- declare onAgentClose as async (closes #454) (#456)
|
|
6
7
|
- handlePlansExecute dedup allows re-execute after completion
|
|
7
8
|
- plan regenerate/execute always queues fresh plan-to-prd (#449)
|
|
8
9
|
|
package/engine.js
CHANGED
|
@@ -562,7 +562,7 @@ async function spawnAgent(dispatchItem, config) {
|
|
|
562
562
|
try { fs.appendFileSync(liveOutputPath, '[stderr] ' + chunk); } catch { /* optional */ }
|
|
563
563
|
});
|
|
564
564
|
|
|
565
|
-
function onAgentClose(code) {
|
|
565
|
+
async function onAgentClose(code) {
|
|
566
566
|
if (heartbeatTimer) { clearInterval(heartbeatTimer); heartbeatTimer = null; }
|
|
567
567
|
log('info', `Agent ${agentId} (${id}) exited with code ${code}`);
|
|
568
568
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.538",
|
|
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"
|