# Send Todoist 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-td",
    "name": "Todoist",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mattjefferson/todoist-td",
    "canonicalUrl": "https://clawhub.ai/mattjefferson/todoist-td",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/todoist-td",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todoist-td",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "todoist-td",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T01:49:18.812Z",
      "expiresAt": "2026-05-17T01:49:18.812Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todoist-td",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todoist-td",
        "contentDisposition": "attachment; filename=\"todoist-td-0.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "todoist-td"
      },
      "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-td"
    },
    "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-td",
    "downloadUrl": "https://openagent3.xyz/downloads/todoist-td",
    "agentUrl": "https://openagent3.xyz/skills/todoist-td/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todoist-td/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todoist-td/agent.md"
  }
}
```
## Documentation

### Install / verify

Repo: https://github.com/Doist/todoist-cli

If td is not installed (e.g., command not found: td), install from the repo:

git clone https://github.com/Doist/todoist-cli
cd todoist-cli
npm install
npm run build
npm link

Then verify:

td --help

Use td for all Todoist operations. Prefer parseable output:

Use --json (or --ndjson) for listing/reading tasks.
Use td task update ... for edits (content, due, description, priority, labels, etc.).

### Quick agenda

Today + overdue:

td today --json


Next N days:

td upcoming 7 --json


Inbox:

td inbox --json

When summarizing an agenda for the user:

Separate Overdue vs Due today (and optionally Upcoming).
Include priority (p1–p4) if present and any labels.

### Find the right task to edit

Preferred approaches:

If you already have the task id, use it directly:

Reference format: id:<taskId> (e.g., id:6WcqCcR4wF7XW5m6)

If you only have a title/snippet, search/list then match:

td task list --json (optionally filter via other list commands like today, upcoming, inbox)
Then pick the correct item by content + due date + project.

To view a single task:

td task view <ref> --json

### Common edits

Update description (notes):

td task update <ref> --description "..."

Update title/content:

td task update <ref> --content "New task title"

Change due date/time (natural language often works):

td task update <ref> --due "tomorrow 3pm"

Priority:

td task update <ref> --priority p1 (or p2/p3/p4)

Labels (replaces existing labels):

td task update <ref> --labels "Chores,Calls"

Complete / reopen:

td task complete <ref>
td task uncomplete id:<taskId>

Delete:

td task delete <ref> --yes (only if the user explicitly wants deletion)

### Add tasks

Fast natural-language add:

td add "Call dentist tomorrow 10am p2 #Personal"

Or explicit add (when you need structured fields):

td task add --content "..." --due "..." --priority p2 --labels "..."

### Safety / UX

Confirm before destructive actions (delete).
If multiple tasks match the user’s description, ask a clarifying question (or show candidates) before updating.
When the user asks to add info (e.g., a phone number), put it in the description unless they explicitly want it in the title.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mattjefferson
- Version: 0.1.1
## 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:49:18.812Z
- Expires at: 2026-05-17T01:49:18.812Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/todoist-td)
- [Send to Agent page](https://openagent3.xyz/skills/todoist-td/agent)
- [JSON manifest](https://openagent3.xyz/skills/todoist-td/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/todoist-td/agent.md)
- [Download page](https://openagent3.xyz/downloads/todoist-td)