@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 +11 -0
- package/dashboard/pages/plans.html +1 -1
- package/engine/lifecycle.js +1 -0
- package/engine.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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>
|
package/engine/lifecycle.js
CHANGED
|
@@ -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 &&
|
|
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.
|
|
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"
|