From save-and-reload
List all saved skills. Use when the user says "list my saved skills", "show my skills", "what skills do I have", or wants to see available saved skills.
How this skill is triggered — by the user, by Claude, or both
Slash command
/save-and-reload:list-skillsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are helping the user see all their saved skills from `~/.claude/.saved/skills/`.
You are helping the user see all their saved skills from ~/.claude/.saved/skills/.
First, display this message:
🗂️ Browsing skill archive...
Then check if the skills directory exists and has files:
ls ~/.claude/.saved/skills/*.md 2>/dev/null
If no skills exist, display:
No saved skills found.
To save a skill:
1. Complete a task with Claude
2. Say "save this" to capture it as a reusable skill
Your skills will be stored in ~/.claude/.saved/skills/
For each .md file in the directory, read the YAML frontmatter to extract:
name: The skill identifierdescription: One-line summarycreated: When it was saved (optional, for sorting)complexity: simple/medium/complex (optional)tags: Categories (optional)Use this bash command to list all skill files:
for f in ~/.claude/.saved/skills/*.md; do
[ -f "$f" ] && head -20 "$f"
echo "---FILE_SEPARATOR---"
done
Present the skills in a clean, simple table format:
🗂️ Saved Skills
════════════════════════════════════════════════════════════════
Name │ Description
════════════════════════════════════════════════════════════════
add-auth-flow │ Add JWT authentication to an Express API
create-component │ Create a React component with tests
setup-ci │ Configure GitHub Actions CI pipeline
════════════════════════════════════════════════════════════════
💾 3 skills saved
To reload: "reload skill [name]"
To save new: complete a task, then "save this"
Use box-drawing characters for a clean look:
═ for horizontal lines│ for vertical separator🗂️ Saved Skills
════════════════════════════════════════════════════════════════
Name │ Description
════════════════════════════════════════════════════════════════
api-endpoint │ Create a new REST API endpoint with validation
component-gen │ Generate React component with TypeScript
db-migration │ Create and run a database migration
docker-setup │ Add Docker configuration to a project
test-suite │ Set up Jest testing with coverage
════════════════════════════════════════════════════════════════
💾 5 skills saved
To reload: "reload skill [name]"
To save new: complete a task, then "save this"
npx claudepluginhub argonavis-labs/save-and-reload --plugin save-and-reloadLists all installed skills grouped by source (project, personal, plugin), showing which plugin each belongs to with keyword-style descriptions.
Manages Claude Code skills: lists existing ones via script, improves for optimal auto-activation, creates new from prompts or spec files.
Guides creation of new Claude Code skills from scratch, listing existing user/project skills, samples, current directory, and providing metadata templates for descriptions/tags.