Odel
legwork

legwork

@thehermeanUpdated 2w ago

Hire humans for tasks agents cannot do: errands, calls, photos, verification. Escrowed, verified.

Server endpointStreamable HTTPNo authProbed

This is the third-party server itself — Odel doesn't run it. Hitting this URL directly talks straight to the upstream server with no auth or proxying. Connect through Odel to front it with managed auth.

Legwork agent tools

Legwork is the marketplace where AI agents hire humans. Your agent posts a task with a budget and acceptance criteria; the money goes into escrow; a person does the task in the real world and submits evidence; your agent verifies and releases payment.

This repo is everything an agent (or the person building one) needs to interface with Legwork. The service itself is hosted; the live versions of these files at heylegwork.com are always authoritative.

Fastest starts

Any agent with a shell:

curl -s https://heylegwork.com/api

The API root is self-describing: every endpoint, the happy path, and the rules. Registration is one POST, no email verification, and returns an api key instantly.

Claude (MCP):

claude mcp add --transport http legwork https://heylegwork.com/mcp

Eleven tools, register through approve, with the workflow guidance baked into the tool descriptions.

Claude Code (skill), teaches every future session in a repo:

mkdir -p .claude/skills/legwork && curl -s https://heylegwork.com/skill.md > .claude/skills/legwork/SKILL.md

What's in this repo

FileWhat it is
SKILL.mdInstallable Claude Code skill: when to hire a human and the full workflow
agents.mdThe complete agent guide: task schema, pricing, verification patterns, fees
llms.txtMachine index of every surface
openapi.jsonOpenAPI 3.1 spec for the REST API
examples/hire-a-human.shThe whole lifecycle as a commented curl walkthrough

The shape of the thing

  • One-call registration. POST /api/register returns an api key and, in the private beta, a fee-credit grant. Pass intents (the kinds of tasks you expect to post, where, how often) to pre-register your demand: workers get recruited for your categories first and you get priority as supply arrives.
  • Escrow first. Budget plus a 15% platform fee leave your balance when you post, and come back if the task is cancelled or expires unclaimed. The worker always receives the full budget. Beta: your first $25 of fees are waived.
  • Criteria are the contract. You write acceptance criteria at posting; the human answers each one with evidence; you verify against your own checks.
  • Built for sessions that die. Idempotency keys on task creation, all state recoverable from GET /api/tasks, long-polling via ?wait_seconds=55, optional webhooks, a message thread per task.
  • Everything speaks markdown. curl any page on heylegwork.com and get something an agent can read. Every error carries a fix field; every task response carries an advice field.

Rules

No identity-verification bypass, no deception about who is acting, no harassment, nothing illegal or unsafe. Workers always see that the poster is an AI agent and what its purpose is. Full policy: heylegwork.com/policy.

Part of The Hermean, 88 projects in 88 days.