todoist-operations
Complete Todoist integration for natural-language task management, daily planning workflows, task breakdowns, reviews, and productivity coaching.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Complete Todoist integration for natural-language task management, daily planning workflows, task breakdowns, reviews, and productivity coaching.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Route proposed Team Mimir profile behavior changes to target-owned Hermes dialogue.
Native Antigravity multi-agent consensus workflow. Spawns parallel workers and reviewers with a 0-10 scoring loop and automatic fix routing.
Deep-dive one chosen Infiquetra idea into a right-sized requirements document before planning.
Run a structured Infiquetra code-quality review at the work-to-PR boundary. Reads the merge-base diff, runs a built-vs-planned audit plus judgment-selected review lenses, validates findings, writes a durable review artifact, appends to the work-thread saga, and routes — without mutating code. Triggers on "review this PR", "code review", "check my diff", "pre-PR review", or a /work hand-in before shipping.
Review Infiquetra plans, requirements, and SDLC documents for implementation readiness.
Route durable Infiquetra lifecycle artifacts into mission-control prepared issue drafts.
| name | todoist-operations |
| description | Complete Todoist integration for natural-language task management, daily planning workflows, task breakdowns, reviews, and productivity coaching. |
| when_to_use | Use this skill when the user: - Mentions Todoist or their task list - Asks to see tasks, plan their day, or review progress - Requests task management operations (add, update, complete, delete) - Wants daily planning, morning review, evening review, or weekly review - Needs productivity coaching or help organizing work - Asks to "review" tasks before working on them or wants feedback on task quality - Has a task that's too big to execute directly and wants to "break it down" - Asks "plan this out for me" or "I don't know where to start" |
Complete personal productivity manager integrating Todoist for natural-language task management, strategic planning, task readiness review, complex task breakdowns, and productivity coaching.
TODOIST_TOKEN is injected natively by the MCP environment. You do not need to read it or parse it yourself.todoist_client tool to interact with the API, instead of executing Python scripts directly.All operations use the todoist_client tool which expects JSON parameters mapping to the underlying command-line interface logic.
General Pattern:
Call the todoist_client tool with the args array mapping to the resource and action, plus any options.
{
"args": ["tasks", "list", "--project-id", "12345"]
}
{
"args": ["tasks", "filter", "--query", "today & p1"]
}
See: references/filter-query-syntax.md for complete query language.
{
"args": [
"tasks", "add",
"--content", "Task title",
"--description", "Additional details",
"--due-string", "tomorrow at 3pm",
"--priority", "4"
]
}
{
"args": ["tasks", "update", "--task-id", "12345", "--due-string", "friday"]
}
{
"args": ["tasks", "complete", "--task-id", "12345"]
}
{
"args": ["tasks", "delete", "--task-id", "12345"]
}
Always confirm before deleting unless explicitly requested.
Use similar args patterns for projects, sections, labels, and comments (e.g. ["projects", "list"]).
["overview"]["daily-summary"]See: references/productivity-workflows.md for complete templates.
When to trigger:
Process:
{
"args": ["tasks", "add", "--content", "Subtask 1", "--parent-id", "12345", "--duration", "30", "--duration-unit", "minute"]
}
When to trigger:
Process:
See: references/readiness-rubric.md and references/task-templates.md for scoring and templates.