Awesome-omni-skills todoist-automation
Todoist Automation via Rube MCP workflow skill. Use this skill when the user needs Automate Todoist task management, projects, sections, filtering, and bulk operations via Rube MCP (Composio). Always search tools first for current schemas and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
git clone https://github.com/diegosouzapw/awesome-omni-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/todoist-automation" ~/.claude/skills/diegosouzapw-awesome-omni-skills-todoist-automation && rm -rf "$T"
skills/todoist-automation/SKILL.mdTodoist Automation via Rube MCP
Overview
This public intake copy packages
plugins/antigravity-awesome-skills-claude/skills/todoist-automation from https://github.com/sickn33/antigravity-awesome-skills into the native Omni Skills editorial shape without hiding its origin.
Use it when the operator needs the upstream workflow, support files, and repository context to stay intact while the public validator and private enhancer continue their normal downstream flow.
This intake keeps the copied upstream files intact and uses
metadata.json plus ORIGIN.md as the provenance anchor for review.
Todoist Automation via Rube MCP Automate Todoist operations including task creation and management, project organization, section management, filtering, and bulk task workflows through Composio's Todoist toolkit.
Imported source sections that did not map cleanly to the public headings are still preserved below or in the support files. Notable imported sections: Prerequisites, Common Patterns, Known Pitfalls, Limitations.
When to Use This Skill
Use this section as the trigger filter. It should make the activation boundary explicit before the operator loads files, runs commands, or opens a pull request.
- This skill is applicable to execute the workflow or actions described in the overview.
- Use when the request clearly matches the imported source intent: Automate Todoist task management, projects, sections, filtering, and bulk operations via Rube MCP (Composio). Always search tools first for current schemas.
- Use when the operator should preserve upstream workflow detail instead of rewriting the process from scratch.
- Use when provenance needs to stay visible in the answer, PR, or review packet.
- Use when copied upstream references, examples, or scripts materially improve the answer.
- Use when the workflow should remain reviewable in the public intake repo before the private enhancer takes over.
Operating Table
| Situation | Start here | Why it matters |
|---|---|---|
| First-time use | | Confirms repository, branch, commit, and imported path before touching the copied workflow |
| Provenance review | | Gives reviewers a plain-language audit trail for the imported source |
| Workflow execution | | Starts with the smallest copied file that materially changes execution |
| Supporting context | | Adds the next most relevant copied source file without loading the entire package |
| Handoff decision | | Helps the operator switch to a stronger native skill when the task drifts |
Workflow
This workflow is intentionally editorial and operational at the same time. It keeps the imported source useful to the operator while still satisfying the public intake standards that feed the downstream enhancer flow.
- Verify Rube MCP is available by confirming RUBESEARCHTOOLS responds
- Call RUBEMANAGECONNECTIONS with toolkit todoist
- If connection is not ACTIVE, follow the returned auth link to complete Todoist OAuth
- Confirm connection status shows ACTIVE before running any workflows
- TODOISTGETALL_PROJECTS - List projects to find the target project ID [Prerequisite]
- TODOISTGETALL_SECTIONS - List sections within a project for task placement [Optional]
- TODOISTCREATETASK - Create a single task with content, due date, priority, labels [Required]
Imported Workflow Notes
Imported: Setup
Get Rube MCP: Add
https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
respondsRUBE_SEARCH_TOOLS - Call
with toolkitRUBE_MANAGE_CONNECTIONStodoist - If connection is not ACTIVE, follow the returned auth link to complete Todoist OAuth
- Confirm connection status shows ACTIVE before running any workflows
Imported: Core Workflows
1. Create and Manage Tasks
When to use: User wants to create, update, complete, reopen, or delete tasks
Tool sequence:
- List projects to find the target project ID [Prerequisite]TODOIST_GET_ALL_PROJECTS
- List sections within a project for task placement [Optional]TODOIST_GET_ALL_SECTIONS
- Create a single task with content, due date, priority, labels [Required]TODOIST_CREATE_TASK
- Create multiple tasks in one request [Alternative]TODOIST_BULK_CREATE_TASKS
- Modify task properties (content, due date, priority, labels) [Optional]TODOIST_UPDATE_TASK
- Mark a task as completed [Optional]TODOIST_CLOSE_TASK
- Restore a previously completed task [Optional]TODOIST_REOPEN_TASK
- Permanently remove a task [Optional]TODOIST_DELETE_TASK
Key parameters for CREATE_TASK:
: Task title (supports markdown and hyperlinks)content
: Additional notes (do NOT put due dates here)description
: Alphanumeric project ID; omit to add to Inboxproject_id
: Alphanumeric section ID for placement within a projectsection_id
: Task ID for creating subtasksparent_id
: 1 (normal) to 4 (urgent) -- note: Todoist UI shows p1=urgent, API p4=urgentpriority
: Natural language date likedue_string
,"tomorrow at 3pm""every Friday at 9am"
: Specific datedue_date
formatYYYY-MM-DD
: Specific date+time in RFC3339due_datetimeYYYY-MM-DDTHH:mm:ssZ
: Array of label name stringslabels
+duration
: Task duration (e.g.,duration_unit
+30
)"minute"
Pitfalls:
- Only one
field can be used at a time (exceptdue_*
which can accompany any)due_lang - Do NOT embed due dates in
orcontent
-- usedescription
fielddue_string - Do NOT embed duration phrases like "for 30 minutes" in
-- usedue_string
+durationduration_unit
in API: 1=normal, 4=urgent (opposite of Todoist UI display where p1=urgent)priority- Task IDs can be numeric or alphanumeric; use the format returned by the API
marks complete;CLOSE_TASK
permanently removes -- they are different operationsDELETE_TASK
2. Manage Projects
When to use: User wants to list, create, update, or inspect projects
Tool sequence:
- List all projects with metadata [Required]TODOIST_GET_ALL_PROJECTS
- Get details for a specific project by ID [Optional]TODOIST_GET_PROJECT
- Create a new project with name, color, view style [Optional]TODOIST_CREATE_PROJECT
- Modify project properties [Optional]TODOIST_UPDATE_PROJECT
Key parameters:
: Project name (required for creation)name
: Todoist palette color (e.g.,color
,"blue"
,"red"
,"green"
)"charcoal"
:view_style
or"list"
layout"board"
: Parent project ID for creating sub-projectsparent_id
/is_favorite
: Boolean to mark as favoritefavorite
: Required for update and get operationsproject_id
Pitfalls:
- Projects with similar names can lead to selecting the wrong project_id; always verify
usesCREATE_PROJECT
whilefavorite
usesUPDATE_PROJECT
-- different field namesis_favorite- Use the project
returned by API, not theid
, for downstream operationsv2_id - Alphanumeric/URL-style project IDs may cause HTTP 400 in some tools; use numeric ID if available
3. Manage Sections
When to use: User wants to organize tasks within projects using sections
Tool sequence:
- Find the target project ID [Prerequisite]TODOIST_GET_ALL_PROJECTS
- List existing sections to avoid duplicates [Prerequisite]TODOIST_GET_ALL_SECTIONS
- Create a new section in a project [Required]TODOIST_CREATE_SECTION
- Rename an existing section [Optional]TODOIST_UPDATE_SECTION
- Permanently remove a section [Optional]TODOIST_DELETE_SECTION
Key parameters:
: Required -- the project to create the section inproject_id
: Section name (required for creation)name
: Integer position within the project (lower values appear first)order
: Required for update and delete operationssection_id
Pitfalls:
requiresCREATE_SECTION
andproject_id
-- omitting project_id causes a 400 errorname- HTTP 400 "project_id is invalid" can occur if alphanumeric ID is used; prefer numeric ID
- Deleting a section may move or regroup its tasks in non-obvious ways
- Response may include both
andid
; store and reuse the correct identifier consistentlyv2_id - Always check existing sections first to avoid creating duplicates
4. Search and Filter Tasks
When to use: User wants to find tasks by criteria, view today's tasks, or get completed task history
Tool sequence:
- Fetch incomplete tasks with optional filter query [Required]TODOIST_GET_ALL_TASKS
- Get full details of a specific task by ID [Optional]TODOIST_GET_TASK
- Retrieve completed tasks within a date range [Optional]TODOIST_GET_COMPLETED_TASKS_BY_COMPLETION_DATE
- List user's custom saved filters [Optional]TODOIST_LIST_FILTERS
Key parameters for GET_ALL_TASKS:
: Todoist filter syntax stringfilter- Keywords:
,today
,tomorrow
,overdue
,no date
,recurringsubtask - Priority:
(urgent),p1
,p2
,p3
(normal)p4 - Projects:
(must exist in account)#ProjectName - Labels:
(must exist in account)@LabelName - Date ranges:
,7 days
,-7 days
,due before: YYYY-MM-DDdue after: YYYY-MM-DD - Search:
for content text searchsearch: keyword - Operators:
(AND),&
(OR),|
(NOT)!
- Keywords:
: List of specific task IDs to retrieveids
Key parameters for GET_COMPLETED_TASKS_BY_COMPLETION_DATE:
: Start date in RFC3339 format (e.g.,since
)2024-01-01T00:00:00Z
: End date in RFC3339 formatuntil
,project_id
,section_id
: Optional filtersparent_id
: Pagination cursor from previous responsecursor
: Max results per page (default 50)limit
Pitfalls:
returns ONLY incomplete tasks; useGET_ALL_TASKS
for completed onesGET_COMPLETED_TASKS_BY_COMPLETION_DATE- Filter terms must reference ACTUAL EXISTING entities; arbitrary text causes HTTP 400 errors
- Do NOT use
,completed
, or!completed
in GET_ALL_TASKS filter -- causes 400 errorcompleted after
limits date range to approximately 3 months betweenGET_COMPLETED_TASKS_BY_COMPLETION_DATE
andsinceuntil- Search uses
syntax within the filter, not a separate parametersearch: keyword
5. Bulk Task Creation
When to use: User wants to scaffold a project with multiple tasks at once
Tool sequence:
- Find target project ID [Prerequisite]TODOIST_GET_ALL_PROJECTS
- Find section IDs for task placement [Optional]TODOIST_GET_ALL_SECTIONS
- Create multiple tasks in a single request [Required]TODOIST_BULK_CREATE_TASKS
Key parameters:
: Array of task objects, each requiring at minimumtaskscontent- Each task object supports:
,content
,description
,project_id
,section_id
,parent_id
,priority
,labels
(object withdue
,string
, ordate
),datetime
,durationorder
Pitfalls:
- Each task in the array must have at least the
fieldcontent - The
field in bulk create is an object with nested fields (due
,string
,date
,datetime
) -- different structure from CREATE_TASK's flat fieldslang - All tasks can target different projects/sections within the same batch
Imported: Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Todoist connection via
with toolkitRUBE_MANAGE_CONNECTIONStodoist - Always call
first to get current tool schemasRUBE_SEARCH_TOOLS
Examples
Example 1: Ask for the upstream workflow directly
Use @todoist-automation to handle <task>. Start from the copied upstream workflow, load only the files that change the outcome, and keep provenance visible in the answer.
Explanation: This is the safest starting point when the operator needs the imported workflow, but not the entire repository.
Example 2: Ask for a provenance-grounded review
Review @todoist-automation against metadata.json and ORIGIN.md, then explain which copied upstream files you would load first and why.
Explanation: Use this before review or troubleshooting when you need a precise, auditable explanation of origin and file selection.
Example 3: Narrow the copied support files before execution
Use @todoist-automation for <task>. Load only the copied references, examples, or scripts that change the outcome, and name the files explicitly before proceeding.
Explanation: This keeps the skill aligned with progressive disclosure instead of loading the whole copied package by default.
Example 4: Build a reviewer packet
Review @todoist-automation using the copied upstream files plus provenance, then summarize any gaps before merge.
Explanation: This is useful when the PR is waiting for human review and you want a repeatable audit packet.
Best Practices
Treat the generated public skill as a reviewable packaging layer around the upstream repository. The goal is to keep provenance explicit and load only the copied source material that materially improves execution.
- Keep the imported skill grounded in the upstream repository; do not invent steps that the source material cannot support.
- Prefer the smallest useful set of support files so the workflow stays auditable and fast to review.
- Keep provenance, source commit, and imported file paths visible in notes and PR descriptions.
- Point directly at the copied upstream files that justify the workflow instead of relying on generic review boilerplate.
- Treat generated examples as scaffolding; adapt them to the concrete task before execution.
- Route to a stronger native skill when architecture, debugging, design, or security concerns become dominant.
Troubleshooting
Problem: The operator skipped the imported context and answered too generically
Symptoms: The result ignores the upstream workflow in
plugins/antigravity-awesome-skills-claude/skills/todoist-automation, fails to mention provenance, or does not use any copied source files at all.
Solution: Re-open metadata.json, ORIGIN.md, and the most relevant copied upstream files. Load only the files that materially change the answer, then restate the provenance before continuing.
Problem: The imported workflow feels incomplete during review
Symptoms: Reviewers can see the generated
SKILL.md, but they cannot quickly tell which references, examples, or scripts matter for the current task.
Solution: Point at the exact copied references, examples, scripts, or assets that justify the path you took. If the gap is still real, record it in the PR instead of hiding it.
Problem: The task drifted into a different specialization
Symptoms: The imported skill starts in the right place, but the work turns into debugging, architecture, design, security, or release orchestration that a native skill handles better. Solution: Use the related skills section to hand off deliberately. Keep the imported provenance visible so the next skill inherits the right context instead of starting blind.
Related Skills
- Use when the work is better handled by that native specialization after this imported skill establishes context.@supply-chain-risk-auditor
- Use when the work is better handled by that native specialization after this imported skill establishes context.@sveltekit
- Use when the work is better handled by that native specialization after this imported skill establishes context.@swift-concurrency-expert
- Use when the work is better handled by that native specialization after this imported skill establishes context.@swiftui-expert-skill
Additional Resources
Use this support matrix and the linked files below as the operator packet for this imported skill. They should reflect real copied source material, not generic scaffolding.
| Resource family | What it gives the reviewer | Example path |
|---|---|---|
| copied reference notes, guides, or background material from upstream | |
| worked examples or reusable prompts copied from upstream | |
| upstream helper scripts that change execution or validation | |
| routing or delegation notes that are genuinely part of the imported package | |
| supporting assets or schemas copied from the source package | |
Imported Reference Notes
Imported: Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| List all projects | | (none) |
| Get project | | |
| Create project | | , , |
| Update project | | , , |
| List sections | | |
| Create section | | , , |
| Update section | | , |
| Delete section | | |
| Get all tasks | | , |
| Get task | | |
| Create task | | , , , |
| Bulk create tasks | | (array) |
| Update task | | , , |
| Complete task | | |
| Reopen task | | |
| Delete task | | |
| Completed tasks | | , |
| List filters | | |
Imported: Common Patterns
ID Resolution
Always resolve human-readable names to IDs before operations:
- Project name -> Project ID:
, match byTODOIST_GET_ALL_PROJECTS
fieldname - Section name -> Section ID:
withTODOIST_GET_ALL_SECTIONSproject_id - Task content -> Task ID:
withTODOIST_GET_ALL_TASKS
orfiltersearch: keyword
Pagination
: Returns all matching incomplete tasks (no pagination needed)TODOIST_GET_ALL_TASKS
: Uses cursor-based pagination; followTODOIST_GET_COMPLETED_TASKS_BY_COMPLETION_DATE
from response until no more resultscursor
andTODOIST_GET_ALL_PROJECTS
: Return all results (no pagination)TODOIST_GET_ALL_SECTIONS
Due Date Handling
- Natural language: Use
(e.g.,due_string
,"tomorrow at 3pm"
)"every Monday" - Specific date: Use
indue_date
formatYYYY-MM-DD - Specific datetime: Use
in RFC3339 format (due_datetime
)YYYY-MM-DDTHH:mm:ssZ - Only use ONE due field at a time (except
which can accompany any)due_lang - Recurring tasks: Use natural language in
(e.g.,due_string
)"every Friday at 9am"
Imported: Known Pitfalls
ID Formats
- Task IDs can be numeric (
) or alphanumeric ("2995104339"
)"6X4Vw2Hfmg73Q2XR" - Project IDs similarly vary; prefer the format returned by the API
- Some tools accept only numeric IDs; if 400 error occurs, try fetching the numeric
via GET_PROJECTid - Response objects may contain both
andid
; usev2_id
for API operationsid
Priority Inversion
- API priority: 1 = normal, 4 = urgent
- Todoist UI display: p1 = urgent, p4 = normal
- This is inverted; always clarify with the user which convention they mean
Filter Syntax
- Filter terms must reference real entities in the user's account
or#NonExistentProject
will cause HTTP 400@NonExistentLabel- Use
for text search, not bare keywordssearch: keyword - Combine with
(AND),&
(OR),|
(NOT)!
filters do NOT work on GET_ALL_TASKS endpointcompleted
Rate Limits
- Todoist API has rate limits; batch operations should use
where possibleBULK_CREATE_TASKS - Space out rapid sequential requests to avoid throttling
Imported: Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.