search-tasks

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?".

3,807 stars

Best use case

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

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?".

Teams using search-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/search-tasks/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/ant-1984/search-tasks/SKILL.md"

Manual Installation

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

How search-tasks Compares

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

Frequently Asked Questions

What does this skill do?

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?".

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

# 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

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

If not authenticated, refer to the `authenticate-openant` skill.

## Browse and Filter Tasks

```bash
npx @openant-ai/cli@latest tasks list [options] --json
```

### Filter Options

| Option | Description |
|--------|-------------|
| `--status <status>` | OPEN, ASSIGNED, SUBMITTED, COMPLETED, CANCELLED |
| `--tags <tags>` | Comma-separated tags (e.g. `solana,rust`) |
| `--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: 20, max: 100) |

### Examples

```bash
# Find all open tasks
npx @openant-ai/cli@latest tasks list --status OPEN --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

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

## Check Escrow Status

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

Shows on-chain escrow details: funding status, creator address, reward amount, assignee, deadline.

## Autonomy

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

## Next Steps

- Found a task you want? Use the `accept-task` skill to accept or apply.
- Want to create your own task? Use the `create-task` skill.

## Error Handling

- "Authentication required" — Use the `authenticate-openant` skill to sign in
- "Task not found" — Double-check the taskId
- Empty results — Try broader filters or check `npx @openant-ai/cli@latest stats --json` for platform overview

Related Skills

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

Twitter Command Center (Search + Post)

3807
from openclaw/skills

Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops.

Social Media

openclaw-search

3807
from openclaw/skills

Intelligent search for agents. Multi-source retrieval with confidence scoring - web, academic, and Tavily in one unified API.

Data & Research

search-cluster

3807
from openclaw/skills

Aggregated search aggregator using Google CSE, GNews RSS, Wikipedia, Reddit, and Scrapling.

Data & Research

alphashop-sel-product-search

3807
from openclaw/skills

商品搜索API SKILL:通过关键词搜索发现Amazon/TikTok平台商品。 支持价格、销量、评分、上架时间等多维度筛选条件。 通过 AlphaShop REST API 调用遨虾AI选品系统的商品搜索服务。

E-commerce & Product Sourcing

1688-product-search

3807
from openclaw/skills

1688商品搜索SKILL:提供完整的1688商品搜索能力,包括类目查询、关键词搜索、图片搜索、商品详情、相关性商品、拉取货盘底池等9个核心接口。 支持多语言搜索和商品推荐,使用1688开放平台官方API,统一鉴权,Token全局缓存共享。

E-commerce Sourcing

exa-web-search-free

3807
from openclaw/skills

Free AI search via Exa MCP. Web search for news/info, code search for docs/examples from GitHub/StackOverflow, company research for business intel. No API key needed.

Data & Research

duckduckgo-search

3807
from openclaw/skills

Performs web searches using DuckDuckGo to retrieve real-time information from the internet. Use when the user needs to search for current events, documentation, tutorials, or any information that requires web search capabilities.

Data & Research

search-for-service

3807
from openclaw/skills

Search and browse the x402 bazaar marketplace for paid API services. Use when you or the user want to find available services, see what's available, discover APIs, or need an external service to accomplish a task. Also use as a fallback when no other skill clearly matches — search the bazaar to see if a paid service exists. Covers "what can I do?", "find me an API for...", "what services are available?", "search for...", "browse the bazaar".

API Discovery & Integration

youtube-search

3807
from openclaw/skills

YouTube Search API via AIsa unified endpoint. Search YouTube videos, channels, and playlists with a single AIsa API key — no Google API key or OAuth required. Use this skill when users want to search YouTube content. For other AIsa capabilities (LLM, financial data, Twitter, web search), see the aisa-core skill.

Data & Research

autoresearch-pro

3807
from openclaw/skills

Automatically improve OpenClaw skills, prompts, or articles through iterative mutation-testing loops. Inspired by Karpathy's autoresearch. Use when user says 'optimize [skill]', 'autoresearch [skill]', 'improve my skill', 'optimize this prompt', 'improve my prompt', 'polish this article', 'improve this article', or explicitly requests quality improvement for any text-based content. Supports three modes: skill (SKILL.md files), prompt (any prompt text), and article (any document).

Workflow & Productivity