Skip to main content

Documentation Index

Fetch the complete documentation index at: https://reseed.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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
reseed install user/repo/src/skills -p kit  # into a pack

Browsing your library

Run reseed with no subcommand to open an interactive TUI browser with tabs for skills and packs:
reseed
Or use reseed list for a non-interactive listing:
reseed list

Organizing with packs

Packs are directories in your library that group related skills together. Create one by organizing skills into a subdirectory, or use the --pack flag when installing from GitHub. See Packs for details.