Просмотр исходного кода

Add /list-skills command to show available skills

Shows skill names without descriptions to prevent unnecessary searches.
Jesse Vincent 11 месяцев назад
Родитель
Сommit
78a2446148
1 измененных файлов с 13 добавлено и 0 удалено
  1. 13 0
      commands/list-skills.md

+ 13 - 0
commands/list-skills.md

@@ -0,0 +1,13 @@
+---
+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.