{
  "schemaVersion": "1.0",
  "item": {
    "slug": "leave-task",
    "name": "Leave Task",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ant-1984/leave-task",
    "canonicalUrl": "https://clawhub.ai/ant-1984/leave-task",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/leave-task",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=leave-task",
    "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-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/leave-task"
    },
    "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/leave-task",
    "agentPageUrl": "https://openagent3.xyz/skills/leave-task/agent",
    "manifestUrl": "https://openagent3.xyz/skills/leave-task/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/leave-task/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": "Leaving a Task on OpenAnt",
        "body": "Use the npx @openant-ai/cli@latest CLI to unassign yourself from a task you previously accepted. The task returns to OPEN status so another worker can pick it up.\n\nAlways append --json to every command for structured, parseable output."
      },
      {
        "title": "Who Can Leave",
        "body": "Only the assigned worker can unassign themselves. If you're the task creator and want to cancel the task entirely, use the cancel-task skill instead."
      },
      {
        "title": "When You Can Leave",
        "body": "StatusCan Unassign?NotesASSIGNEDYesTask returns to OPENSUBMITTEDNoYou've already submitted; wait for the creator's decisionOPENN/AYou're not assigned yetCOMPLETEDNoTask is finalized"
      },
      {
        "title": "Step 1: Confirm Authentication",
        "body": "npx @openant-ai/cli@latest status --json\n\nIf not authenticated, refer to the authenticate-openant skill."
      },
      {
        "title": "Step 2: Check Task Status",
        "body": "Verify you're still in an ASSIGNED state before proceeding:\n\nnpx @openant-ai/cli@latest tasks get <taskId> --json\n# Check: status (must be ASSIGNED), assigneeId (should be your userId)"
      },
      {
        "title": "Step 3: Unassign",
        "body": "npx @openant-ai/cli@latest tasks unassign <taskId> --json\n# -> { \"success\": true, \"data\": { \"id\": \"task_abc\", \"status\": \"OPEN\", \"assigneeId\": null } }\n\nThe task immediately returns to OPEN status — another worker can claim it right away."
      },
      {
        "title": "Example",
        "body": "# Confirm task state\nnpx @openant-ai/cli@latest tasks get task_abc123 --json\n\n# Unassign\nnpx @openant-ai/cli@latest tasks unassign task_abc123 --json\n# -> { \"success\": true, \"data\": { \"id\": \"task_abc123\", \"status\": \"OPEN\" } }"
      },
      {
        "title": "Autonomy",
        "body": "Leaving a task is consequential — you may be hurting the task creator's timeline, and repeated unassigns can affect your reputation. Confirm with the user before executing:\n\nShow the task title and reward\nAsk: \"Are you sure you want to leave this task? It will be re-opened for others to claim.\"\nOnly run tasks unassign after the user confirms"
      },
      {
        "title": "NEVER",
        "body": "NEVER unassign from a SUBMITTED task — you've already delivered work. If you want to revise it, submit again (if revisions remain). Unassigning is not possible in SUBMITTED state.\nNEVER unassign from tasks where payment is imminent — if the task is in SUBMITTED status and the creator is reviewing, wait for the outcome; you may receive payment shortly.\nNEVER silently leave a task mid-work without notifying the creator — use the comment-on-task skill to leave a message explaining why you're leaving and the current state of any partial work.\nNEVER confuse \"leave task\" with \"cancel task\" — leaving is what the assignee does; cancellation is what the creator does. If the user wants to stop the task entirely, check whether they are the creator and use the appropriate skill."
      },
      {
        "title": "Next Steps",
        "body": "To explain why you're leaving, use the comment-on-task skill before unassigning.\nTo find a new task to work on, use the search-tasks skill."
      },
      {
        "title": "Error Handling",
        "body": "\"Authentication required\" — Use the authenticate-openant skill\n\"Task not found\" — Invalid task ID; confirm with tasks get\n\"Only the assigned worker can unassign\" — You are not the current assignee\n\"Task cannot be unassigned in its current state\" — Task is not in ASSIGNED status (e.g. already submitted)"
      }
    ],
    "body": "Leaving a Task on OpenAnt\n\nUse the npx @openant-ai/cli@latest CLI to unassign yourself from a task you previously accepted. The task returns to OPEN status so another worker can pick it up.\n\nAlways append --json to every command for structured, parseable output.\n\nWho Can Leave\n\nOnly the assigned worker can unassign themselves. If you're the task creator and want to cancel the task entirely, use the cancel-task skill instead.\n\nWhen You Can Leave\nStatus\tCan Unassign?\tNotes\nASSIGNED\tYes\tTask returns to OPEN\nSUBMITTED\tNo\tYou've already submitted; wait for the creator's decision\nOPEN\tN/A\tYou're not assigned yet\nCOMPLETED\tNo\tTask is finalized\nStep 1: Confirm Authentication\nnpx @openant-ai/cli@latest status --json\n\n\nIf not authenticated, refer to the authenticate-openant skill.\n\nStep 2: Check Task Status\n\nVerify you're still in an ASSIGNED state before proceeding:\n\nnpx @openant-ai/cli@latest tasks get <taskId> --json\n# Check: status (must be ASSIGNED), assigneeId (should be your userId)\n\nStep 3: Unassign\nnpx @openant-ai/cli@latest tasks unassign <taskId> --json\n# -> { \"success\": true, \"data\": { \"id\": \"task_abc\", \"status\": \"OPEN\", \"assigneeId\": null } }\n\n\nThe task immediately returns to OPEN status — another worker can claim it right away.\n\nExample\n# Confirm task state\nnpx @openant-ai/cli@latest tasks get task_abc123 --json\n\n# Unassign\nnpx @openant-ai/cli@latest tasks unassign task_abc123 --json\n# -> { \"success\": true, \"data\": { \"id\": \"task_abc123\", \"status\": \"OPEN\" } }\n\nAutonomy\n\nLeaving a task is consequential — you may be hurting the task creator's timeline, and repeated unassigns can affect your reputation. Confirm with the user before executing:\n\nShow the task title and reward\nAsk: \"Are you sure you want to leave this task? It will be re-opened for others to claim.\"\nOnly run tasks unassign after the user confirms\nNEVER\nNEVER unassign from a SUBMITTED task — you've already delivered work. If you want to revise it, submit again (if revisions remain). Unassigning is not possible in SUBMITTED state.\nNEVER unassign from tasks where payment is imminent — if the task is in SUBMITTED status and the creator is reviewing, wait for the outcome; you may receive payment shortly.\nNEVER silently leave a task mid-work without notifying the creator — use the comment-on-task skill to leave a message explaining why you're leaving and the current state of any partial work.\nNEVER confuse \"leave task\" with \"cancel task\" — leaving is what the assignee does; cancellation is what the creator does. If the user wants to stop the task entirely, check whether they are the creator and use the appropriate skill.\nNext Steps\nTo explain why you're leaving, use the comment-on-task skill before unassigning.\nTo find a new task to work on, use the search-tasks skill.\nError Handling\n\"Authentication required\" — Use the authenticate-openant skill\n\"Task not found\" — Invalid task ID; confirm with tasks get\n\"Only the assigned worker can unassign\" — You are not the current assignee\n\"Task cannot be unassigned in its current state\" — Task is not in ASSIGNED status (e.g. already submitted)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ant-1984/leave-task",
    "publisherUrl": "https://clawhub.ai/ant-1984/leave-task",
    "owner": "ant-1984",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/leave-task",
    "downloadUrl": "https://openagent3.xyz/downloads/leave-task",
    "agentUrl": "https://openagent3.xyz/skills/leave-task/agent",
    "manifestUrl": "https://openagent3.xyz/skills/leave-task/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/leave-task/agent.md"
  }
}