{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawdo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/clawdo",
    "agentPageUrl": "https://openagent3.xyz/skills/clawdo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdo/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "🦞 clawdo — The missing todo list for AI agents",
        "body": "Your agent has memory files, cron jobs, and chat. It has no todo list.\n\nNo 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.\n\nThat's clawdo."
      },
      {
        "title": "Install",
        "body": "clawhub install clawdo    # installs skill + docs into your workspace\nnpm install -g clawdo     # install the CLI binary\n\nRequirements: Node.js ≥18"
      },
      {
        "title": "Quick Start",
        "body": "# Capture a task\nclawdo add \"update dependencies\" --urgency soon\n\n# Agent checks its queue (heartbeat, cron, conversation — wherever)\nclawdo inbox --format json\n\n# Agent works it\nclawdo start a3f2\nclawdo done a3f2 --json\n\nadd → inbox → start → done. Persistent state in SQLite. Every command has --json so agents parse structured output, not terminal art."
      },
      {
        "title": "Where it fits",
        "body": "clawdo works everywhere agents work:\n\nHeartbeat loops — \"anything in my queue? let me do it between checks\"\nCron jobs — \"every hour, process one task\"\nConversations — \"J mentioned fixing the auth module, let me capture that\"\nPipes and sub-agents — non-TTY safe, no interactive prompts"
      },
      {
        "title": "Heartbeat integration example",
        "body": "# In HEARTBEAT.md — runs every ~30 minutes\nTASKS=$(clawdo inbox --format json)\nAUTO=$(echo \"$TASKS\" | jq '.autoReady | length')\n\nif [ \"$AUTO\" -gt 0 ]; then\n  TASK=$(clawdo next --auto --json | jq -r '.task.id')\n  clawdo start \"$TASK\" --json\n  # ... do the work ...\n  clawdo done \"$TASK\" --json\nfi"
      },
      {
        "title": "Autonomy levels",
        "body": "Tasks can be tagged with permission tiers that control what the agent is allowed to do unsupervised:\n\nLevelTime 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.\n\nDefault: collab (safe).\n\nKey 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.\n\nAgents propose, humans approve. Agent tasks always start as proposed. The human runs clawdo confirm <id> or it doesn't happen."
      },
      {
        "title": "For humans",
        "body": "# Add tasks — inline metadata parsing\nclawdo add \"deploy new API +backend auto-notify now\"\n#           └── text ──────┘ └project┘ └─level──┘ └urg┘\n\n# View\nclawdo list                       # active tasks\nclawdo list --status proposed     # agent suggestions\nclawdo next                       # highest priority\n\n# Review agent proposals\nclawdo confirm <id>               # approve\nclawdo reject <id>                # reject\n\n# Work\nclawdo start <id>\nclawdo done <id>\nclawdo done abc,def,ghi           # complete several"
      },
      {
        "title": "For agents",
        "body": "# Check inbox (structured)\nclawdo inbox --format json\n\n# Propose work\nclawdo propose \"add input validation\" --level auto --json\n\n# Execute\nTASK=$(clawdo next --auto --json | jq -r '.task.id // empty')\nif [ -n \"$TASK\" ]; then\n  clawdo start \"$TASK\" --json\n  # ... do the work ...\n  clawdo done \"$TASK\" --json\nfi\n\nThe inbox returns: autoReady, autoNotifyReady, urgent, overdue, proposed, stale, blocked."
      },
      {
        "title": "Inline syntax",
        "body": "clawdo add \"fix auth bug +backend @code auto soon\"\n\n+word → project\n@word → context\nauto / auto-notify / collab → autonomy level\nnow / soon / whenever / someday → urgency\ndue:YYYY-MM-DD → due date"
      },
      {
        "title": "Security",
        "body": "Immutable autonomy — agents cannot escalate permissions\nProposal limits — max 5 active, 60s cooldown\nPrompt injection defense — input sanitization, parameterized SQL\nAudit trail — append-only log of every state change\nSecure IDs — crypto.randomInt(), no modulo bias"
      },
      {
        "title": "Resources",
        "body": "GitHub: https://github.com/LePetitPince/clawdo\nnpm: https://www.npmjs.com/package/clawdo\nFull docs: clawdo --help"
      },
      {
        "title": "License",
        "body": "MIT"
      }
    ],
    "body": "🦞 clawdo — The missing todo list for AI agents\n\nYour agent has memory files, cron jobs, and chat. It has no todo list.\n\nNo 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.\n\nThat's clawdo.\n\nInstall\nclawhub install clawdo    # installs skill + docs into your workspace\nnpm install -g clawdo     # install the CLI binary\n\n\nRequirements: Node.js ≥18\n\nQuick Start\n# Capture a task\nclawdo add \"update dependencies\" --urgency soon\n\n# Agent checks its queue (heartbeat, cron, conversation — wherever)\nclawdo inbox --format json\n\n# Agent works it\nclawdo start a3f2\nclawdo done a3f2 --json\n\n\nadd → inbox → start → done. Persistent state in SQLite. Every command has --json so agents parse structured output, not terminal art.\n\nWhere it fits\n\nclawdo works everywhere agents work:\n\nHeartbeat loops — \"anything in my queue? let me do it between checks\"\nCron jobs — \"every hour, process one task\"\nConversations — \"J mentioned fixing the auth module, let me capture that\"\nPipes and sub-agents — non-TTY safe, no interactive prompts\nHeartbeat integration example\n# In HEARTBEAT.md — runs every ~30 minutes\nTASKS=$(clawdo inbox --format json)\nAUTO=$(echo \"$TASKS\" | jq '.autoReady | length')\n\nif [ \"$AUTO\" -gt 0 ]; then\n  TASK=$(clawdo next --auto --json | jq -r '.task.id')\n  clawdo start \"$TASK\" --json\n  # ... do the work ...\n  clawdo done \"$TASK\" --json\nfi\n\nAutonomy levels\n\nTasks can be tagged with permission tiers that control what the agent is allowed to do unsupervised:\n\nLevel\tTime Limit\tWhat it means\nauto\t10 min\tAgent does it silently. Fix a typo, run tests.\nauto-notify\t30 min\tAgent does it, tells the human when done.\ncollab\tUnlimited\tHuman required. Complex, risky, or ambiguous.\n\nDefault: collab (safe).\n\nKey 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.\n\nAgents propose, humans approve. Agent tasks always start as proposed. The human runs clawdo confirm <id> or it doesn't happen.\n\nUsage\nFor humans\n# Add tasks — inline metadata parsing\nclawdo add \"deploy new API +backend auto-notify now\"\n#           └── text ──────┘ └project┘ └─level──┘ └urg┘\n\n# View\nclawdo list                       # active tasks\nclawdo list --status proposed     # agent suggestions\nclawdo next                       # highest priority\n\n# Review agent proposals\nclawdo confirm <id>               # approve\nclawdo reject <id>                # reject\n\n# Work\nclawdo start <id>\nclawdo done <id>\nclawdo done abc,def,ghi           # complete several\n\nFor agents\n# Check inbox (structured)\nclawdo inbox --format json\n\n# Propose work\nclawdo propose \"add input validation\" --level auto --json\n\n# Execute\nTASK=$(clawdo next --auto --json | jq -r '.task.id // empty')\nif [ -n \"$TASK\" ]; then\n  clawdo start \"$TASK\" --json\n  # ... do the work ...\n  clawdo done \"$TASK\" --json\nfi\n\n\nThe inbox returns: autoReady, autoNotifyReady, urgent, overdue, proposed, stale, blocked.\n\nInline syntax\nclawdo add \"fix auth bug +backend @code auto soon\"\n\n+word → project\n@word → context\nauto / auto-notify / collab → autonomy level\nnow / soon / whenever / someday → urgency\ndue:YYYY-MM-DD → due date\nSecurity\nImmutable autonomy — agents cannot escalate permissions\nProposal limits — max 5 active, 60s cooldown\nPrompt injection defense — input sanitization, parameterized SQL\nAudit trail — append-only log of every state change\nSecure IDs — crypto.randomInt(), no modulo bias\nResources\nGitHub: https://github.com/LePetitPince/clawdo\nnpm: https://www.npmjs.com/package/clawdo\nFull docs: clawdo --help\nLicense\n\nMIT"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/LePetitPince/clawdo",
    "publisherUrl": "https://clawhub.ai/LePetitPince/clawdo",
    "owner": "LePetitPince",
    "version": "1.1.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}