Skip to content

Commit 4c1eb4d

Browse files
iaminaweclaude
andcommitted
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]>
1 parent 9217cfd commit 4c1eb4d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,10 @@ The SDD workflow can be used in three ways, from simplest to most automated:
175175
176176
### Option 1: Manual Copy-Paste (No Tooling Required)
177177
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.
182182
183183
### Option 2: Native Slash Commands (Recommended)
184184
@@ -226,10 +226,10 @@ Run the prompts as an MCP server for programmatic access. This option is most us
226226

227227
### Workflow Essentials
228228

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.
233233

234234
### Installation
235235

0 commit comments

Comments
 (0)