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

# Project commands

> Manage projects.

<Note>The Bevor CLI is coming soon. This page previews its planned command interface.</Note>

Manage projects.

## `bevor project select`

Interactively pick a project and save it as the active project.

```bash theme={null}
bevor project select [OPTIONS]
```

| Parameter         | Type    | Required | Default | Description                                               |
| ----------------- | ------- | -------- | ------- | --------------------------------------------------------- |
| `--project, -p`   | string  | No       | None    | Project id to select directly (skips interactive picker). |
| `--page-size, -n` | integer | No       | None    | Max projects to fetch for interactive selection.          |
| `--all, -a`       | boolean | No       | false   | Select from projects across all teams                     |

## `bevor project list`

List projects in a team.

```bash theme={null}
bevor project list [OPTIONS]
```

| Parameter         | Type    | Required | Default | Description                   |
| ----------------- | ------- | -------- | ------- | ----------------------------- |
| `--page-size, -n` | integer | No       | 20      | Results per page.             |
| `--name`          | string  | No       | None    | Filter by name.               |
| `--all, -a`       | boolean | No       | false   | All projects across all teams |
| `--json, -j`      | boolean | No       | false   | Output raw JSON.              |

## `bevor project create`

```bash theme={null}
bevor project create [OPTIONS]
```

| Parameter           | Type    | Required | Default | Description         |
| ------------------- | ------- | -------- | ------- | ------------------- |
| `--name, -n`        | string  | No       | None    | project name        |
| `--description, -d` | string  | No       | None    | project description |
| `--yes, -y`         | boolean | No       | false   | Skip confirmation.  |

## `bevor project get`

Print details for the project selected in `.bevor` config.

```bash theme={null}
bevor project get [OPTIONS]
```

| Parameter    | Type    | Required | Default | Description      |
| ------------ | ------- | -------- | ------- | ---------------- |
| `--json, -j` | boolean | No       | false   | Output raw JSON. |
