@yemi33/minions 0.1.131 → 0.1.133

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,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.133 (2026-04-01)
4
+
5
+ ### Dashboard
6
+ - dashboard/pages/plans.html
7
+
8
+ ## 0.1.132 (2026-04-01)
9
+
10
+ ### Engine
11
+ - engine.js
12
+ - engine/lifecycle.js
13
+
3
14
  ## 0.1.131 (2026-04-01)
4
15
 
5
16
  ### Engine
@@ -6,6 +6,6 @@
6
6
  </section>
7
7
  <section class="prd-panel" id="prd-section">
8
8
  <h2>PRD <span class="count" id="prd-progress-count">0%</span> <span id="prd-badge"></span> <span id="auto-approve-badge"></span> <span id="archive-btns"></span></h2>
9
- <div id="prd-content"><p class="prd-pending">No PRD found.</p></div>
9
+ <div id="prd-content"><p class="prd-pending">No PRD found. <span style="color:var(--muted);font-size:11px">PRDs are auto-generated when you execute a plan.</span></p></div>
10
10
  <div id="prd-progress-content" style="margin-top:12px"></div>
11
11
  </section>
@@ -653,6 +653,7 @@ function updatePrAfterReview(agentId, pr, project) {
653
653
 
654
654
  // Set reviewStatus to 'waiting' (single source of truth — synced from ADO/GitHub votes on next poll)
655
655
  target.reviewStatus = 'waiting';
656
+ target._reviewedOnce = true;
656
657
  target.minionsReview = {
657
658
  reviewer: reviewerName,
658
659
  reviewedAt: ts(),
package/engine.js CHANGED
@@ -1248,7 +1248,7 @@ function discoverFromPrs(config, project) {
1248
1248
 
1249
1249
  // PRs needing review: pending or waiting (review dispatched but no verdict yet)
1250
1250
  const autoReview = config.engine?.autoReview !== false;
1251
- const needsReview = autoReview && (reviewStatus === 'pending' || reviewStatus === 'waiting');
1251
+ const needsReview = autoReview && reviewStatus === 'pending';
1252
1252
  if (needsReview) {
1253
1253
  const key = `review-${project?.name || 'default'}-${pr.id}`;
1254
1254
  if (isAlreadyDispatched(key) || isOnCooldown(key, cooldownMs)) continue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.131",
3
+ "version": "0.1.133",
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"