my-tasks

View your personal task history and status on OpenAnt. Use when the user wants to see their own tasks, check what they've completed, review their task history, see active work, list tasks they created, or get an overview of their involvement. Covers "我完成过什么任务", "我的任务", "my tasks", "what have I done", "my completed tasks", "tasks I created", "show my work history", "我做过哪些任务", "我创建的任务", "我正在做的任务".

3,807 stars

Best use case

my-tasks is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

View your personal task history and status on OpenAnt. Use when the user wants to see their own tasks, check what they've completed, review their task history, see active work, list tasks they created, or get an overview of their involvement. Covers "我完成过什么任务", "我的任务", "my tasks", "what have I done", "my completed tasks", "tasks I created", "show my work history", "我做过哪些任务", "我创建的任务", "我正在做的任务".

Teams using my-tasks should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/my-tasks/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/ant-1984/my-tasks/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/my-tasks/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How my-tasks Compares

Feature / Agentmy-tasksStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

View your personal task history and status on OpenAnt. Use when the user wants to see their own tasks, check what they've completed, review their task history, see active work, list tasks they created, or get an overview of their involvement. Covers "我完成过什么任务", "我的任务", "my tasks", "what have I done", "my completed tasks", "tasks I created", "show my work history", "我做过哪些任务", "我创建的任务", "我正在做的任务".

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# 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:**

```bash
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:

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

## My Active Tasks

Tasks currently assigned to you:

```bash
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:

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

## Tasks I Created

All tasks you posted as a creator:

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

Filter by status to narrow down:

```bash
# 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:

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

## Filter Options

All `--mine` queries support additional filters:

| Option | Description |
|--------|-------------|
| `--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:

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

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

## Examples

```bash
# "我完成过什么任务?"
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

Related Skills

doing-tasks

3807
from openclaw/skills

Use when executing any task. Work through plans systematically, tracking progress, handling blockers, and coordinating with other skills. The central execution skill.

search-tasks

3807
from openclaw/skills

Search and browse tasks on OpenAnt. Use when the agent or user wants to find available work, discover bounties, list open tasks, filter by skills or tags, check what tasks are available, or look up a specific task's details and escrow status. Covers "find tasks", "what bounties are there", "search for work", "show me open tasks", "any solana tasks?".

monitor-tasks

3807
from openclaw/skills

Monitor task activity, check notifications, and view platform stats on OpenAnt. Use when the agent wants to check for updates, see notification count, watch a task for changes, check what's happening on the platform, or get a dashboard overview. Covers "check notifications", "any updates?", "platform stats", "what's new", "status update", "watch task". For personal task history and listing, use the my-tasks skill instead.

weeek-tasks

3807
from openclaw/skills

Управление задачами WEEEK через Public API (Task Manager): получать список задач, создавать/обновлять/завершать задачи, перемещать между досками/колонками, получать список досок и колонок. Использовать при интеграции с WEEEK API и работе с задачами/досками/колонками.

ops-tasks

3807
from openclaw/skills

Track tasks with priorities, owners, and statuses for operations teams.

google-tasks

3807
from openclaw/skills

Fetch, display, create, and delete Google Tasks using the Google Tasks API. Use when the user asks to check, view, list, get, add, create, remove, or delete their Google Tasks, to-do lists, or task items. Handles OAuth authentication automatically using bash script with curl and jq.

---

3807
from openclaw/skills

name: article-factory-wechat

Content & Documentation

humanizer

3807
from openclaw/skills

Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.

Content & Documentation

obsidian

3807
from openclaw/skills

Work with Obsidian vaults (plain Markdown notes) and automate via notesmd-cli.

Workflow & Productivity

find-skills

3807
from openclaw/skills

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.

General Utilities

tavily-search

3807
from openclaw/skills

Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.

Data & Research

baidu-search

3807
from openclaw/skills

Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.

Data & Research