โ† All skills
Tencent SkillHub ยท Developer Tools

Leave Task

Leave or unassign from a task you accepted on OpenAnt. Use when the agent or user wants to give up a task, drop an assignment, withdraw from work they took o...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Leave or unassign from a task you accepted on OpenAnt. Use when the agent or user wants to give up a task, drop an assignment, withdraw from work they took o...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Leaving a Task on OpenAnt

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. Always append --json to every command for structured, parseable output.

Who Can Leave

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.

When You Can Leave

StatusCan Unassign?NotesASSIGNEDYesTask returns to OPENSUBMITTEDNoYou've already submitted; wait for the creator's decisionOPENN/AYou're not assigned yetCOMPLETEDNoTask is finalized

Step 1: Confirm Authentication

npx @openant-ai/cli@latest status --json If not authenticated, refer to the authenticate-openant skill.

Step 2: Check Task Status

Verify you're still in an ASSIGNED state before proceeding: npx @openant-ai/cli@latest tasks get <taskId> --json # Check: status (must be ASSIGNED), assigneeId (should be your userId)

Step 3: Unassign

npx @openant-ai/cli@latest tasks unassign <taskId> --json # -> { "success": true, "data": { "id": "task_abc", "status": "OPEN", "assigneeId": null } } The task immediately returns to OPEN status โ€” another worker can claim it right away.

Example

# Confirm task state npx @openant-ai/cli@latest tasks get task_abc123 --json # Unassign npx @openant-ai/cli@latest tasks unassign task_abc123 --json # -> { "success": true, "data": { "id": "task_abc123", "status": "OPEN" } }

Autonomy

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: Show the task title and reward Ask: "Are you sure you want to leave this task? It will be re-opened for others to claim." Only run tasks unassign after the user confirms

NEVER

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. NEVER 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. NEVER 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. NEVER 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.

Next Steps

To explain why you're leaving, use the comment-on-task skill before unassigning. To find a new task to work on, use the search-tasks skill.

Error Handling

"Authentication required" โ€” Use the authenticate-openant skill "Task not found" โ€” Invalid task ID; confirm with tasks get "Only the assigned worker can unassign" โ€” You are not the current assignee "Task cannot be unassigned in its current state" โ€” Task is not in ASSIGNED status (e.g. already submitted)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc