# Send todoist latest 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-rs",
    "name": "todoist latest",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/LuoAndOrder/todoist-rs",
    "canonicalUrl": "https://clawhub.ai/LuoAndOrder/todoist-rs",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/todoist-rs",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todoist-rs",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/todoist-rs"
    },
    "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-rs",
    "downloadUrl": "https://openagent3.xyz/downloads/todoist-rs",
    "agentUrl": "https://openagent3.xyz/skills/todoist-rs/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todoist-rs/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todoist-rs/agent.md"
  }
}
```
## Documentation

### Todoist Integration

Manage tasks via td CLI (todoist-rs).

### Installation

brew install LuoAndOrder/tap/todoist-cli

Or install via Cargo: cargo install todoist-cli-rs

### Sync Behavior

Writes auto-sync: add, done, edit, delete hit the API directly
Reads use cache: list, today, show read from local cache
Sync when needed: Use --sync flag or td sync for fresh data

td sync              # Incremental sync (fast)
td sync --full       # Full rebuild if cache seems off

### List Tasks

# Today's agenda (includes overdue)
td today --sync

# Today only (no overdue)
td today --no-overdue

# All tasks
td list --sync

# By project
td list -p "Inbox" --sync
td list -p "Work" --sync

# High priority
td list -f "p1 | p2" --sync

# By label
td list -l "urgent" --sync

# Complex filters
td list -f "today & p1" --sync
td list -f "(today | overdue) & !@waiting_on" --sync

### Add Tasks

Quick add (natural language):

td quick "Buy milk tomorrow @errands #Personal"
td quick "Review PR tomorrow" --note "Check the auth changes carefully"

Structured add:

td add "Task content" \\
  -p "Inbox" \\
  -P 2 \\
  -d "today" \\
  -l "urgent"

# With description
td add "Prepare quarterly report" -P 1 -d "friday" \\
  --description "Include sales metrics and customer feedback summary"

Options:

-P, --priority - 1 (highest) to 4 (lowest, default)
-p, --project - project name
-d, --due - due date ("today", "tomorrow", "2026-01-30", "next monday")
-l, --label - label (repeat for multiple)
--description - task description/notes (shown below task title)
--section - target section within project
--parent - parent task ID (creates subtask)

### Complete Tasks

td done <task-id>
td done <id1> <id2> <id3>              # Multiple at once
td done <id> --all-occurrences         # End recurring task permanently

### Modify Tasks

td edit <task-id> -c "New content"
td edit <task-id> --description "Additional notes here"
td edit <task-id> -P 1
td edit <task-id> -d "tomorrow"
td edit <task-id> --add-label "urgent"
td edit <task-id> --remove-label "next"
td edit <task-id> --no-due             # Remove due date
td edit <task-id> --section "Next Actions"
td edit <task-id> -p "Work"            # Move to different project

Edit options:

-c, --content - update task title
--description - update task description/notes
-P, --priority - change priority (1-4)
-d, --due - change due date
--no-due - remove due date
-l, --label - replace all labels
--add-label - add a label
--remove-label - remove a label
-p, --project - move to different project
--section - move to section within project

### Show Task Details

td show <task-id>
td show <task-id> --comments

### Delete Tasks

td delete <task-id>

### Reopen Completed Tasks

td reopen <task-id>

### Project & Label Management

# Projects
td projects                            # List all
td projects add "New Project"
td projects show <id>

# Labels
td labels                              # List all
td labels add "urgent"

### Filter Syntax

Use with -f/--filter:

| for OR: today | overdue
& for AND: @next & #Personal
Parentheses: (today | overdue) & p1
Negation: !@waiting_on
Priority: p1, p2, p3, p4
Dates: today, tomorrow, overdue, no date, 7 days

### Workflow Tips

Morning review: td today --sync
Quick capture: td quick "thing to do"
Focus list: td list -f "@next" --sync
Waiting on: td list -f "@waiting_on" --sync
End of day: td today (cache is fine, already synced)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: LuoAndOrder
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/todoist-rs)
- [Send to Agent page](https://openagent3.xyz/skills/todoist-rs/agent)
- [JSON manifest](https://openagent3.xyz/skills/todoist-rs/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/todoist-rs/agent.md)
- [Download page](https://openagent3.xyz/downloads/todoist-rs)