Skip to main content

Adding local skills

Create a directory inside your library’s skills/ folder with a SKILL.md file:
mkdir ~/my-skills/skills/my-skill
Then write your SKILL.md with whatever instructions you want your AI agent to follow. The skill is immediately available to add to any project.

Installing skills from GitHub

Reseed can fetch skills from any public GitHub repository. It walks the repo’s directory tree and finds every folder containing a SKILL.md.
reseed install user/repo              # all skills from the repo
reseed install user/repo/skill-name   # a specific skill
reseed install user/repo@v1.0         # pinned to a tag
reseed install user/repo user2/repo2  # multiple sources at once
Installed skills are tracked in reseed.yaml so reseed can update them later with reseed fetch.

Listing your skills

reseed library
This lists all skills in your library. External skills (fetched from GitHub) are marked with (external).

Organizing with packs

Create packs interactively:
reseed pack frontend
This opens a selector showing all skills in your library. See Packs for details.