todoist-cli
Todoist CLI
Manage tasks via the todoist command.
Requirements
Install from: https://github.com/buddyh/todoist-cli
brew install buddyh/tap/todoist
# or
go install github.com/buddyh/todoist-cli/cmd/todoist@latest
Commands
# Tasks
todoist # Today's tasks
todoist tasks --all # All tasks
todoist tasks --filter "p1" # High priority
todoist tasks --filter "overdue" # Overdue
todoist tasks -p Work # By project
# Add tasks
todoist add "Task name"
todoist add "Task" -d tomorrow -P 1 # With due date and priority
todoist add "Task" -p Work -l urgent # With project and label
# Manage tasks
todoist complete <id> # Complete task
todoist done <id> # Alias for complete
todoist delete <id> # Delete task
todoist update <id> --due "monday" # Update due date
todoist update <id> -P 2 # Update priority
todoist view <id> # View task details
todoist search "keyword" # Search tasks
todoist reopen <id> # Reopen completed task
# Move tasks (Kanban)
todoist move <id> --section "In Progress"
todoist move <id> --project "Work"
# Projects, labels, sections
todoist projects # List projects
todoist projects add "New Project" # Create project
todoist labels # List labels
todoist labels add urgent --color red
todoist sections -p Work # List sections
# Comments
todoist comment <id> # View comments
todoist comment <id> "Note" # Add comment
# Completed tasks
todoist completed # Recently completed
todoist completed --since 2024-01-01
JSON Output
All commands support --json:
todoist tasks --json
todoist tasks --json | jq '.[] | .content'
Priority Mapping
| Flag | Todoist |
|---|---|
-P 1 |
p1 (highest) |
-P 2 |
p2 |
-P 3 |
p3 |
-P 4 |
p4 (lowest) |
More from buddyh/agent-skills
alexa-cli
Control Amazon Echo/Alexa devices via the `alexacli` CLI. Use when the user asks to speak/announce on Echo devices, send voice commands to Alexa, control smart home devices, list Alexa devices, or trigger routines.
3project-spawn
Spawn a new Claude Code or Codex session in a project directory with context handoff. This skill should be used when discussion shifts to a different project/repo and the user wants to work on it in a dedicated session. Creates a handoff document with relevant context from the current conversation, then launches a new tmux session ready to continue.
3agent-comms
Send messages to other Claude Code or Codex sessions via tmux. Hand off complex debugging context, get second opinions, share detailed technical findings across sessions.
2deep-dive
Deep dive on any topic. Decomposes into subtopics, researches each in parallel with thorough source gathering, then synthesizes into a comprehensive report (4,000-10,000+ words, 40-100+ sources). Scales depth dynamically based on topic complexity. Use when asked for a deep dive, deep research, comprehensive analysis, or thorough investigation of a topic.
2transcribe-and-analyze
Transcribe audio and video from URLs (YouTube, direct media links) using WhisperKit locally. Optionally analyze transcripts with AI when explicitly requested. Use when users provide URLs to media content and request transcription or speech-to-text conversion.
2claude-session-handoff
Recover working context from a prior Claude Code session by reading its JSONL conversation log and turning it into a clean handoff for Codex or another agent. Use when the user wants Codex to continue where Claude left off in the same repo, asks you to get up to speed on previous work, wants to resume a Claude thread after an interruption or outage, or needs help finding and summarizing the relevant file in ~/.claude/projects/.
2