@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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.777 (2026-04-10)
4
+
5
+ ### Fixes
6
+ - pass reviewer's actual output to fix agent, not just task label
7
+
3
8
  ## 0.1.776 (2026-04-10)
4
9
 
5
10
  ### Features
@@ -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.776",
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"