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
Copy file name to clipboardExpand all lines: README.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
@@ -212,7 +212,7 @@ The `specify` command supports the following options:
212
212
|`--skip-tls`| Flag | Skip SSL/TLS verification (not recommended) |
213
213
|`--debug`| Flag | Enable detailed debug output for troubleshooting |
214
214
|`--github-token`| Option | GitHub token for API requests (or set GH_TOKEN/GITHUB_TOKEN env variable) |
215
-
|`--ai-skills`| Flag | Install Prompt.MD templates as agent skills in agent-specific `skills/` directory (requires `--ai`)|
215
+
|`--ai-skills`| Flag | Install Prompt.MD templates as agent skills in agent-specific `skills/` directory (requires `--ai`). Extension commands are also auto-registered as skills when extensions are added later.|
Copy file name to clipboardExpand all lines: extensions/EXTENSION-USER-GUIDE.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -187,6 +187,21 @@ Provided commands:
187
187
Check: .specify/extensions/jira/
188
188
```
189
189
190
+
### Automatic Agent Skill Registration
191
+
192
+
If your project was initialized with `--ai-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.
193
+
194
+
```text
195
+
✓ Extension installed successfully!
196
+
197
+
Jira Integration (v1.0.0)
198
+
...
199
+
200
+
✓ 3 agent skill(s) auto-registered
201
+
```
202
+
203
+
When an extension is removed, its corresponding skills are also cleaned up automatically. Pre-existing skills that were manually customized are never overwritten.
0 commit comments