Todoist Automation via Rube MCP
Overview
This public intake copy packages plugins/antigravity-awesome-skills/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 the external_source block in 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 |
metadata.json |
Confirms repository, branch, commit, and imported path through the external_source block before touching the copied workflow |
| Provenance review |
ORIGIN.md |
Gives reviewers a plain-language audit trail for the imported source |
| Workflow execution |
SKILL.md |
Starts with the smallest copied file that materially changes execution |
| Supporting context |
SKILL.md |
Adds the next most relevant copied source file without loading the entire package |
| Handoff decision |
## Related Skills |
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
RUBE_SEARCH_TOOLS responds
- Call
RUBE_MANAGE_CONNECTIONS 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
Imported: Core Workflows
1. Create and Manage Tasks
When to use: User wants to create, update, complete, reopen, or delete tasks
Tool sequence:
TODOIST_GET_ALL_PROJECTS - List projects to find the target project ID [Prerequisite]
TODOIST_GET_ALL_SECTIONS - List sections within a project for task placement [Optional]
TODOIST_CREATE_TASK - Create a single task with content, due date, priority, labels [Required]
TODOIST_BULK_CREATE_TASKS - Create multiple tasks in one request [Alternative]
TODOIST_UPDATE_TASK - Modify task properties (content, due date, priority, labels) [Optional]
TODOIST_CLOSE_TASK - Mark a task as completed [Optional]
TODOIST_REOPEN_TASK - Restore a previously completed task [Optional]
TODOIST_DELETE_TASK - Permanently remove a task [Optional]
Key parameters for CREATE_TASK:
content: Task title (supports markdown and hyperlinks)
description: Additional notes (do NOT put due dates here)
project_id: Alphanumeric project ID; omit to add to Inbox
section_id: Alphanumeric section ID for placement within a project
parent_id: Task ID for creating subtasks
priority: 1 (normal) to 4 (urgent) -- note: Todoist UI shows p1=urgent, API p4=urgent
due_string: Natural language date like "tomorrow at 3pm", "every Friday at 9am"
due_date: Specific date YYYY-MM-DD format
due_datetime: Specific date+time in RFC3339 YYYY-MM-DDTHH:mm:ssZ
labels: Array of label name strings
duration + duration_unit: Task duration (e.g., 30 + "minute")
Pitfalls:
- Only one
due_* field can be used at a time (except due_lang which can accompany any)
- Do NOT embed due dates in
content or description -- use due_string field
- Do NOT embed duration phrases like "for 30 minutes" in
due_string -- use duration + duration_unit
priority in API: 1=normal, 4=urgent (opposite of Todoist UI display where p1=urgent)
- Task IDs can be numeric or alphanumeric; use the format returned by the API
CLOSE_TASK marks complete; DELETE_TASK permanently removes -- they are different operations
2. Manage Projects
When to use: User wants to list, create, update, or inspect projects
Tool sequence:
TODOIST_GET_ALL_PROJECTS - List all projects with metadata [Required]
TODOIST_GET_PROJECT - Get details for a specific project by ID [Optional]
TODOIST_CREATE_PROJECT - Create a new project with name, color, view style [Optional]
TODOIST_UPDATE_PROJECT - Modify project properties [Optional]
Key parameters:
name: Project name (required for creation)
color: Todoist palette color (e.g., "blue", "red", "green", "charcoal")
view_style: "list" or "board" layout
parent_id: Parent project ID for creating sub-projects
is_favorite / favorite: Boolean to mark as favorite
project_id: Required for update and get operations
Pitfalls:
- Projects with similar names can lead to selecting the wrong project_id; always verify
CREATE_PROJECT uses favorite while UPDATE_PROJECT uses is_favorite -- different field names
- Use the project
id returned by API, not the v2_id, for downstream operations
- 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:
TODOIST_GET_ALL_PROJECTS - Find the target project ID [Prerequisite]
TODOIST_GET_ALL_SECTIONS - List existing sections to avoid duplicates [Prerequisite]
TODOIST_CREATE_SECTION - Create a new section in a project [Required]
TODOIST_UPDATE_SECTION - Rename an existing section [Optional]
TODOIST_DELETE_SECTION - Permanently remove a section [Optional]
Key parameters:
project_id: Required -- the project to create the section in
name: Section name (required for creation)
order: Integer position within the project (lower values appear first)
section_id: Required for update and delete operations
Pitfalls:
CREATE_SECTION requires project_id and name -- omitting project_id causes a 400 error
- 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
id and v2_id; store and reuse the correct identifier consistently
- 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:
TODOIST_GET_ALL_TASKS - Fetch incomplete tasks with optional filter query [Required]
TODOIST_GET_TASK - Get full details of a specific task by ID [Optional]
TODOIST_GET_COMPLETED_TASKS_BY_COMPLETION_DATE - Retrieve completed tasks within a date range [Optional]
TODOIST_LIST_FILTERS - List user's custom saved filters [Optional]
Key parameters for GET_ALL_TASKS:
filter: Todoist filter syntax string
- Keywords:
today, tomorrow, overdue, no date, recurring, subtask
- Priority:
p1 (urgent), p2, p3, p4 (normal)
- Projects:
#ProjectName (must exist in account)
- Labels:
@LabelName (must exist in account)
- Date ranges:
7 days, -7 days, due before: YYYY-MM-DD, due after: YYYY-MM-DD
- Search:
search: keyword for content text search
- Operators:
& (AND), | (OR), ! (NOT)
ids: List of specific task IDs to retrieve
Key parameters for GET_COMPLETED_TASKS_BY_COMPLETION_DATE:
since: Start date in RFC3339 format (e.g., 2024-01-01T00:00:00Z)
until: End date in RFC3339 format
project_id, section_id, parent_id: Optional filters
cursor: Pagination cursor from previous response
limit: Max results per page (default 50)
Pitfalls:
GET_ALL_TASKS returns ONLY incomplete tasks; use GET_COMPLETED_TASKS_BY_COMPLETION_DATE for completed ones
- Filter terms must reference ACTUAL EXISTING entities; arbitrary text causes HTTP 400 errors
- Do NOT use
completed, !completed, or completed after in GET_ALL_TASKS filter -- causes 400 error
GET_COMPLETED_TASKS_BY_COMPLETION_DATE limits date range to approximately 3 months between since and until
- Search uses
search: keyword syntax within the filter, not a separate parameter
5. Bulk Task Creation
When to use: User wants to scaffold a project with multiple tasks at once
Tool sequence:
TODOIST_GET_ALL_PROJECTS - Find target project ID [Prerequisite]
TODOIST_GET_ALL_SECTIONS - Find section IDs for task placement [Optional]
TODOIST_BULK_CREATE_TASKS - Create multiple tasks in a single request [Required]
Key parameters:
tasks: Array of task objects, each requiring at minimum content
- Each task object supports:
content, description, project_id, section_id, parent_id, priority, labels, due (object with string, date, or datetime), duration, order
Pitfalls:
- Each task in the array must have at least the
content field
- The
due field in bulk create is an object with nested fields (string, date, datetime, lang) -- different structure from CREATE_TASK's flat fields
- 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
RUBE_MANAGE_CONNECTIONS with toolkit todoist
- Always call
RUBE_SEARCH_TOOLS first to get current tool schemas
Examples
Example 1: Ask for the upstream workflow directly
Use @todoist-automation-v2 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-v2 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-v2 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-v2 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/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. Check the external_source block first, 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
@00-andruia-consultant - Use when the work is better handled by that native specialization after this imported skill establishes context.
@00-andruia-consultant-v2 - Use when the work is better handled by that native specialization after this imported skill establishes context.
@10-andruia-skill-smith - Use when the work is better handled by that native specialization after this imported skill establishes context.
@10-andruia-skill-smith-v2 - Use when the work is better handled by that native specialization after this imported skill establishes context.
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 |
references |
copied reference notes, guides, or background material from upstream |
references/n/a |
examples |
worked examples or reusable prompts copied from upstream |
examples/n/a |
scripts |
upstream helper scripts that change execution or validation |
scripts/n/a |
agents |
routing or delegation notes that are genuinely part of the imported package |
agents/n/a |
assets |
supporting assets or schemas copied from the source package |
assets/n/a |
Imported Reference Notes
Imported: Quick Reference
| Task |
Tool Slug |
Key Params |
| List all projects |
TODOIST_GET_ALL_PROJECTS |
(none) |
| Get project |
TODOIST_GET_PROJECT |
project_id |
| Create project |
TODOIST_CREATE_PROJECT |
name, color, view_style |
| Update project |
TODOIST_UPDATE_PROJECT |
project_id, name, color |
| List sections |
TODOIST_GET_ALL_SECTIONS |
project_id |
| Create section |
TODOIST_CREATE_SECTION |
project_id, name, order |
| Update section |
TODOIST_UPDATE_SECTION |
section_id, name |
| Delete section |
TODOIST_DELETE_SECTION |
section_id |
| Get all tasks |
TODOIST_GET_ALL_TASKS |
filter, ids |
| Get task |
TODOIST_GET_TASK |
task_id |
| Create task |
TODOIST_CREATE_TASK |
content, project_id, due_string, priority |
| Bulk create tasks |
TODOIST_BULK_CREATE_TASKS |
tasks (array) |
| Update task |
TODOIST_UPDATE_TASK |
task_id, content, due_string |
| Complete task |
TODOIST_CLOSE_TASK |
task_id |
| Reopen task |
TODOIST_REOPEN_TASK |
task_id |
| Delete task |
TODOIST_DELETE_TASK |
task_id |
| Completed tasks |
TODOIST_GET_COMPLETED_TASKS_BY_COMPLETION_DATE |
since, until |
| List filters |
TODOIST_LIST_FILTERS |
sync_token |
Imported: Common Patterns
ID Resolution
Always resolve human-readable names to IDs before operations:
- Project name -> Project ID:
TODOIST_GET_ALL_PROJECTS, match by name field
- Section name -> Section ID:
TODOIST_GET_ALL_SECTIONS with project_id
- Task content -> Task ID:
TODOIST_GET_ALL_TASKS with filter or search: keyword
Pagination
TODOIST_GET_ALL_TASKS: Returns all matching incomplete tasks (no pagination needed)
TODOIST_GET_COMPLETED_TASKS_BY_COMPLETION_DATE: Uses cursor-based pagination; follow cursor from response until no more results
TODOIST_GET_ALL_PROJECTS and TODOIST_GET_ALL_SECTIONS: Return all results (no pagination)
Due Date Handling
- Natural language: Use
due_string (e.g., "tomorrow at 3pm", "every Monday")
- Specific date: Use
due_date in YYYY-MM-DD format
- Specific datetime: Use
due_datetime in RFC3339 format (YYYY-MM-DDTHH:mm:ssZ)
- Only use ONE due field at a time (except
due_lang which can accompany any)
- Recurring tasks: Use natural language in
due_string (e.g., "every Friday at 9am")
Imported: Known Pitfalls
ID Formats
- Task IDs can be numeric (
"2995104339") or alphanumeric ("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
id via GET_PROJECT
- Response objects may contain both
id and v2_id; use id for API operations
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
#NonExistentProject or @NonExistentLabel will cause HTTP 400
- Use
search: keyword for text search, not bare keywords
- Combine with
& (AND), | (OR), ! (NOT)
completed filters do NOT work on GET_ALL_TASKS endpoint
Rate Limits
- Todoist API has rate limits; batch operations should use
BULK_CREATE_TASKS where possible
- 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.
1---2name: todoist-automation-v23description: 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.4---56# Todoist Automation via Rube MCP78## Overview910This public intake copy packages `plugins/antigravity-awesome-skills/skills/todoist-automation` from `https://github.com/sickn33/antigravity-awesome-skills` into the native Omni Skills editorial shape without hiding its origin.1112Use 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.1314This intake keeps the copied upstream files intact and uses the `external_source` block in `metadata.json` plus `ORIGIN.md` as the provenance anchor for review.1516# 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.1718Imported 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.1920## When to Use This Skill2122Use 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.2324- This skill is applicable to execute the workflow or actions described in the overview.25- 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.26- Use when the operator should preserve upstream workflow detail instead of rewriting the process from scratch.27- Use when provenance needs to stay visible in the answer, PR, or review packet.28- Use when copied upstream references, examples, or scripts materially improve the answer.29- Use when the workflow should remain reviewable in the public intake repo before the private enhancer takes over.3031## Operating Table3233| Situation | Start here | Why it matters |34| --- | --- | --- |35| First-time use | `metadata.json` | Confirms repository, branch, commit, and imported path through the `external_source` block before touching the copied workflow |36| Provenance review | `ORIGIN.md` | Gives reviewers a plain-language audit trail for the imported source |37| Workflow execution | `SKILL.md` | Starts with the smallest copied file that materially changes execution |38| Supporting context | `SKILL.md` | Adds the next most relevant copied source file without loading the entire package |39| Handoff decision | `## Related Skills` | Helps the operator switch to a stronger native skill when the task drifts |4041## Workflow4243This 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.44451. Verify Rube MCP is available by confirming RUBESEARCHTOOLS responds462. Call RUBEMANAGECONNECTIONS with toolkit todoist473. If connection is not ACTIVE, follow the returned auth link to complete Todoist OAuth484. Confirm connection status shows ACTIVE before running any workflows495. TODOISTGETALL_PROJECTS - List projects to find the target project ID [Prerequisite]506. TODOISTGETALL_SECTIONS - List sections within a project for task placement [Optional]517. TODOISTCREATETASK - Create a single task with content, due date, priority, labels [Required]5253### Imported Workflow Notes5455#### Imported: Setup5657**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.58591. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds602. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `todoist`613. If connection is not ACTIVE, follow the returned auth link to complete Todoist OAuth624. Confirm connection status shows ACTIVE before running any workflows6364#### Imported: Core Workflows6566### 1. Create and Manage Tasks6768**When to use**: User wants to create, update, complete, reopen, or delete tasks6970**Tool sequence**:711. `TODOIST_GET_ALL_PROJECTS` - List projects to find the target project ID [Prerequisite]722. `TODOIST_GET_ALL_SECTIONS` - List sections within a project for task placement [Optional]733. `TODOIST_CREATE_TASK` - Create a single task with content, due date, priority, labels [Required]744. `TODOIST_BULK_CREATE_TASKS` - Create multiple tasks in one request [Alternative]755. `TODOIST_UPDATE_TASK` - Modify task properties (content, due date, priority, labels) [Optional]766. `TODOIST_CLOSE_TASK` - Mark a task as completed [Optional]777. `TODOIST_REOPEN_TASK` - Restore a previously completed task [Optional]788. `TODOIST_DELETE_TASK` - Permanently remove a task [Optional]7980**Key parameters for CREATE_TASK**:81- `content`: Task title (supports markdown and hyperlinks)82- `description`: Additional notes (do NOT put due dates here)83- `project_id`: Alphanumeric project ID; omit to add to Inbox84- `section_id`: Alphanumeric section ID for placement within a project85- `parent_id`: Task ID for creating subtasks86- `priority`: 1 (normal) to 4 (urgent) -- note: Todoist UI shows p1=urgent, API p4=urgent87- `due_string`: Natural language date like `"tomorrow at 3pm"`, `"every Friday at 9am"`88- `due_date`: Specific date `YYYY-MM-DD` format89- `due_datetime`: Specific date+time in RFC3339 `YYYY-MM-DDTHH:mm:ssZ`90- `labels`: Array of label name strings91- `duration` + `duration_unit`: Task duration (e.g., `30` + `"minute"`)9293**Pitfalls**:94- Only one `due_*` field can be used at a time (except `due_lang` which can accompany any)95- Do NOT embed due dates in `content` or `description` -- use `due_string` field96- Do NOT embed duration phrases like "for 30 minutes" in `due_string` -- use `duration` + `duration_unit`97- `priority` in API: 1=normal, 4=urgent (opposite of Todoist UI display where p1=urgent)98- Task IDs can be numeric or alphanumeric; use the format returned by the API99- `CLOSE_TASK` marks complete; `DELETE_TASK` permanently removes -- they are different operations100101### 2. Manage Projects102103**When to use**: User wants to list, create, update, or inspect projects104105**Tool sequence**:1061. `TODOIST_GET_ALL_PROJECTS` - List all projects with metadata [Required]1072. `TODOIST_GET_PROJECT` - Get details for a specific project by ID [Optional]1083. `TODOIST_CREATE_PROJECT` - Create a new project with name, color, view style [Optional]1094. `TODOIST_UPDATE_PROJECT` - Modify project properties [Optional]110111**Key parameters**:112- `name`: Project name (required for creation)113- `color`: Todoist palette color (e.g., `"blue"`, `"red"`, `"green"`, `"charcoal"`)114- `view_style`: `"list"` or `"board"` layout115- `parent_id`: Parent project ID for creating sub-projects116- `is_favorite` / `favorite`: Boolean to mark as favorite117- `project_id`: Required for update and get operations118119**Pitfalls**:120- Projects with similar names can lead to selecting the wrong project_id; always verify121- `CREATE_PROJECT` uses `favorite` while `UPDATE_PROJECT` uses `is_favorite` -- different field names122- Use the project `id` returned by API, not the `v2_id`, for downstream operations123- Alphanumeric/URL-style project IDs may cause HTTP 400 in some tools; use numeric ID if available124125### 3. Manage Sections126127**When to use**: User wants to organize tasks within projects using sections128129**Tool sequence**:1301. `TODOIST_GET_ALL_PROJECTS` - Find the target project ID [Prerequisite]1312. `TODOIST_GET_ALL_SECTIONS` - List existing sections to avoid duplicates [Prerequisite]1323. `TODOIST_CREATE_SECTION` - Create a new section in a project [Required]1334. `TODOIST_UPDATE_SECTION` - Rename an existing section [Optional]1345. `TODOIST_DELETE_SECTION` - Permanently remove a section [Optional]135136**Key parameters**:137- `project_id`: Required -- the project to create the section in138- `name`: Section name (required for creation)139- `order`: Integer position within the project (lower values appear first)140- `section_id`: Required for update and delete operations141142**Pitfalls**:143- `CREATE_SECTION` requires `project_id` and `name` -- omitting project_id causes a 400 error144- HTTP 400 "project_id is invalid" can occur if alphanumeric ID is used; prefer numeric ID145- Deleting a section may move or regroup its tasks in non-obvious ways146- Response may include both `id` and `v2_id`; store and reuse the correct identifier consistently147- Always check existing sections first to avoid creating duplicates148149### 4. Search and Filter Tasks150151**When to use**: User wants to find tasks by criteria, view today's tasks, or get completed task history152153**Tool sequence**:1541. `TODOIST_GET_ALL_TASKS` - Fetch incomplete tasks with optional filter query [Required]1552. `TODOIST_GET_TASK` - Get full details of a specific task by ID [Optional]1563. `TODOIST_GET_COMPLETED_TASKS_BY_COMPLETION_DATE` - Retrieve completed tasks within a date range [Optional]1574. `TODOIST_LIST_FILTERS` - List user's custom saved filters [Optional]158159**Key parameters for GET_ALL_TASKS**:160- `filter`: Todoist filter syntax string161 - Keywords: `today`, `tomorrow`, `overdue`, `no date`, `recurring`, `subtask`162 - Priority: `p1` (urgent), `p2`, `p3`, `p4` (normal)163 - Projects: `#ProjectName` (must exist in account)164 - Labels: `@LabelName` (must exist in account)165 - Date ranges: `7 days`, `-7 days`, `due before: YYYY-MM-DD`, `due after: YYYY-MM-DD`166 - Search: `search: keyword` for content text search167 - Operators: `&` (AND), `|` (OR), `!` (NOT)168- `ids`: List of specific task IDs to retrieve169170**Key parameters for GET_COMPLETED_TASKS_BY_COMPLETION_DATE**:171- `since`: Start date in RFC3339 format (e.g., `2024-01-01T00:00:00Z`)172- `until`: End date in RFC3339 format173- `project_id`, `section_id`, `parent_id`: Optional filters174- `cursor`: Pagination cursor from previous response175- `limit`: Max results per page (default 50)176177**Pitfalls**:178- `GET_ALL_TASKS` returns ONLY incomplete tasks; use `GET_COMPLETED_TASKS_BY_COMPLETION_DATE` for completed ones179- Filter terms must reference ACTUAL EXISTING entities; arbitrary text causes HTTP 400 errors180- Do NOT use `completed`, `!completed`, or `completed after` in GET_ALL_TASKS filter -- causes 400 error181- `GET_COMPLETED_TASKS_BY_COMPLETION_DATE` limits date range to approximately 3 months between `since` and `until`182- Search uses `search: keyword` syntax within the filter, not a separate parameter183184### 5. Bulk Task Creation185186**When to use**: User wants to scaffold a project with multiple tasks at once187188**Tool sequence**:1891. `TODOIST_GET_ALL_PROJECTS` - Find target project ID [Prerequisite]1902. `TODOIST_GET_ALL_SECTIONS` - Find section IDs for task placement [Optional]1913. `TODOIST_BULK_CREATE_TASKS` - Create multiple tasks in a single request [Required]192193**Key parameters**:194- `tasks`: Array of task objects, each requiring at minimum `content`195- Each task object supports: `content`, `description`, `project_id`, `section_id`, `parent_id`, `priority`, `labels`, `due` (object with `string`, `date`, or `datetime`), `duration`, `order`196197**Pitfalls**:198- Each task in the array must have at least the `content` field199- The `due` field in bulk create is an object with nested fields (`string`, `date`, `datetime`, `lang`) -- different structure from CREATE_TASK's flat fields200- All tasks can target different projects/sections within the same batch201202#### Imported: Prerequisites203204- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)205- Active Todoist connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `todoist`206- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas207208## Examples209210### Example 1: Ask for the upstream workflow directly211212```text213Use @todoist-automation-v2 to handle <task>. Start from the copied upstream workflow, load only the files that change the outcome, and keep provenance visible in the answer.214```215216**Explanation:** This is the safest starting point when the operator needs the imported workflow, but not the entire repository.217218### Example 2: Ask for a provenance-grounded review219220```text221Review @todoist-automation-v2 against metadata.json and ORIGIN.md, then explain which copied upstream files you would load first and why.222```223224**Explanation:** Use this before review or troubleshooting when you need a precise, auditable explanation of origin and file selection.225226### Example 3: Narrow the copied support files before execution227228```text229Use @todoist-automation-v2 for <task>. Load only the copied references, examples, or scripts that change the outcome, and name the files explicitly before proceeding.230```231232**Explanation:** This keeps the skill aligned with progressive disclosure instead of loading the whole copied package by default.233234### Example 4: Build a reviewer packet235236```text237Review @todoist-automation-v2 using the copied upstream files plus provenance, then summarize any gaps before merge.238```239240**Explanation:** This is useful when the PR is waiting for human review and you want a repeatable audit packet.241242243244## Best Practices245246Treat 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.247248- Keep the imported skill grounded in the upstream repository; do not invent steps that the source material cannot support.249- Prefer the smallest useful set of support files so the workflow stays auditable and fast to review.250- Keep provenance, source commit, and imported file paths visible in notes and PR descriptions.251- Point directly at the copied upstream files that justify the workflow instead of relying on generic review boilerplate.252- Treat generated examples as scaffolding; adapt them to the concrete task before execution.253- Route to a stronger native skill when architecture, debugging, design, or security concerns become dominant.254255256257## Troubleshooting258259### Problem: The operator skipped the imported context and answered too generically260261**Symptoms:** The result ignores the upstream workflow in `plugins/antigravity-awesome-skills/skills/todoist-automation`, fails to mention provenance, or does not use any copied source files at all.262**Solution:** Re-open `metadata.json`, `ORIGIN.md`, and the most relevant copied upstream files. Check the `external_source` block first, then restate the provenance before continuing.263264### Problem: The imported workflow feels incomplete during review265266**Symptoms:** Reviewers can see the generated `SKILL.md`, but they cannot quickly tell which references, examples, or scripts matter for the current task.267**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.268269### Problem: The task drifted into a different specialization270271**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.272**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.273274275276## Related Skills277278- `@00-andruia-consultant` - Use when the work is better handled by that native specialization after this imported skill establishes context.279- `@00-andruia-consultant-v2` - Use when the work is better handled by that native specialization after this imported skill establishes context.280- `@10-andruia-skill-smith` - Use when the work is better handled by that native specialization after this imported skill establishes context.281- `@10-andruia-skill-smith-v2` - Use when the work is better handled by that native specialization after this imported skill establishes context.282283## Additional Resources284285Use 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.286287| Resource family | What it gives the reviewer | Example path |288| --- | --- | --- |289| `references` | copied reference notes, guides, or background material from upstream | `references/n/a` |290| `examples` | worked examples or reusable prompts copied from upstream | `examples/n/a` |291| `scripts` | upstream helper scripts that change execution or validation | `scripts/n/a` |292| `agents` | routing or delegation notes that are genuinely part of the imported package | `agents/n/a` |293| `assets` | supporting assets or schemas copied from the source package | `assets/n/a` |294295296297### Imported Reference Notes298299#### Imported: Quick Reference300301| Task | Tool Slug | Key Params |302|------|-----------|------------|303| List all projects | `TODOIST_GET_ALL_PROJECTS` | (none) |304| Get project | `TODOIST_GET_PROJECT` | `project_id` |305| Create project | `TODOIST_CREATE_PROJECT` | `name`, `color`, `view_style` |306| Update project | `TODOIST_UPDATE_PROJECT` | `project_id`, `name`, `color` |307| List sections | `TODOIST_GET_ALL_SECTIONS` | `project_id` |308| Create section | `TODOIST_CREATE_SECTION` | `project_id`, `name`, `order` |309| Update section | `TODOIST_UPDATE_SECTION` | `section_id`, `name` |310| Delete section | `TODOIST_DELETE_SECTION` | `section_id` |311| Get all tasks | `TODOIST_GET_ALL_TASKS` | `filter`, `ids` |312| Get task | `TODOIST_GET_TASK` | `task_id` |313| Create task | `TODOIST_CREATE_TASK` | `content`, `project_id`, `due_string`, `priority` |314| Bulk create tasks | `TODOIST_BULK_CREATE_TASKS` | `tasks` (array) |315| Update task | `TODOIST_UPDATE_TASK` | `task_id`, `content`, `due_string` |316| Complete task | `TODOIST_CLOSE_TASK` | `task_id` |317| Reopen task | `TODOIST_REOPEN_TASK` | `task_id` |318| Delete task | `TODOIST_DELETE_TASK` | `task_id` |319| Completed tasks | `TODOIST_GET_COMPLETED_TASKS_BY_COMPLETION_DATE` | `since`, `until` |320| List filters | `TODOIST_LIST_FILTERS` | `sync_token` |321322#### Imported: Common Patterns323324### ID Resolution325Always resolve human-readable names to IDs before operations:326- **Project name -> Project ID**: `TODOIST_GET_ALL_PROJECTS`, match by `name` field327- **Section name -> Section ID**: `TODOIST_GET_ALL_SECTIONS` with `project_id`328- **Task content -> Task ID**: `TODOIST_GET_ALL_TASKS` with `filter` or `search: keyword`329330### Pagination331- `TODOIST_GET_ALL_TASKS`: Returns all matching incomplete tasks (no pagination needed)332- `TODOIST_GET_COMPLETED_TASKS_BY_COMPLETION_DATE`: Uses cursor-based pagination; follow `cursor` from response until no more results333- `TODOIST_GET_ALL_PROJECTS` and `TODOIST_GET_ALL_SECTIONS`: Return all results (no pagination)334335### Due Date Handling336- Natural language: Use `due_string` (e.g., `"tomorrow at 3pm"`, `"every Monday"`)337- Specific date: Use `due_date` in `YYYY-MM-DD` format338- Specific datetime: Use `due_datetime` in RFC3339 format (`YYYY-MM-DDTHH:mm:ssZ`)339- Only use ONE due field at a time (except `due_lang` which can accompany any)340- Recurring tasks: Use natural language in `due_string` (e.g., `"every Friday at 9am"`)341342#### Imported: Known Pitfalls343344### ID Formats345- Task IDs can be numeric (`"2995104339"`) or alphanumeric (`"6X4Vw2Hfmg73Q2XR"`)346- Project IDs similarly vary; prefer the format returned by the API347- Some tools accept only numeric IDs; if 400 error occurs, try fetching the numeric `id` via GET_PROJECT348- Response objects may contain both `id` and `v2_id`; use `id` for API operations349350### Priority Inversion351- API priority: 1 = normal, 4 = urgent352- Todoist UI display: p1 = urgent, p4 = normal353- This is inverted; always clarify with the user which convention they mean354355### Filter Syntax356- Filter terms must reference real entities in the user's account357- `#NonExistentProject` or `@NonExistentLabel` will cause HTTP 400358- Use `search: keyword` for text search, not bare keywords359- Combine with `&` (AND), `|` (OR), `!` (NOT)360- `completed` filters do NOT work on GET_ALL_TASKS endpoint361362### Rate Limits363- Todoist API has rate limits; batch operations should use `BULK_CREATE_TASKS` where possible364- Space out rapid sequential requests to avoid throttling365366#### Imported: Limitations367368- Use this skill only when the task clearly matches the scope described above.369- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.370- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.