@yemi33/minions 0.1.632 → 0.1.634
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 +8 -0
- package/engine/lifecycle.js +0 -1
- package/engine.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/lifecycle.js
CHANGED
|
@@ -1367,7 +1367,6 @@ async function runPostCompletionHooks(dispatchItem, agentId, code, stdout, confi
|
|
|
1367
1367
|
} catch {}
|
|
1368
1368
|
}
|
|
1369
1369
|
if (!prdFound) {
|
|
1370
|
-
const hasOutput = stdout && stdout.length > 500;
|
|
1371
1370
|
const wiPath = resolveWorkItemPath(meta);
|
|
1372
1371
|
if (wiPath) {
|
|
1373
1372
|
mutateJsonFileLocked(wiPath, data => {
|
package/engine.js
CHANGED
|
@@ -2330,7 +2330,7 @@ function discoverCentralWorkItems(config) {
|
|
|
2330
2330
|
agentRole,
|
|
2331
2331
|
task: item.title || item.description?.slice(0, 80) || item.id,
|
|
2332
2332
|
prompt,
|
|
2333
|
-
meta: { dispatchKey: key, source: 'central-work-item', item, planFileName: item.planFile || mutations.get(item.id)?._planFileName || null, branch: item.branch || item.featureBranch || `work/${item.id}` }
|
|
2333
|
+
meta: { dispatchKey: key, source: 'central-work-item', item: { ...item, ...mutations.get(item.id) }, planFileName: item.planFile || mutations.get(item.id)?._planFileName || null, branch: item.branch || item.featureBranch || `work/${item.id}` }
|
|
2334
2334
|
});
|
|
2335
2335
|
|
|
2336
2336
|
setCooldown(key);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.634",
|
|
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"
|