@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.649 (2026-04-09)
4
+
5
+ ### Fixes
6
+ - stop dispatch.json file watcher feedback loop, increase debounce
7
+ - use full slug for plan matching to prevent false-positive collisions
8
+
3
9
  ## 0.1.647 (2026-04-09)
4
10
 
5
11
  ### Features
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
- path.join(ENGINE_DIR, 'dispatch.json'),
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
- }, 1000);
396
+ }, 5000);
397
397
  });
398
398
  } catch { /* optional */ }
399
399
  }
@@ -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.slice(0, 30));
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.647",
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"