···23## Core Task Management (TaskWarrior-inspired)
45-- `list` - Display tasks with filtering and sorting options
6-- `projects` - List all project names
7-- `tags` - List all tag names
89-- `create|new` - Add new task with description and optional metadata
1011-- `view` - View task by ID
12-- `done` - Mark task as completed
13-- `update` - Edit task properties (description, priority, project, tags)
14-- `start/stop` - Track active time on tasks
15-- `annotate` - Add notes/comments to existing tasks
1617-- `delete` - Remove task permanently
1819-- `calendar` - Display tasks in calendar view
20-- `timesheet` - Show time tracking summaries
2122## Todo.txt Compatibility
2324-- `archive` - Move completed tasks to done.txt
25-- `[con]texts` - List all contexts (@context)
26-- `[proj]ects` - List all projects (+project)
27-- `[pri]ority` - Set task priority (A-Z)
28-- `[depri]oritize` - Remove priority from task
29-- `[re]place` - Replace task text entirely
30-- `prepend/append` - Add text to beginning/end of task
3132## Media Queue Management
3334-- `movie add` - Add movie to watch queue
35-- `movie list` - Show movie queue with ratings/metadata
36-- `movie watched|seen` - Mark movie as watched
37-- `movie remove|rm` - Remove from queue
3839-- `tv add` - Add TV show/season to queue
40-- `tv list` - Show TV queue with episode tracking
41-- `tv watched|seen` - Mark episodes/seasons as watched
42-- `tv remove|rm` - Remove from TV queue
4344## Reading List Management
4546-- `book add` - Add book to reading list
47-- `book list` - Show reading queue with progress
48-- `book reading` - Mark book as currently reading
49-- `book finished|read` - Mark book as completed
50-- `book remove|rm` - Remove from reading list
51-- `book progress` - Update reading progress percentage
5253## Data Management
5455-- `sync` - Synchronize with remote storage
56-- `sync setup` - Setup remote storage
5758-- `backup` - Create local backup
5960-- `import` - Import from various formats (CSV, JSON, todo.txt)
61-- `export` - Export to various formats
6263-- `config` - Manage configuration settings
6465-- `undo` - Reverse last operation
6667## Notes
6869-- `create|new` - Creates a new markdown note and optionally opens in configured editor
70 - Creates a note from existing markdown file content
71-- `list` - Opens interactive TUI browser for navigating and viewing notes
72-- `read|view` - Displays formatted note content with syntax highlighting
73-- `edit|update` - Opens configured editor OR Replaces note content with new markdown file
74-- `remove|rm|delete|del` - Permanently removes the note file and metadata
7576-- `search` - Search notes by content, title, or tags
77-- `tag` - Add/remove tags from notes
78-- `recent` - Show recently created/modified notes
79-- `templates` - Create notes from predefined templates
80-- `archive` - Archive old notes
81-- `export` - Export notes to various formats
···23## Core Task Management (TaskWarrior-inspired)
45+- [x] `list` - Display tasks with filtering and sorting options
6+- [ ] `projects` - List all project names
7+- [ ] `tags` - List all tag names
89+- [x] `create|new` - Add new task with description and optional metadata
1011+- [x] `view` - View task by ID
12+- [x] `done` - Mark task as completed
13+- [x] `update` - Edit task properties (description, priority, project, tags)
14+- [ ] `start/stop` - Track active time on tasks
15+- [ ] `annotate` - Add notes/comments to existing tasks
1617+- [x] `delete` - Remove task permanently
1819+- [ ] `calendar` - Display tasks in calendar view
20+- [ ] `timesheet` - Show time tracking summaries
2122## Todo.txt Compatibility
2324+- [ ] `archive` - Move completed tasks to done.txt
25+- [ ] `[con]texts` - List all contexts (@context)
26+- [ ] `[proj]ects` - List all projects (+project)
27+- [ ] `[pri]ority` - Set task priority (A-Z)
28+- [ ] `[depri]oritize` - Remove priority from task
29+- [ ] `[re]place` - Replace task text entirely
30+- [ ] `prepend/append` - Add text to beginning/end of task
3132## Media Queue Management
3334+- [ ] `movie add` - Add movie to watch queue
35+- [ ] `movie list` - Show movie queue with ratings/metadata
36+- [ ] `movie watched|seen` - Mark movie as watched
37+- [ ] `movie remove|rm` - Remove from queue
3839+- [ ] `tv add` - Add TV show/season to queue
40+- [ ] `tv list` - Show TV queue with episode tracking
41+- [ ] `tv watched|seen` - Mark episodes/seasons as watched
42+- [ ] `tv remove|rm` - Remove from TV queue
4344## Reading List Management
4546+- [x] `book add` - Add book to reading list
47+- [x] `book list` - Show reading queue with progress
48+- [x] `book reading` - Mark book as currently reading
49+- [x] `book finished|read` - Mark book as completed
50+- [x] `book remove|rm` - Remove from reading list
51+- [x] `book progress` - Update reading progress percentage
5253## Data Management
5455+- [ ] `sync` - Synchronize with remote storage
56+- [ ] `sync setup` - Setup remote storage
5758+- [ ] `backup` - Create local backup
5960+- [ ] `import` - Import from various formats (CSV, JSON, todo.txt)
61+- [ ] `export` - Export to various formats
6263+- [ ] `config` - Manage configuration settings
6465+- [ ] `undo` - Reverse last operation
6667## Notes
6869+- [x] `create|new` - Creates a new markdown note and optionally opens in configured editor
70 - Creates a note from existing markdown file content
71+- [x] `list` - Opens interactive TUI browser for navigating and viewing notes
72+- [x] `read|view` - Displays formatted note content with syntax highlighting
73+- [x] `edit|update` - Opens configured editor OR Replaces note content with new markdown file
74+- [x] `remove|rm|delete|del` - Permanently removes the note file and metadata
7576+- [ ] `search` - Search notes by content, title, or tags
77+- [ ] `tag` - Add/remove tags from notes
78+- [ ] `recent` - Show recently created/modified notes
79+- [ ] `templates` - Create notes from predefined templates
80+- [ ] `archive` - Archive old notes
81+- [ ] `export` - Export notes to various formats