todoist-api
This skill provides instructions for interacting with Todoist using the td CLI tool. It covers CRUD operations for tasks/projects/sections/labels/comments, and requires confirmation before destructive actions. Use this skill when the user wants to read, create, update, or delete Todoist data.
What this skill does
# Todoist CLI Skill This skill provides procedural guidance for working with Todoist using the `td` CLI tool. ## Prerequisites The `td` CLI must be installed and authenticated. Verify with: ```bash td auth status ``` If td is not installed or not authenticated: - **Not installed**: Tell the user to install with `npm install -g @doist/todoist-cli` - **Not authenticated**: Tell the user to run `td auth login` to authenticate via OAuth ## Output Formats for Agents For machine-readable output, use these flags: - `--json` - Output as JSON array - `--ndjson` - Output as newline-delimited JSON (one object per line) - `--full` - Include all fields in JSON output (default shows essential fields only) ## Confirmation Requirement **Before executing any destructive action, always ask the user for confirmation using AskUserQuestion or similar tool.** A single confirmation suffices for a logical group of related actions. Destructive actions include: - Deleting tasks, projects, sections, labels, or comments - Completing tasks - Updating existing resources - Archiving projects Read-only operations do not require confirmation. ## Quick Commands | Command | Description | |---------|-------------| | `td add "text"` | Quick add with natural language parsing | | `td today` | Tasks due today and overdue | | `td upcoming [days]` | Tasks due in next N days (default: 7) | | `td inbox` | Tasks in Inbox | | `td completed` | Recently completed tasks | ### Quick Add Examples ```bash td add "Buy milk tomorrow p1 #Shopping" td add "Call dentist every monday @health" td add "Review PR #Work /Code Review" ``` The quick add parser supports: - Due dates: `tomorrow`, `next monday`, `Jan 15` - Priority: `p1` (urgent) through `p4` (normal) - Project: `#ProjectName` - Section: `/SectionName` - Labels: `@label1 @label2` ## Tasks ### List Tasks ```bash td task list [options] ``` **Filters:** - `--project <name>` - Filter by project name or id:xxx - `--label <name>` - Filter by label (comma-separated for multiple) - `--priority <p1-p4>` - Filter by priority - `--due <date>` - Filter by due date (today, overdue, or YYYY-MM-DD) - `--filter <query>` - Raw Todoist filter query - `--assignee <ref>` - Filter by assignee (me or id:xxx) - `--workspace <name>` - Filter to workspace - `--personal` - Filter to personal projects only **Output:** ```bash td task list --json # JSON array td task list --project "Work" --json # Filtered JSON td task list --all --json # All tasks (no limit) ``` ### View Task Details ```bash td task view <ref> # Human-readable td task view <ref> --json # JSON output ``` The ref can be a task name, partial match, or `id:xxx`. ### Create Task **Quick add (natural language):** ```bash td add "Task text with #Project @label tomorrow p2" ``` **Explicit flags:** ```bash td task add --content "Task text" \ --project "Work" \ --due "tomorrow" \ --priority p2 \ --labels "urgent,review" \ --description "Additional details" ``` **Options:** - `--content <text>` - Task content (required) - `--due <date>` - Due date (natural language or YYYY-MM-DD) - `--deadline <date>` - Deadline date (YYYY-MM-DD) - `--priority <p1-p4>` - Priority level - `--project <name>` - Project name or id:xxx - `--section <id>` - Section ID - `--labels <a,b>` - Comma-separated labels - `--parent <ref>` - Parent task for subtask - `--description <text>` - Task description - `--assignee <ref>` - Assign to user (name, email, id:xxx, or "me") - `--duration <time>` - Duration (e.g., 30m, 1h, 2h15m) ### Update Task ```bash td task update <ref> --content "New content" --due "next week" ``` **Options:** - `--content <text>` - New content - `--due <date>` - New due date - `--deadline <date>` - Deadline date - `--no-deadline` - Remove deadline - `--priority <p1-p4>` - New priority - `--labels <a,b>` - Replace labels - `--description <text>` - New description - `--assignee <ref>` - Assign to user - `--unassign` - Remove assignee - `--duration <time>` - Duration ### Complete Task ```bash td task complete <ref> ``` ### Reopen Task ```bash td task uncomplete id:xxx ``` Note: Uncomplete requires the task ID (id:xxx format). ### Delete Task ```bash td task delete <ref> ``` ### Move Task ```bash td task move <ref> --project "New Project" td task move <ref> --section <section-id> td task move <ref> --parent <task-ref> ``` ### Open in Browser ```bash td task browse <ref> ``` ## Projects ### List Projects ```bash td project list # Human-readable tree td project list --json # JSON array td project list --personal --json # Personal projects only ``` ### View Project ```bash td project view <ref> td project view <ref> --json ``` ### Create Project ```bash td project create --name "Project Name" \ --color "blue" \ --parent "Parent Project" \ --view-style board \ --favorite ``` **Options:** - `--name <name>` - Project name (required) - `--color <color>` - Colour name - `--parent <ref>` - Parent project for nesting - `--view-style <style>` - "list" or "board" - `--favorite` - Mark as favourite ### Update Project ```bash td project update <ref> --name "New Name" --color "red" ``` ### Archive/Unarchive Project ```bash td project archive <ref> td project unarchive <ref> ``` ### Delete Project ```bash td project delete <ref> ``` Note: Project must have no uncompleted tasks. ### List Collaborators ```bash td project collaborators <ref> ``` ## Sections ### List Sections ```bash td section list <project> # Human-readable td section list <project> --json # JSON array ``` ### Create Section ```bash td section create --name "Section Name" --project "Project Name" ``` ### Update Section ```bash td section update <id> --name "New Name" ``` ### Delete Section ```bash td section delete <id> ``` ## Labels ### List Labels ```bash td label list # Human-readable td label list --json # JSON array ``` ### Create Label ```bash td label create --name "label-name" --color "green" --favorite ``` ### Update Label ```bash td label update <ref> --name "new-name" --color "blue" ``` ### Delete Label ```bash td label delete <name> ``` ## Comments ### List Comments ```bash td comment list <task-ref> # Comments on task td comment list <project-ref> --project # Comments on project ``` ### Add Comment ```bash td comment add <task-ref> --content "Comment text" td comment add <project-ref> --project --content "Comment text" ``` ### Update Comment ```bash td comment update <id> --content "Updated text" ``` ### Delete Comment ```bash td comment delete <id> ``` ## Reminders ### List Reminders ```bash td reminder list <task-ref> ``` ### Add Reminder ```bash td reminder add <task-ref> --due "tomorrow 9am" ``` ### Delete Reminder ```bash td reminder delete <id> ``` ## Filters ### List Saved Filters ```bash td filter list --json ``` ### Show Tasks Matching Filter ```bash td filter show <filter-ref> --json ``` ### Create Filter ```bash td filter create --name "My Filter" --query "today & p1" ``` ## Completed Tasks ```bash td completed # Today's completed tasks td completed --since 2024-01-01 # Since specific date td completed --project "Work" --json # Filtered JSON output td completed --all --json # All completed (no limit) ``` **Options:** - `--since <date>` - Start date (YYYY-MM-DD), default: today - `--until <date>` - End date (YYYY-MM-DD), default: tomorrow - `--project <name>` - Filter by project ## Activity and Stats ```bash td activity # Recent activity td stats # Productivity stats and karma ``` ## Pagination For large result sets, use `--all` to fetch everything, or handle pagination with cursors: ```bash # First page result=$(td task list --json --limit 50) # If there's a next_cursor in the response, continue
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.