@yemi33/minions 0.1.625 → 0.1.626
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/work-item.md +13 -17
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.626",
|
|
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/work-item.md
CHANGED
|
@@ -26,39 +26,35 @@ Keep branch names lowercase, use hyphens, max 60 chars.
|
|
|
26
26
|
2. **Navigate** to the correct project directory: `{{project_path}}`
|
|
27
27
|
3. You are already in a worktree on branch `{{branch_name}}`. Do NOT create additional worktrees.
|
|
28
28
|
4. **Implement** the changes
|
|
29
|
-
5. **Build
|
|
30
|
-
6. **
|
|
29
|
+
5. **Build** — using the repo's build system (check CLAUDE.md, package.json, README, Makefile). If it fails, fix and retry (up to 3 times).
|
|
30
|
+
6. **Run the full test suite** — find the test command from project docs. Fix any regressions you introduced. Do NOT push with failing tests.
|
|
31
|
+
7. **Run any other checks** the repo defines (linting, type checking, formatting)
|
|
32
|
+
8. **Commit and push** (only after build and tests pass):
|
|
31
33
|
```bash
|
|
32
34
|
git add <specific files>
|
|
33
35
|
git commit -m "feat({{item_id}}): <description>"
|
|
34
36
|
git push -u origin {{branch_name}}
|
|
35
37
|
```
|
|
36
|
-
|
|
38
|
+
9. **Create a PR:**
|
|
37
39
|
{{pr_create_instructions}}
|
|
38
40
|
- sourceRefName: `refs/heads/feat/{{item_id}}-<short-desc>`
|
|
39
41
|
- targetRefName: `refs/heads/{{main_branch}}`
|
|
40
42
|
- title: `feat({{item_id}}): <description>`
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
{ "id": "PR-<number>", "title": "...", "agent": "{{agent_name}}", "branch": "...", "reviewStatus": "pending", "status": "active", "created": "<date>", "url": "<pr-url>", "prdItems": ["{{item_id}}"] }
|
|
46
|
-
```
|
|
47
|
-
10. Do NOT remove the worktree — the engine handles cleanup automatically.
|
|
43
|
+
10. **Post implementation notes** as a PR thread comment:
|
|
44
|
+
{{pr_comment_instructions}}
|
|
45
|
+
|
|
46
|
+
Do NOT remove the worktree — the engine handles cleanup automatically.
|
|
48
47
|
|
|
49
48
|
## After Completion
|
|
50
49
|
|
|
51
50
|
Write your findings to: `{{team_root}}/notes/inbox/{{agent_id}}-{{item_id}}-{{date}}.md`
|
|
52
51
|
|
|
53
|
-
|
|
54
|
-
## Rules
|
|
55
|
-
- Do not checkout branches in the main working tree — use worktrees
|
|
56
|
-
- Use the repo host's MCP tools for PR creation — check available MCP tools before starting
|
|
57
|
-
- Use PowerShell for build commands on Windows if applicable
|
|
58
|
-
- If you discover a repeatable workflow, output it as a ```skill block (the engine auto-extracts it to ~/.claude/skills/)
|
|
59
|
-
|
|
60
52
|
## Handling Merge Conflicts
|
|
61
53
|
If you encounter merge conflicts during push or PR creation:
|
|
62
54
|
1. Resolve conflicts in the worktree, preferring your changes
|
|
63
55
|
2. Commit the resolution
|
|
64
56
|
3. Push again
|
|
57
|
+
|
|
58
|
+
## When to Stop
|
|
59
|
+
|
|
60
|
+
Your task is complete once you have: (1) confirmed build and tests pass, (2) pushed your branch, and (3) created the PR. Do NOT continue beyond the task description. Stop immediately.
|