@yemi33/minions 0.1.890 → 0.1.892
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 +3 -1
- package/docs/verify-minions-2026-04-01-5.md +32 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.892 (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
|
+
- merge version bump PR immediately with --admin instead of --auto
|
|
9
10
|
- parse review verdict from agent output for GitHub self-approval (#912) (#918)
|
|
10
11
|
- verify PRD file exists before marking plan-to-prd done (#893) (#911)
|
|
11
12
|
- re-open done work items when PRD item reset to missing (#906) (#910)
|
|
@@ -21,6 +22,7 @@
|
|
|
21
22
|
- include started_at in done/error agent status so duration renders
|
|
22
23
|
|
|
23
24
|
### Other
|
|
25
|
+
- docs: add verification report for plan minions-2026-04-01-5 (#900)
|
|
24
26
|
- refactor: extract reopenWorkItem helper to shared.js
|
|
25
27
|
- simplify: fix CC regenerate-plan field name, remove dead revise-and-regenerate handler
|
|
26
28
|
- remove doc-chat plan auto-pause in favour of stale banner only
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Verification: Fix silent state-loss bugs in dispatch persistence, lifecycle races, and checkpoint handling
|
|
2
|
+
|
|
3
|
+
**Plan:** minions-2026-04-01-5.json
|
|
4
|
+
**Date:** 2026-04-11
|
|
5
|
+
**Verified by:** Ripley
|
|
6
|
+
|
|
7
|
+
## Results Summary
|
|
8
|
+
|
|
9
|
+
| Item | PR | Verdict |
|
|
10
|
+
|------|-----|---------|
|
|
11
|
+
| P-b3c9e4f6: needs-human-review skip filter | PR-55 (merged) | PASS |
|
|
12
|
+
| P-f7a2d8e1: dispatch persistence gate | PR-57 (merged) | PASS |
|
|
13
|
+
| P-d5e1a7b3: TOCTOU races in lifecycle | PR-56 (merged) | PASS |
|
|
14
|
+
| P-a8f4c2d9: fan-out checkpoint handling | PR-58 (merged) | REGRESSION |
|
|
15
|
+
| P-e6b0d3a5: checkpoint cleanup + _pendingReason | PR-60 (merged) | REGRESSION |
|
|
16
|
+
| P-c1d7f9e8: resolveWiPath export | PR-59 (closed) | NOT MERGED |
|
|
17
|
+
|
|
18
|
+
**Tests:** 1463 passed, 0 failed, 2 skipped
|
|
19
|
+
|
|
20
|
+
## Regressions
|
|
21
|
+
|
|
22
|
+
Two items (P-a8f4c2d9, P-e6b0d3a5) were correctly merged but their changes were
|
|
23
|
+
subsequently lost during engine.js refactors that rewrote `discoverCentralWorkItems`
|
|
24
|
+
to use a mutations Map pattern. The original direct-item-mutation code was not carried
|
|
25
|
+
forward.
|
|
26
|
+
|
|
27
|
+
Affected features:
|
|
28
|
+
1. Fan-out checkpoint.json reading (engine.js:2484-2487 missing `worktreePath`)
|
|
29
|
+
2. Checkpoint file deletion after consumption (no `unlinkSync` calls remain)
|
|
30
|
+
3. `_pendingReason` clearing on fan-out/single-agent dispatch
|
|
31
|
+
|
|
32
|
+
See full report in `prd/guides/verify-minions-2026-04-01-5.md` (runtime, gitignored).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.892",
|
|
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"
|