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

# Bot management

> Manage bots using the CLI

Manage your bots with CLI commands.

## List bots

List all bots in workspace:

```bash theme={null}
bp bots list
```

Alias: `bp bots ls`

## Get bot

Get bot details:

```bash theme={null}
bp bots get --id <bot-id>
```

## Create bot

Create a new bot:

```bash theme={null}
bp bots create
```

Alias: `bp bots new`

## Delete bot

Delete a bot:

```bash theme={null}
bp bots delete --id <bot-id>
```

Alias: `bp bots rm`

## Options

### --id

Bot ID:

```bash theme={null}
bp bots get --id abc123
bp bots delete --id abc123
```

### --workDir

Working directory:

```bash theme={null}
bp bots list --workDir ./my-bot
```
