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

# reseed add

> Add skills or packs to the current project

```bash theme={null}
reseed add <skills or packs...>
reseed add --all
```

Copies skills or packs from your library into the project's `.agents/skills/` directory.

For interactive browsing, use the [`reseed`](/introduction) root command instead.

## Flags

| Flag    | Short | Description                      |
| ------- | ----- | -------------------------------- |
| `--all` |       | Add every skill from the library |

## Examples

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

## Global flags

* `--dir` Override the skills directory (default `.agents/skills/`)

```bash theme={null}
reseed --dir .claude/skills add skill-a
```
