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

# rm

> Remove a specific computer

## Usage

```bash theme={null}
npx @cusedev/cli rm <identifier> [options]
```

## Description

The `rm` command removes a specific computer from your project, stopping and cleaning up its container if it's running.

## Options

| Option    | Alias | Description              |
| --------- | ----- | ------------------------ |
| `--force` | `-f`  | Skip confirmation prompt |

## Example

```bash theme={null}
# Remove with confirmation prompt
npx @cusedev/cli rm my-computer

# Force remove without confirmation
npx @cusedev/cli rm my-computer --force
```
