@yemi33/minions 0.1.1668 → 0.1.1669

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.1669 (2026-05-02)
4
+
5
+ ### Features
6
+ - gate pendingFix clear (#1964)
7
+
3
8
  ## 0.1.1668 (2026-05-01)
4
9
 
5
10
  ### Fixes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-01T23:20:43.938Z"
4
+ "cachedAt": "2026-05-02T00:02:47.106Z"
5
5
  }
@@ -1416,9 +1416,8 @@ function updatePrAfterFix(pr, project, source) {
1416
1416
  if (!target) return prs;
1417
1417
  // Never downgrade from approved — fix was dispatched but PR is already approved
1418
1418
  if (target.reviewStatus !== 'approved') target.reviewStatus = 'waiting';
1419
- // Always clear pendingFix — a fix dispatch (regardless of source) addresses all pending feedback
1420
- if (target.humanFeedback) target.humanFeedback.pendingFix = false;
1421
1419
  if (source === 'pr-human-feedback') {
1420
+ if (target.humanFeedback) target.humanFeedback.pendingFix = false;
1422
1421
  target.minionsReview = { ...target.minionsReview, note: 'Fixed human feedback, awaiting re-review', fixedAt: ts() };
1423
1422
  log('info', `Updated ${pr.id} → cleared humanFeedback.pendingFix, reset to waiting for re-review`);
1424
1423
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1668",
3
+ "version": "0.1.1669",
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"