Openclaw-config todoist
Manage Todoist tasks, projects, and labels via official CLI
install
source · Clone the upstream repo
git clone https://github.com/TechNickAI/openclaw-config
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/TechNickAI/openclaw-config "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/todoist" ~/.claude/skills/technickai-openclaw-config-todoist && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/TechNickAI/openclaw-config "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/todoist" ~/.openclaw/skills/technickai-openclaw-config-todoist && rm -rf "$T"
manifest:
skills/todoist/SKILL.mdsource content
Todoist ✅
Task and project management via the official Todoist CLI (
td from
@doist/todoist-cli). No wrapper script — call td directly.
Setup
Before using any commands, ensure
td is installed and authenticated.
Check if installed
command -v td
If missing, install it:
npm install -g @doist/todoist-cli
Check if authenticated
td auth status
If not authenticated, guide the user:
- "You'll need a Todoist API token. Grab one from https://todoist.com/app/settings/integrations/developer"
- Once they provide it:
td auth token <THEIR_TOKEN> - Verify:
should show their email and nametd auth status
The token can also be set via
TODOIST_API_TOKEN environment variable (useful for
OpenClaw gateway config).
Daily Views
td today # Due today + overdue td upcoming # Next 7 days td upcoming 14 # Next 14 days td inbox # Inbox tasks td completed # Completed today td completed --since 2026-04-01 # Completed since date td stats # Karma, streaks, totals
List & Filter Tasks
td task list # All active tasks td task list --project "Work" # By project name td task list --label "urgent" # By label td task list --priority p1 # By priority td task list --filter "today | overdue" # Todoist filter syntax td task list --assignee me # Assigned to me td task list --json # JSON output when needed td task list --all # All results (no 300 limit)
Todoist Filter Syntax
Filters are powerful — some useful patterns:
— due todaytoday
— past dueoverdue
— bothtoday | overdue
— tasks without a due dateno date
— priority 1 (urgent)p1
— in project "Work"#Work
— has label "urgent"@urgent
— assigned to meassigned to: me
— created in last weekcreated before: -7 days
— due today or earlierdue before: tomorrow
Task Details
td task view id:abc123 # View by ID td task view "Buy groceries" # View by name
Create Tasks
# Structured creation — use this for precise control td task add "Buy groceries" --due tomorrow --priority p2 td task add "Review PR" --project "Work" --labels "code,urgent" td task add "Write report" --description "Q1 summary" --due "next friday" td task add "Team standup" --due "every weekday at 9am" # Natural language quick-add — use for casual/conversational input td add "Call dentist tomorrow at 3pm #health p1"
Update Tasks
td task update id:xxx --content "New title" td task update id:xxx --due "next monday" --priority p3 td task update id:xxx --labels "work,urgent" td task update id:xxx --description "Updated notes"
Complete / Reopen / Delete
td task complete id:xxx td task uncomplete id:xxx # Reopen td task delete id:xxx --yes # --yes skips confirmation prompt
Move Tasks
td task move id:xxx --project "Work" td task move id:xxx --section "In Progress"
Projects
td project list # All projects td project list --json # JSON output td project view "Work" # Project details td project create --name "New Project" --color berry_red
Sections
td section list --project "Work" td section create --project "Work" --name "In Progress"
Labels
td label list td label create --name "urgent" --color red
Comments
td comment add id:xxx --content "Progress update" td comment list id:xxx
Activity
td activity # Recent activity log
Output
Plain text by default — readable by humans and LLMs. Add
--json to any list command
when you need to extract specific fields programmatically.
Use
--quiet to suppress success messages (create commands still print the ID).
Agent Tips
- Use
for structured creation with flags — nottd task addtd add
is natural language only (like Todoist's quick-add bar)td add- References accept names (
) or explicit IDs ("Work"
)id:xxx - Delete always requires
to confirm--yes - Recurring tasks: use
or--due "every monday""every weekday at 9am" - Priority scale: p1 (urgent/red) → p4 (no priority) — p1 is highest
Troubleshooting
| Symptom | Fix |
|---|---|
| |
| or set |
| Rate limited — wait a moment and retry |
| Token invalid or expired — re-authenticate |
Workflow Integration
Works with the
task-steward workflow for automated task management.