skills/library/todoist/SKILL.md
Manage Todoist tasks and projects via REST API.
npx skillsauth add malue-ai/dazee-small todoistInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
通过 Todoist REST API 管理任务、项目和标签。
需要设置环境变量 TODOIST_API_TOKEN:
export TODOIST_API_TOKEN="your-token"curl -s "https://api.todoist.com/rest/v2/tasks" \
-H "Authorization: Bearer $TODOIST_API_TOKEN" | python3 -m json.tool
过滤今天的任务:
curl -s "https://api.todoist.com/rest/v2/tasks?filter=today" \
-H "Authorization: Bearer $TODOIST_API_TOKEN"
curl -s -X POST "https://api.todoist.com/rest/v2/tasks" \
-H "Authorization: Bearer $TODOIST_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"content":"任务内容","due_string":"tomorrow","priority":3}'
priority:1(普通)→ 4(紧急)。due_string 支持自然语言("tomorrow", "next monday", "every day")。
curl -s -X POST "https://api.todoist.com/rest/v2/tasks/{task_id}/close" \
-H "Authorization: Bearer $TODOIST_API_TOKEN"
curl -s "https://api.todoist.com/rest/v2/projects" \
-H "Authorization: Bearer $TODOIST_API_TOKEN"
development
Local web search (Tavily/Exa, requires API Key). For quick searches. If no Key configured or deep research needed, use cloud_agent instead.
development
Get current weather and forecasts (no API key required).
tools
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
tools
Start voice calls via the Moltbot voice-call plugin.