# Send Todoist CLI to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "todoist-cli",
    "name": "Todoist CLI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/buddyh/todoist-cli",
    "canonicalUrl": "https://clawhub.ai/buddyh/todoist-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/todoist-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todoist-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "skill.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "todoist-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T01:27:35.465Z",
      "expiresAt": "2026-05-17T01:27:35.465Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todoist-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todoist-cli",
        "contentDisposition": "attachment; filename=\"todoist-cli-1.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "todoist-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/todoist-cli"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/todoist-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/todoist-cli",
    "agentUrl": "https://openagent3.xyz/skills/todoist-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todoist-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todoist-cli/agent.md"
  }
}
```
## Documentation

### Todoist CLI

A fast, full-featured Todoist CLI written in Go.

### Authentication

Get your API token from https://todoist.com/app/settings/integrations/developer

# Interactive
todoist auth

# Direct
todoist auth <your-token>

# Or set environment variable
export TODOIST_API_TOKEN=<your-token>

### Tasks

# Show today's tasks (default)
todoist

# List all tasks
todoist tasks --all

# Filter tasks
todoist tasks --filter "p1"        # High priority
todoist tasks --filter "overdue"   # Overdue
todoist tasks -p Work              # By project

# Show task descriptions and comments
todoist tasks -p Work --details

# Add a task
todoist add "Buy groceries"
todoist add "Call mom" -d tomorrow
todoist add "Urgent" -P 1 -d "today 5pm" -l urgent

# Complete a task
todoist complete <task-id>
todoist done <task-id>

# Reopen completed task
todoist reopen <task-id>

# View task details
todoist view <task-id>

# Update a task
todoist update <task-id> --due "next monday"
todoist update <task-id> -P 2

# Delete a task
todoist delete <task-id>

# Move a task (Kanban workflows)
todoist move <task-id> --section "In Progress"
todoist move <task-id> --project "Work"

# Search
todoist search "meeting"

### Projects

# List projects
todoist projects

# Create project
todoist projects add "New Project" --color blue

### Labels

# List labels
todoist labels

# Create label
todoist labels add urgent --color red

### Sections

# List sections
todoist sections -p Work

# Create section
todoist sections add "In Progress" -p Work

### Comments

# View comments on a task
todoist comment <task-id>

# Add a comment
todoist comment <task-id> "This is a note"

### Completed Tasks

# Show recently completed
todoist completed

# Filter by date
todoist completed --since 2024-01-01 --limit 50

### JSON Output

All commands support --json for machine-readable output:

todoist tasks --json | jq '.[] | .content'

### Command Reference

CommandDescriptiontodoistShow today's taskstodoist tasksList tasks with filterstodoist addCreate a new tasktodoist completeMark task completetodoist doneAlias for completetodoist reopenReopen completed tasktodoist deleteDelete a tasktodoist updateUpdate a tasktodoist moveMove task to section/projecttodoist viewView task detailstodoist searchSearch taskstodoist projectsList/manage projectstodoist labelsList/manage labelstodoist sectionsList/manage sectionstodoist commentView/add commentstodoist completedShow completed taskstodoist authAuthenticate

### Priority Mapping

CLITodoist-P 1p1 (highest)-P 2p2-P 3p3-P 4p4 (lowest)

### Notes

All commands support --json for machine-readable output
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: buddyh
- Version: 1.3.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T01:27:35.465Z
- Expires at: 2026-05-17T01:27:35.465Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/todoist-cli)
- [Send to Agent page](https://openagent3.xyz/skills/todoist-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/todoist-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/todoist-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/todoist-cli)