From 9f7bc349353c5227757f35ab8481b6ea73760acd Mon Sep 17 00:00:00 2001 From: Humaiza Naz <159733464+HumaizaNaz@users.noreply.github.com> Date: Thu, 16 Apr 2026 23:28:55 -0700 Subject: [PATCH 1/3] Update section title from 'Process' to 'Workflow' --- docs/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 4b2c3c8807..d702bd2018 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -5,7 +5,7 @@ This guide will help you get started with Spec-Driven Development using Spec Kit > [!NOTE] > All automation scripts now provide both Bash (`.sh`) and PowerShell (`.ps1`) variants. The `specify` CLI auto-selects based on OS unless you pass `--script sh|ps`. -## The 6-Step Process +## The 6-Step Workflow > [!TIP] > **Context Awareness**: Spec Kit commands automatically detect the active feature based on your current Git branch (e.g., `001-feature-name`). To switch between different specifications, simply switch Git branches. From 0caab6e2cb9f79686d1899b926e242b247b942d7 Mon Sep 17 00:00:00 2001 From: Humaiza Naz <159733464+HumaizaNaz@users.noreply.github.com> Date: Thu, 16 Apr 2026 23:32:20 -0700 Subject: [PATCH 2/3] Update installation instructions with new commands Added new commands for specification clarification and task implementation. --- docs/installation.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index ed253902af..6164c2c144 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -81,9 +81,11 @@ This helps verify you are running the official Spec Kit build from GitHub, not a After initialization, you should see the following commands available in your AI agent: -- `/speckit.specify` - Create specifications -- `/speckit.plan` - Generate implementation plans -- `/speckit.tasks` - Break down into actionable tasks + -`/speckit.specify` - Create specifications + - `/speckit.clarify` - Clarify and refine specifications + - `/speckit.plan` - Generate implementation plans + - `/speckit.tasks` - Break down into actionable tasks + - `/speckit.implement` - Execute tasks and build the feature The `.specify/scripts` directory will contain both `.sh` and `.ps1` scripts. From 156f08eb359f55ca81240c1854f6d6cb3e4155c6 Mon Sep 17 00:00:00 2001 From: Humaiza Naz <159733464+HumaizaNaz@users.noreply.github.com> Date: Thu, 16 Apr 2026 23:38:17 -0700 Subject: [PATCH 3/3] Fix grep pattern for shell script check Update command to check for executable shell scripts. --- docs/local-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/local-development.md b/docs/local-development.md index a23ea1d88f..163260535e 100644 --- a/docs/local-development.md +++ b/docs/local-development.md @@ -92,7 +92,7 @@ specify-dev --help After running an `init`, check that shell scripts are executable on POSIX systems: ```bash -ls -l scripts | grep .sh +ls -l scripts | grep '\.sh' # Expect owner execute bit (e.g. -rwxr-xr-x) ```