@yemi33/minions 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/routing.md +32 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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/routing.md ADDED
@@ -0,0 +1,32 @@
1
+ # Work Routing
2
+
3
+ How the engine decides who handles what. Parsed by engine.js — keep the table format exact.
4
+
5
+ ## Routing Table
6
+
7
+ <!-- FORMAT: | work_type | preferred_agent | fallback | -->
8
+ | Work Type | Preferred | Fallback |
9
+ |-----------|-----------|----------|
10
+ | implement | dallas | ralph |
11
+ | implement:large | rebecca | dallas |
12
+ | review | ripley | lambert |
13
+ | fix | _author_ | dallas |
14
+ | plan | ripley | rebecca |
15
+ | plan-to-prd | lambert | rebecca |
16
+ | explore | ripley | rebecca |
17
+ | test | dallas | ralph |
18
+ | ask | ripley | rebecca |
19
+ | verify | dallas | ralph |
20
+
21
+ Notes:
22
+ - `_author_` means route to the PR author
23
+ - `implement:large` is for items with `estimated_complexity: "large"`
24
+ - Engine falls back to any idle agent if both preferred and fallback are busy
25
+
26
+ ## Rules
27
+
28
+ 1. **Eager by default** — spawn all agents who can start work, not one at a time
29
+ 2. **No self-review** — author cannot review their own PR
30
+ 3. **Exploration gates implementation** — when exploring, finish before implementing
31
+ 4. **Implementation informs PRD** — Lambert reads build summaries before writing PRD
32
+ 5. **All rules in `notes.md` apply** — engine injects them into every playbook