Create and claim tasks in a single command. No more separate `create` then `edit --claim` — just pass `--claim` directly when creating.
New: Create with claim
The `create` command now accepts `--claim` to immediately claim a task at creation time. This streamlines the multi-agent workflow from two commands down to one.
# Before: two commands
kanban-md create "Fix auth bug" --status in-progress
kanban-md edit 42 --claim $(kanban-md agent-name)
# After: one command
kanban-md create "Fix auth bug" --status in-progress --claim $(kanban-md agent-name)Changed: Better error messages for missing claims
When a status requires `--claim` and you forget it, the error message now tells you how to generate a name:
status "in-progress" requires --claim <name> (run 'agent-name' to generate one)
Upgrading
No action needed. The new `--claim` flag on `create` is purely additive. Existing workflows are unaffected.
Full diff: `v0.30.0...v0.31.0`