{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-task-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-task-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/agent-task-tracker",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Task Tracker",
        "body": "Maintain a live task state file so context survives session resets/compaction."
      },
      {
        "title": "State File",
        "body": "memory/tasks.md — single source of truth."
      },
      {
        "title": "When to Write",
        "body": "Task received → add entry with status 🔄 进行中\nBackground process started → record session ID, PID, server, command\nProgress update → update status/notes\nTask completed → mark ✅ 完成, record results/links\nTask failed → mark ❌ 失败, record error\nSession start → read memory/tasks.md to resume awareness"
      },
      {
        "title": "Format",
        "body": "# Active Tasks\n\n## [task-id] Short description\n- **Status**: 🔄 进行中 | ✅ 完成 | ❌ 失败 | ⏸️ 暂停\n- **Requested**: YYYY-MM-DD HH:MM\n- **Updated**: YYYY-MM-DD HH:MM\n- **Background**: session-id (PID) on server-name — `command`\n- **Notes**: progress details, partial results\n- **Result**: final output, links, summary\n\n# Completed (recent)\n<!-- Move completed tasks here, keep last 10, prune older -->"
      },
      {
        "title": "Rules",
        "body": "Update the file BEFORE reporting to user (write-first)\nInclude enough detail to resume without prior conversation context\nFor background processes: always record session ID + what server + what command\nFor multi-step tasks: update after each step\nKeep it concise — this isn't a log, it's a state snapshot\nSize limit: keep under 50 lines / 2KB — this file is read every session start\nCompleted tasks: collapse to one-line summary, reference daily notes for details\nPrune completed tasks older than 3 days\nIf Active is empty, write （无） to make it obvious"
      }
    ],
    "body": "Task Tracker\n\nMaintain a live task state file so context survives session resets/compaction.\n\nState File\n\nmemory/tasks.md — single source of truth.\n\nWhen to Write\nTask received → add entry with status 🔄 进行中\nBackground process started → record session ID, PID, server, command\nProgress update → update status/notes\nTask completed → mark ✅ 完成, record results/links\nTask failed → mark ❌ 失败, record error\nSession start → read memory/tasks.md to resume awareness\nFormat\n# Active Tasks\n\n## [task-id] Short description\n- **Status**: 🔄 进行中 | ✅ 完成 | ❌ 失败 | ⏸️ 暂停\n- **Requested**: YYYY-MM-DD HH:MM\n- **Updated**: YYYY-MM-DD HH:MM\n- **Background**: session-id (PID) on server-name — `command`\n- **Notes**: progress details, partial results\n- **Result**: final output, links, summary\n\n# Completed (recent)\n<!-- Move completed tasks here, keep last 10, prune older -->\n\nRules\nUpdate the file BEFORE reporting to user (write-first)\nInclude enough detail to resume without prior conversation context\nFor background processes: always record session ID + what server + what command\nFor multi-step tasks: update after each step\nKeep it concise — this isn't a log, it's a state snapshot\nSize limit: keep under 50 lines / 2KB — this file is read every session start\nCompleted tasks: collapse to one-line summary, reference daily notes for details\nPrune completed tasks older than 3 days\nIf Active is empty, write （无） to make it obvious"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/rikouu/agent-task-tracker",
    "publisherUrl": "https://clawhub.ai/rikouu/agent-task-tracker",
    "owner": "rikouu",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}