@yemi33/minions 0.1.694 → 0.1.695
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 +2 -1
- package/package.json +1 -1
- package/playbooks/implement.md +1 -1
- package/playbooks/verify.md +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.695 (2026-04-09)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
+
- verify/implement playbooks must include PR URL in final message
|
|
6
7
|
- ADO build error log fallback when targetUrl lacks buildId
|
|
7
8
|
- syncPrsFromOutput missed PRs mentioned in assistant text blocks
|
|
8
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.695",
|
|
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"
|
package/playbooks/implement.md
CHANGED
|
@@ -81,4 +81,4 @@ Include build/test status and run instructions in the PR description. If the pro
|
|
|
81
81
|
|
|
82
82
|
## When to Stop
|
|
83
83
|
|
|
84
|
-
Your task is complete once you have: (1) confirmed build and tests pass, (2) pushed your branch, and (3) created the PR.
|
|
84
|
+
Your task is complete once you have: (1) confirmed build and tests pass, (2) pushed your branch, and (3) created the PR. Your final message MUST include the PR URL so the engine can track it. Stop immediately after.
|
package/playbooks/verify.md
CHANGED
|
@@ -153,4 +153,13 @@ Use subagents only for genuinely parallel, independent tasks (e.g., building sep
|
|
|
153
153
|
|
|
154
154
|
## When to Stop
|
|
155
155
|
|
|
156
|
-
Your task is complete once you have: (1) merged dependency branches, (2) built and tested, (3) written the verification report to both locations, and (4) created the E2E PR(s).
|
|
156
|
+
Your task is complete once you have: (1) merged dependency branches, (2) built and tested, (3) written the verification report to both locations, and (4) created the E2E PR(s).
|
|
157
|
+
|
|
158
|
+
**IMPORTANT: Your final message MUST include the E2E PR URL(s) so the engine can track them.** Example final message:
|
|
159
|
+
|
|
160
|
+
```
|
|
161
|
+
Verification complete. E2E PR created: https://github.com/org/repo/pull/123
|
|
162
|
+
Testing guide saved to prd/guides/verify-plan-name.md
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
Stop after confirming the PR was created.
|