diff --git a/docs/installation.md b/docs/installation.md index 7f6aa089b7..1d527a0b98 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -86,11 +86,13 @@ specify version This helps verify you are running the official Spec Kit build from GitHub, not an unrelated package with the same name. -After initialization, you should see the following commands available in your coding agent: +After initialization, you should see some of the available commands 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. diff --git a/docs/local-development.md b/docs/local-development.md index 4776204d7d..71c7fff519 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) ```