Skip to content

Commit faaefc0

Browse files
committed
fix(diagram): update workflow diagram links and add example note for checklist
1 parent af29516 commit faaefc0

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,32 +88,37 @@ The spec-kit lifecycle: **discover** the right prompt → **ground** it in a spe
8888

8989
```mermaid
9090
flowchart TD
91-
constitution[//speckit.constitution/] --> specify[//speckit.specify/]
91+
constitution["/speckit.constitution"] --> specify["/speckit.specify"]
9292
9393
specify --> needClarification{Need clarification?}
94-
needClarification -- Yes --> clarify[//speckit.clarify/]
94+
needClarification -- Yes --> clarify["/speckit.clarify"]
9595
clarify --> specify
96-
needClarification -- No --> plan[//speckit.plan/]
96+
needClarification -- No --> plan["/speckit.plan"]
9797
9898
plan --> domainCoverage{Check domain coverage?}
99-
domainCoverage -- Yes --> checklist[//speckit.checklist/]
99+
domainCoverage -- Yes --> checklist["/speckit.checklist"]
100100
checklist --> plan
101-
domainCoverage -- No --> tasks[//speckit.tasks/]
101+
checklist -.- checklistNote["💡 Example: Create a checklist for assembling,
102+
building and testing the deployment artefacts
103+
of all the components being implemented"]
104+
domainCoverage -- No --> tasks["/speckit.tasks"]
102105
103106
tasks --> consistency{Need consistency check?}
104-
consistency -- Yes --> analyze[//speckit.analyze/]
107+
consistency -- Yes --> analyze["/speckit.analyze"]
105108
analyze --> tasks
106-
consistency -- No --> implement[//speckit.implement phase X/]
109+
consistency -- No --> implement["/speckit.implement phase X"]
107110
108111
classDef source fill:#dbeafe,stroke:#1d4ed8,color:#0f172a,stroke-width:1px;
109112
classDef action fill:#d1fae5,stroke:#34d399,color:#064e3b,stroke-width:1px;
110113
classDef question fill:#fef3c7,stroke:#ea580c,color:#78350f,stroke-width:1px;
111114
classDef review fill:#fce7f3,stroke:#db2777,color:#831843,stroke-width:1px;
115+
classDef note fill:#f5f5f4,stroke:#a8a29e,color:#57534e,stroke-width:1px,stroke-dasharray:3;
112116
113117
class constitution source;
114118
class specify,plan,tasks,implement action;
115119
class needClarification,domainCoverage,consistency question;
116120
class clarify,checklist,analyze review;
121+
class checklistNote note;
117122
```
118123

119124
### 📤 Sync Prompt Files

0 commit comments

Comments
 (0)