# prb task command reference

Manage tasks. This page documents **6 commands** under `prb task`.

Run any command with `--help` to inspect the flags, accepted values, and examples provided by your installed version. Return to the [complete CLI command reference](/docs/developers/cli/commands) to browse another command.

| Command           | Description                    | Usage                  | Source                                                                                           |
| ----------------- | ------------------------------ | ---------------------- | ------------------------------------------------------------------------------------------------ |
| `prb task`        | Manage tasks.                  | `prb task <command>`   | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/task.go)          |
| `prb task create` | Create a new task.             | `prb task create`      | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/create/create.go) |
| `prb task delete` | Delete a task.                 | `prb task delete <id>` | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/delete/delete.go) |
| `prb task list`   | List tasks in an organization. | `prb task list`        | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/list/list.go)     |
| `prb task update` | Update a task.                 | `prb task update <id>` | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/update/update.go) |
| `prb task view`   | View a task.                   | `prb task view <id>`   | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/view/view.go)     |
