Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.crewship.ai/llms.txt

Use this file to discover all available pages before exploring further.

crewship label

Manage workspace labels. Labels are shared across every crew in the workspace and attached to issues via crewship issue update --labels.
crewship label <subcommand> [flags]
Alias: crewship labels

Subcommands

CommandDescription
listList labels in the current workspace.
createCreate a new label.
updateUpdate a label.
deleteDelete a label.

crewship label list

crewship label list
Output columns: ID, NAME, COLOR, GROUP.

crewship label create

crewship label create --name "Bug" --color "#EF4444"
crewship label create --name "P0" --color "#DC2626" --group priority
FlagTypeDefaultDescription
--namestring(required)Label name.
--colorstring(required)Hex color, e.g. #3B82F6 or #abc. Validated client-side.
--groupstringOptional label group (e.g. priority, status).

crewship label update

crewship label update <label-id> --name "Critical" --color "#B91C1C"
FlagTypeDefaultDescription
--namestringNew label name.
--colorstringNew hex color.
--groupstringNew label group. Pass empty string to clear.

crewship label delete

crewship label delete <label-id>
crewship label delete <label-id> --yes
FlagShortTypeDefaultDescription
--yes-yboolfalseSkip interactive confirmation. Required in non-TTY sessions.
Deleting a label automatically detaches it from every issue that had it attached.

See also

  • Issue commandscrewship issue update --labels <id> attaches labels to issues.