@yemi33/minions 0.1.622 → 0.1.623
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 +5 -0
- package/package.json +1 -1
- package/playbooks/fix.md +24 -22
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.623",
|
|
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/fix.md
CHANGED
|
@@ -31,36 +31,38 @@ Use subagents only for genuinely parallel, independent tasks. For sequential wor
|
|
|
31
31
|
|
|
32
32
|
2. Fix each issue listed above
|
|
33
33
|
|
|
34
|
-
3.
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
git commit -m "fix: address review feedback on {{pr_id}}"
|
|
38
|
-
git push
|
|
39
|
-
```
|
|
34
|
+
3. Handle merge conflicts if any:
|
|
35
|
+
- If `git pull` or the PR shows conflicts, resolve them in the worktree
|
|
36
|
+
- Prefer the PR branch changes, commit the resolution
|
|
40
37
|
|
|
41
|
-
|
|
38
|
+
## Build & Test (MANDATORY before pushing)
|
|
42
39
|
|
|
43
|
-
|
|
44
|
-
If you encounter merge conflicts (e.g., during `git pull` or when the PR shows conflicts):
|
|
45
|
-
1. Resolve conflicts in the worktree, preferring the PR branch changes. Commit the resolution.
|
|
40
|
+
Before pushing, verify the fix doesn't break anything:
|
|
46
41
|
|
|
47
|
-
|
|
42
|
+
1. **Build** the project using its build system (check CLAUDE.md, README, package.json, Makefile). If the build fails, fix it before proceeding.
|
|
43
|
+
2. **Run the full test suite** using whatever command the project specifies (check CLAUDE.md, agent.md, README, or package.json scripts).
|
|
44
|
+
3. If any tests fail due to your changes, fix them before pushing.
|
|
45
|
+
4. If the build fails 3 times, report the errors in your PR comment and stop.
|
|
46
|
+
5. Do NOT push code that breaks existing tests or the build.
|
|
48
47
|
|
|
49
|
-
|
|
50
|
-
- pullRequestId: `{{pr_number}}`
|
|
51
|
-
- content: Explain what was fixed, reference each review finding
|
|
52
|
-
- Sign: `Fixed by Minions ({{agent_name}} — {{agent_role}})`
|
|
48
|
+
## Push & Comment on PR
|
|
53
49
|
|
|
54
|
-
|
|
50
|
+
Only after build and tests pass:
|
|
55
51
|
|
|
56
|
-
|
|
52
|
+
```bash
|
|
53
|
+
git add <specific files>
|
|
54
|
+
git commit -m "fix: address review feedback on {{pr_id}}"
|
|
55
|
+
git push
|
|
56
|
+
```
|
|
57
57
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
58
|
+
Do NOT remove the worktree — the engine handles cleanup automatically.
|
|
59
|
+
|
|
60
|
+
{{pr_comment_instructions}}
|
|
61
|
+
- pullRequestId: `{{pr_number}}`
|
|
62
|
+
- content: Explain what was fixed, reference each review finding, include build/test status
|
|
63
|
+
- Sign: `Fixed by Minions ({{agent_name}} — {{agent_role}})`
|
|
62
64
|
|
|
63
65
|
## When to Stop
|
|
64
66
|
|
|
65
|
-
Your task is complete once you have: (1)
|
|
67
|
+
Your task is complete once you have: (1) confirmed build and tests pass, (2) pushed the fix, and (3) commented on the PR. Do NOT continue exploring unrelated code or making additional improvements. Stop immediately.
|
|
66
68
|
|