This commit is contained in:
Toby
2026-03-24 17:12:57 -04:00
parent 6fc7cc9906
commit 2d209b9258
2 changed files with 37 additions and 7 deletions
+9 -3
View File
@@ -223,11 +223,17 @@ compliance/
skills-ref validate ./path/to/your-skill
```
2. **Test your instructions** - ensure they work as documented
2. **Confirm [skills.sh](https://skills.sh/docs) CLI discovery** (recommended): from the repository root, your skill should appear when listing skills. This matches how users install via `npx skills add` ([CLI reference](https://skills.sh/docs/cli)). Telemetry can be disabled per the [FAQ](https://skills.sh/docs/faq).
```bash
DISABLE_TELEMETRY=1 npx skills add . --list
```
On Windows PowerShell: `$env:DISABLE_TELEMETRY = "1"; npx skills add . --list`
3. **Check for duplicates** - ensure a similar skill doesn't already exist
3. **Test your instructions** - ensure they work as documented
4. **Review the style** - match the conventions of existing skills
4. **Check for duplicates** - ensure a similar skill doesn't already exist
5. **Review the style** - match the conventions of existing skills
### Pull Request Guidelines