mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 23:01:08 +00:00
36 lines
1.0 KiB
Markdown
36 lines
1.0 KiB
Markdown
---
|
|
summary: "CLI reference for `openclaw reset` (reset local state/config)"
|
|
read_when:
|
|
- You want to wipe local state while keeping the CLI installed
|
|
- You want a dry-run of what would be removed
|
|
title: "reset"
|
|
---
|
|
|
|
# `openclaw 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
|
|
openclaw backup create
|
|
openclaw reset
|
|
openclaw reset --dry-run
|
|
openclaw reset --scope config --yes --non-interactive
|
|
openclaw reset --scope config+creds+sessions --yes --non-interactive
|
|
openclaw reset --scope full --yes --non-interactive
|
|
```
|
|
|
|
Notes:
|
|
|
|
- Run `openclaw backup create` first if you want a restorable snapshot before removing local state.
|
|
- If you omit `--scope`, `openclaw reset` uses an interactive prompt to choose what to remove.
|
|
- `--non-interactive` is only valid when both `--scope` and `--yes` are set.
|