speccrew 0.5.9 → 0.5.11
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/.speccrew/agents/speccrew-feature-designer.md +67 -0
- package/.speccrew/agents/speccrew-product-manager.md +69 -0
- package/.speccrew/agents/speccrew-system-designer.md +77 -0
- package/.speccrew/agents/speccrew-system-developer.md +311 -8
- package/.speccrew/agents/speccrew-task-worker.md +34 -0
- package/.speccrew/agents/speccrew-team-leader.md +84 -0
- package/.speccrew/agents/speccrew-test-manager.md +27 -0
- package/.speccrew/skills/{speccrew-dev-desktop → speccrew-dev-desktop-electron}/SKILL.md +38 -50
- package/.speccrew/skills/{speccrew-dev-desktop → speccrew-dev-desktop-electron}/templates/TASK-RECORD-TEMPLATE.md +14 -28
- package/.speccrew/skills/speccrew-dev-desktop-tauri/SKILL.md +341 -0
- package/.speccrew/skills/speccrew-dev-desktop-tauri/templates/TASK-RECORD-TEMPLATE.md +145 -0
- package/.speccrew/skills/speccrew-dev-review-backend/SKILL.md +212 -0
- package/.speccrew/skills/speccrew-dev-review-backend/templates/REVIEW-REPORT-TEMPLATE.md +94 -0
- package/.speccrew/skills/speccrew-dev-review-desktop/SKILL.md +181 -0
- package/.speccrew/skills/speccrew-dev-review-desktop/templates/REVIEW-REPORT-TEMPLATE.md +90 -0
- package/.speccrew/skills/speccrew-dev-review-frontend/SKILL.md +177 -0
- package/.speccrew/skills/speccrew-dev-review-frontend/templates/REVIEW-REPORT-TEMPLATE.md +83 -0
- package/.speccrew/skills/speccrew-dev-review-mobile/SKILL.md +181 -0
- package/.speccrew/skills/speccrew-dev-review-mobile/templates/REVIEW-REPORT-TEMPLATE.md +90 -0
- package/docs/GETTING-STARTED.ar.md +249 -176
- package/docs/GETTING-STARTED.bn.md +108 -412
- package/docs/GETTING-STARTED.bs.md +103 -407
- package/docs/GETTING-STARTED.da.md +267 -190
- package/docs/GETTING-STARTED.de.md +190 -115
- package/docs/GETTING-STARTED.el.md +245 -169
- package/docs/GETTING-STARTED.en.md +97 -22
- package/docs/GETTING-STARTED.es.md +179 -104
- package/docs/GETTING-STARTED.fr.md +191 -116
- package/docs/GETTING-STARTED.it.md +233 -156
- package/docs/GETTING-STARTED.ja.md +242 -167
- package/docs/GETTING-STARTED.ko.md +211 -136
- package/docs/GETTING-STARTED.md +97 -22
- package/docs/GETTING-STARTED.no.md +86 -417
- package/docs/GETTING-STARTED.pl.md +213 -135
- package/docs/GETTING-STARTED.pt-BR.md +94 -396
- package/docs/GETTING-STARTED.ru.md +241 -162
- package/docs/GETTING-STARTED.th.md +104 -405
- package/docs/GETTING-STARTED.tr.md +223 -144
- package/docs/GETTING-STARTED.uk.md +273 -194
- package/docs/GETTING-STARTED.vi.md +98 -399
- package/docs/GETTING-STARTED.zh-TW.md +213 -138
- package/lib/commands/init.js +18 -0
- package/package.json +1 -1
- package/.speccrew/skills/speccrew-dev-review/SKILL.md +0 -451
|
@@ -62,7 +62,82 @@ Supported IDEs: `qoder`, `cursor`, `claude`, `codex`
|
|
|
62
62
|
|
|
63
63
|
---
|
|
64
64
|
|
|
65
|
-
## 2.
|
|
65
|
+
## 2. Your First 5 Minutes
|
|
66
|
+
|
|
67
|
+
After running `speccrew init`, follow these steps to get productive immediately:
|
|
68
|
+
|
|
69
|
+
### Step 1: Choose Your IDE
|
|
70
|
+
|
|
71
|
+
| IDE | Init Command | Best For |
|
|
72
|
+
|-----|-------------|----------|
|
|
73
|
+
| **Qoder** (Recommended) | `speccrew init --ide qoder` | Full agent orchestration, parallel workers |
|
|
74
|
+
| **Cursor** | `speccrew init --ide cursor` | Composer-based workflows |
|
|
75
|
+
| **Claude Code** | `speccrew init --ide claude` | CLI-first development |
|
|
76
|
+
| **Codex** | `speccrew init --ide codex` | OpenAI ecosystem integration |
|
|
77
|
+
|
|
78
|
+
### Step 2: Initialize Knowledge Base (Recommended)
|
|
79
|
+
|
|
80
|
+
For existing projects, initialize knowledge base first so agents understand your codebase:
|
|
81
|
+
|
|
82
|
+
```
|
|
83
|
+
@speccrew-team-leader Initialize technical knowledge base
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Then:
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
@speccrew-team-leader Initialize business knowledge base
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### Step 3: Start Your First Task
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
@speccrew-product-manager I have a new requirement: [describe your feature]
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
> **Tip**: If unsure what to do, just say `@speccrew-team-leader Help me get started` — the Team Leader will auto-detect your project status and guide you.
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## 3. Quick Decision Tree
|
|
103
|
+
|
|
104
|
+
Not sure what to do? Find your scenario below:
|
|
105
|
+
|
|
106
|
+
- **I have a new feature requirement**
|
|
107
|
+
→ `@speccrew-product-manager I have a new requirement: [describe your feature]`
|
|
108
|
+
|
|
109
|
+
- **I want to scan existing project knowledge**
|
|
110
|
+
→ `@speccrew-team-leader initialize technical knowledge base`
|
|
111
|
+
→ Then: `@speccrew-team-leader initialize business knowledge base`
|
|
112
|
+
|
|
113
|
+
- **I want to continue previous work**
|
|
114
|
+
→ `@speccrew-team-leader what is the current progress?`
|
|
115
|
+
|
|
116
|
+
- **I want to check system health**
|
|
117
|
+
→ Run in terminal: `speccrew doctor`
|
|
118
|
+
|
|
119
|
+
- **I'm not sure what to do**
|
|
120
|
+
→ `@speccrew-team-leader help me get started`
|
|
121
|
+
→ Team Leader will auto-detect your project status and guide you
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## 4. Agent Quick Reference
|
|
126
|
+
|
|
127
|
+
| Role | Agent | Responsibilities | Example Command |
|
|
128
|
+
|------|-------|-----------------|-----------------|
|
|
129
|
+
| Team Leader | `@speccrew-team-leader` | Project navigation, knowledge init, status check | "Help me get started" |
|
|
130
|
+
| Product Manager | `@speccrew-product-manager` | Requirements analysis, PRD generation | "I have a new requirement: ..." |
|
|
131
|
+
| Feature Designer | `@speccrew-feature-designer` | Feature analysis, spec design, API contracts | "Start feature design for iteration X" |
|
|
132
|
+
| System Designer | `@speccrew-system-designer` | Architecture design, platform-specific design | "Start system design for iteration X" |
|
|
133
|
+
| System Developer | `@speccrew-system-developer` | Development coordination, code generation | "Start development for iteration X" |
|
|
134
|
+
| Test Manager | `@speccrew-test-manager` | Test planning, case design, execution | "Start testing for iteration X" |
|
|
135
|
+
|
|
136
|
+
> **Note**: You don't need to remember all agents. Just talk to `@speccrew-team-leader` and it will route your request to the right agent.
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## 5. Workflow Overview
|
|
66
141
|
|
|
67
142
|
### Complete Flowchart
|
|
68
143
|
|
|
@@ -89,11 +164,11 @@ flowchart LR
|
|
|
89
164
|
|
|
90
165
|
---
|
|
91
166
|
|
|
92
|
-
##
|
|
167
|
+
## 6. Step Zero: Knowledge Base Initialization
|
|
93
168
|
|
|
94
169
|
Before starting the formal engineering process, you need to initialize the project knowledge base.
|
|
95
170
|
|
|
96
|
-
###
|
|
171
|
+
### 6.1 Technical Knowledge Base Initialization
|
|
97
172
|
|
|
98
173
|
**Conversation Example**:
|
|
99
174
|
```
|
|
@@ -115,7 +190,7 @@ speccrew-workspace/knowledges/techs/{platform-id}/
|
|
|
115
190
|
└── INDEX.md # Index file
|
|
116
191
|
```
|
|
117
192
|
|
|
118
|
-
###
|
|
193
|
+
### 6.2 Business Knowledge Base Initialization
|
|
119
194
|
|
|
120
195
|
**Conversation Example**:
|
|
121
196
|
```
|
|
@@ -139,9 +214,9 @@ speccrew-workspace/knowledges/bizs/
|
|
|
139
214
|
|
|
140
215
|
---
|
|
141
216
|
|
|
142
|
-
##
|
|
217
|
+
## 7. Phase-by-Phase Conversation Guide
|
|
143
218
|
|
|
144
|
-
###
|
|
219
|
+
### 7.1 Phase 1: Requirements Analysis (Product Manager)
|
|
145
220
|
|
|
146
221
|
**How to Start**:
|
|
147
222
|
```
|
|
@@ -168,7 +243,7 @@ iterations/{number}-{type}-{name}/01.product-requirement/
|
|
|
168
243
|
|
|
169
244
|
---
|
|
170
245
|
|
|
171
|
-
###
|
|
246
|
+
### 7.2 Phase 2: Feature Design (Feature Designer)
|
|
172
247
|
|
|
173
248
|
**How to Start**:
|
|
174
249
|
```
|
|
@@ -195,7 +270,7 @@ iterations/{iter}/02.feature-design/
|
|
|
195
270
|
|
|
196
271
|
---
|
|
197
272
|
|
|
198
|
-
###
|
|
273
|
+
### 7.3 Phase 3: System Design (System Designer)
|
|
199
274
|
|
|
200
275
|
**How to Start**:
|
|
201
276
|
```
|
|
@@ -226,7 +301,7 @@ iterations/{iter}/03.system-design/
|
|
|
226
301
|
|
|
227
302
|
---
|
|
228
303
|
|
|
229
|
-
###
|
|
304
|
+
### 7.4 Phase 4: Development Implementation (System Developer)
|
|
230
305
|
|
|
231
306
|
**How to Start**:
|
|
232
307
|
```
|
|
@@ -257,7 +332,7 @@ iterations/{iter}/04.development/
|
|
|
257
332
|
|
|
258
333
|
---
|
|
259
334
|
|
|
260
|
-
###
|
|
335
|
+
### 7.5 Phase 5: System Testing (Test Manager)
|
|
261
336
|
|
|
262
337
|
**How to Start**:
|
|
263
338
|
```
|
|
@@ -292,7 +367,7 @@ iterations/{iter}/05.system-test/
|
|
|
292
367
|
|
|
293
368
|
---
|
|
294
369
|
|
|
295
|
-
###
|
|
370
|
+
### 7.6 Phase 6: Archive
|
|
296
371
|
|
|
297
372
|
Iterations are automatically archived upon completion:
|
|
298
373
|
|
|
@@ -308,9 +383,9 @@ speccrew-workspace/iteration-archives/
|
|
|
308
383
|
|
|
309
384
|
---
|
|
310
385
|
|
|
311
|
-
##
|
|
386
|
+
## 8. Knowledge Base Overview
|
|
312
387
|
|
|
313
|
-
###
|
|
388
|
+
### 8.1 Business Knowledge Base (bizs)
|
|
314
389
|
|
|
315
390
|
**Purpose**: Store project business function descriptions, module divisions, API characteristics
|
|
316
391
|
|
|
@@ -325,7 +400,7 @@ knowledges/bizs/
|
|
|
325
400
|
|
|
326
401
|
**Usage Scenarios**: Product Manager, Feature Designer
|
|
327
402
|
|
|
328
|
-
###
|
|
403
|
+
### 8.2 Technical Knowledge Base (techs)
|
|
329
404
|
|
|
330
405
|
**Purpose**: Store project technology stack, architecture conventions, development specifications, testing specifications
|
|
331
406
|
|
|
@@ -343,11 +418,11 @@ knowledges/techs/{platform-id}/
|
|
|
343
418
|
|
|
344
419
|
---
|
|
345
420
|
|
|
346
|
-
##
|
|
421
|
+
## 9. Workflow Progress Management
|
|
347
422
|
|
|
348
423
|
The SpecCrew virtual team follows a strict stage-gating mechanism where each phase must be confirmed by the user before proceeding to the next. It also supports resumable execution — when restarted after interruption, it automatically continues from where it left off.
|
|
349
424
|
|
|
350
|
-
###
|
|
425
|
+
### 9.1 Three-Layer Progress Files
|
|
351
426
|
|
|
352
427
|
The workflow automatically maintains three types of JSON progress files, located in the iteration directory:
|
|
353
428
|
|
|
@@ -357,7 +432,7 @@ The workflow automatically maintains three types of JSON progress files, located
|
|
|
357
432
|
| `.checkpoints.json` | Under each phase directory | Records user checkpoint confirmation status |
|
|
358
433
|
| `DISPATCH-PROGRESS.json` | Under each phase directory | Records item-by-item progress for parallel tasks (multi-platform/multi-module) |
|
|
359
434
|
|
|
360
|
-
###
|
|
435
|
+
### 9.2 Stage Status Flow
|
|
361
436
|
|
|
362
437
|
Each phase follows this status flow:
|
|
363
438
|
|
|
@@ -370,7 +445,7 @@ pending → in_progress → completed → confirmed
|
|
|
370
445
|
- **completed**: Agent execution completed, awaiting user confirmation
|
|
371
446
|
- **confirmed**: User confirmed through final checkpoint, next phase can start
|
|
372
447
|
|
|
373
|
-
###
|
|
448
|
+
### 9.3 Resumable Execution
|
|
374
449
|
|
|
375
450
|
When restarting an Agent for a phase:
|
|
376
451
|
|
|
@@ -378,7 +453,7 @@ When restarting an Agent for a phase:
|
|
|
378
453
|
2. **Checkpoint recovery**: Reads `.checkpoints.json`, skips passed checkpoints, continues from the last interruption point
|
|
379
454
|
3. **Parallel task recovery**: Reads `DISPATCH-PROGRESS.json`, only re-executes tasks with `pending` or `failed` status, skips `completed` tasks
|
|
380
455
|
|
|
381
|
-
###
|
|
456
|
+
### 9.4 Viewing Current Progress
|
|
382
457
|
|
|
383
458
|
View the pipeline panorama status through the Team Leader Agent:
|
|
384
459
|
|
|
@@ -397,13 +472,13 @@ Pipeline Status: i001-user-management
|
|
|
397
472
|
05 System Test: ⏳ Pending
|
|
398
473
|
```
|
|
399
474
|
|
|
400
|
-
###
|
|
475
|
+
### 9.5 Backward Compatibility
|
|
401
476
|
|
|
402
477
|
The progress file mechanism is fully backward compatible — if progress files do not exist (e.g., in legacy projects or new iterations), all Agents will execute normally according to the original logic.
|
|
403
478
|
|
|
404
479
|
---
|
|
405
480
|
|
|
406
|
-
##
|
|
481
|
+
## 10. Frequently Asked Questions (FAQ)
|
|
407
482
|
|
|
408
483
|
### Q1: What if the Agent doesn't work as expected?
|
|
409
484
|
|
|
@@ -479,7 +554,7 @@ Re-initialization is required in the following situations:
|
|
|
479
554
|
|
|
480
555
|
---
|
|
481
556
|
|
|
482
|
-
##
|
|
557
|
+
## 11. Quick Reference
|
|
483
558
|
|
|
484
559
|
### Agent Start Quick Reference
|
|
485
560
|
|