# Send Todo management 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": "todo-management",
    "name": "Todo management",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/lstpsche/todo-management",
    "canonicalUrl": "https://clawhub.ai/lstpsche/todo-management",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/todo-management",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todo-management",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "scripts/todo.sh",
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "todo-management",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T13:17:32.341Z",
      "expiresAt": "2026-05-08T13:17:32.341Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todo-management",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todo-management",
        "contentDisposition": "attachment; filename=\"todo-management-1.1.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "todo-management"
      },
      "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/todo-management"
    },
    "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/todo-management",
    "downloadUrl": "https://openagent3.xyz/downloads/todo-management",
    "agentUrl": "https://openagent3.xyz/skills/todo-management/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todo-management/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todo-management/agent.md"
  }
}
```
## Documentation

### What this skill controls

A per-workspace SQLite database:

Default: ./todo.db
Override: TODO_DB=/path/to/todo.db

All changes MUST happen through the CLI:
bash {baseDir}/scripts/todo.sh ...

### Statuses

pending (default), in_progress, done, skipped

Default list hides done and skipped unless --all or --status=....

### 1) No file writing (ever)

Do NOT create or edit any files (e.g., todos.md, notes, markdown, exports).
Do NOT output “filename blocks” like todos.md (...).
The only persistent state is in todo.db, mutated by todo.sh.

### 2) Never print the todo list unless explicitly asked

If the user does NOT ask to “show/list/print my todos”, do NOT paste the list.
Default behavior after mutations: one short confirmation line only.

### 3) Keep replies extremely short

After success: respond with ONE line, max ~5 words (translate to user’s language yourself).
Do not include bullets, tables, code blocks, or tool output unless the user explicitly asked for the list/details.

Allowed confirmations (English examples; translate as needed):

“Done.”
“Added.”
“Updated.”
“Removed.”
“Moved.”
“Renamed.”
“Cleared.”
“Added to the list.”

### 4) Ambiguity handling (the ONLY exception to rule #2)

If the user requests a destructive action but does not specify an ID (e.g., “remove the milk task”):

run entry list (optionally with --group=...)
show the results (minimal table)
ask which ID to act on

This is the only case where you may show the list without the user explicitly requesting it.

### 5) Group deletion safety

group remove "X" moves entries to Inbox (default).
Only delete entries if the user explicitly chooses that:

ask: “Move entries to Inbox (default) or delete entries too?”
only then use --delete-entries.

### Entries

Add:

bash {baseDir}/scripts/todo.sh entry create "Buy milk"
bash {baseDir}/scripts/todo.sh entry create "Ship feature X" --group="Work" --status=in_progress


List (ONLY when user asks, or for ambiguity resolution):

bash {baseDir}/scripts/todo.sh entry list
bash {baseDir}/scripts/todo.sh entry list --group="Work"
bash {baseDir}/scripts/todo.sh entry list --all
bash {baseDir}/scripts/todo.sh entry list --status=done


Show one entry:

bash {baseDir}/scripts/todo.sh entry show 12


Edit text:

bash {baseDir}/scripts/todo.sh entry edit 12 "Buy oat milk instead"


Move:

bash {baseDir}/scripts/todo.sh entry move 12 --group="Inbox"


Change status:

bash {baseDir}/scripts/todo.sh entry status 12 --status=done
bash {baseDir}/scripts/todo.sh entry status 12 --status=skipped


Remove:

bash {baseDir}/scripts/todo.sh entry remove 12

### Groups

Create / list:

bash {baseDir}/scripts/todo.sh group create "Work"
bash {baseDir}/scripts/todo.sh group list


Rename (alias: edit):

bash {baseDir}/scripts/todo.sh group rename "Work" "Work (Project A)"
bash {baseDir}/scripts/todo.sh group edit "Work" "Work (Project A)"


Remove:

Default (move entries to Inbox):

bash {baseDir}/scripts/todo.sh group remove "Work"


Delete entries too (ONLY if user explicitly wants it):

bash {baseDir}/scripts/todo.sh group remove "Work" --delete-entries

### “Clear the list” behavior (no list printing)

To clear the todo list:

run entry list --all to get IDs (do NOT paste the results)
remove each ID with entry remove ID
reply with ONE line: “Cleared.”

If the user then asks to see the list, run entry list and show it.

### Dialogue example (expected behavior)

User: "I need to buy milk, add it to my todo list"
Agent: "Done."

User: "Oh, and I also need to clean the room"
Agent: "Added to the list."

User: "Show my todos"
Agent: (prints the list)

User: "Remove the milk one"
Agent: (lists matching tasks + asks for ID, then removes when ID is provided)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lstpsche
- Version: 1.1.3
## 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-01T13:17:32.341Z
- Expires at: 2026-05-08T13:17:32.341Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/todo-management)
- [Send to Agent page](https://openagent3.xyz/skills/todo-management/agent)
- [JSON manifest](https://openagent3.xyz/skills/todo-management/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/todo-management/agent.md)
- [Download page](https://openagent3.xyz/downloads/todo-management)