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

### Purpose

Task capture + delegation tracking + daily remaining-work report for Telegram.
NO web browsing, NO web search, NO external lookups.

### Data store

Append-only log: ~/.openclaw/workspace/data/todo/tasks.jsonl
Derived state cache (optional): ~/.openclaw/workspace/data/todo/state.json

### Commands (Telegram)

/todo <text> : create a task draft from free text
/todo_done <id> : mark done
/todo_list : list open tasks (grouped by owner, then due date)
/todo_delegated : list tasks I assigned to others that are still open (include history)
/todo_report : daily report (same as list, but concise)

### Extraction rules (very important)

When user sends /todo <text>:

Extract: title, owner, due_date (YYYY-MM-DD or natural language), priority (optional), notes.
If owner OR due_date is missing/ambiguous:

Ask a follow-up question in Telegram.
Store as status="draft" with missing_fields=[...].
Do NOT finalize as "open" until both are confirmed.


If owner/due_date are present:

Create status="open"


Always echo back a confirmation summary: id, title, owner, due_date, status.

### Default assumptions

If owner missing: ask "누가 담당할까요? (본인/팀원 이름)"
If due_date missing: ask "납기는 언제로 할까요?"
Timezone: Asia/Seoul.

### History

Any update must append an event to tasks.jsonl:

created / finalized / updated / done / reopened
Include: timestamp, actor(user), previous values, new values.

### Hard constraints

Never call web tools.
Never require API keys.
Keep replies short and action-oriented.

### Execution

When receiving /todo:

Call: ~/.openclaw/workspace/skills/todo-boss/add_task.sh "<full user text after /todo>"
Reply to user with the script output.

### Follow-up policy (strict)

Only ask these two questions if missing:

"담당자(owner)는 누구로 할까요?"
"납기(due)는 언제로 할까요?"

Do NOT ask about content details, background, meeting context, or email structure.
This skill is a task tracker, not a planning assistant.

If the user asks for planning or drafting, answer briefly but still capture the task by asking owner/due if missing.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ukraecho
- Version: 0.1.0
## 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-01T11:38:26.978Z
- Expires at: 2026-05-08T11:38:26.978Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/todo-boss)
- [Send to Agent page](https://openagent3.xyz/skills/todo-boss/agent)
- [JSON manifest](https://openagent3.xyz/skills/todo-boss/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/todo-boss/agent.md)
- [Download page](https://openagent3.xyz/downloads/todo-boss)