@yemi33/minions 0.1.776 → 0.1.777
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 +5 -0
- package/engine/lifecycle.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/lifecycle.js
CHANGED
|
@@ -720,7 +720,7 @@ function syncPrsFromOutput(output, agentId, meta, config) {
|
|
|
720
720
|
|
|
721
721
|
// ─── Post-Completion Hooks ──────────────────────────────────────────────────
|
|
722
722
|
|
|
723
|
-
async function updatePrAfterReview(agentId, pr, project, config) {
|
|
723
|
+
async function updatePrAfterReview(agentId, pr, project, config, resultSummary) {
|
|
724
724
|
|
|
725
725
|
if (!pr?.id) return;
|
|
726
726
|
|
|
@@ -755,7 +755,7 @@ async function updatePrAfterReview(agentId, pr, project, config) {
|
|
|
755
755
|
target.minionsReview = {
|
|
756
756
|
reviewer: reviewerName,
|
|
757
757
|
reviewedAt: ts(),
|
|
758
|
-
note: completedEntry?.task || ''
|
|
758
|
+
note: resultSummary || completedEntry?.task || ''
|
|
759
759
|
};
|
|
760
760
|
updatedTarget = { ...pr, ...target };
|
|
761
761
|
return prs;
|
|
@@ -1592,7 +1592,7 @@ async function runPostCompletionHooks(dispatchItem, agentId, code, stdout, confi
|
|
|
1592
1592
|
}
|
|
1593
1593
|
}
|
|
1594
1594
|
|
|
1595
|
-
if (type === WORK_TYPE.REVIEW) await updatePrAfterReview(agentId, meta?.pr, meta?.project, config);
|
|
1595
|
+
if (type === WORK_TYPE.REVIEW) await updatePrAfterReview(agentId, meta?.pr, meta?.project, config, resultSummary);
|
|
1596
1596
|
if (type === WORK_TYPE.FIX) updatePrAfterFix(meta?.pr, meta?.project, meta?.source);
|
|
1597
1597
|
checkForLearnings(agentId, config.agents[agentId], dispatchItem.task);
|
|
1598
1598
|
if (effectiveSuccess) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.777",
|
|
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"
|