# prb config command reference

Manage configuration for prb. This page documents **4 commands** under `prb config`.

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 config`      | Manage configuration for prb.                        | `prb config <command>`         | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/config/config.go)    |
| `prb config get`  | Print the value of a given configuration key.        | `prb config get <key>`         | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/config/get/get.go)   |
| `prb config list` | Print a list of configuration keys and values.       | `prb config list`              | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/config/list/list.go) |
| `prb config set`  | Update configuration with a value for the given key. | `prb config set <key> <value>` | [View implementation](https://github.com/getprobo/probo/blob/main/pkg/cmd/config/set/set.go)   |
