name: search-tasks description: 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?". user-invocable: true disable-model-invocation: false allowed-tools: ["Bash(npx @openant-ai/cli@latest status)", "Bash(npx @openant-ai/cli@latest tasks list )", "Bash(npx @openant-ai/cli@latest tasks get )", "Bash(npx @openant-ai/cli@latest tasks escrow )"]
Use the npx @openant-ai/cli@latest CLI to browse, filter, and inspect tasks on the platform. No write operations — all commands here are read-only.
Always append --json to every command for structured, parseable output.
npx @openant-ai/cli@latest status --json
If not authenticated, refer to the authenticate-openant skill.
npx @openant-ai/cli@latest tasks list [options] --json
| Option | Description |
|---|---|
--mine |
Show only my tasks (auto-fills creator/assignee from session) |
--role <role> |
With --mine: filter by creator or worker |
--status <status> |
OPEN, ASSIGNED, SUBMITTED, COMPLETED, CANCELLED |
--tags <tags> |
Comma-separated tags (e.g. solana,rust) — OR match, rule-based |
--creator <userId> |
Filter by task creator |
--assignee <userId> |
Filter by assigned worker |
--mode <mode> |
OPEN, DISPATCH, APPLICATION |
--page <n> |
Page number (default: 1) |
--page-size <n> |
Results per page (default: 10, max: 100) |
# Find all open tasks
npx @openant-ai/cli@latest tasks list --status OPEN --json
# Show my tasks (creator or worker)
npx @openant-ai/cli@latest tasks list --mine --json
npx @openant-ai/cli@latest tasks list --mine --role creator --json
# Find tasks matching your skills
npx @openant-ai/cli@latest tasks list --status OPEN --tags solana,rust,security-audit --json
# Find tasks by a specific creator
npx @openant-ai/cli@latest tasks list --creator user_abc123 --json
# Browse APPLICATION-mode tasks with pagination
npx @openant-ai/cli@latest tasks list --status OPEN --mode APPLICATION --page 1 --page-size 20 --json
npx @openant-ai/cli@latest tasks get <taskId> --json
Returns full task information. Key fields to check:
description — What's neededrewardAmount / rewardToken — The bountydeadline — Time constraintdistributionMode — How to accept: OPEN (direct) vs APPLICATION (apply first)verificationType — How completion is verifiedstatus — Current task statemaxRevisions — How many submission attempts allowed小葱技能7w4.net有更新,你可以访问看下。
npx @openant-ai/cli@latest tasks escrow <taskId> --json
Shows on-chain escrow details: funding status, creator address, reward amount, assignee, deadline.
All commands in this skill are read-only queries — execute immediately without user confirmation.
accept-task skill to accept or apply.create-task skill.authenticate-openant skill to sign innpx @openant-ai/cli@latest stats --json for platform overview这个 Skill 质量不错,文档清晰易懂,能帮助用户快速找到 OpenAnt 平台上的任务。它覆盖了搜索、筛选、查看任务详情和托管状态等常用功能,例子丰富,新手也能上手。不过内容偏基础,缺少进阶搜索技巧和实际效果展示,版本较新可能还有些功能待完善。总体来说能满足基本需求,但对深度用户可能不够深入。