@yemi33/minions 0.1.216 → 0.1.217

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.217 (2026-04-02)
4
+
5
+ ### Engine
6
+ - engine/preflight.js
7
+
3
8
  ## 0.1.216 (2026-04-02)
4
9
 
5
10
  ### Engine
@@ -222,12 +222,13 @@ function doctor(minionsHome) {
222
222
 
223
223
  // Check playbooks
224
224
  const playbooksDir = path.join(minionsHome, 'playbooks');
225
- const required = ['implement.md', 'review.md', 'fix.md'];
226
- const missing = required.filter(f => !fs.existsSync(path.join(playbooksDir, f)));
227
- if (missing.length === 0) {
228
- runtimeResults.push({ name: 'Playbooks', ok: true, message: `${required.length} required playbooks present` });
225
+ // Discover all .md playbooks in the directory — don't hardcode
226
+ let playbooks = [];
227
+ try { playbooks = fs.readdirSync(playbooksDir).filter(f => f.endsWith('.md')); } catch { /* dir may not exist */ }
228
+ if (playbooks.length > 0) {
229
+ runtimeResults.push({ name: 'Playbooks', ok: true, message: `${playbooks.length} playbooks found` });
229
230
  } else {
230
- runtimeResults.push({ name: 'Playbooks', ok: false, message: `missing: ${missing.join(', ')} — run: minions init --force` });
231
+ runtimeResults.push({ name: 'Playbooks', ok: false, message: 'no playbooks found in playbooks/ — run: minions init --force' });
231
232
  }
232
233
 
233
234
  // Check port 7331 availability (only if dashboard isn't running)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.216",
3
+ "version": "0.1.217",
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"