{
  "schemaVersion": "1.0",
  "item": {
    "slug": "task-system",
    "name": "Task System",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/npmisantosh/task-system",
    "canonicalUrl": "https://clawhub.ai/npmisantosh/task-system",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/task-system",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-system",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "install.sh",
      "SKILL.md",
      "scripts/create-task.sh",
      "scripts/stuck-check.sh",
      "scripts/heartbeat.sh",
      "scripts/task-system.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. 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": "task-system",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T01:19:17.398Z",
      "expiresAt": "2026-05-11T01:19:17.398Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-system",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-system",
        "contentDisposition": "attachment; filename=\"task-system-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "task-system"
      },
      "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/task-system"
    },
    "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/task-system",
    "agentPageUrl": "https://openagent3.xyz/skills/task-system/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-system/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-system/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 System",
        "body": "One skill for complete task lifecycle management."
      },
      {
        "title": "Installation",
        "body": "./install.sh\n\nOr manually add to PATH:\n\nexport PATH=\"$HOME/.openclaw/agents/main/workspace/skills/task-system/scripts:$PATH\""
      },
      {
        "title": "Quick Commands",
        "body": "# Create task\ntask-system.sh create \"Your request here\"\n\n# Update heartbeat\ntask-system.sh heartbeat $TASK_ID\n\n# Mark complete\ntask-system.sh complete $TASK_ID \"Optional notes\"\n\n# Check stuck\ntask-system.sh stuck\n\n# Daily status\ntask-system.sh status"
      },
      {
        "title": "Database Schema",
        "body": "CREATE TABLE IF NOT EXISTS tasks (\n  id INTEGER PRIMARY KEY AUTOINCREMENT,\n  request_text TEXT NOT NULL,\n  status TEXT DEFAULT 'pending',\n  priority INTEGER DEFAULT 5,\n  created_at DATETIME DEFAULT CURRENT_TIMESTAMP,\n  started_at DATETIME,\n  completed_at DATETIME,\n  last_updated DATETIME DEFAULT CURRENT_TIMESTAMP,\n  notes TEXT\n);\n\n-- Key indexes\nCREATE INDEX IF NOT EXISTS idx_tasks_status_updated ON tasks(status, last_updated);\nCREATE INDEX IF NOT EXISTS idx_tasks_priority ON tasks(priority ASC);"
      },
      {
        "title": "Scripts",
        "body": "See scripts/ directory:\n\ntask-system.sh — Main CLI (create, heartbeat, complete, stuck, status)\ncreate-task.sh — Create new task\nheartbeat.sh — Update last_updated\ncomplete-task.sh — Mark complete\nstuck-check.sh — Find stuck tasks"
      }
    ],
    "body": "Task System\n\nOne skill for complete task lifecycle management.\n\nInstallation\n./install.sh\n\n\nOr manually add to PATH:\n\nexport PATH=\"$HOME/.openclaw/agents/main/workspace/skills/task-system/scripts:$PATH\"\n\nQuick Commands\n# Create task\ntask-system.sh create \"Your request here\"\n\n# Update heartbeat\ntask-system.sh heartbeat $TASK_ID\n\n# Mark complete\ntask-system.sh complete $TASK_ID \"Optional notes\"\n\n# Check stuck\ntask-system.sh stuck\n\n# Daily status\ntask-system.sh status\n\nDatabase Schema\nCREATE TABLE IF NOT EXISTS tasks (\n  id INTEGER PRIMARY KEY AUTOINCREMENT,\n  request_text TEXT NOT NULL,\n  status TEXT DEFAULT 'pending',\n  priority INTEGER DEFAULT 5,\n  created_at DATETIME DEFAULT CURRENT_TIMESTAMP,\n  started_at DATETIME,\n  completed_at DATETIME,\n  last_updated DATETIME DEFAULT CURRENT_TIMESTAMP,\n  notes TEXT\n);\n\n-- Key indexes\nCREATE INDEX IF NOT EXISTS idx_tasks_status_updated ON tasks(status, last_updated);\nCREATE INDEX IF NOT EXISTS idx_tasks_priority ON tasks(priority ASC);\n\nScripts\n\nSee scripts/ directory:\n\ntask-system.sh — Main CLI (create, heartbeat, complete, stuck, status)\ncreate-task.sh — Create new task\nheartbeat.sh — Update last_updated\ncomplete-task.sh — Mark complete\nstuck-check.sh — Find stuck tasks"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/npmisantosh/task-system",
    "publisherUrl": "https://clawhub.ai/npmisantosh/task-system",
    "owner": "npmisantosh",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/task-system",
    "downloadUrl": "https://openagent3.xyz/downloads/task-system",
    "agentUrl": "https://openagent3.xyz/skills/task-system/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-system/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-system/agent.md"
  }
}