CLI Commands
Kora provides a robust CLI for manipulating tasks from your terminal or shell scripts.
Interactive Command Reference
Project Initialization
$ npm install -g kora-dev$ kora initThe kora init command initializes a .kora/ directory at your project root, scaffolding the tasks/ repository and the config.yml schema.
Core Task Operations
kora create
Creates a new task file with the specified title and metadata.
kora create "Implement login flow" --priority high --labels authkora list
Lists tasks with optional filtering by status, priority, or labels.
kora list --status todo --priority highkora claim
Atomic task claiming for agents, preventing race conditions.
kora claim TASK-a4f2b3