Add list-skills tool for Claude

- Shell script (not .md) that lists all skill names
- Shows paths like 'testing/test-driven-development'
- Helps Claude avoid useless skill searches
- Added to getting-started workflow
This commit is contained in:
Jesse Vincent
2025-10-09 13:31:09 -07:00
parent 78a2446148
commit 0b58a84e6e
3 changed files with 30 additions and 16 deletions

View File

@@ -1,13 +0,0 @@
---
description: List all available skills by name
---
Run this command to see what skills exist:
```bash
find ${CLAUDE_PLUGIN_ROOT}/skills -name "SKILL.md" -type f | sed 's|.*/skills/||; s|/SKILL.md||' | sort
```
This shows skill paths like `testing/test-driven-development` without loading descriptions.
Use skills-search when you need to find something specific.