co status-group — status groups
Manage the workspace's issue status groups
A status group is a reusable set of issue statuses that projects adopt; issues under an adopting project then use that group's statuses. co status-group manages the workspace's groups. The alias is co status-groups, and the group ID is the ID column from list.
co status-group list
Lists the workspace's status groups, with the status count and the first few status names.
co status-group list
┌───────┬───────────────────┬──────────────────────────────────────────────────────┐
│ ID │ NAME │ STATUSES │
├───────┼───────────────────┼──────────────────────────────────────────────────────┤
│ #122 │ Default [default] │ 7: Backlog, Todo, In Progress, 검토중, Done, … │
│ #818 │ 엔지니어 │ 8: Backlog, Todo, In Progress, Code Review, QA, … │
└───────┴───────────────────┴──────────────────────────────────────────────────────┘co status-group view <id>
Shows one group and the statuses inside it. Each status carries a category (backlog / todo / inprogress / done / duplicate / canceled) and a color; [system] marks a built-in status and [default] marks the default for that category.
co status-group view 818
Status group #818
엔지니어
template: engineer
┌────────┬────────────────────────────────┬────────────┬─────────┐
│ ID │ NAME │ CATEGORY │ COLOR │
├────────┼────────────────────────────────┼────────────┼─────────┤
│ #13622 │ Backlog [default] [system] │ backlog │ #95A2B3 │
│ #13624 │ In Progress [default] [system] │ inprogress │ #F2C94C │
│ #13625 │ Code Review │ inprogress │ #F2C94C │
│ #13627 │ Done [default] [system] │ done │ #4CB782 │
└────────┴────────────────────────────────┴────────────┴─────────┘co status-group templates
Lists the templates you can seed a new group from. Pass a KEY to --template on create.
co status-group templates
┌──────────┬──────────┬────────────────────────────────────────────────────┐
│ KEY │ LABEL │ STATUSES │
├──────────┼──────────┼────────────────────────────────────────────────────┤
│ engineer │ 엔지니어 │ 8: Backlog, Todo, In Progress, Code Review, QA, … │
│ pm │ PM │ 7: Backlog, Todo, In Progress, In Review, Done, … │
│ design │ 디자인 │ 8: Backlog, Todo, In Progress, Design Review, … │
└──────────┴──────────┴────────────────────────────────────────────────────┘co status-group create
Creates a status group in the current workspace. With --template it starts out filled with that template's statuses.
co status-group create -n "Eng Flow"
co status-group create -n "Eng Flow" --template engineer| Flag | Description |
|---|---|
| -n, --name <name> | Status group name (required) |
| --template <key> | Seed template key (engineer / pm / design — see co status-group templates) |
co status-group edit / co status-group delete
edit renames the group. delete asks for confirmation unless you pass -y.
co status-group edit 5 -n "Engineering"
co status-group delete 5 # asks first
co status-group delete 5 -y # skip the promptFine-grained status editing (names, colors, order) lives in the web app. The CLI covers creating, listing, renaming, and deleting groups.