Skip to content

Reusable AI agent skills for development workflows.

Notifications You must be signed in to change notification settings

helderberto/skills

Repository files navigation

Agent Skills

Personal collection of Claude Code agent skills - centralized repository for development workflows.

About

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.

Installation

Local (Project-specific)

Install from GitHub (recommended):

npx skills add helderberto/skills --agent claude-code --all

Install specific skill:

npx skills add helderberto/skills --agent claude-code --skill commit

Global (All Projects)

Install globally:

npx skills add helderberto/skills --agent claude-code --all --global

List available skills:

npx skills add helderberto/skills --list

Managing Skills

Local

List installed skills:

npx skills list

Update to latest version:

npx skills remove --all -y
npx skills add helderberto/skills --agent claude-code --all

Global

List globally installed skills:

npx skills list --global

Update global installation:

npx skills remove --all --global -y
npx skills add helderberto/skills --agent claude-code --all --global

Development

When developing skills locally:

cd /path/to/skills
npx skills add . --agent claude-code --all

This installs from the local repository for testing before pushing.

Structure

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.

About

Reusable AI agent skills for development workflows.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages