Skip to content

Commit 18c8525

Browse files
committed
fix(diagram): enhance clarity of workflow diagram examples and add notes for better guidance
1 parent fd71af3 commit 18c8525

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,14 @@ flowchart TD
9595
needClarification -- Yes --> clarify["/speckit.clarify"]
9696
clarify --> specify
9797
needClarification -- No --> plan["/speckit.plan"]
98+
plan -.- planNote["💡 Example (run+1): After planning completes, run the command again to verify all items on the Plan Completion Checklist are satisfied"]
9899
99100
plan --> domainCoverage{Check domain coverage?}
100101
domainCoverage -- Yes --> checklist["/speckit.checklist"]
101102
checklist --> plan
102-
checklist -.- checklistNote["💡 Example: Create a checklist for assembling, building and testing the deployment artefacts of all the components being implemented"]
103+
checklist -.- checklistNote["💡 Example: Create a checklist for building, assembling and testing the deployment artefacts of all the components being implemented"]
103104
domainCoverage -- No --> tasks["/speckit.tasks"]
105+
tasks -.- tasksNote["💡 Example (run+1): After breaking down the plan into tasks, run the command again to verify all items on the Tasks Completion Checklist are satisfied"]
104106
105107
tasks --> consistency{Need consistency check?}
106108
consistency -- Yes --> analyze["/speckit.analyze"]
@@ -117,7 +119,7 @@ flowchart TD
117119
class specify,plan,tasks,implement action;
118120
class needClarification,domainCoverage,consistency question;
119121
class clarify,checklist,analyze review;
120-
class specifyNote,checklistNote note;
122+
class specifyNote,checklistNote,planNote,tasksNote note;
121123
```
122124

123125
### 📤 Sync Prompt Files

0 commit comments

Comments
 (0)