# prb task command reference

Manage tasks. This page documents **12 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 comment`        | Manage task comments.          | `prb task comment <command>`   | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/comment/comment.go)       |
| `prb task comment create` | Add a comment to a task.       | `prb task comment create`      | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/comment/create/create.go) |
| `prb task comment delete` | Delete a task comment.         | `prb task comment delete <id>` | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/comment/delete/delete.go) |
| `prb task comment list`   | List comments on a task.       | `prb task comment list`        | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/comment/list/list.go)     |
| `prb task comment update` | Update a task comment.         | `prb task comment update <id>` | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/comment/update/update.go) |
| `prb task comment view`   | View a task comment.           | `prb task comment view <id>`   | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/task/comment/view/view.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)             |
