Skip to main content

1. Create your library

This only needs to be done once.
reseed init ~/my-skills       # specific directory
reseed init                   # or use the current directory

2. Install some skills

Pull in open source skills from GitHub:
reseed install anthropics/skills/frontend-design
reseed install user/repo user2/repo2   # multiple sources at once
Or create your own by adding a folder with a SKILL.md file to your library’s skills/ directory.

3. Add skills to a project

From inside a project directory, run reseed add for an interactive selector, or specify skills by name:
reseed add                               # interactive selection
reseed add skill-a skill-b               # add by name
reseed add my-pack skill-a               # mix packs and skills
reseed add --all                         # add everything in your library
reseed --dir .claude/skills add skill-a  # custom skills directory
This copies skills into .agents/skills/ (or the directory specified with --dir) where your AI agent can find them. Commit them to git and your whole team benefits.

4. Keep things up to date

When open source skills get updated upstream:
reseed fetch    # fetch latest into your library
reseed sync     # push library changes into the current project