Skip to content

Commit 161aa41

Browse files
committed
style(cli): clarify agents option label
1 parent 9e092a1 commit 161aa41

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ openspec init
106106
# Use /openspec:proposal, /openspec:apply, and /openspec:archive in Claude Code to run proposals, apply tasks, and archive changes.
107107
# Cursor (✅ OpenSpec custom slash commands available)
108108
# Use /openspec-proposal, /openspec-apply, and /openspec-archive in Cursor for proposals, implementation, and archiving.
109-
# AGENTS.md standard
109+
# AGENTS.md (works with Codex, Amp, Copilot, …)
110110
# Creates/updates a root-level AGENTS.md block for tools that follow the AGENTS.md convention (Codex, Amp, Jules, OpenCode, Gemini CLI, GitHub Copilot, etc.)
111111

112112
# This creates:

openspec/changes/add-agents-md-config/specs/cli-init/spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The command SHALL configure AI coding assistants with OpenSpec instructions base
88
- **THEN** prompt user to select AI tools to configure:
99
- Claude Code (✅ OpenSpec custom slash commands available)
1010
- Cursor (✅ OpenSpec custom slash commands available)
11-
- AGENTS.md standard
11+
- AGENTS.md (works with Codex, Amp, Copilot, …)
1212

1313
### Requirement: AI Tool Configuration Details
1414
The command SHALL properly configure selected AI tools with OpenSpec-specific instructions using a marker system.

src/core/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ export interface AIToolOption {
1919
export const AI_TOOLS: AIToolOption[] = [
2020
{ name: 'Claude Code (✅ OpenSpec custom slash commands available)', value: 'claude', available: true, successLabel: 'Claude Code' },
2121
{ name: 'Cursor (✅ OpenSpec custom slash commands available)', value: 'cursor', available: true, successLabel: 'Cursor' },
22-
{ name: 'AGENTS.md standard', value: 'agents', available: true, successLabel: 'your AGENTS.md-compatible assistant' }
22+
{ name: 'AGENTS.md (works with Codex, Amp, Copilot, …)', value: 'agents', available: true, successLabel: 'your AGENTS.md-compatible assistant' }
2323
];

0 commit comments

Comments
 (0)