Add cancelled status for tasks

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Gros Frumos 2026-03-15 18:22:17 +02:00
parent 6e872121eb
commit bf38532f59
5 changed files with 7 additions and 6 deletions

View file

@ -223,7 +223,7 @@ def task_show(ctx, id):
@task.command("update")
@click.argument("task_id")
@click.option("--status", type=click.Choice(
["pending", "in_progress", "review", "done", "blocked", "decomposed"]),
["pending", "in_progress", "review", "done", "blocked", "decomposed", "cancelled"]),
default=None, help="New status")
@click.option("--priority", type=int, default=None, help="New priority (1-10)")
@click.pass_context