Personal collection of Claude Code agent skills - centralized repository for development workflows.
Skills are managed using the skills CLI - a tool for installing and managing reusable AI agent capabilities.
Philosophy: Skills are centralized in this repository and consumed via GitHub, not duplicated across projects.
Install from GitHub (recommended):
npx skills add helderberto/skills --agent claude-code --allInstall specific skill:
npx skills add helderberto/skills --agent claude-code --skill commitInstall globally:
npx skills add helderberto/skills --agent claude-code --all --globalList available skills:
npx skills add helderberto/skills --listList installed skills:
npx skills listUpdate to latest version:
npx skills remove --all -y
npx skills add helderberto/skills --agent claude-code --allList globally installed skills:
npx skills list --globalUpdate global installation:
npx skills remove --all --global -y
npx skills add helderberto/skills --agent claude-code --all --globalWhen developing skills locally:
cd /path/to/skills
npx skills add . --agent claude-code --allThis installs from the local repository for testing before pushing.
Each skill is a directory containing:
SKILL.md- Main instructions (keep under 50 lines)- Reference files - For progressive disclosure (patterns, examples, templates)
scripts/- Executable helpers (when needed)
Skills follow progressive disclosure: core workflow in SKILL.md, details in supporting files.