@yemi33/minions 0.1.877 → 0.1.878

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.877 (2026-04-11)
3
+ ## 0.1.878 (2026-04-11)
4
4
 
5
5
  ### Features
6
6
  - add 13 missing CC action types for full dashboard parity
7
7
 
8
8
  ### Fixes
9
+ - delete .backup sidecar when archiving PRD
9
10
  - CC action bugs + security guard on generic fallback
10
11
  - reset central work-items.json on agent kill (closes #890) (#891)
11
12
  - include started_at in done/error agent status so duration renders
@@ -351,6 +351,11 @@ function archivePlan(planFile, plan, projects, config) {
351
351
  fs.renameSync(planPath, path.join(prdArchiveDir, planFile));
352
352
  log('info', `Archived completed PRD: prd/archive/${planFile}`);
353
353
  }
354
+ // Remove .backup sidecar — if left behind, safeJson() would restore the pre-completion
355
+ // snapshot (status: approved, no _completionNotified) on engine restart, re-triggering
356
+ // plan completion and spawning duplicate verify tasks for already-archived plans.
357
+ const backupPath = planPath + '.backup';
358
+ if (fs.existsSync(backupPath)) fs.unlinkSync(backupPath);
354
359
  } catch (err) {
355
360
  log('warn', `Failed to archive PRD ${planFile}: ${err.message}`);
356
361
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.877",
3
+ "version": "0.1.878",
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"