orchestrix 16.1.1 → 16.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.
@@ -189,19 +189,57 @@ This creates a tmux session with 4 windows:
189
189
 
190
190
  ### HANDOFF Auto-Collaboration Flow
191
191
 
192
+ The HANDOFF chain depends on the story's **test_design_level** (set by SM based on complexity):
193
+
194
+ #### Standard/Comprehensive Stories (most stories)
195
+
192
196
  ```
193
197
  SM (win 1) *draft → Create Story
194
198
  ↓ 🎯 HANDOFF TO architect: *review {story_id}
195
199
  Architect (win 0) → Technical review
200
+ ↓ 🎯 HANDOFF TO qa: *test-design {story_id}
201
+ QA (win 3) → Design test scenarios & strategy BEFORE development
196
202
  ↓ 🎯 HANDOFF TO dev: *develop-story {story_id}
197
- Dev (win 2) → Code implementation
203
+ Dev (win 2) → Code implementation (guided by QA's test design)
198
204
  ↓ 🎯 HANDOFF TO qa: *review {story_id}
199
- QA (win 3) → Code review
200
- ↓ 🎯 HANDOFF TO sm: *draft (next Story)
205
+ QA (win 3) → Review implementation against test design
206
+ pass → 🎯 HANDOFF TO sm: *draft (next Story)
207
+ ↓ fail → 🎯 HANDOFF TO dev: *apply-qa-fixes {story_id}
201
208
  SM (win 1) → Create next Story
202
209
  ↓ ... loop until all stories complete
203
210
  ```
204
211
 
212
+ #### Simple Stories (low complexity, no security concerns)
213
+
214
+ ```
215
+ SM (win 1) *draft → Create Story
216
+ ↓ 🎯 HANDOFF TO architect: *review {story_id}
217
+ Architect (win 0) → Technical review
218
+ ↓ 🎯 HANDOFF TO dev: *develop-story {story_id} (skip test-design)
219
+ Dev (win 2) → Code implementation
220
+ ↓ 🎯 HANDOFF TO qa: *review {story_id}
221
+ QA (win 3) → Review implementation
222
+ ↓ ... same as above
223
+ ```
224
+
225
+ #### Quick Mode Stories (trivial, skip Architect + test-design)
226
+
227
+ ```
228
+ SM (win 1) *draft → Create Story (mode=quick)
229
+ ↓ 🎯 HANDOFF TO dev: *quick-develop {story_id}
230
+ Dev (win 2) → Quick implementation
231
+ ↓ 🎯 HANDOFF TO qa: *quick-verify {story_id}
232
+ QA (win 3) → Lightweight verification
233
+ ↓ ... next story
234
+ ```
235
+
236
+ #### QA Feedback Loops
237
+
238
+ When QA finds issues:
239
+ - **Code issues** → `🎯 HANDOFF TO dev: *apply-qa-fixes {story_id}` → Dev fixes → QA re-reviews
240
+ - **Architecture concerns** → `🎯 HANDOFF TO architect: *review-escalation {story_id}` → Architect resolves → back to Dev
241
+ - **Story issues** → `🎯 HANDOFF TO sm: *revise-story {story_id}` → SM revises → restart from Architect
242
+
205
243
  ### Monitoring
206
244
 
207
245
  ```bash
@@ -453,16 +491,16 @@ For unfamiliar projects, start with: `/o architect` → `*document-project`
453
491
 
454
492
  | Agent | ID | Commands | Output |
455
493
  |-------|----|----------|--------|
456
- | SM | `sm` | `*draft`, `*draft-bugfix {bug}` | `docs/stories/*.md` |
457
- | Architect | `architect` | `*review {story_id}` | Technical review |
458
- | Dev | `dev` | `*develop-story {id}`, `*solo "{desc}"`, `*quick-fix "{desc}"` | Code + git commit |
459
- | QA | `qa` | `*review {story_id}`, `*smoke-test {epic_id}` | Review report |
494
+ | SM | `sm` | `*draft`, `*draft-bugfix {bug}`, `*revise-story {id}`, `*apply-proposal {id}` | `docs/stories/*.md` |
495
+ | Architect | `architect` | `*review {id}`, `*review-escalation {id}` | Technical review |
496
+ | QA | `qa` | `*test-design {id}`, `*review {id}`, `*quick-verify {id}`, `*smoke-test {epic}` | Test design / review report |
497
+ | Dev | `dev` | `*develop-story {id}`, `*quick-develop {id}`, `*apply-qa-fixes {id}`, `*solo "{desc}"`, `*quick-fix "{desc}"` | Code + git commit |
460
498
 
461
499
  ### Management Agents
462
500
 
463
501
  | Agent | ID | Commands |
464
502
  |-------|----|----------|
465
- | PO | `po` | `*route-change` |
503
+ | PO | `po` | `*route-change`, `*execute-checklist`, `*shard` |
466
504
 
467
505
 
468
506
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestrix",
3
- "version": "16.1.1",
3
+ "version": "16.1.2",
4
4
  "description": "Install Orchestrix multi-agent infrastructure into any project. One command: npx orchestrix install",
5
5
  "bin": {
6
6
  "orchestrix": "bin/o8x.js"