# Send Task Tracker 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": "agent-task-tracker",
    "name": "Task Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/rikouu/agent-task-tracker",
    "canonicalUrl": "https://clawhub.ai/rikouu/agent-task-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent-task-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-task-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agent-task-tracker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T01:19:38.182Z",
      "expiresAt": "2026-05-11T01:19:38.182Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-task-tracker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-task-tracker",
        "contentDisposition": "attachment; filename=\"agent-task-tracker-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-task-tracker"
      },
      "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/agent-task-tracker"
    },
    "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/agent-task-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-task-tracker",
    "agentUrl": "https://openagent3.xyz/skills/agent-task-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-task-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-task-tracker/agent.md"
  }
}
```
## Documentation

### Task Tracker

Maintain a live task state file so context survives session resets/compaction.

### State File

memory/tasks.md — single source of truth.

### When to Write

Task received → add entry with status 🔄 进行中
Background process started → record session ID, PID, server, command
Progress update → update status/notes
Task completed → mark ✅ 完成, record results/links
Task failed → mark ❌ 失败, record error
Session start → read memory/tasks.md to resume awareness

### Format

# Active Tasks

## [task-id] Short description
- **Status**: 🔄 进行中 | ✅ 完成 | ❌ 失败 | ⏸️ 暂停
- **Requested**: YYYY-MM-DD HH:MM
- **Updated**: YYYY-MM-DD HH:MM
- **Background**: session-id (PID) on server-name — \`command\`
- **Notes**: progress details, partial results
- **Result**: final output, links, summary

# Completed (recent)
<!-- Move completed tasks here, keep last 10, prune older -->

### Rules

Update the file BEFORE reporting to user (write-first)
Include enough detail to resume without prior conversation context
For background processes: always record session ID + what server + what command
For multi-step tasks: update after each step
Keep it concise — this isn't a log, it's a state snapshot
Size limit: keep under 50 lines / 2KB — this file is read every session start
Completed tasks: collapse to one-line summary, reference daily notes for details
Prune completed tasks older than 3 days
If Active is empty, write （无） to make it obvious
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: rikouu
- Version: 1.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-04T01:19:38.182Z
- Expires at: 2026-05-11T01:19:38.182Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent-task-tracker)
- [Send to Agent page](https://openagent3.xyz/skills/agent-task-tracker/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent-task-tracker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent-task-tracker/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent-task-tracker)