Update README.md

This commit is contained in:
Doan Bac Tam 2026-03-25 01:49:17 +07:00 committed by GitHub
parent 9ab24db252
commit b282e94485
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -139,23 +139,24 @@ gstack is a process, not a collection of tools. The skills run in the order a sp
Each skill feeds into the next. `/office-hours` writes a design doc that `/plan-ceo-review` reads. `/plan-eng-review` writes a test plan that `/qa` picks up. `/review` catches bugs that `/ship` verifies are fixed. Nothing falls through the cracks because every step knows what came before it. Each skill feeds into the next. `/office-hours` writes a design doc that `/plan-ceo-review` reads. `/plan-eng-review` writes a test plan that `/qa` picks up. `/review` catches bugs that `/ship` verifies are fixed. Nothing falls through the cracks because every step knows what came before it.
## Sprint sequence ## Sprint sequence
```mermaid ```mermaid
flowchart TD flowchart TD
OH["/office-hours"] --> DD["design doc"] OH["/office-hours"] --> DD["design doc"]
DD --> CEO["/plan-ceo-review"] DD --> CEO["/plan-ceo-review"]
DD --> ENG["/plan-eng-review — required gate"] DD --> ENG["/plan-eng-review"]
DD --> DES["/plan-design-review"] DD --> DES["/plan-design-review"]
CEO --> CODE["User + AI codes"] CEO --> CODE["User + AI codes"]
ENG --> CODE ENG --> CODE
DES --> CODE DES --> CODE
ENG --> QAP["test plan artifact"] ENG --> QAP["test plan artifact"]
QAP --> QA
CODE --> REV["/review"] CODE --> REV["/review"]
CODE --> INV["/investigate"] CODE --> INV["/investigate"]
CODE --> CSO["/cso"] CODE --> CSO["/cso"]
REV --> QA["/qa"] REV --> QA["/qa"]
INV --> QA INV --> QA
CSO --> QA CSO --> QA
QAP --> QA
QA --> SHIP["/ship"] QA --> SHIP["/ship"]
SHIP --> LD["/land-and-deploy"] SHIP --> LD["/land-and-deploy"]
LD --> CAN["/canary"] LD --> CAN["/canary"]