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

### Skill name

taskwarrior

### Purpose

Manage tasks using Taskwarrior as the backend with data stored inside the current workspace. This skill provides a safe, workspace-scoped wrapper for common Taskwarrior operations (add/list/modify/done/projects/tags/due/priority/annotations).

### Runtime requirements (ClawHub)

This skill requires Taskwarrior to already be available in the runtime environment (e.g., included in the base image).

Validation: run task --version
If missing: report the dependency and instruct the environment owner to install system package taskwarrior (some distros package it as task).

This skill does not perform system-level installs (no apt, brew, dnf, etc.).

### Workspace root resolution (portable)

The skill resolves the workspace root at runtime:

If set, use the first available of:

OPENCLAW_WORKSPACE
WORKSPACE
PROJECT_DIR
REPO_ROOT


Otherwise, fallback to the current working directory.

All Taskwarrior data is stored under:
<workspace>/.openclaw/taskwarrior/

### Workspace-local Taskwarrior home

taskrc: <workspace>/.openclaw/taskwarrior/taskrc
data dir: <workspace>/.openclaw/taskwarrior/.task/

Every Taskwarrior command MUST run with:

TASKRC=<workspace>/.openclaw/taskwarrior/taskrc
(optional) TASKDATA=<workspace>/.openclaw/taskwarrior/.task

Never write to global ~/.task or ~/.taskrc unless the user explicitly asks to use global storage.

### Core workflow

Check dependency

Run: task --version
If missing: stop and return dependency instructions (see references/clawhub_notes.md).



Initialize workspace storage

Ensure directories exist:

<workspace>/.openclaw/taskwarrior/
<workspace>/.openclaw/taskwarrior/.task/


Ensure <workspace>/.openclaw/taskwarrior/taskrc contains at least:

data.location=<workspace>/.openclaw/taskwarrior/.task
confirmation=off
verbose=off





Execute requested operations

Prefer stable/common commands (see references/taskwarrior_cheatsheet.md).



Verify results

After any mutation, show a focused task <id> info or filtered task <filter> list.

### Supported operations (useful subset)

Add tasks: task add ...
List tasks: task list, task <filter> list
Modify tasks: task <id> modify ...
Complete tasks: task <id> done
Start/stop: task <id> start|stop (if desired)
Projects/tags: task projects, task tags, project:<name>, +tag, -tag
Due/priorities: due:<date>, priority:H|M|L
Notes: task <id> annotate "..."

### Safety

Follow references/safe_command_policy.md.
Highlights:

No delete/purge unless explicitly requested.
Avoid broad bulk changes without previewing the matching set.
No global config writes by default.

### References

references/workspace_data_layout.md
references/taskwarrior_cheatsheet.md
references/safe_command_policy.md
references/examples.md
references/clawhub_notes.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aghareza
- Version: 0.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-01T22:23:06.954Z
- Expires at: 2026-05-08T22:23:06.954Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/taskwarrior)
- [Send to Agent page](https://openagent3.xyz/skills/taskwarrior/agent)
- [JSON manifest](https://openagent3.xyz/skills/taskwarrior/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/taskwarrior/agent.md)
- [Download page](https://openagent3.xyz/downloads/taskwarrior)