@yemi33/minions 0.1.755 → 0.1.756

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,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.755 (2026-04-09)
3
+ ## 0.1.756 (2026-04-09)
4
4
 
5
5
  ### Features
6
6
  - show branch strategy badge on PRD group header
7
7
 
8
8
  ### Fixes
9
+ - skip merged dependency branches instead of failing worktree setup
9
10
  - restore same thinking UX when switching back to processing tab
10
11
  - show thinking indicator when switching back to a processing tab
11
12
  - CC messages go to originating tab, not whichever tab is visible
package/engine.js CHANGED
@@ -454,7 +454,13 @@ async function spawnAgent(dispatchItem, config) {
454
454
  // Fetch all dependency branches in parallel (git fetches are independent)
455
455
  const fetchable = depBranches.filter(d => !_failedRefCache.has(d.branch));
456
456
  const unfetchable = depBranches.filter(d => _failedRefCache.has(d.branch));
457
- for (const { branch: depBranch } of unfetchable) {
457
+ const allPrsForDeps = unfetchable.length > 0 ? shared.getProjects(config).reduce((acc, p) => acc.concat(safeJson(shared.projectPrPath(p)) || []), []) : [];
458
+ for (const { branch: depBranch, prId } of unfetchable) {
459
+ const pr = allPrsForDeps.find(p => p.id === prId);
460
+ if (pr && (pr.status === 'merged' || pr.status === 'closed')) {
461
+ log('info', `Dependency ${depBranch} (${prId}) already merged — skipping, changes already in main`);
462
+ continue;
463
+ }
458
464
  log('warn', `Skipping dependency ${depBranch} — already failed to fetch this tick`);
459
465
  depMergeFailed = true;
460
466
  }
@@ -463,17 +469,26 @@ async function spawnAgent(dispatchItem, config) {
463
469
  execAsync(`git fetch origin "${depBranch}"`, { ..._gitOpts, cwd: rootDir }).then(() => depBranch)
464
470
  )
465
471
  );
472
+ const hasFetchFailures = fetchResults.some(r => r.status === 'rejected');
473
+ const allPrsForFetch = hasFetchFailures ? shared.getProjects(config).reduce((acc, p) => acc.concat(safeJson(shared.projectPrPath(p)) || []), []) : [];
466
474
  for (let i = 0; i < fetchResults.length; i++) {
467
475
  if (fetchResults[i].status === 'rejected') {
468
476
  const failedBranch = fetchable[i].branch;
477
+ const failedPrId = fetchable[i].prId;
478
+ const pr = allPrsForFetch.find(p => p.id === failedPrId);
479
+ if (pr && (pr.status === 'merged' || pr.status === 'closed')) {
480
+ log('info', `Dependency ${failedBranch} (${failedPrId}) already merged — skipping, changes already in main`);
481
+ continue;
482
+ }
469
483
  _failedRefCache.add(failedBranch);
470
484
  log('warn', `Failed to fetch dependency ${failedBranch}: ${fetchResults[i].reason?.message}`);
471
485
  depMergeFailed = true;
472
486
  }
473
487
  }
474
- // Merge fetched branches sequentially (merges modify the worktree)
488
+ // Merge successfully-fetched branches sequentially (merges modify the worktree)
489
+ const fetched = fetchable.filter((_, i) => fetchResults[i].status === 'fulfilled');
475
490
  if (!depMergeFailed) {
476
- for (const { branch: depBranch, prId } of fetchable) {
491
+ for (const { branch: depBranch, prId } of fetched) {
477
492
  try {
478
493
  await execAsync(`git merge "origin/${depBranch}" --no-edit`, { ..._gitOpts, cwd: worktreePath });
479
494
  log('info', `Merged dependency branch ${depBranch} (${prId}) into worktree ${branchName}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.755",
3
+ "version": "0.1.756",
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"