@yemi33/minions 0.1.783 → 0.1.784

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,10 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.783 (2026-04-10)
3
+ ## 0.1.784 (2026-04-10)
4
4
 
5
5
  ### Features
6
6
  - cap review→fix cycles at evalMaxIterations (default 3)
7
7
 
8
+ ### Fixes
9
+ - don't overwrite approval with 'waiting' when platform API lags
10
+
8
11
  ## 0.1.782 (2026-04-10)
9
12
 
10
13
  ### Features
@@ -730,7 +730,10 @@ async function updatePrAfterReview(agentId, pr, project, config, resultSummary)
730
730
  const completedEntry = (dispatch.completed || []).find(d => d.agent === agentId && d.type === 'review');
731
731
 
732
732
  // Check actual review status from the platform (agent may have approved or requested changes)
733
- let postReviewStatus = 'waiting';
733
+ // Default to 'pending' (not 'waiting') — if platform hasn't propagated the vote yet,
734
+ // 'pending' lets the next poll cycle pick it up. 'waiting' would trigger the awaitingReReview
735
+ // gate and block the PR until the fix→re-review flow runs.
736
+ let postReviewStatus = 'pending';
734
737
  try {
735
738
  const projectObj = project || shared.getProjects(config)[0];
736
739
  if (projectObj) {
@@ -739,7 +742,6 @@ async function updatePrAfterReview(agentId, pr, project, config, resultSummary)
739
742
  ? require('./github').checkLiveReviewStatus
740
743
  : require('./ado').checkLiveReviewStatus;
741
744
  const liveStatus = await checkFn(pr, projectObj);
742
- // Use live status only if it's a decisive verdict (not 'pending' — review may not have propagated yet)
743
745
  if (liveStatus && liveStatus !== 'pending') postReviewStatus = liveStatus;
744
746
  }
745
747
  } catch (e) { log('warn', `Post-review status check for ${pr.id}: ${e.message}`); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.783",
3
+ "version": "0.1.784",
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"