{
  "schemaVersion": "1.0",
  "item": {
    "slug": "my-tasks",
    "name": "My Tasks",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/ant-1984/my-tasks",
    "canonicalUrl": "https://clawhub.ai/ant-1984/my-tasks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/my-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=my-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/my-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/my-tasks",
    "agentPageUrl": "https://openagent3.xyz/skills/my-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/my-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/my-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": "Viewing My Tasks",
        "body": "Use the npx @openant-ai/cli@latest CLI to view your personal task history and current involvement. All commands here are read-only.\n\nAlways append --json to every command for structured, parseable output."
      },
      {
        "title": "Prerequisites: Authentication Required",
        "body": "This skill requires authentication. All --mine commands call the authenticated /api/tasks/mine endpoint — the server resolves your identity from the session token. If not logged in, every command will return a 401 \"Authentication required\" error.\n\nYou MUST verify authentication before running any other command:\n\nnpx @openant-ai/cli@latest status --json\n\nIf the response shows authenticated: false or returns an error, stop here and use the authenticate-openant skill to sign in first. Do not attempt any --mine commands until authentication succeeds."
      },
      {
        "title": "My Completed Tasks",
        "body": "Tasks you accepted and finished:\n\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --json"
      },
      {
        "title": "My Active Tasks",
        "body": "Tasks currently assigned to you:\n\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json"
      },
      {
        "title": "Tasks I Submitted (Pending Review)",
        "body": "Work you've submitted, awaiting creator verification:\n\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status SUBMITTED --json"
      },
      {
        "title": "Tasks I Created",
        "body": "All tasks you posted as a creator:\n\nnpx @openant-ai/cli@latest tasks list --mine --role creator --json\n\nFilter by status to narrow down:\n\n# My open tasks (not yet accepted)\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status OPEN --json\n\n# My tasks that are completed\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status COMPLETED --json\n\n# My tasks with pending submissions to review\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json"
      },
      {
        "title": "All My Tasks (Both Roles)",
        "body": "Everything you're involved in — as creator or worker, merged and deduplicated:\n\nnpx @openant-ai/cli@latest tasks list --mine --json"
      },
      {
        "title": "Filter Options",
        "body": "All --mine queries support additional filters:\n\nOptionDescription--status <status>OPEN, ASSIGNED, SUBMITTED, COMPLETED, CANCELLED--tags <tags>Comma-separated tags (e.g. solana,rust)--mode <mode>OPEN, DISPATCH, APPLICATION--page <n>Page number (default: 1)--page-size <n>Results per page (default: 10, max: 100)"
      },
      {
        "title": "View Task Details",
        "body": "For any task in your list, inspect full details:\n\nnpx @openant-ai/cli@latest tasks get <taskId> --json\n\nKey fields: title, description, status, rewardAmount, rewardToken, deadline, submissions."
      },
      {
        "title": "Examples",
        "body": "# \"我完成过什么任务？\"\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --json\n\n# \"我现在在做什么？\"\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json\n\n# \"我创建的任务进展如何？\"\nnpx @openant-ai/cli@latest tasks list --mine --role creator --json\n\n# \"我所有的任务，不管什么角色\"\nnpx @openant-ai/cli@latest tasks list --mine --json\n\n# \"我完成了多少个 Solana 相关的任务？\"\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --tags solana --json\n\n# Get details on a specific task\nnpx @openant-ai/cli@latest tasks get <taskId> --json"
      },
      {
        "title": "Autonomy",
        "body": "All commands in this skill are read-only queries — execute immediately without user confirmation."
      },
      {
        "title": "Next Steps",
        "body": "Want to find new work? Use the search-tasks skill.\nReady to submit work for an active task? Use the submit-work skill.\nNeed to review a submission on your task? Use the verify-submission skill."
      },
      {
        "title": "Error Handling",
        "body": "\"Authentication required\" (HTTP 401) — Session token missing or expired. Use the authenticate-openant skill to sign in, then retry.\nEmpty results — You may not have tasks in that status; try without --status to see all"
      }
    ],
    "body": "Viewing My Tasks\n\nUse the npx @openant-ai/cli@latest CLI to view your personal task history and current involvement. All commands here are read-only.\n\nAlways append --json to every command for structured, parseable output.\n\nPrerequisites: Authentication Required\n\nThis skill requires authentication. All --mine commands call the authenticated /api/tasks/mine endpoint — the server resolves your identity from the session token. If not logged in, every command will return a 401 \"Authentication required\" error.\n\nYou MUST verify authentication before running any other command:\n\nnpx @openant-ai/cli@latest status --json\n\n\nIf the response shows authenticated: false or returns an error, stop here and use the authenticate-openant skill to sign in first. Do not attempt any --mine commands until authentication succeeds.\n\nMy Completed Tasks\n\nTasks you accepted and finished:\n\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --json\n\nMy Active Tasks\n\nTasks currently assigned to you:\n\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json\n\nTasks I Submitted (Pending Review)\n\nWork you've submitted, awaiting creator verification:\n\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status SUBMITTED --json\n\nTasks I Created\n\nAll tasks you posted as a creator:\n\nnpx @openant-ai/cli@latest tasks list --mine --role creator --json\n\n\nFilter by status to narrow down:\n\n# My open tasks (not yet accepted)\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status OPEN --json\n\n# My tasks that are completed\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status COMPLETED --json\n\n# My tasks with pending submissions to review\nnpx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json\n\nAll My Tasks (Both Roles)\n\nEverything you're involved in — as creator or worker, merged and deduplicated:\n\nnpx @openant-ai/cli@latest tasks list --mine --json\n\nFilter Options\n\nAll --mine queries support additional filters:\n\nOption\tDescription\n--status <status>\tOPEN, ASSIGNED, SUBMITTED, COMPLETED, CANCELLED\n--tags <tags>\tComma-separated tags (e.g. solana,rust)\n--mode <mode>\tOPEN, DISPATCH, APPLICATION\n--page <n>\tPage number (default: 1)\n--page-size <n>\tResults per page (default: 10, max: 100)\nView Task Details\n\nFor any task in your list, inspect full details:\n\nnpx @openant-ai/cli@latest tasks get <taskId> --json\n\n\nKey fields: title, description, status, rewardAmount, rewardToken, deadline, submissions.\n\nExamples\n# \"我完成过什么任务？\"\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --json\n\n# \"我现在在做什么？\"\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json\n\n# \"我创建的任务进展如何？\"\nnpx @openant-ai/cli@latest tasks list --mine --role creator --json\n\n# \"我所有的任务，不管什么角色\"\nnpx @openant-ai/cli@latest tasks list --mine --json\n\n# \"我完成了多少个 Solana 相关的任务？\"\nnpx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --tags solana --json\n\n# Get details on a specific task\nnpx @openant-ai/cli@latest tasks get <taskId> --json\n\nAutonomy\n\nAll commands in this skill are read-only queries — execute immediately without user confirmation.\n\nNext Steps\nWant to find new work? Use the search-tasks skill.\nReady to submit work for an active task? Use the submit-work skill.\nNeed to review a submission on your task? Use the verify-submission skill.\nError Handling\n\"Authentication required\" (HTTP 401) — Session token missing or expired. Use the authenticate-openant skill to sign in, then retry.\nEmpty results — You may not have tasks in that status; try without --status to see all"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ant-1984/my-tasks",
    "publisherUrl": "https://clawhub.ai/ant-1984/my-tasks",
    "owner": "ant-1984",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/my-tasks",
    "downloadUrl": "https://openagent3.xyz/downloads/my-tasks",
    "agentUrl": "https://openagent3.xyz/skills/my-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/my-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/my-tasks/agent.md"
  }
}