@sylphx/flow 2.8.0 → 2.9.0

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @sylphx/flow
2
2
 
3
+ ## 2.9.0 (2025-12-17)
4
+
5
+ Add comprehensive SaaS review command suite with parallel worker delegation.
6
+
7
+ - `/saas-admin`: Admin platform review (RBAC, bootstrap, config, feature flags, ops)
8
+ - Updated `/saas-review`: All 8 workers run in parallel (domains + discovery)
9
+ - Clarified Task tool delegation pattern for worker spawning
10
+
11
+ ### 📚 Documentation
12
+
13
+ - **commands:** run all 8 workers in parallel (merge discovery into Phase 1) ([cd0afd6](https://github.com/SylphxAI/flow/commit/cd0afd630d6c0d4f751cec81cce4572b19bcbe9d))
14
+ - **commands:** clarify Task tool delegation pattern in saas-review ([2940cb0](https://github.com/SylphxAI/flow/commit/2940cb094fb3ce65b0af59f3c1541769576c1050))
15
+
3
16
  ## 2.8.0 (2025-12-17)
4
17
 
5
18
  ### ✨ Features
@@ -45,9 +45,16 @@ agent: coder
45
45
 
46
46
  ## Review Execution
47
47
 
48
- ### Phase 1: Domain Reviews (Parallel)
48
+ ### Phase 1: All Reviews (Parallel)
49
49
 
50
- Delegate each domain to a worker agent. Workers should review compliance with spec AND identify domain-specific improvement opportunities.
50
+ Spawn **all workers in parallel** using the Task tool. Each worker runs its slash command and returns findings.
51
+
52
+ **Delegation pattern:**
53
+ ```
54
+ Use Task tool with subagent_type: "Coder" for each worker.
55
+ Spawn ALL 8 workers in a single message (parallel execution).
56
+ Each worker prompt: "Run /{command} and return findings."
57
+ ```
51
58
 
52
59
  | Worker | Command | Focus |
53
60
  |--------|---------|-------|
@@ -58,16 +65,9 @@ Delegate each domain to a worker agent. Workers should review compliance with sp
58
65
  | Security | `/saas-security` | OWASP, privacy, consent, observability, operability |
59
66
  | Growth | `/saas-growth` | Onboarding, referral, retention, guidance |
60
67
  | Admin | `/saas-admin` | RBAC, bootstrap, config, feature flags, ops tooling |
61
-
62
- ### Phase 2: Strategic Discovery
63
-
64
- After domain reviews complete, run cross-domain strategic analysis:
65
-
66
- | Worker | Command | Focus |
67
- |--------|---------|-------|
68
68
  | Discovery | `/saas-discovery` | Feature opportunities, pricing optimization, competitive research |
69
69
 
70
- ### Phase 3: Final Gate (You)
70
+ ### Phase 2: Final Gate (You)
71
71
 
72
72
  Synthesize all domain findings and discovery insights:
73
73
 
@@ -171,8 +171,7 @@ Checklist with pass/fail for each gate
171
171
  ## Completion Criteria
172
172
 
173
173
  Complete only when:
174
- - [ ] All domain reviews finished
175
- - [ ] Discovery phase completed
174
+ - [ ] All 8 workers finished (domains + discovery)
176
175
  - [ ] All findings synthesized
177
176
  - [ ] Delivery gates verified
178
177
  - [ ] Integrated report produced
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/flow",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "description": "One CLI to rule them all. Unified orchestration layer for Claude Code, OpenCode, Cursor and all AI development tools. Auto-detection, auto-installation, auto-upgrade.",
5
5
  "type": "module",
6
6
  "bin": {