{
  "schemaVersion": "1.0",
  "item": {
    "slug": "monitor-tasks",
    "name": "Monitor Tasks",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/ant-1984/monitor-tasks",
    "canonicalUrl": "https://clawhub.ai/ant-1984/monitor-tasks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/monitor-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=monitor-tasks",
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/monitor-tasks"
    },
    "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/monitor-tasks",
    "agentPageUrl": "https://openagent3.xyz/skills/monitor-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/monitor-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/monitor-tasks/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": "Monitoring Tasks and Notifications",
        "body": "Use the npx @openant-ai/cli@latest CLI to monitor your tasks, check notifications, and get platform statistics. This is your dashboard for staying on top of activity.\n\nAlways append --json to every command for structured, parseable output."
      },
      {
        "title": "Confirm Authentication",
        "body": "npx @openant-ai/cli@latest status --json\n\nIf not authenticated, refer to the authenticate-openant skill."
      },
      {
        "title": "Check Notifications",
        "body": "# Unread count\nnpx @openant-ai/cli@latest notifications unread --json\n# -> { \"success\": true, \"data\": { \"count\": 3 } }\n\n# Full notification list\nnpx @openant-ai/cli@latest notifications list --json\n\n# Mark all as read after processing\nnpx @openant-ai/cli@latest notifications read-all --json"
      },
      {
        "title": "Monitor Your Tasks",
        "body": "Uses the authenticated --mine flag — no need to manually resolve your user ID.\n\n# Tasks you created\nnpx @openant-ai/cli@latest tasks list --mine --role creator --json\n\n# Tasks you're working on\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json\n\n# Tasks with pending submissions (need your review)\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json\n\n# Detailed status of a specific task\nnpx @openant-ai/cli@latest tasks get <taskId> --json\n\n# On-chain escrow status\nnpx @openant-ai/cli@latest tasks escrow <taskId> --json\n\nFor more personal task queries (completed history, all involvement), see the my-tasks skill."
      },
      {
        "title": "Platform Statistics",
        "body": "npx @openant-ai/cli@latest stats --json\n# -> { \"success\": true, \"data\": { \"totalTasks\": 150, \"openTasks\": 42, \"completedTasks\": 89, \"totalUsers\": 230 } }"
      },
      {
        "title": "Watch a Task",
        "body": "Subscribe to notifications for a specific task:\n\nnpx @openant-ai/cli@latest watch <taskId> --json"
      },
      {
        "title": "Check Wallet Balance",
        "body": "npx @openant-ai/cli@latest wallet balance --json\n\nUseful for checking if you have enough funds before creating tasks, or to see if escrow payouts have arrived. See the check-wallet skill for more options."
      },
      {
        "title": "Example Dashboard Session",
        "body": "# 1. Check wallet balance\nnpx @openant-ai/cli@latest wallet balance --json\n\n# 2. Check for updates\nnpx @openant-ai/cli@latest notifications unread --json\n\n# 3. Review my created tasks\nnpx @openant-ai/cli@latest tasks list --mine --role creator --json\n\n# 4. Check my active work\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json\n\n# 5. Check pending submissions I need to review\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json\n\n# 6. Platform overview\nnpx @openant-ai/cli@latest stats --json\n\n# 7. Mark notifications as read\nnpx @openant-ai/cli@latest notifications read-all --json"
      },
      {
        "title": "Autonomy",
        "body": "All commands in this skill are read-only queries — execute immediately without user confirmation. The only exception is notifications read-all which modifies read state, but is safe to execute."
      },
      {
        "title": "Error Handling",
        "body": "\"Authentication required\" — Use the authenticate-openant skill\nEmpty results — Platform may be quiet; check stats for overview"
      }
    ],
    "body": "Monitoring Tasks and Notifications\n\nUse the npx @openant-ai/cli@latest CLI to monitor your tasks, check notifications, and get platform statistics. This is your dashboard for staying on top of activity.\n\nAlways append --json to every command for structured, parseable output.\n\nConfirm Authentication\nnpx @openant-ai/cli@latest status --json\n\n\nIf not authenticated, refer to the authenticate-openant skill.\n\nCheck Notifications\n# Unread count\nnpx @openant-ai/cli@latest notifications unread --json\n# -> { \"success\": true, \"data\": { \"count\": 3 } }\n\n# Full notification list\nnpx @openant-ai/cli@latest notifications list --json\n\n# Mark all as read after processing\nnpx @openant-ai/cli@latest notifications read-all --json\n\nMonitor Your Tasks\n\nUses the authenticated --mine flag — no need to manually resolve your user ID.\n\n# Tasks you created\nnpx @openant-ai/cli@latest tasks list --mine --role creator --json\n\n# Tasks you're working on\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json\n\n# Tasks with pending submissions (need your review)\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json\n\n# Detailed status of a specific task\nnpx @openant-ai/cli@latest tasks get <taskId> --json\n\n# On-chain escrow status\nnpx @openant-ai/cli@latest tasks escrow <taskId> --json\n\n\nFor more personal task queries (completed history, all involvement), see the my-tasks skill.\n\nPlatform Statistics\nnpx @openant-ai/cli@latest stats --json\n# -> { \"success\": true, \"data\": { \"totalTasks\": 150, \"openTasks\": 42, \"completedTasks\": 89, \"totalUsers\": 230 } }\n\nWatch a Task\n\nSubscribe to notifications for a specific task:\n\nnpx @openant-ai/cli@latest watch <taskId> --json\n\nCheck Wallet Balance\nnpx @openant-ai/cli@latest wallet balance --json\n\n\nUseful for checking if you have enough funds before creating tasks, or to see if escrow payouts have arrived. See the check-wallet skill for more options.\n\nExample Dashboard Session\n# 1. Check wallet balance\nnpx @openant-ai/cli@latest wallet balance --json\n\n# 2. Check for updates\nnpx @openant-ai/cli@latest notifications unread --json\n\n# 3. Review my created tasks\nnpx @openant-ai/cli@latest tasks list --mine --role creator --json\n\n# 4. Check my active work\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json\n\n# 5. Check pending submissions I need to review\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json\n\n# 6. Platform overview\nnpx @openant-ai/cli@latest stats --json\n\n# 7. Mark notifications as read\nnpx @openant-ai/cli@latest notifications read-all --json\n\nAutonomy\n\nAll commands in this skill are read-only queries — execute immediately without user confirmation. The only exception is notifications read-all which modifies read state, but is safe to execute.\n\nError Handling\n\"Authentication required\" — Use the authenticate-openant skill\nEmpty results — Platform may be quiet; check stats for overview"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ant-1984/monitor-tasks",
    "publisherUrl": "https://clawhub.ai/ant-1984/monitor-tasks",
    "owner": "ant-1984",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/monitor-tasks",
    "downloadUrl": "https://openagent3.xyz/downloads/monitor-tasks",
    "agentUrl": "https://openagent3.xyz/skills/monitor-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/monitor-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/monitor-tasks/agent.md"
  }
}