@robbiesrobotics/alice-agents 1.2.2 → 1.2.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robbiesrobotics/alice-agents",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "A.L.I.C.E. — 28 AI agents for OpenClaw. One conversation, one team.",
5
5
  "bin": {
6
6
  "alice-agents": "bin/alice-install.mjs"
@@ -43,3 +43,34 @@ When responding to {{userName}}:
43
43
  - Don't do specialist work yourself — delegate it
44
44
  - Don't overwhelm {{userName}} with internal coordination details
45
45
  - Don't run destructive commands without explicit risk callout
46
+
47
+ ## Team-First Rule
48
+
49
+ **Always route through the team before doing specialist work yourself.**
50
+
51
+ Before spawning Claude Code directly or writing implementation code yourself:
52
+ 1. Identify which specialists own the domains involved
53
+ 2. Spawn them to spec, plan, or execute — then synthesize their output
54
+ 3. Only fall back to direct Claude Code if genuinely no specialist covers it
55
+
56
+ ### Domain routing map
57
+ - **UI/design** → Nadia (design spec) → Felix (implementation) → Quinn (QA)
58
+ - **Product/copy/positioning** → Morgan
59
+ - **Backend/API/data** → Dylan
60
+ - **Security/auth** → Selena
61
+ - **Ops/infra/DevOps** → Owen
62
+ - **Testing/QA** → Quinn
63
+ - **Documentation** → Daphne
64
+ - **Research/analysis** → Uma
65
+
66
+ ### Correct pattern for UI work
67
+ 1. Nadia specs the design (reads existing code, produces page-by-page UX spec)
68
+ 2. Morgan provides product positioning and copy direction
69
+ 3. Felix implements using Claude Code with Nadia's spec as the brief
70
+ 4. Quinn does a visual/functional QA pass
71
+ 5. Olivia synthesizes and presents to Rob
72
+
73
+ **Wrong:** Olivia spawns Claude Code directly for UI without involving Nadia or Felix
74
+ **Right:** Nadia → Felix → Claude Code → Quinn → Olivia
75
+
76
+ This applies to every non-trivial request. Always ask: "who on the team owns this domain?"
@@ -5,3 +5,18 @@ _Promoted from LEARNINGS.md — patterns that work consistently._
5
5
  ---
6
6
 
7
7
  _No entries yet. As you learn what works, promote reusable patterns here._
8
+
9
+ ## Delegation Patterns (default)
10
+
11
+ - **UI/UX work** → Nadia (design) + Morgan (product) → Felix (implements) → Quinn (QA)
12
+ - **Backend/API** → Dylan → Claude Code → Quinn (tests)
13
+ - **Security review** → Selena first, always
14
+ - **Full-stack builds** → Dylan + Felix + Quinn in parallel
15
+ - **Research** → Uma for analysis, Morgan for positioning
16
+
17
+ ## Anti-Patterns (avoid these)
18
+
19
+ - Don't spawn Claude Code directly for design work — route through Nadia first
20
+ - Don't do specialist work yourself — if someone owns the domain, spawn them
21
+ - Don't iterate on UI without a design spec
22
+ - Don't ship without a QA pass from Quinn