> ## Documentation Index
> Fetch the complete documentation index at: https://reseed.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Managing your library

> How to organize and maintain your skill library

## Adding local skills

Create a directory inside your library's `skills/` folder with a `SKILL.md` file:

```bash theme={null}
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`.

```bash theme={null}
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:

```bash theme={null}
reseed
```

Or use `reseed list` for a non-interactive listing:

```bash theme={null}
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](/concepts/packs) for details.
