Skip to content
Open
10 changes: 6 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Copy link

Copilot AI Apr 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sentence switches terminology from the rest of the document (“coding agent” / “AI coding agent”) to “AI agent”. For consistency (and to avoid confusion with non-coding AI tools), consider using “AI coding agent” here as well.

Suggested change
After initialization, you should see some of the available commands in your AI agent:
After initialization, you should see some of the available commands in your AI coding agent:

Copilot uses AI. Check for mistakes.

- `/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
Comment on lines +89 to +95
Copy link

Copilot AI Apr 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description’s Summary still mentions renaming a quickstart section (“The 6-Step Process” → “The 6-Step Workflow”), but this PR changes the installation command list and a grep pattern in local-development docs. Please update the PR description summary to match the actual changes (or include the referenced quickstart change in this PR).

Copilot uses AI. Check for mistakes.

The `.specify/scripts` directory will contain both `.sh` and `.ps1` scripts.

Expand Down
2 changes: 1 addition & 1 deletion docs/local-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand Down