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

# Using skills in projects

> How to add and manage skills in a project

## Adding skills

From inside a project directory, run `reseed` for an interactive TUI browser, 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
```

The interactive TUI shows tabs for skills and packs. Use arrow keys to navigate, space/enter to toggle, and tab to switch between skills and packs. This copies skills into `.agents/skills/` where your AI agent can find them.

## Removing skills

Remove skills you no longer need from a project:

```bash theme={null}
reseed remove skill-a skill-b
```

## Checking installed skills

See what's currently installed in a project:

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

## Custom skills directory

By default, reseed installs skills to `.agents/skills/`. If your agent reads from a different directory, use the `--dir` flag:

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

This flag works with all project commands (`add`, `remove`, `sync`, `status`).

## Committing to git

After adding skills, commit the `.agents/skills/` directory to git. Your teammates get the skills automatically. Any compatible agent reads them directly.
