You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: replace bare 'AI agent' / 'AI assistant' with 'coding agent' throughout
Full sweep across all documentation and user-facing CLI messages to
align terminology. Bare references like 'AI agent', 'AI assistant',
and 'AI Agent' are replaced with 'coding agent' or 'coding agent
integration' as appropriate.
Intentionally left unchanged:
- 'AI coding agent' (already correct expanded form)
- Deprecated --ai flag help text and error messages (describes the
deprecated flag itself)
- Community extension descriptions (external project text)
- 'generated by an AI' in CONTRIBUTING.md (general AI, not agent)
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ cd <temp-dir>/speckit-test
102
102
103
103
#### Manual testing process
104
104
105
-
Any change that affects a slash command's behavior requires manually testing that command through an AI agent and submitting results with the PR.
105
+
Any change that affects a slash command's behavior requires manually testing that command through a coding agent and submitting results with the PR.
106
106
107
107
1.**Identify affected commands** — use the [prompt below](#determining-which-tests-to-run) to have your agent analyze your changed files and determine which commands need testing.
108
108
2.**Set up a test project** — scaffold from your local branch (see [Testing setup](#testing-setup)).
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ If your environment blocks access to PyPI or GitHub, see the [Enterprise / Air-G
123
123
124
124
### 2. Establish project principles
125
125
126
-
Launch your AI assistant in the project directory. Most agents expose spec-kit as `/speckit.*` slash commands; Codex CLI in skills mode uses `$speckit-*` instead.
126
+
Launch your coding agent in the project directory. Most agents expose spec-kit as `/speckit.*` slash commands; Codex CLI in skills mode uses `$speckit-*` instead.
127
127
128
128
Use the **`/speckit.constitution`** command to create your project's governing principles and development guidelines that will guide all subsequent development.
129
129
@@ -475,7 +475,7 @@ specify init --here --force
475
475
476
476

477
477
478
-
You will be prompted to select the AI agent you are using. You can also proactively specify it directly in the terminal:
478
+
You will be prompted to select the coding agent integration you are using. You can also proactively specify it directly in the terminal:
Go to the project folder and run your AI agent. In our example, we're using `claude`.
508
+
Go to the project folder and run your coding agent. In our example, we're using `claude`.
509
509
510
510

511
511
@@ -517,7 +517,7 @@ The first step should be establishing your project's governing principles using
517
517
/speckit.constitution Create principles focused on code quality, testing standards, user experience consistency, and performance requirements. Include governance for how these principles should guide technical decisions and implementation choices.
518
518
```
519
519
520
-
This step creates or updates the `.specify/memory/constitution.md` file with your project's foundational guidelines that the AI agent will reference during specification, planning, and implementation phases.
520
+
This step creates or updates the `.specify/memory/constitution.md` file with your project's foundational guidelines that the coding agent will reference during specification, planning, and implementation phases.
521
521
522
522
### **STEP 2:** Create project specifications
523
523
@@ -725,9 +725,9 @@ The `/speckit.implement` command will:
725
725
- Provide progress updates and handle errors appropriately
726
726
727
727
> [!IMPORTANT]
728
-
> The AI agent will execute local CLI commands (such as `dotnet`, `npm`, etc.) - make sure you have the required tools installed on your machine.
728
+
> The coding agent will execute local CLI commands (such as `dotnet`, `npm`, etc.) - make sure you have the required tools installed on your machine.
729
729
730
-
Once the implementation is complete, test the application and resolve any runtime errors that may not be visible in CLI logs (e.g., browser console errors). You can copy and paste such errors back to your AI agent for resolution.
730
+
Once the implementation is complete, test the application and resolve any runtime errors that may not be visible in CLI logs (e.g., browser console errors). You can copy and paste such errors back to your coding agent for resolution.
**In your AI Agent's chat interface**, use the `/speckit.constitution` slash command to establish the core rules and principles for your project. You should provide your project's specific principles as arguments.
45
+
**In your coding agent's chat interface**, use the `/speckit.constitution` slash command to establish the core rules and principles for your project. You should provide your project's specific principles as arguments.
46
46
47
47
```markdown
48
48
/speckit.constitution This project follows a "Library-First" approach. All features must be implemented as standalone libraries first. We use TDD strictly. We prefer functional programming patterns.
@@ -159,7 +159,7 @@ Generate an actionable task list using the `/speckit.tasks` command:
159
159
160
160
### Step 7: Validate and Implement
161
161
162
-
Have your AI agent audit the implementation plan using `/speckit.analyze`:
162
+
Have your coding agent audit the implementation plan using `/speckit.analyze`:
163
163
164
164
```bash
165
165
/speckit.analyze
@@ -180,7 +180,7 @@ Finally, implement the solution:
180
180
- **Don't focus on tech stack** during specification phase
181
181
- **Iterate and refine** your specifications before implementation
182
182
- **Validate** the plan before coding begins
183
-
- **Let the AI agent handle** the implementation details
183
+
- **Let the coding agent handle** the implementation details
ai_commands_dir: str=typer.Option(None, "--ai-commands-dir", help="Directory for agent command files (required with --ai generic, e.g. .myagent/commands/)"),
969
969
script_type: str=typer.Option(None, "--script", help="Script type to use: sh or ps"),
970
-
ignore_agent_tools: bool=typer.Option(False, "--ignore-agent-tools", help="Skip checks for AI agent tools like Claude Code"),
970
+
ignore_agent_tools: bool=typer.Option(False, "--ignore-agent-tools", help="Skip checks for coding agent tools like Claude Code"),
0 commit comments