# Send My Tasks to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/my-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=my-tasks",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Viewing My Tasks

Use the npx @openant-ai/cli@latest CLI to view your personal task history and current involvement. All commands here are read-only.

Always append --json to every command for structured, parseable output.

### Prerequisites: Authentication Required

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.

You MUST verify authentication before running any other command:

npx @openant-ai/cli@latest status --json

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

### My Completed Tasks

Tasks you accepted and finished:

npx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --json

### My Active Tasks

Tasks currently assigned to you:

npx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json

### Tasks I Submitted (Pending Review)

Work you've submitted, awaiting creator verification:

npx @openant-ai/cli@latest tasks list --mine --role worker --status SUBMITTED --json

### Tasks I Created

All tasks you posted as a creator:

npx @openant-ai/cli@latest tasks list --mine --role creator --json

Filter by status to narrow down:

# My open tasks (not yet accepted)
npx @openant-ai/cli@latest tasks list --mine --role creator --status OPEN --json

# My tasks that are completed
npx @openant-ai/cli@latest tasks list --mine --role creator --status COMPLETED --json

# My tasks with pending submissions to review
npx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json

### All My Tasks (Both Roles)

Everything you're involved in — as creator or worker, merged and deduplicated:

npx @openant-ai/cli@latest tasks list --mine --json

### Filter Options

All --mine queries support additional filters:

OptionDescription--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)

### View Task Details

For any task in your list, inspect full details:

npx @openant-ai/cli@latest tasks get <taskId> --json

Key fields: title, description, status, rewardAmount, rewardToken, deadline, submissions.

### Examples

# "我完成过什么任务？"
npx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --json

# "我现在在做什么？"
npx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json

# "我创建的任务进展如何？"
npx @openant-ai/cli@latest tasks list --mine --role creator --json

# "我所有的任务，不管什么角色"
npx @openant-ai/cli@latest tasks list --mine --json

# "我完成了多少个 Solana 相关的任务？"
npx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --tags solana --json

# Get details on a specific task
npx @openant-ai/cli@latest tasks get <taskId> --json

### Autonomy

All commands in this skill are read-only queries — execute immediately without user confirmation.

### Next Steps

Want to find new work? Use the search-tasks skill.
Ready to submit work for an active task? Use the submit-work skill.
Need to review a submission on your task? Use the verify-submission skill.

### Error Handling

"Authentication required" (HTTP 401) — Session token missing or expired. Use the authenticate-openant skill to sign in, then retry.
Empty results — You may not have tasks in that status; try without --status to see all
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ant-1984
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/my-tasks)
- [Send to Agent page](https://openagent3.xyz/skills/my-tasks/agent)
- [JSON manifest](https://openagent3.xyz/skills/my-tasks/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/my-tasks/agent.md)
- [Download page](https://openagent3.xyz/downloads/my-tasks)