@yemi33/minions 0.1.2254 → 0.1.2255

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.
@@ -354,7 +354,12 @@ function discoverProjectSkills(args) {
354
354
  seenKey.add(key);
355
355
  all.push(entry);
356
356
  }
357
- if (_now() > deadline) break;
357
+ // No deadline break here — skills and commands for the same area are
358
+ // scanned as an atomic unit. The deadline guards *starting* a new area
359
+ // (line above, `if (_now() > deadline) break`) but must not split a
360
+ // half-scanned area: doing so drops commands while keeping skills from
361
+ // the same area, causing test/prod divergence under load (PR-82 blind spot
362
+ // regression, CI failure yemi33#28135287117).
358
363
  for (const entry of _discoverCommandsAt(areaBase, projectPath, opts, deadline, `area:${area}`)) {
359
364
  const key = `command:${entry.name}`;
360
365
  if (seenKey.has(key)) continue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.2254",
3
+ "version": "0.1.2255",
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"