> ## Documentation Index
> Fetch the complete documentation index at: https://beads.gascity.com/llms.txt
> Use this file to discover all available pages before exploring further.

# bd todo

> Manage TODO items (convenience wrapper for task issues)

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 [flags]
bd todo [command]
```

## bd todo add

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)
```

## bd todo done

Mark TODO(s) as done

```
bd todo done <id> [<id>...] [flags]
```

**Flags:**

```
      --reason string   Reason for closing (default: Completed)
```

## bd todo list

List TODO items

```
bd todo list [flags]
```

**Flags:**

```
      --all   Show all TODOs including completed
```
