> ## 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.

# Quickstart

> Get up and running with reseed in under a minute

## 1. Create your library

This only needs to be done once.

```bash theme={null}
reseed init ~/my-skills       # specific directory
reseed init                   # or use the current directory
```

## 2. Install some skills

Pull in open source skills from GitHub:

```bash theme={null}
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` to browse your library interactively, or specify skills by name:

```bash theme={null}
reseed                                   # interactive TUI browser
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 upstream skills change, install the latest and sync into your projects:

```bash theme={null}
reseed install user/repo               # re-install latest into your library
reseed sync                            # push library changes into the current project
```
