Skip to content

Commit c8e64e4

Browse files
committed
docs: address review feedback on pre-existing issues
- Fix duplicate copilot example in README.md (replace with codex) - Fix invalid gemini --integration-options="--skills" example (gemini does not support --skills) - Update generic integration comment from 'Unsupported agent' to 'Bring your own agent; requires --commands-dir' - Clarify EXTENSION-USER-GUIDE.md: skills auto-register for skills-based integrations, not only with --integration-options
1 parent 2d8cca3 commit c8e64e4

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ You will be prompted to select the AI agent you are using. You can also proactiv
480480
```bash
481481
specify init <project_name> --integration copilot
482482
specify init <project_name> --integration gemini
483-
specify init <project_name> --integration copilot
483+
specify init <project_name> --integration codex
484484

485485
# Or in current directory:
486486
specify init . --integration copilot

extensions/EXTENSION-USER-GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ Provided commands:
189189

190190
### Automatic Agent Skill Registration
191191

192-
If your project was initialized with `--integration-options="--skills"`, extension commands are **automatically registered as agent skills** during installation. This ensures that extensions are discoverable by agents that use the [agentskills.io](https://agentskills.io) skill specification.
192+
If your project uses a skills-based integration (e.g., `--integration claude`, `--integration codex`) or was initialized with `--integration-options="--skills"`, extension commands are **automatically registered as agent skills** during installation. This ensures that extensions are discoverable by agents that use the [agentskills.io](https://agentskills.io) skill specification.
193193

194194
```text
195195
✓ Extension installed successfully!

src/specify_cli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,8 +1016,8 @@ def init(
10161016
specify init --here
10171017
specify init --here --force # Skip confirmation when current directory not empty
10181018
specify init my-project --integration claude # Claude installs skills by default
1019-
specify init --here --integration gemini --integration-options="--skills"
1020-
specify init my-project --integration generic --integration-options="--commands-dir .myagent/commands/" # Unsupported agent
1019+
specify init --here --integration gemini
1020+
specify init my-project --integration generic --integration-options="--commands-dir .myagent/commands/" # Bring your own agent; requires --commands-dir
10211021
specify init my-project --offline # Use bundled assets (no network access)
10221022
specify init my-project --integration claude --preset healthcare-compliance # With preset
10231023
"""

0 commit comments

Comments
 (0)