Skip to content

kai config

Manage task states and system configuration.

Commands

config states

List all configured task states (kanban columns).

kai config states

config add-state

Add a new task state.

kai config add-state NAME --label LABEL --color COLOR [OPTIONS]
Option Description
--label Display label (required)
--color Color hex code (required)
--after Insert after this state
--done Mark as a done/completed state
kai config add-state REVIEW --label "Code Review" \
    --color "#8b5cf6" --after IN-PROGRESS

config remove-state

kai config remove-state NAME

config move-state

Reorder a state.

kai config move-state NAME --after OTHER_STATE