@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 +1 -1
- package/engine/lifecycle.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/lifecycle.js
CHANGED
|
@@ -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
|
-
|
|
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.
|
|
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"
|