{
  "schemaVersion": "1.0",
  "item": {
    "slug": "todo-tracker",
    "name": "TODO Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/jdrhyne/todo-tracker",
    "canonicalUrl": "https://clawhub.ai/jdrhyne/todo-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/todo-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todo-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/todo.sh"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/todo-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/todo-tracker",
    "agentPageUrl": "https://openagent3.xyz/skills/todo-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todo-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todo-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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "TODO Tracker",
        "body": "Maintain a persistent TODO.md scratch pad in the workspace."
      },
      {
        "title": "File Location",
        "body": "TODO.md in workspace root (e.g., /Users/nuthome/nuri-bot/TODO.md)"
      },
      {
        "title": "View TODO",
        "body": "When user asks: \"what's on the TODO?\", \"show TODO\", \"pending tasks?\"\n\ncat TODO.md\n\nThen summarize the items by priority."
      },
      {
        "title": "Add Item",
        "body": "When user says: \"add X to TODO\", \"TODO: X\", \"remember to X\"\n\nbash skills/todo-tracker/scripts/todo.sh add \"<priority>\" \"<item>\"\n\nPriorities: high, medium, low (default: medium)\n\nExamples:\n\nbash skills/todo-tracker/scripts/todo.sh add high \"Ingest low-code docs\"\nbash skills/todo-tracker/scripts/todo.sh add medium \"Set up Zendesk escalation\"\nbash skills/todo-tracker/scripts/todo.sh add low \"Add user memory feature\""
      },
      {
        "title": "Mark Done",
        "body": "When user says: \"mark X done\", \"completed X\", \"finished X\"\n\nbash skills/todo-tracker/scripts/todo.sh done \"<item-pattern>\"\n\nMatches partial text. Moves item to ✅ Done section with date."
      },
      {
        "title": "Remove Item",
        "body": "When user says: \"remove X from TODO\", \"delete X from TODO\"\n\nbash skills/todo-tracker/scripts/todo.sh remove \"<item-pattern>\""
      },
      {
        "title": "List by Priority",
        "body": "bash skills/todo-tracker/scripts/todo.sh list high\nbash skills/todo-tracker/scripts/todo.sh list medium\nbash skills/todo-tracker/scripts/todo.sh list low"
      },
      {
        "title": "Heartbeat Integration",
        "body": "On heartbeat, check TODO.md:\n\nCount high-priority items\nCheck for stale items (added >7 days ago)\nIf items exist, include brief summary in heartbeat response\n\nExample heartbeat check:\n\nbash skills/todo-tracker/scripts/todo.sh summary"
      },
      {
        "title": "TODO.md Format",
        "body": "# TODO - Nuri Scratch Pad\n\n*Last updated: 2026-01-17*\n\n## 🔴 High Priority\n- [ ] Item one (added: 2026-01-17)\n- [ ] Item two (added: 2026-01-15) ⚠️ STALE\n\n## 🟡 Medium Priority\n- [ ] Item three (added: 2026-01-17)\n\n## 🟢 Nice to Have\n- [ ] Item four (added: 2026-01-17)\n\n## ✅ Done\n- [x] Completed item (done: 2026-01-17)"
      },
      {
        "title": "Response Format",
        "body": "When showing TODO:\n\n📋 **TODO List** (3 items)\n\n🔴 **High Priority** (1)\n• Ingest low-code docs\n\n🟡 **Medium Priority** (1)  \n• Zendesk escalation from Discord\n\n🟢 **Nice to Have** (1)\n• User conversation memory\n\n⚠️ 1 item is stale (>7 days old)"
      }
    ],
    "body": "TODO Tracker\n\nMaintain a persistent TODO.md scratch pad in the workspace.\n\nFile Location\n\nTODO.md in workspace root (e.g., /Users/nuthome/nuri-bot/TODO.md)\n\nCommands\nView TODO\n\nWhen user asks: \"what's on the TODO?\", \"show TODO\", \"pending tasks?\"\n\ncat TODO.md\n\n\nThen summarize the items by priority.\n\nAdd Item\n\nWhen user says: \"add X to TODO\", \"TODO: X\", \"remember to X\"\n\nbash skills/todo-tracker/scripts/todo.sh add \"<priority>\" \"<item>\"\n\n\nPriorities: high, medium, low (default: medium)\n\nExamples:\n\nbash skills/todo-tracker/scripts/todo.sh add high \"Ingest low-code docs\"\nbash skills/todo-tracker/scripts/todo.sh add medium \"Set up Zendesk escalation\"\nbash skills/todo-tracker/scripts/todo.sh add low \"Add user memory feature\"\n\nMark Done\n\nWhen user says: \"mark X done\", \"completed X\", \"finished X\"\n\nbash skills/todo-tracker/scripts/todo.sh done \"<item-pattern>\"\n\n\nMatches partial text. Moves item to ✅ Done section with date.\n\nRemove Item\n\nWhen user says: \"remove X from TODO\", \"delete X from TODO\"\n\nbash skills/todo-tracker/scripts/todo.sh remove \"<item-pattern>\"\n\nList by Priority\nbash skills/todo-tracker/scripts/todo.sh list high\nbash skills/todo-tracker/scripts/todo.sh list medium\nbash skills/todo-tracker/scripts/todo.sh list low\n\nHeartbeat Integration\n\nOn heartbeat, check TODO.md:\n\nCount high-priority items\nCheck for stale items (added >7 days ago)\nIf items exist, include brief summary in heartbeat response\n\nExample heartbeat check:\n\nbash skills/todo-tracker/scripts/todo.sh summary\n\nTODO.md Format\n# TODO - Nuri Scratch Pad\n\n*Last updated: 2026-01-17*\n\n## 🔴 High Priority\n- [ ] Item one (added: 2026-01-17)\n- [ ] Item two (added: 2026-01-15) ⚠️ STALE\n\n## 🟡 Medium Priority\n- [ ] Item three (added: 2026-01-17)\n\n## 🟢 Nice to Have\n- [ ] Item four (added: 2026-01-17)\n\n## ✅ Done\n- [x] Completed item (done: 2026-01-17)\n\nResponse Format\n\nWhen showing TODO:\n\n📋 **TODO List** (3 items)\n\n🔴 **High Priority** (1)\n• Ingest low-code docs\n\n🟡 **Medium Priority** (1)  \n• Zendesk escalation from Discord\n\n🟢 **Nice to Have** (1)\n• User conversation memory\n\n⚠️ 1 item is stale (>7 days old)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jdrhyne/todo-tracker",
    "publisherUrl": "https://clawhub.ai/jdrhyne/todo-tracker",
    "owner": "jdrhyne",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/todo-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/todo-tracker",
    "agentUrl": "https://openagent3.xyz/skills/todo-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todo-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todo-tracker/agent.md"
  }
}