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

# runagent teardown (Coming Soon)

> Remove RunAgent configuration

## Synopsis

```bash theme={null}
runagent teardown [OPTIONS]
```

## Description

Remove RunAgent configuration and authentication data from your system.

## Options

| Option          | Description              | Default |
| --------------- | ------------------------ | ------- |
| `--force`, `-f` | Skip confirmation        | false   |
| `--all`         | Remove all RunAgent data | false   |

## Examples

```bash theme={null}
# Remove configuration (with confirmation)
runagent teardown

# Force removal without confirmation
runagent teardown --force

# Remove all RunAgent data
runagent teardown --all
```

## What Gets Removed

Standard teardown removes:

* `~/.runagent/config.json`
* Authentication tokens
* Cached credentials

With `--all` flag, also removes:

* Local deployment data
* Log files
* Temporary files

## Interactive Confirmation

```
$ runagent teardown
This will remove RunAgent configuration from your system.
Are you sure? [y/N]: y

Removing configuration... ✓
Clearing credentials... ✓

RunAgent configuration removed.
```

## See Also

* [`runagent setup`](/cli/commands/setup) - Set up configuration again
