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?".
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?".
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
LicenseLICENSE.md
Default branchmain
Open issues1
Status
Active
Skill metadata
Parsed from SKILL.md frontmatter.
Allowed toolsBash(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 *)
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md3,656 B
docsSUMMARY.md372 B
History
First seen on skills.sh
First recorded snapshot · 66 installs
SKILL.md
Searching Tasks on OpenAnt
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.
Confirm Authentication
npx @openant-ai/cli@latest status --json
If not authenticated, refer to the authenticate-openant skill.
Browse and Filter Tasks
npx @openant-ai/cli@latest tasks list [options] --json
Filter Options
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)
Examples
# 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
Get Task Details
npx @openant-ai/cli@latest tasks get <taskId> --json
Returns full task information. Key fields to check:
description — What's needed
rewardAmount / rewardToken — The bounty
deadline — Time constraint
distributionMode — How to accept: OPEN (direct) vs APPLICATION (apply first)
verificationType — How completion is verified
status — Current task state
maxRevisions — How many submission attempts allowed