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

# Reset

# `fluffbuzz reset`

Reset local config/state (keeps the CLI installed).

Options:

* `--scope <scope>`: `config`, `config+creds+sessions`, or `full`
* `--yes`: skip confirmation prompts
* `--non-interactive`: disable prompts; requires `--scope` and `--yes`
* `--dry-run`: print actions without removing files

Examples:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz backup create
fluffbuzz reset
fluffbuzz reset --dry-run
fluffbuzz reset --scope config --yes --non-interactive
fluffbuzz reset --scope config+creds+sessions --yes --non-interactive
fluffbuzz reset --scope full --yes --non-interactive
```

Notes:

* Run `fluffbuzz backup create` first if you want a restorable snapshot before removing local state.
* If you omit `--scope`, `fluffbuzz reset` uses an interactive prompt to choose what to remove.
* `--non-interactive` is only valid when both `--scope` and `--yes` are set.
