name: skills-perso description: | List personal (user-created) skills from ~/.claude/skills/. Excludes framework/gstack skills and symlinked/external skills. Shows only skills the user wrote themselves. Trigger: "skills-perso", "mes skills", "list my skills", "quels skills", "skills perso". argument-hint: "" disable-model-invocation: false allowed-tools:
List only user-created skills from ~/.claude/skills/, excluding framework
(gstack) skills, symlinked directories, and external skills.
Use git history to identify skills added in bulk commits (framework installs). A skill is considered framework if its SKILL.md was first added in a commit that also added 5+ other SKILL.md files. User-created skills are added in small commits (1-3 SKILL.md files at a time).
Run this command to get the list of personal skills:
for dir in ~/.claude/skills/*/; do
[ -L "${dir%/}" ] && continue
skill=$(basename "${dir%/}")
skill_file="${dir}SKILL.md"
[ -f "$skill_file" ] || continue
commit=$(git -C ~/Documents/claude log --diff-filter=A --format='%H' -1 -- "skills/${skill}/SKILL.md" 2>/dev/null)
[ -z "$commit" ] && continue
count=$(git -C ~/Documents/claude diff-tree --no-commit-id --name-only -r "$commit" -- 'skills/*/SKILL.md' 2>/dev/null | wc -l)
[ "$count" -le 3 ] && echo "$skill"
done
SKILL.md.name and description from the YAML frontmatter.## Personal Skills (~/.claude/skills/)
| Skill | Description |
|-------|-------------|
| feat | Small feature implementation (1-5 files)... |
| ... | ... |
**Total: N personal skills** (M framework skills excluded)
Keep descriptions to one line (~80 chars max, truncate with "..." if needed).