@yemi33/minions 0.1.647 → 0.1.648

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,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.648 (2026-04-09)
4
+
5
+ ### Fixes
6
+ - use full slug for plan matching to prevent false-positive collisions
7
+
3
8
  ## 0.1.647 (2026-04-09)
4
9
 
5
10
  ### Features
@@ -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.648",
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"