fix: use registry format for skills instead of raw URLs

The skills CLI resolves packages via owner/repo@skill format.
No need for full GitHub URLs or --skill flags.
This commit is contained in:
Matt Bruce 2026-02-11 12:07:35 -06:00
parent 086c63bf21
commit 840065a4bb
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
# iOS Skills # iOS Skills
# Each line is passed to: npx skills add <line> # Each line is passed to: npx skills add <line>
# Format: owner/repo@skill (from npx skills find)
https://github.com/avdlee/swiftui-agent-skill --skill swiftui-expert-skill avdlee/swiftui-agent-skill@swiftui-expert-skill

View File

@ -59,7 +59,7 @@ Skills files are plain text. Each non-empty, non-comment line is passed to `npx
```text ```text
# iOS Skills # iOS Skills
https://github.com/avdlee/swiftui-agent-skill --skill swiftui-expert-skill avdlee/swiftui-agent-skill@swiftui-expert-skill
``` ```
### Sync Workflow ### Sync Workflow
@ -100,7 +100,7 @@ The CLI runs via `npx`, so you do not need a global install.
### Example Install Entry ### Example Install Entry
Add one line to the platform file (e.g., `ios-skills.txt`): Add one line to the platform file (e.g., `ios-skills.txt`):
```text ```text
https://github.com/avdlee/swiftui-agent-skill --skill swiftui-expert-skill avdlee/swiftui-agent-skill@swiftui-expert-skill
``` ```
### Notes ### Notes