co label — labels
Manage workspace labels — list / view / create / edit / delete
co label manages workspace labels. Labels are identified by an integer id, and the color is a palette color id (1..8).
co label list
Lists labels in the current workspace.
co label list
co label list --web # open the labels page in the browser
co label list --json # raw JSON arrayco label view <id>
Shows details for a single label.
co label view 12
co label view 12 --web
co label view 12 --jsonco label create
Creates a new label. --name is required; --color is a palette id (1..8).
co label create -n bug --color 1
co label create -n needs-design --color 3 -d "design review required"
co label create -n backend --json| Flag | Description |
|---|---|
| -n, --name <name> | Label name (required) |
| --color <1..8> | Palette color id |
| -d, --description <text> | Label description |
| --json | Emit the created label as JSON |
co label edit <id>
Partially updates a label (name / color / description).
co label edit 12 -n hotfix # rename
co label edit 12 --color 5 # change color
co label edit 12 -d "blocks the release"co label delete <id>
Permanently deletes a label. Use -y to skip the confirmation prompt.
co label delete 12 # confirmation prompt
co label delete 12 -y # skip confirmation