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

# Configuration

> Global config and the --dir flag

## Global config

Reseed stores a global config at `~/.config/reseed` with your library path and default skills directory.

```yaml theme={null}
library: /Users/you/my-skills      # set by reseed init
dir: .agents/skills                # default skills directory
```

Use `reseed config` to manage it:

```bash theme={null}
reseed config dir                  # show current value
reseed config dir .claude/skills   # change default skills directory
```

The library path is set automatically when you run `reseed init`.

## The --dir flag

The `--dir` flag on any command overrides the configured default skills directory for that invocation:

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

This is useful if your agent reads skills from a different directory than the default `.agents/skills/`.
