| name | task-assistant |
| description | Intelligent task management via the `task` CLI. Invoke when users ask to: create/list/update/delete tasks, search tasks (text or semantic), track work items with due dates, organize tasks into projects, run batch operations, generate activity reports, or manage recurring tasks. Supports natural language dates and Google Calendar sync. |
Task Assistant
Overview
This skill enables task management via the task CLI tool backed by SQLite with
vector search. Use this skill to create, track, update, and organize tasks
during coding sessions.
Quick Start
task add "Implement authentication" --project Backend -d "next friday"
task add "Fix login bug" --tag bug --tag auth
task list
task list -q "auth"
task list --tag bug
task list --semantic "API integration"
task update 1 --status done
task view 1
Core Operations
Creating Tasks
task add "Task title" "Optional description"
task add "Review PR" --project Work -d "tomorrow at 14:00"
task add "Write tests" --parent 5
task add "Deploy fix" --json
Listing and Searching
task list
task list --all
task list -q "search term"
task list --semantic "bug fixes"
task list --overdue
task list --status in-progress
task list --priority 2
task list --project "Backend"
Updating Tasks
task update <id> --status done
task update <id> --status in-progress
task update <id> --priority 2
task update <id> --due "2025-12-31T14:00:00Z"
task update <id> --title "New title"
task update <id> -D "New description"
task update <id> --project "Work"
task update <id> --clear-project
Comments and Attachments
task comment <id> "Progress note here"
task attach <id> ./relevant-file.pdf
Batch Operations
task batch-add --file tasks.json
task bulk update 1 2 3 --status done
task bulk delete 4 5 6 --yes
Tag Management
task tag list
task tag add <id> bug priority
task tag remove <id> bug
Additional Resources
- For setup instructions (semantic search, Google Calendar): Read
references/setup_guide.md
- For advanced features (recurring tasks, reports, workspaces,
multi-database): Read
references/advanced_features.md
- For TUI keyboard shortcuts: Read
references/tui_reference.md
- For complete API reference: Read
references/api_reference.md