speccrew 0.1.7 → 0.1.8
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.
|
@@ -128,11 +128,10 @@ Based on platform types in techs-manifest:
|
|
|
128
128
|
- `desktop-*` → dispatch `speccrew-sd-desktop`
|
|
129
129
|
- `backend-*` → dispatch `speccrew-sd-backend`
|
|
130
130
|
|
|
131
|
-
### 5.2 Single Feature Spec
|
|
131
|
+
### 5.2 Single Feature Spec + Single Platform
|
|
132
132
|
|
|
133
|
-
|
|
134
|
-
-
|
|
135
|
-
- Backend skill path: `speccrew-sd-backend/SKILL.md`
|
|
133
|
+
When there is only one Feature Spec and one platform, call skill directly with parameters:
|
|
134
|
+
- Skill path: determined by platform type mapping (see 5.1)
|
|
136
135
|
- Pass context:
|
|
137
136
|
- `platform_id`: Platform identifier from techs-manifest
|
|
138
137
|
- `feature_spec_path`: Path to Feature Spec document
|
|
@@ -140,29 +139,37 @@ Call skill directly with parameters:
|
|
|
140
139
|
- `techs_paths`: Relevant techs knowledge paths
|
|
141
140
|
- `framework_decisions`: Framework decisions from Phase 3
|
|
142
141
|
|
|
143
|
-
### 5.3
|
|
144
|
-
|
|
145
|
-
When multiple
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
-
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
-
|
|
142
|
+
### 5.3 Parallel Execution (Feature × Platform)
|
|
143
|
+
|
|
144
|
+
When multiple Feature Specs and/or multiple platforms exist, create a worker matrix of **Feature × Platform** and invoke `speccrew-task-worker` agents in parallel:
|
|
145
|
+
|
|
146
|
+
**Worker Matrix:**
|
|
147
|
+
|
|
148
|
+
| | Platform 1 (web-vue) | Platform 2 (backend-spring) | Platform 3 (mobile-uniapp) |
|
|
149
|
+
|---|---|---|---|
|
|
150
|
+
| Feature Spec A | Worker 1 | Worker 2 | Worker 3 |
|
|
151
|
+
| Feature Spec B | Worker 4 | Worker 5 | Worker 6 |
|
|
152
|
+
|
|
153
|
+
Each worker receives:
|
|
154
|
+
- `skill_name`: Per-platform design skill based on platform type (see 5.1)
|
|
155
|
+
- `context`:
|
|
156
|
+
- `platform_id`: Platform identifier from techs-manifest
|
|
157
|
+
- `feature_spec_path`: Path to ONE Feature Spec document (not all)
|
|
158
|
+
- `api_contract_path`: API Contract document path
|
|
159
|
+
- `techs_knowledge_paths`: Techs knowledge paths for this platform
|
|
160
|
+
- `framework_decisions`: Framework decisions from Phase 3
|
|
161
|
+
- `output_base_path`: Path to `03.system-design/` directory
|
|
162
|
+
|
|
163
|
+
**Parallel execution example** (2 features × 3 platforms = 6 workers):
|
|
164
|
+
- Worker 1: speccrew-sd-frontend for Feature A on web-vue → 03.system-design/web-vue/
|
|
165
|
+
- Worker 2: speccrew-sd-backend for Feature A on backend-spring → 03.system-design/backend-spring/
|
|
166
|
+
- Worker 3: speccrew-sd-mobile for Feature A on mobile-uniapp → 03.system-design/mobile-uniapp/
|
|
167
|
+
- Worker 4: speccrew-sd-frontend for Feature B on web-vue → 03.system-design/web-vue/
|
|
168
|
+
- Worker 5: speccrew-sd-backend for Feature B on backend-spring → 03.system-design/backend-spring/
|
|
169
|
+
- Worker 6: speccrew-sd-mobile for Feature B on mobile-uniapp → 03.system-design/mobile-uniapp/
|
|
170
|
+
|
|
171
|
+
All workers execute simultaneously to maximize efficiency.
|
|
172
|
+
Wait for all workers to complete before proceeding to Phase 6.
|
|
166
173
|
|
|
167
174
|
## Phase 6: Joint Confirmation
|
|
168
175
|
|