Todo Commands
Manage project tasks from the command line.
Synopsis#
Loading code block...
Commands#
| Command | Description |
|---|---|
list | List all todos |
add <text> | Add a new todo |
done <index> | Mark a todo as complete |
remove <index> | Remove a todo |
clear | Clear completed todos |
bootspring todo list#
List all pending and completed todos.
Usage#
Loading code block...
Options#
| Option | Description |
|---|---|
--pending | Show only pending todos |
--completed | Show only completed todos |
--json | Output as JSON |
Example#
Loading code block...
Output:
Todo List
═══════════════════════════════════════════════════════════════════
Pending (3)
───────────
0. Set up authentication
1. Create user dashboard
2. Add payment integration
Completed (2)
─────────────
3. ✓ Initialize project
4. ✓ Configure database
───────────────────────────────────────────────────────────────────
3 pending, 2 completed
Loading code block...
bootspring todo add#
Add a new todo item.
Usage#
Loading code block...
Examples#
Loading code block...
Output:
Added: Implement email notifications
Todo list now has 4 pending items
Loading code block...
bootspring todo done#
Mark a todo as complete.
Usage#
Loading code block...
Example#
Loading code block...
Output:
Completed: Set up authentication
Todo list: 2 pending, 3 completed
bootspring todo remove#
Remove a todo item.
Usage#
Loading code block...
Example#
Loading code block...
Output:
Removed: Add payment integration
Todo list: 2 pending, 2 completed
bootspring todo clear#
Clear all completed todos.
Usage#
Loading code block...
Options#
| Option | Description |
|---|---|
--all | Clear all todos (pending and completed) |
--force | Don't ask for confirmation |
Example#
Loading code block...
Output:
? Clear 2 completed todos? (y/N) y
Cleared 2 completed todos
Todo list: 2 pending
Loading code block...
Todo File#
Todos are stored in todo.md:
Loading code block...
Configuration#
Custom Path#
Loading code block...
Tips#
Quick Task Management#
Loading code block...
Use with Workflows#
Loading code block...
Share with Team#
Commit todo.md to version control:
Loading code block...
Related#
- bootspring_todo - MCP tool reference
- Loop Commands - PRD-based task management
- Workflow Commands - Workflow management