@yemi33/minions 0.1.648 → 0.1.649
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/cli.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/cli.js
CHANGED
|
@@ -367,7 +367,7 @@ const commands = {
|
|
|
367
367
|
function watchForWorkChanges() {
|
|
368
368
|
const filesToWatch = [
|
|
369
369
|
path.join(MINIONS_DIR, 'work-items.json'),
|
|
370
|
-
|
|
370
|
+
// dispatch.json excluded — it changes every tick, causing a feedback loop
|
|
371
371
|
];
|
|
372
372
|
// Watch project-specific work-items.json
|
|
373
373
|
const { getProjects } = require('./shared');
|
|
@@ -393,7 +393,7 @@ const commands = {
|
|
|
393
393
|
_globalDebounce = null;
|
|
394
394
|
e.log('info', `File change detected — triggering tick`);
|
|
395
395
|
e.tick();
|
|
396
|
-
},
|
|
396
|
+
}, 5000);
|
|
397
397
|
});
|
|
398
398
|
} catch { /* optional */ }
|
|
399
399
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.649",
|
|
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"
|