You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: correct ordered list numbering for markdownlint compliance
Change list item numbering from 0,1,2,3 to 1,2,3,4 in two sections:
- Option 1: Manual Copy-Paste
- Workflow Essentials
Markdownlint MD029 requires ordered lists to start at 1 and be
sequential. Optional steps are now marked with text (Optional, first
time) rather than using 0 as the list number.
Fixes:
- README.md:26:1 MD029/ol-prefix
- README.md:34:1 MD029/ol-prefix
- README.md:42:1 MD029/ol-prefix
- README.md:47:1 MD029/ol-prefix
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -175,10 +175,10 @@ The SDD workflow can be used in three ways, from simplest to most automated:
175
175
176
176
### Option 1: Manual Copy-Paste (No Tooling Required)
177
177
178
-
0. **Optional: Generate codebase context (first time only):** If working with an existing codebase, copy or reference `prompts/generate-context.md` to analyze the repository and generate a comprehensive context document in `/docs`. This step helps the AI understand your codebase architecture and patterns for all subsequent specs.
179
-
1. **Kick off a spec:** Copy or reference `prompts/generate-spec.md` inside your preferred AI chat. Provide the feature idea, answer the clarifying questions, and review the generated spec before saving it under `/tasks`.
180
-
2. **Plan the work:** Point the assistant to the new spec and walk through `prompts/generate-task-list-from-spec.md`. Approve parent tasks first, then request the detailed subtasks and relevant files. Commit the result to `/tasks`.
181
-
3. **Execute with discipline:** Follow `prompts/manage-tasks.md` while implementing. Update statuses as you work, attach proof artifacts, and pause for reviews at each demoable slice.
178
+
1. **Optional: Generate codebase context (first time only):** If working with an existing codebase, copy or reference `prompts/generate-context.md` to analyze the repository and generate a comprehensive context document in `/docs`. This step helps the AI understand your codebase architecture and patterns for all subsequent specs.
179
+
2. **Kick off a spec:** Copy or reference `prompts/generate-spec.md` inside your preferred AI chat. Provide the feature idea, answer the clarifying questions, and review the generated spec before saving it under `/tasks`.
180
+
3. **Plan the work:** Point the assistant to the new spec and walk through `prompts/generate-task-list-from-spec.md`. Approve parent tasks first, then request the detailed subtasks and relevant files. Commit the result to `/tasks`.
181
+
4. **Execute with discipline:** Follow `prompts/manage-tasks.md` while implementing. Update statuses as you work, attach proof artifacts, and pause for reviews at each demoable slice.
182
182
183
183
### Option 2: Native Slash Commands (Recommended)
184
184
@@ -226,10 +226,10 @@ Run the prompts as an MCP server for programmatic access. This option is most us
226
226
227
227
### Workflow Essentials
228
228
229
-
0. **(Optional, first time)** Run `/generate-context` or open `prompts/generate-context.md` to analyze your codebase and generate architecture documentation in`docs/`.
230
-
1. Open `prompts/generate-spec.md` inside your AI assistant and follow the instructions to produce a new spec in`tasks/`.
231
-
2. Point the assistant at the generated spec and run `prompts/generate-task-list-from-spec.md` to create the implementation backlog.
232
-
3. Use `prompts/manage-tasks.md`while executing work to keep status, demo criteria, and proof artifacts up to date.
229
+
1. **(Optional, first time)** Run `/generate-context` or open `prompts/generate-context.md` to analyze your codebase and generate architecture documentation in`docs/`.
230
+
2. Open `prompts/generate-spec.md` inside your AI assistant and follow the instructions to produce a new spec in`tasks/`.
231
+
3. Point the assistant at the generated spec and run `prompts/generate-task-list-from-spec.md` to create the implementation backlog.
232
+
4. Use `prompts/manage-tasks.md`while executing work to keep status, demo criteria, and proof artifacts up to date.
0 commit comments