speccrew 0.6.0 → 0.6.1
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/README.ar.md +26 -20
- package/README.bn.md +2 -2
- package/README.bs.md +21 -15
- package/README.da.md +21 -15
- package/README.de.md +21 -15
- package/README.el.md +2 -2
- package/README.en.md +26 -20
- package/README.es.md +26 -20
- package/README.fr.md +21 -15
- package/README.it.md +21 -15
- package/README.ja.md +21 -15
- package/README.ko.md +21 -15
- package/README.md +21 -15
- package/README.no.md +21 -15
- package/README.pl.md +21 -15
- package/README.pt-BR.md +21 -15
- package/README.ru.md +21 -15
- package/README.th.md +17 -12
- package/README.zh-TW.md +21 -15
- package/docs/GETTING-STARTED.ar.md +48 -8
- package/docs/GETTING-STARTED.bn.md +4 -2
- package/docs/GETTING-STARTED.bs.md +4 -2
- package/docs/GETTING-STARTED.da.md +48 -8
- package/docs/GETTING-STARTED.de.md +50 -8
- package/docs/GETTING-STARTED.el.md +42 -6
- package/docs/GETTING-STARTED.en.md +48 -8
- package/docs/GETTING-STARTED.es.md +48 -8
- package/docs/GETTING-STARTED.fr.md +48 -8
- package/docs/GETTING-STARTED.it.md +50 -8
- package/docs/GETTING-STARTED.ja.md +50 -8
- package/docs/GETTING-STARTED.ko.md +50 -8
- package/docs/GETTING-STARTED.md +50 -8
- package/docs/GETTING-STARTED.no.md +459 -86
- package/docs/GETTING-STARTED.th.md +4 -2
- package/docs/GETTING-STARTED.zh-TW.md +54 -12
- package/package.json +1 -1
|
@@ -146,13 +146,15 @@ flowchart LR
|
|
|
146
146
|
PRD[Phase 1<br/>Anforderungsanalyse<br/>Product Manager] --> FD[Phase 2<br/>Feature Design<br/>Feature Designer]
|
|
147
147
|
FD --> SD[Phase 3<br/>System Design<br/>System Designer]
|
|
148
148
|
SD --> DEV[Phase 4<br/>Entwicklung<br/>System Developer]
|
|
149
|
-
DEV -->
|
|
150
|
-
|
|
149
|
+
DEV --> DEPLOY[Phase 5<br/>Bereitstellung<br/>System Deployer]
|
|
150
|
+
DEPLOY --> TEST[Phase 6<br/>Systemtest<br/>Test Manager]
|
|
151
|
+
TEST --> ARCHIVE[Phase 7<br/>Archivierung]
|
|
151
152
|
|
|
152
153
|
KB[(Wissensbasis<br/>Durchgehend)] -.-> PRD
|
|
153
154
|
KB -.-> FD
|
|
154
155
|
KB -.-> SD
|
|
155
156
|
KB -.-> DEV
|
|
157
|
+
KB -.-> DEPLOY
|
|
156
158
|
KB -.-> TEST
|
|
157
159
|
```
|
|
158
160
|
|
|
@@ -332,7 +334,42 @@ iterations/{iter}/04.development/
|
|
|
332
334
|
|
|
333
335
|
---
|
|
334
336
|
|
|
335
|
-
### 7.5 Phase 5:
|
|
337
|
+
### 7.5 Phase 5: Bereitstellung (System Deployer)
|
|
338
|
+
|
|
339
|
+
**So starten Sie**:
|
|
340
|
+
|
|
341
|
+
```
|
|
342
|
+
@speccrew-system-deployer Bereitstellung starten
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
**Agent-Workflow**:
|
|
346
|
+
1. Verifizieren dass die Entwicklungsphase abgeschlossen ist (Stage Gate)
|
|
347
|
+
2. Technische Wissensbasis laden (Build-Konfiguration, Datenbank-Migrationskonfiguration, Service-Start-Befehle)
|
|
348
|
+
3. **Checkpoint**: Umgebungsvorabprüfung — Build-Tools, Runtime-Versionen, Abhängigkeitsverfügbarkeit verifizieren
|
|
349
|
+
4. Bereitstellungsskills sequenziell ausführen: Build → Datenbankmigration → Service-Start → Smoke-Test
|
|
350
|
+
5. Bereitstellungsbericht ausgeben
|
|
351
|
+
|
|
352
|
+
> 💡 **Hinweis**: Für Projekte ohne Datenbank wird der Migrationsschritt automatisch übersprungen; für Client-Anwendungen (Desktop/Mobile) wird Prozess-Verifizierungsmodus statt HTTP-Gesundheitsprüfung verwendet.
|
|
353
|
+
|
|
354
|
+
**Liefergegenstand**:
|
|
355
|
+
|
|
356
|
+
```
|
|
357
|
+
iterations/{iter}/05.deployment/
|
|
358
|
+
├── {platform-id}/
|
|
359
|
+
│ ├── deployment-plan.md # Bereitstellungsplan
|
|
360
|
+
│ └── deployment-log.md # Bereitstellungsausführungslog
|
|
361
|
+
└── deployment-report.md # Bereitstellungsabschlussbericht
|
|
362
|
+
```
|
|
363
|
+
|
|
364
|
+
**Bestätigungs-Checkliste**:
|
|
365
|
+
- [ ] Build erfolgreich abgeschlossen?
|
|
366
|
+
- [ ] Alle Datenbankmigrationsskripte erfolgreich ausgeführt (falls zutreffend)?
|
|
367
|
+
- [ ] Anwendung startet normal und besteht Gesundheitsprüfung?
|
|
368
|
+
- [ ] Alle Smoke-Tests bestanden?
|
|
369
|
+
|
|
370
|
+
---
|
|
371
|
+
|
|
372
|
+
### 7.6 Phase 6: Systemtest (Test Manager)
|
|
336
373
|
|
|
337
374
|
**So starten Sie**:
|
|
338
375
|
```
|
|
@@ -349,7 +386,7 @@ iterations/{iter}/04.development/
|
|
|
349
386
|
|
|
350
387
|
**Liefergegenstand**:
|
|
351
388
|
```
|
|
352
|
-
iterations/{iter}/
|
|
389
|
+
iterations/{iter}/06.system-test/
|
|
353
390
|
├── cases/
|
|
354
391
|
│ └── {platform-id}/ # Testfalldokumente
|
|
355
392
|
├── code/
|
|
@@ -367,7 +404,7 @@ iterations/{iter}/05.system-test/
|
|
|
367
404
|
|
|
368
405
|
---
|
|
369
406
|
|
|
370
|
-
### 7.
|
|
407
|
+
### 7.7 Phase 7: Archivierung
|
|
371
408
|
|
|
372
409
|
Iterationen werden nach Abschluss automatisch archiviert:
|
|
373
410
|
|
|
@@ -378,7 +415,8 @@ speccrew-workspace/iteration-archives/
|
|
|
378
415
|
├── 02.feature-design/
|
|
379
416
|
├── 03.system-design/
|
|
380
417
|
├── 04.development/
|
|
381
|
-
|
|
418
|
+
├── 05.deployment/
|
|
419
|
+
└── 06.system-test/
|
|
382
420
|
```
|
|
383
421
|
|
|
384
422
|
---
|
|
@@ -469,7 +507,8 @@ Pipeline Status: i001-user-management
|
|
|
469
507
|
02 Feature Design: 🔄 In Progress (Checkpoint A passed)
|
|
470
508
|
03 System Design: ⏳ Pending
|
|
471
509
|
04 Development: ⏳ Pending
|
|
472
|
-
05
|
|
510
|
+
05 Deployment: ⏳ Pending
|
|
511
|
+
06 System Test: ⏳ Pending
|
|
473
512
|
```
|
|
474
513
|
|
|
475
514
|
### 9.5 Abwärtskompatibilität
|
|
@@ -565,6 +604,7 @@ Eine Neuinitialisierung ist in folgenden Situationen erforderlich:
|
|
|
565
604
|
| Feature-Design | Feature Designer | `@speccrew-feature-designer Feature-Design starten` |
|
|
566
605
|
| Systemdesign | System Designer | `@speccrew-system-designer Systemdesign starten` |
|
|
567
606
|
| Entwicklung | System Developer | `@speccrew-system-developer Entwicklung starten` |
|
|
607
|
+
| Bereitstellung | System Deployer | `@speccrew-system-deployer Bereitstellung starten` |
|
|
568
608
|
| Systemtest | Test Manager | `@speccrew-test-manager Test starten` |
|
|
569
609
|
|
|
570
610
|
### Checkpoint-Checkliste
|
|
@@ -575,6 +615,7 @@ Eine Neuinitialisierung ist in folgenden Situationen erforderlich:
|
|
|
575
615
|
| Feature-Design | 1 | Szenarioabdeckung, Interaktionsklarheit, Datenvollständigkeit, Ausnahmebehandlung |
|
|
576
616
|
| Systemdesign | 2 | A: Framework-Evaluierung; B: Pseudocode-Syntax, plattformübergreifende Konsistenz, Fehlerbehandlung |
|
|
577
617
|
| Entwicklung | 1 | A: Umgebungsbereitschaft, Integrationsprobleme, Code-Spezifikationen |
|
|
618
|
+
| Bereitstellung | 1 | Build erfolgreich, Migration abgeschlossen, Dienste gestartet, Smoke-Tests bestanden |
|
|
578
619
|
| Systemtest | 2 | A: Fallabdeckung; B: Testcode-Ausführbarkeit |
|
|
579
620
|
|
|
580
621
|
### Liefergegenstand-Pfad-Schnellreferenz
|
|
@@ -585,7 +626,8 @@ Eine Neuinitialisierung ist in folgenden Situationen erforderlich:
|
|
|
585
626
|
| Feature-Design | `iterations/{iter}/02.feature-design/` | `[name]-feature-spec.md` |
|
|
586
627
|
| Systemdesign | `iterations/{iter}/03.system-design/` | `DESIGN-OVERVIEW.md`, `{platform}/INDEX.md`, `{platform}/{module}-design.md` |
|
|
587
628
|
| Entwicklung | `iterations/{iter}/04.development/` | Quellcode + `delivery-report.md` |
|
|
588
|
-
|
|
|
629
|
+
| Bereitstellung | `iterations/{iter}/05.deployment/` | `deployment-plan.md`, `deployment-log.md`, `deployment-report.md` |
|
|
630
|
+
| Systemtest | `iterations/{iter}/06.system-test/` | `cases/`, `code/`, `reports/`, `bugs/` |
|
|
589
631
|
| Archivierung | `iteration-archives/{iter}-{date}/` | Vollständige Iterationskopie |
|
|
590
632
|
|
|
591
633
|
---
|
|
@@ -146,13 +146,15 @@ flowchart LR
|
|
|
146
146
|
PRD[Φάση 1<br/>Ανάλυση Απαιτήσεων<br/>Product Manager] --> FD[Φάση 2<br/>Feature Design<br/>Feature Designer]
|
|
147
147
|
FD --> SD[Φάση 3<br/>System Design<br/>System Designer]
|
|
148
148
|
SD --> DEV[Φάση 4<br/>Ανάπτυξη<br/>System Developer]
|
|
149
|
-
DEV -->
|
|
150
|
-
|
|
149
|
+
DEV --> DEPLOY[Φάση 5<br/>Ανάπτυξη<br/>System Deployer]
|
|
150
|
+
DEPLOY --> TEST[Φάση 6<br/>Συστημικές Δοκιμές<br/>Test Manager]
|
|
151
|
+
TEST --> ARCHIVE[Φάση 7<br/>Αρχειοθέτηση]
|
|
151
152
|
|
|
152
153
|
KB[(Βάση Γνώσης<br/>Όλη η Διαδικασία)] -.-> PRD
|
|
153
154
|
KB -.-> FD
|
|
154
155
|
KB -.-> SD
|
|
155
156
|
KB -.-> DEV
|
|
157
|
+
KB -.-> DEPLOY
|
|
156
158
|
KB -.-> TEST
|
|
157
159
|
```
|
|
158
160
|
|
|
@@ -332,7 +334,40 @@ iterations/{iter}/04.development/
|
|
|
332
334
|
|
|
333
335
|
---
|
|
334
336
|
|
|
335
|
-
### 7.5 Φάση 5:
|
|
337
|
+
### 7.5 Φάση 5: Ανάπτυξη (System Deployer)
|
|
338
|
+
|
|
339
|
+
**Πώς να ξεκινήσετε**:
|
|
340
|
+
```
|
|
341
|
+
@speccrew-system-deployer έναρξη ανάπτυξης
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
**Ροή Εργασίας Agent**:
|
|
345
|
+
1. Επαληθεύστε ότι η φάση ανάπτυξης έχει ολοκληρωθεί (Stage Gate)
|
|
346
|
+
2. Φόρτωση τεχνικής βάσης γνώσης (διαμόρφωση build, διαμόρφωση μεταφοράς βάσης δεδομένων, εντολές εκκίνησης υπηρεσίας)
|
|
347
|
+
3. **Checkpoint**: Προ-έλεγχος περιβάλλοντος — Επαλήθευση εργαλείων build, εκδόσεων runtime, διαθεσιμότητας εξαρτήσεων
|
|
348
|
+
4. Εκτέλεση δεξιοτήτων ανάπτυξης με τη σειρά: Build → Μεταφορά Βάσης Δεδομένων → Εκκίνηση Υπηρεσίας → Smoke Test
|
|
349
|
+
5. Έξοδος αναφοράς ανάπτυξης
|
|
350
|
+
|
|
351
|
+
> 💡 **Συμβουλή**: Για έργα χωρίς βάση δεδομένων, το βήμα μεταφοράς παρακάμπτεται αυτόματα; για εφαρμογές πελάτη (desktop/mobil), χρησιμοποιείται λειτουργία επαλήθευσης διεργασίας αντί για έλεγχο υγείας HTTP.
|
|
352
|
+
|
|
353
|
+
**Παράγωγο**:
|
|
354
|
+
```
|
|
355
|
+
iterations/{iter}/05.deployment/
|
|
356
|
+
├── {platform-id}/
|
|
357
|
+
│ ├── deployment-plan.md # Σχέδιο ανάπτυξης
|
|
358
|
+
│ └── deployment-log.md # Αρχείο εκτέλεσης ανάπτυξης
|
|
359
|
+
└── deployment-report.md # Αναφορά ολοκλήρωσης ανάπτυξης
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
**Λίστα Ελέγχου Επιβεβαίωσης**:
|
|
363
|
+
- [ ] Το build ολοκληρώθηκε επιτυχώς;
|
|
364
|
+
- [ ] Όλα τα σενάρια μεταφοράς βάσης δεδομένων εκτελέστηκαν επιτυχώς (αν υπάρχουν);
|
|
365
|
+
- [ ] Η εφαρμογή ξεκίνησε και πέρασε τον έλεγχο υγείας;
|
|
366
|
+
- [ ] Όλα τα smoke tests πέρασαν;
|
|
367
|
+
|
|
368
|
+
---
|
|
369
|
+
|
|
370
|
+
### 7.6 Φάση 6: Συστημικές Δοκιμές (Test Manager)
|
|
336
371
|
|
|
337
372
|
**Πώς να ξεκινήσετε**:
|
|
338
373
|
```
|
|
@@ -349,7 +384,7 @@ iterations/{iter}/04.development/
|
|
|
349
384
|
|
|
350
385
|
**Παράγωγο**:
|
|
351
386
|
```
|
|
352
|
-
iterations/{iter}/
|
|
387
|
+
iterations/{iter}/06.system-test/
|
|
353
388
|
├── cases/
|
|
354
389
|
│ └── {platform-id}/ # Έγγραφα περιπτώσεων δοκιμής
|
|
355
390
|
├── code/
|
|
@@ -367,7 +402,7 @@ iterations/{iter}/05.system-test/
|
|
|
367
402
|
|
|
368
403
|
---
|
|
369
404
|
|
|
370
|
-
### 7.
|
|
405
|
+
### 7.7 Φάση 7: Αρχειοθέτηση
|
|
371
406
|
|
|
372
407
|
Οι επαναλήψεις αρχειοθετούνται αυτόματα μετά την ολοκλήρωση:
|
|
373
408
|
|
|
@@ -378,7 +413,8 @@ speccrew-workspace/iteration-archives/
|
|
|
378
413
|
├── 02.feature-design/
|
|
379
414
|
├── 03.system-design/
|
|
380
415
|
├── 04.development/
|
|
381
|
-
|
|
416
|
+
├── 05.deployment/
|
|
417
|
+
└── 06.system-test/
|
|
382
418
|
```
|
|
383
419
|
|
|
384
420
|
---
|
|
@@ -146,13 +146,15 @@ flowchart LR
|
|
|
146
146
|
PRD[Phase 1<br/>Requirements Analysis<br/>Product Manager] --> FD[Phase 2<br/>Feature Design<br/>Feature Designer]
|
|
147
147
|
FD --> SD[Phase 3<br/>System Design<br/>System Designer]
|
|
148
148
|
SD --> DEV[Phase 4<br/>Development<br/>System Developer]
|
|
149
|
-
DEV -->
|
|
150
|
-
|
|
149
|
+
DEV --> DEPLOY[Phase 5<br/>Deployment<br/>System Deployer]
|
|
150
|
+
DEPLOY --> TEST[Phase 6<br/>System Testing<br/>Test Manager]
|
|
151
|
+
TEST --> ARCHIVE[Phase 7<br/>Archive]
|
|
151
152
|
|
|
152
153
|
KB[(Knowledge Base<br/>Throughout)] -.-> PRD
|
|
153
154
|
KB -.-> FD
|
|
154
155
|
KB -.-> SD
|
|
155
156
|
KB -.-> DEV
|
|
157
|
+
KB -.-> DEPLOY
|
|
156
158
|
KB -.-> TEST
|
|
157
159
|
```
|
|
158
160
|
|
|
@@ -332,7 +334,40 @@ iterations/{iter}/04.development/
|
|
|
332
334
|
|
|
333
335
|
---
|
|
334
336
|
|
|
335
|
-
### 7.5 Phase 5:
|
|
337
|
+
### 7.5 Phase 5: Deployment (System Deployer)
|
|
338
|
+
|
|
339
|
+
**How to Start**:
|
|
340
|
+
```
|
|
341
|
+
@speccrew-system-deployer start deployment
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
**Agent Workflow**:
|
|
345
|
+
1. Verify development phase is complete (Stage Gate)
|
|
346
|
+
2. Load technical knowledge base (build configuration, database migration configuration, service startup commands)
|
|
347
|
+
3. **Checkpoint**: Environment Pre-check — Verify build tools, runtime versions, dependency availability
|
|
348
|
+
4. Execute deployment skills in sequence: Build → Migrate → Startup → Smoke Test
|
|
349
|
+
5. Output deployment report
|
|
350
|
+
|
|
351
|
+
> 💡 **Tip**: For projects without databases, the migration step is automatically skipped; for client applications (desktop/mobile), process verification mode is used instead of HTTP health checks.
|
|
352
|
+
|
|
353
|
+
**Deliverable**:
|
|
354
|
+
```
|
|
355
|
+
iterations/{iter}/05.deployment/
|
|
356
|
+
├── {platform-id}/
|
|
357
|
+
│ ├── deployment-plan.md # Deployment plan
|
|
358
|
+
│ └── deployment-log.md # Deployment execution log
|
|
359
|
+
└── deployment-report.md # Deployment completion report
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
**Confirmation Checklist**:
|
|
363
|
+
- [ ] Is build completed successfully?
|
|
364
|
+
- [ ] Are all database migration scripts executed successfully (if applicable)?
|
|
365
|
+
- [ ] Does the application start normally and pass health checks?
|
|
366
|
+
- [ ] Are all smoke tests passed?
|
|
367
|
+
|
|
368
|
+
---
|
|
369
|
+
|
|
370
|
+
### 7.6 Phase 6: System Testing (Test Manager)
|
|
336
371
|
|
|
337
372
|
**How to Start**:
|
|
338
373
|
```
|
|
@@ -349,7 +384,7 @@ iterations/{iter}/04.development/
|
|
|
349
384
|
|
|
350
385
|
**Deliverable**:
|
|
351
386
|
```
|
|
352
|
-
iterations/{iter}/
|
|
387
|
+
iterations/{iter}/06.system-test/
|
|
353
388
|
├── cases/
|
|
354
389
|
│ └── {platform-id}/ # Test case documents
|
|
355
390
|
├── code/
|
|
@@ -367,7 +402,7 @@ iterations/{iter}/05.system-test/
|
|
|
367
402
|
|
|
368
403
|
---
|
|
369
404
|
|
|
370
|
-
### 7.
|
|
405
|
+
### 7.7 Phase 7: Archive
|
|
371
406
|
|
|
372
407
|
Iterations are automatically archived upon completion:
|
|
373
408
|
|
|
@@ -378,7 +413,8 @@ speccrew-workspace/iteration-archives/
|
|
|
378
413
|
├── 02.feature-design/
|
|
379
414
|
├── 03.system-design/
|
|
380
415
|
├── 04.development/
|
|
381
|
-
|
|
416
|
+
├── 05.deployment/
|
|
417
|
+
└── 06.system-test/
|
|
382
418
|
```
|
|
383
419
|
|
|
384
420
|
---
|
|
@@ -469,7 +505,8 @@ Pipeline Status: i001-user-management
|
|
|
469
505
|
02 Feature Design: 🔄 In Progress (Checkpoint A passed)
|
|
470
506
|
03 System Design: ⏳ Pending
|
|
471
507
|
04 Development: ⏳ Pending
|
|
472
|
-
05
|
|
508
|
+
05 Deployment: ⏳ Pending
|
|
509
|
+
06 System Test: ⏳ Pending
|
|
473
510
|
```
|
|
474
511
|
|
|
475
512
|
### 9.5 Backward Compatibility
|
|
@@ -565,6 +602,7 @@ Re-initialization is required in the following situations:
|
|
|
565
602
|
| Feature Design | Feature Designer | `@speccrew-feature-designer start feature design` |
|
|
566
603
|
| System Design | System Designer | `@speccrew-system-designer start system design` |
|
|
567
604
|
| Development | System Developer | `@speccrew-system-developer start development` |
|
|
605
|
+
| Deployment | System Deployer | `@speccrew-system-deployer start deployment` |
|
|
568
606
|
| System Testing | Test Manager | `@speccrew-test-manager start testing` |
|
|
569
607
|
|
|
570
608
|
### Checkpoint Checklist
|
|
@@ -575,6 +613,7 @@ Re-initialization is required in the following situations:
|
|
|
575
613
|
| Feature Design | 1 | Scenario coverage, interaction clarity, data completeness, exception handling |
|
|
576
614
|
| System Design | 2 | A: Framework evaluation; B: Pseudocode syntax, cross-platform consistency, error handling |
|
|
577
615
|
| Development | 1 | A: Environment readiness, integration issues, code specifications |
|
|
616
|
+
| Deployment | 1 | Build success, migration complete, service startup, smoke test passed |
|
|
578
617
|
| System Testing | 2 | A: Case coverage; B: Test code runnability |
|
|
579
618
|
|
|
580
619
|
### Deliverable Path Quick Reference
|
|
@@ -585,7 +624,8 @@ Re-initialization is required in the following situations:
|
|
|
585
624
|
| Feature Design | `iterations/{iter}/02.feature-design/` | `[name]-feature-spec.md` |
|
|
586
625
|
| System Design | `iterations/{iter}/03.system-design/` | `DESIGN-OVERVIEW.md`, `{platform}/INDEX.md`, `{platform}/{module}-design.md` |
|
|
587
626
|
| Development | `iterations/{iter}/04.development/` | Source code + `delivery-report.md` |
|
|
588
|
-
|
|
|
627
|
+
| Deployment | `iterations/{iter}/05.deployment/` | `deployment-plan.md`, `deployment-log.md`, `deployment-report.md` |
|
|
628
|
+
| System Testing | `iterations/{iter}/06.system-test/` | `cases/`, `code/`, `reports/`, `bugs/` |
|
|
589
629
|
| Archive | `iteration-archives/{iter}-{date}/` | Complete iteration copy |
|
|
590
630
|
|
|
591
631
|
---
|
|
@@ -146,13 +146,15 @@ flowchart LR
|
|
|
146
146
|
PRD[Fase 1<br/>Análisis de Requisitos<br/>Product Manager] --> FD[Fase 2<br/>Diseño de Funcionalidades<br/>Feature Designer]
|
|
147
147
|
FD --> SD[Fase 3<br/>Diseño del Sistema<br/>System Designer]
|
|
148
148
|
SD --> DEV[Fase 4<br/>Desarrollo<br/>System Developer]
|
|
149
|
-
DEV -->
|
|
150
|
-
|
|
149
|
+
DEV --> DEPLOY[Fase 5<br/>Despliegue<br/>System Deployer]
|
|
150
|
+
DEPLOY --> TEST[Fase 6<br/>Pruebas del Sistema<br/>Test Manager]
|
|
151
|
+
TEST --> ARCHIVE[Fase 7<br/>Archivo]
|
|
151
152
|
|
|
152
153
|
KB[(Base de Conocimientos<br/>Durante Todo el Proceso)] -.-> PRD
|
|
153
154
|
KB -.-> FD
|
|
154
155
|
KB -.-> SD
|
|
155
156
|
KB -.-> DEV
|
|
157
|
+
KB -.-> DEPLOY
|
|
156
158
|
KB -.-> TEST
|
|
157
159
|
```
|
|
158
160
|
|
|
@@ -332,7 +334,40 @@ iterations/{iter}/04.development/
|
|
|
332
334
|
|
|
333
335
|
---
|
|
334
336
|
|
|
335
|
-
### 7.5 Fase 5:
|
|
337
|
+
### 7.5 Fase 5: Despliegue (System Deployer)
|
|
338
|
+
|
|
339
|
+
**Cómo Iniciar**:
|
|
340
|
+
```
|
|
341
|
+
@speccrew-system-deployer iniciar despliegue
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
**Flujo de Trabajo del Agente**:
|
|
345
|
+
1. Verificar que la fase de desarrollo esté completa (Stage Gate)
|
|
346
|
+
2. Cargar base de conocimientos técnica (configuración de construcción, configuración de migración de base de datos, comandos de inicio de servicios)
|
|
347
|
+
3. **Checkpoint**: Pre-verificación de Entorno — Verificar herramientas de construcción, versiones de runtime, disponibilidad de dependencias
|
|
348
|
+
4. Ejecutar habilidades de despliegue en secuencia: Build → Migrate → Startup → Smoke Test
|
|
349
|
+
5. Producir informe de despliegue
|
|
350
|
+
|
|
351
|
+
> 💡 **Consejo**: Para proyectos sin base de datos, el paso de migración se omite automáticamente; para aplicaciones cliente (escritorio/móvil), se usa el modo de verificación de procesos en lugar de verificaciones de salud HTTP.
|
|
352
|
+
|
|
353
|
+
**Entregable**:
|
|
354
|
+
```
|
|
355
|
+
iterations/{iter}/05.deployment/
|
|
356
|
+
├── {platform-id}/
|
|
357
|
+
│ ├── deployment-plan.md # Plan de despliegue
|
|
358
|
+
│ └── deployment-log.md # Registro de ejecución de despliegue
|
|
359
|
+
└── deployment-report.md # Informe de finalización de despliegue
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
**Lista de Verificación de Confirmación**:
|
|
363
|
+
- [ ] ¿La construcción se completó exitosamente?
|
|
364
|
+
- [ ] ¿Se ejecutaron exitosamente todos los scripts de migración de base de datos (si aplica)?
|
|
365
|
+
- [ ] ¿La aplicación se inicia normalmente y pasa las verificaciones de salud?
|
|
366
|
+
- [ ] ¿Pasaron todas las pruebas de humo?
|
|
367
|
+
|
|
368
|
+
---
|
|
369
|
+
|
|
370
|
+
### 7.6 Fase 6: Pruebas del Sistema (Test Manager)
|
|
336
371
|
|
|
337
372
|
**Cómo Iniciar**:
|
|
338
373
|
```
|
|
@@ -349,7 +384,7 @@ iterations/{iter}/04.development/
|
|
|
349
384
|
|
|
350
385
|
**Entregable**:
|
|
351
386
|
```
|
|
352
|
-
iterations/{iter}/
|
|
387
|
+
iterations/{iter}/06.system-test/
|
|
353
388
|
├── cases/
|
|
354
389
|
│ └── {platform-id}/ # Documentos de casos de prueba
|
|
355
390
|
├── code/
|
|
@@ -367,7 +402,7 @@ iterations/{iter}/05.system-test/
|
|
|
367
402
|
|
|
368
403
|
---
|
|
369
404
|
|
|
370
|
-
### 7.
|
|
405
|
+
### 7.7 Fase 7: Archivado
|
|
371
406
|
|
|
372
407
|
Las iteraciones se archivan automáticamente después de completarse:
|
|
373
408
|
|
|
@@ -378,7 +413,8 @@ speccrew-workspace/iteration-archives/
|
|
|
378
413
|
├── 02.feature-design/
|
|
379
414
|
├── 03.system-design/
|
|
380
415
|
├── 04.development/
|
|
381
|
-
|
|
416
|
+
├── 05.deployment/
|
|
417
|
+
└── 06.system-test/
|
|
382
418
|
```
|
|
383
419
|
|
|
384
420
|
---
|
|
@@ -469,7 +505,8 @@ Pipeline Status: i001-user-management
|
|
|
469
505
|
02 Feature Design: 🔄 In Progress (Checkpoint A passed)
|
|
470
506
|
03 System Design: ⏳ Pending
|
|
471
507
|
04 Development: ⏳ Pending
|
|
472
|
-
05
|
|
508
|
+
05 Deployment: ⏳ Pending
|
|
509
|
+
06 System Test: ⏳ Pending
|
|
473
510
|
```
|
|
474
511
|
|
|
475
512
|
### 9.5 Compatibilidad Hacia Atrás
|
|
@@ -565,6 +602,7 @@ Se requiere re-inicialización en las siguientes situaciones:
|
|
|
565
602
|
| Diseño de Funcionalidades | Feature Designer | `@speccrew-feature-designer iniciar diseño de funcionalidades` |
|
|
566
603
|
| Diseño del Sistema | System Designer | `@speccrew-system-designer iniciar diseño del sistema` |
|
|
567
604
|
| Desarrollo | System Developer | `@speccrew-system-developer iniciar desarrollo` |
|
|
605
|
+
| Despliegue | System Deployer | `@speccrew-system-deployer iniciar despliegue` |
|
|
568
606
|
| Pruebas del Sistema | Test Manager | `@speccrew-test-manager iniciar pruebas` |
|
|
569
607
|
|
|
570
608
|
### Lista de Verificación de Checkpoints
|
|
@@ -575,6 +613,7 @@ Se requiere re-inicialización en las siguientes situaciones:
|
|
|
575
613
|
| Diseño de Funcionalidades | 1 | Cobertura de escenarios, claridad de interacción, completitud de datos, manejo de excepciones |
|
|
576
614
|
| Diseño del Sistema | 2 | A: Evaluación de framework; B: Sintaxis de pseudocódigo, consistencia cross-plataforma, manejo de errores |
|
|
577
615
|
| Desarrollo | 1 | A: Preparación del entorno, problemas de integración, especificaciones de código |
|
|
616
|
+
| Despliegue | 1 | Construcción exitosa, migración completada, inicio de servicio, pruebas de humo pasadas |
|
|
578
617
|
| Pruebas del Sistema | 2 | A: Cobertura de casos; B: Ejecutabilidad del código de prueba |
|
|
579
618
|
|
|
580
619
|
### Referencia Rápida de Rutas de Entregables
|
|
@@ -585,7 +624,8 @@ Se requiere re-inicialización en las siguientes situaciones:
|
|
|
585
624
|
| Diseño de Funcionalidades | `iterations/{iter}/02.feature-design/` | `[name]-feature-spec.md` |
|
|
586
625
|
| Diseño del Sistema | `iterations/{iter}/03.system-design/` | `DESIGN-OVERVIEW.md`, `{platform}/INDEX.md`, `{platform}/{module}-design.md` |
|
|
587
626
|
| Desarrollo | `iterations/{iter}/04.development/` | Código fuente + `delivery-report.md` |
|
|
588
|
-
|
|
|
627
|
+
| Despliegue | `iterations/{iter}/05.deployment/` | `deployment-plan.md`, `deployment-log.md`, `deployment-report.md` |
|
|
628
|
+
| Pruebas del Sistema | `iterations/{iter}/06.system-test/` | `cases/`, `code/`, `reports/`, `bugs/` |
|
|
589
629
|
| Archivado | `iteration-archives/{iter}-{date}/` | Copia completa de la iteración |
|
|
590
630
|
|
|
591
631
|
---
|
|
@@ -146,13 +146,15 @@ flowchart LR
|
|
|
146
146
|
PRD[Phase 1<br/>Analyse des Exigences<br/>Product Manager] --> FD[Phase 2<br/>Feature Design<br/>Feature Designer]
|
|
147
147
|
FD --> SD[Phase 3<br/>Conception Système<br/>System Designer]
|
|
148
148
|
SD --> DEV[Phase 4<br/>Développement<br/>System Developer]
|
|
149
|
-
DEV -->
|
|
150
|
-
|
|
149
|
+
DEV --> DEPLOY[Phase 5<br/>Déploiement<br/>System Deployer]
|
|
150
|
+
DEPLOY --> TEST[Phase 6<br/>Test Système<br/>Test Manager]
|
|
151
|
+
TEST --> ARCHIVE[Phase 7<br/>Archive]
|
|
151
152
|
|
|
152
153
|
KB[(Base de Connaissances<br/>Tout au Long)] -.-> PRD
|
|
153
154
|
KB -.-> FD
|
|
154
155
|
KB -.-> SD
|
|
155
156
|
KB -.-> DEV
|
|
157
|
+
KB -.-> DEPLOY
|
|
156
158
|
KB -.-> TEST
|
|
157
159
|
```
|
|
158
160
|
|
|
@@ -332,7 +334,40 @@ iterations/{iter}/04.development/
|
|
|
332
334
|
|
|
333
335
|
---
|
|
334
336
|
|
|
335
|
-
### 7.5 Phase 5 :
|
|
337
|
+
### 7.5 Phase 5 : Déploiement (System Deployer)
|
|
338
|
+
|
|
339
|
+
**Comment Démarrer** :
|
|
340
|
+
```
|
|
341
|
+
@speccrew-system-deployer démarrer le déploiement
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
**Flux de Travail de l'Agent** :
|
|
345
|
+
1. Vérifier que la phase de développement est terminée (Stage Gate)
|
|
346
|
+
2. Charger la base de connaissances technique (configuration de build, configuration de migration de base de données, commandes de démarrage de service)
|
|
347
|
+
3. **Checkpoint** : Pré-vérification Environnement — Vérifier les outils de build, les versions runtime, la disponibilité des dépendances
|
|
348
|
+
4. Exécuter les compétences de déploiement en séquence : Build → Migrate → Startup → Smoke Test
|
|
349
|
+
5. Produire le rapport de déploiement
|
|
350
|
+
|
|
351
|
+
> 💡 **Astuce** : Pour les projets sans base de données, l'étape de migration est automatiquement ignorée ; pour les applications clientes (desktop/mobile), le mode de vérification de processus est utilisé à la place des vérifications de santé HTTP.
|
|
352
|
+
|
|
353
|
+
**Livrable** :
|
|
354
|
+
```
|
|
355
|
+
iterations/{iter}/05.deployment/
|
|
356
|
+
├── {platform-id}/
|
|
357
|
+
│ ├── deployment-plan.md # Plan de déploiement
|
|
358
|
+
│ └── deployment-log.md # Journal d'exécution du déploiement
|
|
359
|
+
└── deployment-report.md # Rapport d'achèvement du déploiement
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
**Liste de Vérification de Confirmation** :
|
|
363
|
+
- [ ] Le build est-il terminé avec succès ?
|
|
364
|
+
- [ ] Tous les scripts de migration de base de données ont-ils été exécutés avec succès (si applicable) ?
|
|
365
|
+
- [ ] L'application démarre-t-elle normalement et passe-t-elle les vérifications de santé ?
|
|
366
|
+
- [ ] Tous les tests de fumée sont-ils passés ?
|
|
367
|
+
|
|
368
|
+
---
|
|
369
|
+
|
|
370
|
+
### 7.6 Phase 6 : Test Système (Test Manager)
|
|
336
371
|
|
|
337
372
|
**Comment Démarrer** :
|
|
338
373
|
```
|
|
@@ -349,7 +384,7 @@ iterations/{iter}/04.development/
|
|
|
349
384
|
|
|
350
385
|
**Livrable** :
|
|
351
386
|
```
|
|
352
|
-
iterations/{iter}/
|
|
387
|
+
iterations/{iter}/06.system-test/
|
|
353
388
|
├── cases/
|
|
354
389
|
│ └── {platform-id}/ # Documents de cas de test
|
|
355
390
|
├── code/
|
|
@@ -367,7 +402,7 @@ iterations/{iter}/05.system-test/
|
|
|
367
402
|
|
|
368
403
|
---
|
|
369
404
|
|
|
370
|
-
### 7.
|
|
405
|
+
### 7.7 Phase 7 : Archivage
|
|
371
406
|
|
|
372
407
|
Les itérations sont automatiquement archivées après achèvement :
|
|
373
408
|
|
|
@@ -378,7 +413,8 @@ speccrew-workspace/iteration-archives/
|
|
|
378
413
|
├── 02.feature-design/
|
|
379
414
|
├── 03.system-design/
|
|
380
415
|
├── 04.development/
|
|
381
|
-
|
|
416
|
+
├── 05.deployment/
|
|
417
|
+
└── 06.system-test/
|
|
382
418
|
```
|
|
383
419
|
|
|
384
420
|
---
|
|
@@ -469,7 +505,8 @@ Pipeline Status: i001-user-management
|
|
|
469
505
|
02 Feature Design: 🔄 In Progress (Checkpoint A passed)
|
|
470
506
|
03 System Design: ⏳ Pending
|
|
471
507
|
04 Development: ⏳ Pending
|
|
472
|
-
05
|
|
508
|
+
05 Deployment: ⏳ Pending
|
|
509
|
+
06 System Test: ⏳ Pending
|
|
473
510
|
```
|
|
474
511
|
|
|
475
512
|
### 9.5 Compatibilité Descendante
|
|
@@ -565,6 +602,7 @@ Une ré-initialisation est requise dans les situations suivantes :
|
|
|
565
602
|
| Feature Design | Feature Designer | `@speccrew-feature-designer démarrer la conception de fonctionnalités` |
|
|
566
603
|
| Conception Système | System Designer | `@speccrew-system-designer démarrer la conception système` |
|
|
567
604
|
| Développement | System Developer | `@speccrew-system-developer démarrer le développement` |
|
|
605
|
+
| Déploiement | System Deployer | `@speccrew-system-deployer démarrer le déploiement` |
|
|
568
606
|
| Test Système | Test Manager | `@speccrew-test-manager démarrer les tests` |
|
|
569
607
|
|
|
570
608
|
### Liste de Vérification des Checkpoints
|
|
@@ -575,6 +613,7 @@ Une ré-initialisation est requise dans les situations suivantes :
|
|
|
575
613
|
| Feature Design | 1 | Couverture de scénario, clarté d'interaction, complétude des données, gestion des exceptions |
|
|
576
614
|
| Conception Système | 2 | A : Évaluation du framework ; B : Syntaxe pseudocode, cohérence cross-plateforme, gestion d'erreurs |
|
|
577
615
|
| Développement | 1 | A : Préparation environnement, problèmes d'intégration, spécifications de code |
|
|
616
|
+
| Déploiement | 1 | Build réussi, migration terminée, démarrage service, tests de fumée passés |
|
|
578
617
|
| Test Système | 2 | A : Couverture de cas ; B : Exécutabilité du code de test |
|
|
579
618
|
|
|
580
619
|
### Référence Rapide des Chemins de Livrables
|
|
@@ -585,7 +624,8 @@ Une ré-initialisation est requise dans les situations suivantes :
|
|
|
585
624
|
| Feature Design | `iterations/{iter}/02.feature-design/` | `[name]-feature-spec.md` |
|
|
586
625
|
| Conception Système | `iterations/{iter}/03.system-design/` | `DESIGN-OVERVIEW.md`, `{platform}/INDEX.md`, `{platform}/{module}-design.md` |
|
|
587
626
|
| Développement | `iterations/{iter}/04.development/` | Code source + `delivery-report.md` |
|
|
588
|
-
|
|
|
627
|
+
| Déploiement | `iterations/{iter}/05.deployment/` | `deployment-plan.md`, `deployment-log.md`, `deployment-report.md` |
|
|
628
|
+
| Test Système | `iterations/{iter}/06.system-test/` | `cases/`, `code/`, `reports/`, `bugs/` |
|
|
589
629
|
| Archivage | `iteration-archives/{iter}-{date}/` | Copie complète de l'itération |
|
|
590
630
|
|
|
591
631
|
---
|