# Send Tasktrove 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": "tasktrove",
    "name": "Tasktrove",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/willwebberley/tasktrove",
    "canonicalUrl": "https://clawhub.ai/willwebberley/tasktrove",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tasktrove",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tasktrove",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/tasks.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "tasktrove",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T17:48:58.927Z",
      "expiresAt": "2026-05-16T17:48:58.927Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tasktrove",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tasktrove",
        "contentDisposition": "attachment; filename=\"tasktrove-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "tasktrove"
      },
      "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/tasktrove"
    },
    "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/tasktrove",
    "downloadUrl": "https://openagent3.xyz/downloads/tasktrove",
    "agentUrl": "https://openagent3.xyz/skills/tasktrove/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tasktrove/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tasktrove/agent.md"
  }
}
```
## Documentation

### Tasktrove Todo Management

Manage tasks via a self-hosted Tasktrove instance. (GitHub)

### Configuration

Set the following environment variable:

export TASKTROVE_HOST="http://your-server:3333"

Optionally, if your instance requires authentication:

export TASKTROVE_TOKEN="your-api-token"

### Using the CLI script

# List today's tasks
python3 scripts/tasks.py list --today

# List overdue tasks
python3 scripts/tasks.py list --overdue

# List this week's tasks
python3 scripts/tasks.py list --week

# Add a task
python3 scripts/tasks.py add "Task title" --due 2026-02-10 --priority 2

# Complete a task (use ID prefix from list output)
python3 scripts/tasks.py complete abc123

# Search tasks
python3 scripts/tasks.py search "keyword"

### Direct API calls

List Tasks

curl -s "$TASKTROVE_HOST/api/v1/tasks"

Create Task

# Note: API requires all fields including id, completed, labels, etc.
curl -X POST "$TASKTROVE_HOST/api/v1/tasks" \\
  -H "Content-Type: application/json" \\
  -d '{
    "id": "<uuid>",
    "title": "Task title",
    "priority": 4,
    "dueDate": "2026-02-06",
    "completed": false,
    "labels": [],
    "subtasks": [],
    "comments": [],
    "createdAt": "2026-02-06T12:00:00.000Z",
    "recurringMode": "dueDate"
  }'

Complete/Update Task

# Note: PATCH goes to collection endpoint with ID in body (not /tasks/{id})
curl -X PATCH "$TASKTROVE_HOST/api/v1/tasks" \\
  -H "Content-Type: application/json" \\
  -d '{"id": "<task-id>", "completed": true}'

Delete Task

curl -X DELETE "$TASKTROVE_HOST/api/v1/tasks/<task-id>"

### Task Schema

FieldTypeNotesidstringUUID (required on create)titlestringRequireddescriptionstringOptionalcompletedbooleanDefault falseprioritynumber1 (highest) to 4 (lowest)dueDatestringYYYY-MM-DD formatprojectIdstringUUID of projectlabelsstring[]Array of label UUIDssubtasksobject[]Nested subtasksrecurringstringRRULE format

### Priority Levels

P1: Urgent/critical
P2: High priority
P3: Medium priority
P4: Low priority (default)

### Notes

The Tasktrove UI supports natural language input, but the API expects structured JSON
PATCH operations use the collection endpoint with ID in the request body
POST requires all schema fields to be present
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: willwebberley
- Version: 1.0.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-09T17:48:58.927Z
- Expires at: 2026-05-16T17:48:58.927Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tasktrove)
- [Send to Agent page](https://openagent3.xyz/skills/tasktrove/agent)
- [JSON manifest](https://openagent3.xyz/skills/tasktrove/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tasktrove/agent.md)
- [Download page](https://openagent3.xyz/downloads/tasktrove)