Awesome-openclaw-skills todoist-2
Manage Todoist tasks, projects, labels, and sections via the `todoist` CLI. Use when a user asks to add/complete/list tasks, show today's tasks, search tasks, or manage projects.
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/todoist-2" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-todoist-2 && rm -rf "$T"
manifest:
skills/todoist-2/skill.mdsource content
Todoist CLI
Use
todoist to manage tasks, projects, labels, and sections via the Todoist REST API.
Tasks
# Today's tasks (default) todoist # List tasks todoist tasks --all todoist tasks --filter "p1" # High priority todoist tasks --filter "overdue" # Overdue todoist tasks -p Work # By project # Add task todoist add "Buy groceries" todoist add "Call mom" -d tomorrow todoist add "Urgent" -P 1 -d "today 5pm" -l urgent # Complete / reopen todoist complete <task-id> todoist done <task-id> todoist reopen <task-id> # Update task todoist update <task-id> --due "next monday" todoist update <task-id> -P 2 # Move task (Kanban) todoist move <task-id> --section "In Progress" todoist move <task-id> --project "Work" # Delete task todoist delete <task-id> # View / search todoist view <task-id> todoist search "meeting"
Projects
todoist projects todoist projects add "New Project" --color blue
Labels
todoist labels todoist labels add urgent --color red
Sections
todoist sections -p Work todoist sections add "In Progress" -p Work
Comments
todoist comment <task-id> todoist comment <task-id> "This is a note"
Completed Tasks
todoist completed todoist completed --since 2024-01-01 --limit 50
Command Reference
| Command | Description |
|---|---|
| Show today's tasks |
| List tasks with filters |
| Create a new task |
| Mark task complete |
| Alias for complete |
| Reopen completed task |
| Move task to section/project |
| Update a task |
| Delete a task |
| View task details |
| Search tasks |
| List/manage projects |
| List/manage labels |
| List/manage sections |
| View/add comments |
| Show completed tasks |
Priority Mapping
| CLI | Todoist |
|---|---|
| p1 (highest) |
| p2 |
| p3 |
| p4 (lowest) |
Notes
- All commands support
for machine-readable output--json - Auth:
or settodoist authTODOIST_API_TOKEN