From 5367f69f6cfcb91f242dee2e630c25ff125a838a Mon Sep 17 00:00:00 2001 From: Ali jawwad <33836051+jawwad-ali@users.noreply.github.com> Date: Tue, 30 Jun 2026 01:08:49 +0500 Subject: [PATCH] docs(workflows): add the built-in 'init' step type to the Step Types table (#3234) The Step Types table in docs/reference/workflows.md listed command, prompt, shell, gate, if, switch, while, do-while, fan-out, and fan-in, but omitted 'init' -- which IS a registered built-in (workflows/__init__.py _register_builtin_steps registers InitStep) and is documented in steps/init/__init__.py as bootstrapping a project (equivalent to 'specify init'). Add the missing row so the reference matches the registry. Co-authored-by: Claude Opus 4.8 (1M context) --- docs/reference/workflows.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/reference/workflows.md b/docs/reference/workflows.md index ffa25301e..16bbe0893 100644 --- a/docs/reference/workflows.md +++ b/docs/reference/workflows.md @@ -262,6 +262,7 @@ specify workflow run speckit -i spec="Build a kanban board with drag-and-drop ta | `command` | Invoke a Spec Kit command (e.g., `speckit.plan`) | | `prompt` | Send an arbitrary prompt to the AI coding agent | | `shell` | Execute a shell command and capture output | +| `init` | Bootstrap a project (like `specify init`) | | `gate` | Pause for human approval before continuing | | `if` | Conditional branching (then/else) | | `switch` | Multi-branch dispatch on an expression |