# Send clawdo - Todo List for Agents 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawdo",
    "name": "clawdo - Todo List for Agents",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/LePetitPince/clawdo",
    "canonicalUrl": "https://clawhub.ai/LePetitPince/clawdo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawdo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawdo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T19:40:14.032Z",
      "expiresAt": "2026-05-18T19:40:14.032Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdo",
        "contentDisposition": "attachment; filename=\"clawdo-1.1.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawdo"
      },
      "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/clawdo"
    },
    "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/clawdo",
    "downloadUrl": "https://openagent3.xyz/downloads/clawdo",
    "agentUrl": "https://openagent3.xyz/skills/clawdo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdo/agent.md"
  }
}
```
## Documentation

### 🦞 clawdo — The missing todo list for AI agents

Your agent has memory files, cron jobs, and chat. It has no todo list.

No way to say "do this when you get to it." Not "do this at 14:00 UTC." Not "do this right now in this conversation." Just... remember to do it. Track it. Pick it up when there's a gap.

That's clawdo.

### Install

clawhub install clawdo    # installs skill + docs into your workspace
npm install -g clawdo     # install the CLI binary

Requirements: Node.js ≥18

### Quick Start

# Capture a task
clawdo add "update dependencies" --urgency soon

# Agent checks its queue (heartbeat, cron, conversation — wherever)
clawdo inbox --format json

# Agent works it
clawdo start a3f2
clawdo done a3f2 --json

add → inbox → start → done. Persistent state in SQLite. Every command has --json so agents parse structured output, not terminal art.

### Where it fits

clawdo works everywhere agents work:

Heartbeat loops — "anything in my queue? let me do it between checks"
Cron jobs — "every hour, process one task"
Conversations — "J mentioned fixing the auth module, let me capture that"
Pipes and sub-agents — non-TTY safe, no interactive prompts

### Heartbeat integration example

# In HEARTBEAT.md — runs every ~30 minutes
TASKS=$(clawdo inbox --format json)
AUTO=$(echo "$TASKS" | jq '.autoReady | length')

if [ "$AUTO" -gt 0 ]; then
  TASK=$(clawdo next --auto --json | jq -r '.task.id')
  clawdo start "$TASK" --json
  # ... do the work ...
  clawdo done "$TASK" --json
fi

### Autonomy levels

Tasks can be tagged with permission tiers that control what the agent is allowed to do unsupervised:

LevelTime LimitWhat it meansauto10 minAgent does it silently. Fix a typo, run tests.auto-notify30 minAgent does it, tells the human when done.collabUnlimitedHuman required. Complex, risky, or ambiguous.

Default: collab (safe).

Key rule: Autonomy is a permission, not a suggestion. Once set, agents can't change it. If an agent fails 3 times, autonomy demotes to collab. Safety only moves down, never up.

Agents propose, humans approve. Agent tasks always start as proposed. The human runs clawdo confirm <id> or it doesn't happen.

### For humans

# Add tasks — inline metadata parsing
clawdo add "deploy new API +backend auto-notify now"
#           └── text ──────┘ └project┘ └─level──┘ └urg┘

# View
clawdo list                       # active tasks
clawdo list --status proposed     # agent suggestions
clawdo next                       # highest priority

# Review agent proposals
clawdo confirm <id>               # approve
clawdo reject <id>                # reject

# Work
clawdo start <id>
clawdo done <id>
clawdo done abc,def,ghi           # complete several

### For agents

# Check inbox (structured)
clawdo inbox --format json

# Propose work
clawdo propose "add input validation" --level auto --json

# Execute
TASK=$(clawdo next --auto --json | jq -r '.task.id // empty')
if [ -n "$TASK" ]; then
  clawdo start "$TASK" --json
  # ... do the work ...
  clawdo done "$TASK" --json
fi

The inbox returns: autoReady, autoNotifyReady, urgent, overdue, proposed, stale, blocked.

### Inline syntax

clawdo add "fix auth bug +backend @code auto soon"

+word → project
@word → context
auto / auto-notify / collab → autonomy level
now / soon / whenever / someday → urgency
due:YYYY-MM-DD → due date

### Security

Immutable autonomy — agents cannot escalate permissions
Proposal limits — max 5 active, 60s cooldown
Prompt injection defense — input sanitization, parameterized SQL
Audit trail — append-only log of every state change
Secure IDs — crypto.randomInt(), no modulo bias

### Resources

GitHub: https://github.com/LePetitPince/clawdo
npm: https://www.npmjs.com/package/clawdo
Full docs: clawdo --help

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: LePetitPince
- Version: 1.1.4
## 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-11T19:40:14.032Z
- Expires at: 2026-05-18T19:40:14.032Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawdo)
- [Send to Agent page](https://openagent3.xyz/skills/clawdo/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawdo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawdo/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawdo)