todoist
Manage Todoist tasks. Use when the user mentions "todoist", "my tasks", "task list", "add a task", "complete task", or wants to interact with their Todoist account.
What this skill does
# Todoist Integration
Manage tasks via `td` CLI (todoist-rs).
## Installation
```bash
brew install LuoAndOrder/tap/todoist-cli
```
Or install via Cargo: `cargo install todoist-cli-rs`
## Sync Behavior
- **Writes auto-sync**: `add`, `done`, `edit`, `delete` hit the API directly
- **Reads use cache**: `list`, `today`, `show` read from local cache
- **Sync when needed**: Use `--sync` flag or `td sync` for fresh data
```bash
td sync # Incremental sync (fast)
td sync --full # Full rebuild if cache seems off
```
## Common Operations
### List Tasks
```bash
# Today's agenda (includes overdue)
td today --sync
# Today only (no overdue)
td today --no-overdue
# All tasks
td list --sync
# By project
td list -p "Inbox" --sync
td list -p "Work" --sync
# High priority
td list -f "p1 | p2" --sync
# By label
td list -l "urgent" --sync
# Complex filters
td list -f "today & p1" --sync
td list -f "(today | overdue) & !@waiting_on" --sync
```
### Add Tasks
Quick add (natural language):
```bash
td quick "Buy milk tomorrow @errands #Personal"
td quick "Review PR tomorrow" --note "Check the auth changes carefully"
```
Structured add:
```bash
td add "Task content" \
-p "Inbox" \
-P 2 \
-d "today" \
-l "urgent"
# With description
td add "Prepare quarterly report" -P 1 -d "friday" \
--description "Include sales metrics and customer feedback summary"
```
Options:
- `-P, --priority` - 1 (highest) to 4 (lowest, default)
- `-p, --project` - project name
- `-d, --due` - due date ("today", "tomorrow", "2026-01-30", "next monday")
- `-l, --label` - label (repeat for multiple)
- `--description` - task description/notes (shown below task title)
- `--section` - target section within project
- `--parent` - parent task ID (creates subtask)
### Complete Tasks
```bash
td done <task-id>
td done <id1> <id2> <id3> # Multiple at once
td done <id> --all-occurrences # End recurring task permanently
```
### Modify Tasks
```bash
td edit <task-id> -c "New content"
td edit <task-id> --description "Additional notes here"
td edit <task-id> -P 1
td edit <task-id> -d "tomorrow"
td edit <task-id> --add-label "urgent"
td edit <task-id> --remove-label "next"
td edit <task-id> --no-due # Remove due date
td edit <task-id> --section "Next Actions"
td edit <task-id> -p "Work" # Move to different project
```
Edit options:
- `-c, --content` - update task title
- `--description` - update task description/notes
- `-P, --priority` - change priority (1-4)
- `-d, --due` - change due date
- `--no-due` - remove due date
- `-l, --label` - replace all labels
- `--add-label` - add a label
- `--remove-label` - remove a label
- `-p, --project` - move to different project
- `--section` - move to section within project
### Show Task Details
```bash
td show <task-id>
td show <task-id> --comments
```
### Delete Tasks
```bash
td delete <task-id>
```
### Reopen Completed Tasks
```bash
td reopen <task-id>
```
## Project & Label Management
```bash
# Projects
td projects # List all
td projects add "New Project"
td projects show <id>
# Labels
td labels # List all
td labels add "urgent"
```
## Filter Syntax
Use with `-f/--filter`:
- `|` for OR: `today | overdue`
- `&` for AND: `@next & #Personal`
- Parentheses: `(today | overdue) & p1`
- Negation: `!@waiting_on`
- Priority: `p1`, `p2`, `p3`, `p4`
- Dates: `today`, `tomorrow`, `overdue`, `no date`, `7 days`
## Workflow Tips
1. **Morning review**: `td today --sync`
2. **Quick capture**: `td quick "thing to do"`
3. **Focus list**: `td list -f "@next" --sync`
4. **Waiting on**: `td list -f "@waiting_on" --sync`
5. **End of day**: `td today` (cache is fine, already synced)
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.