website/versioned_docs/version-1.0.0/cli-reference/todo.md
Generated from bd help --doc todo
Manage TODO items as lightweight task issues.
TODOs are regular task-type issues with convenient shortcuts: bd todo add "Title" -> bd create "Title" -t task -p 2 bd todo -> bd list --type task --status open bd todo done <id> -> bd close <id>
TODOs can be promoted to full issues by changing type or priority: bd update todo-123 --type bug --priority 0
bd todo
Add a new TODO item
bd todo add <title> [flags]
Flags:
-d, --description string Description
-p, --priority int Priority (0-4, default 2) (default 2)
Mark TODO(s) as done
bd todo done <id> [<id>...] [flags]
Flags:
--reason string Reason for closing (default: Completed)
List TODO items
bd todo list [flags]
Flags:
--all Show all TODOs including completed