@yemi33/minions 0.1.643 → 0.1.644

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,10 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.643 (2026-04-09)
3
+ ## 0.1.644 (2026-04-09)
4
4
 
5
5
  ### Features
6
6
  - track notes, plans, and PRDs as work item artifacts
7
7
 
8
+ ### Fixes
9
+ - use startsWith for inbox note matching to prevent false matches
10
+
8
11
  ## 0.1.642 (2026-04-09)
9
12
 
10
13
  ### Features
package/engine.js CHANGED
@@ -795,7 +795,7 @@ async function spawnAgent(dispatchItem, config) {
795
795
  const _artToday = shared.dateStamp();
796
796
  const _artInboxDir = path.join(MINIONS_DIR, 'notes', 'inbox');
797
797
  let _artNotes = [];
798
- try { _artNotes = shared.safeReadDir(_artInboxDir).filter(f => f.includes(agentId) && f.includes(_artToday)); } catch {}
798
+ try { _artNotes = shared.safeReadDir(_artInboxDir).filter(f => f.startsWith(agentId + '-') && f.includes(_artToday)); } catch {}
799
799
 
800
800
  mutateJsonFileLocked(artWiPath, data => {
801
801
  if (!Array.isArray(data)) return data;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.643",
3
+ "version": "0.1.644",
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"