@yemi33/minions 0.1.1809 → 0.1.1811
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 +12 -2
- package/dashboard.js +540 -224
- package/docs/pr-review-fix-loop.md +2 -0
- package/engine/cli.js +15 -9
- package/engine/copilot-models.json +1 -1
- package/engine/dispatch.js +4 -10
- package/engine/lifecycle.js +11 -11
- package/engine/pipeline.js +146 -43
- package/engine/projects.js +15 -16
- package/engine/queries.js +3 -3
- package/engine/shared.js +161 -3
- package/engine.js +63 -34
- package/package.json +1 -1
- package/playbooks/fix.md +17 -6
- package/prompts/cc-system.md +7 -2
- package/prompts/doc-chat-system.md +15 -7
- package/routing.md +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1811 (2026-05-09)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
-
-
|
|
6
|
+
- centralize project source resolution (#2251)
|
|
7
|
+
|
|
8
|
+
## 0.1.1810 (2026-05-09)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
- make review fixes adversarial (#2239)
|
|
12
|
+
|
|
13
|
+
### Other
|
|
14
|
+
- Harden CC and doc-chat delegation
|
|
15
|
+
|
|
16
|
+
## 0.1.1808 (2026-05-08)
|
|
7
17
|
|
|
8
18
|
### Fixes
|
|
9
19
|
- Plan-to-PRD conversion can override explicit plan project with contextual project (#2235)
|