| name | Use the user todo application |
| description | Teaches you how to use the user's todo app. You can add tasks, browse tasks, filter them by dates, projects and more. |
TODO app
This app is accessed by command-line, through the bee command line tool. If you don't have bee in the PATH, then you need to inform the user about that.
Command Structure
Basic Pattern: bee <filter> <action> <arguments>
- Filters narrow down which tasks to operate on
- Actions specify what to do with the filtered tasks
- Multiple filters are combined with implicit AND
extensive list of commands is shown through bee help
Common Operations
1. Get Pending Tasks
Default output is filtering out deleted and completed tasks.
bee list
bee export
2. Filter by properties
bee _cmd get projects
bee list proj:test
bee list proj:test.work
bee all list +foo -bar status:completed
3. Add New Tasks
bee add "Task summary"
bee add "Write docs" proj:work.documentation due:2026-02-15 +writing +docs
4. Check Due Tasks
bee list due:today
bee list due:tomorrow
bee list due.before:today+3d
bee list due:2026-02-15
5. Mark task as completed
bee +foo done
bee 2 3 done
6. Modify tasks
bee +foo mod +bar
bee 2 3 mod -foo