@yemi33/minions 0.1.647 → 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 +6 -0
- package/engine/cli.js +2 -2
- package/engine/pipeline.js +1 -1
- 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/engine/pipeline.js
CHANGED
|
@@ -305,7 +305,7 @@ function _findExistingPlanForMeeting(meetingIds, plansDir) {
|
|
|
305
305
|
if (mtg?.title) {
|
|
306
306
|
// Dashboard convention: "Meeting follow-up: {title}" → slug
|
|
307
307
|
const dashSlug = ('meeting-follow-up-' + mtg.title).toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, '').slice(0, 50);
|
|
308
|
-
slugPrefixes.push(dashSlug
|
|
308
|
+
slugPrefixes.push(dashSlug);
|
|
309
309
|
}
|
|
310
310
|
}
|
|
311
311
|
let slugMatch = null;
|
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"
|