@yemi33/minions 0.1.987 → 0.1.988

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.987 (2026-04-15)
3
+ ## 0.1.988 (2026-04-15)
4
4
 
5
5
  ### Features
6
6
  - complete watches management — new conditions, CC actions, PROJECTS fix (#1103)
@@ -909,7 +909,9 @@ async function updatePrAfterReview(agentId, pr, project, config, resultSummary)
909
909
  reviewer: reviewerName,
910
910
  reviewedAt: ts(),
911
911
  note: resultSummary || completedEntry?.task || '',
912
- ...(target.minionsReview?.fixedAt ? { fixedAt: target.minionsReview.fixedAt } : {}),
912
+ // Preserve fixedAt across re-reviews so the poller guard knows a fix was pushed.
913
+ // Drop it when reviewer requests changes again — that starts a new fix cycle.
914
+ ...(target.minionsReview?.fixedAt && postReviewStatus !== 'changes-requested' ? { fixedAt: target.minionsReview.fixedAt } : {}),
913
915
  };
914
916
  updatedTarget = { ...pr, ...target };
915
917
  return prs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.987",
3
+ "version": "0.1.988",
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"