@yemi33/minions 0.1.166 → 0.1.167

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,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.167 (2026-04-02)
4
+
5
+ ### Engine
6
+ - engine.js
7
+
8
+ ### Other
9
+ - CLAUDE.md
10
+ - minions.js
11
+
3
12
  ## 0.1.166 (2026-04-02)
4
13
 
5
14
  ### Engine
package/engine.js CHANGED
@@ -787,8 +787,7 @@ function detectDependencyCycles(items) {
787
787
  // writeInboxAlert — now in engine/dispatch.js
788
788
 
789
789
  // Reconciles work items against known PRs.
790
- // Primary linkage comes from prdItems in pull-requests.json; fallback linkage
791
- // uses engine/pr-links.json so matching does not depend on branch/title parsing.
790
+ // Primary linkage comes from prdItems in pull-requests.json (via getPrLinks()).
792
791
  // onlyIds: if provided, only items whose ID is in this Set are eligible.
793
792
  function reconcileItemsWithPrs(items, allPrs, { onlyIds } = {}) {
794
793
  const prLinks = shared.getPrLinks();
package/minions.js CHANGED
@@ -480,7 +480,7 @@ function nukeMinions() {
480
480
  console.log('\n Cleaning runtime state...');
481
481
  const runtimeDirs = ['projects', 'plans', 'prd', 'knowledge', 'skills', 'notes', 'identity'];
482
482
  const runtimeFiles = ['config.json', 'work-items.json', 'notes.md', 'routing.md'];
483
- const engineRuntimeFiles = ['control.json', 'dispatch.json', 'log.json', 'metrics.json', 'cooldowns.json', 'pr-links.json', 'kb-checkpoint.json', 'cc-session.json', 'doc-sessions.json'];
483
+ const engineRuntimeFiles = ['control.json', 'dispatch.json', 'log.json', 'metrics.json', 'cooldowns.json', 'kb-checkpoint.json', 'cc-session.json', 'doc-sessions.json'];
484
484
 
485
485
  for (const dir of runtimeDirs) {
486
486
  const p = path.join(MINIONS_HOME, dir);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.166",
3
+ "version": "0.1.167",
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"