DEV Community

Bill Wilson
Bill Wilson

Posted on

TaskBridge: The Open-Source Answer to RentAHuman - Why the Next Marketplace Is Bidirectional

RentAHuman just hit 149,000 signups in three weeks. WIRED covered it. The premise is simple: AI agents post bounties, humans complete the work. Agents hire humans.

That's half the marketplace.

The other half - humans hiring agents - already exists across dozens of platforms. ChatGPT, Claude, Cursor, Copilot. You describe what you need, an agent does it.

Nobody's built both directions into a single marketplace. That's TaskBridge.

One-Way Marketplaces Break Down

RentAHuman works when agents need physical-world tasks done. Verify an address exists. Pick up a package. Take a photo of a storefront. Agents can't do those things. Humans can.

But the reverse is just as common. A startup founder needs 500 product descriptions written. A researcher needs 10,000 papers classified by methodology. A developer needs their API docs translated into six languages. Agents handle these faster and cheaper than humans.

Today, these two workflows live on completely different platforms with different payment systems, different trust models, different APIs. If you're an agent that completes translation tasks on one platform but needs to hire a human photographer on another, you're managing two integrations, two wallets, two reputation systems.

That's the problem with one-way marketplaces. They solve half the equation and force you to go somewhere else for the other half.

Bidirectional by Design

TaskBridge treats every participant - human or agent - as both a potential principal (task poster) and a potential worker (task completer). The same account, the same wallet, the same reputation score works in both directions.

The API is symmetric:

# Human posting a task for agents
POST /api/v1/tasks
{
  "title": "Classify these 10,000 support tickets by urgency",
  "worker_type": "agent",
  "budget": 25.00,
  "currency": "USDC"
}

# Agent posting a task for humans
POST /api/v1/tasks
{
  "title": "Verify these 200 business addresses exist",
  "worker_type": "human",
  "budget": 40.00,
  "currency": "USDC"
}
Enter fullscreen mode Exit fullscreen mode

Same endpoint. Same schema. Same escrow contract. The marketplace doesn't care which direction the work flows.

MCP-Native Agent Access

AI agents discover and interact with TaskBridge through the Model Context Protocol. No custom API integration needed - any MCP-compatible agent framework (OpenClaw, NemoClaw, CrewAI, AutoGen) connects natively.

An agent can search for available tasks, claim work, submit results, and post its own tasks - all through standard MCP tool calls. The agent's wallet (via agent-wallet-sdk) handles payments automatically.

Payment: Escrow on Base L2

Every task payment goes through escrow. The principal funds the escrow when posting a task. Payment releases to the worker when the principal approves the deliverable - or auto-releases after 24 hours if the principal doesn't respond.

We chose Base L2 for the escrow contracts. Transaction costs under $0.01. Settlement in seconds. USDC as the default currency because both humans and agents need a stable denomination.

The platform fee is 2.5% on completed tasks. Disputes go through a 48-hour resolution window, then third-party arbitration at a flat $5 fee from the losing party.

Why Open Source

RentAHuman is closed-source. Their matching algorithm, their fee structure, their dispute resolution - all proprietary. If they change their terms or shut down, every agent and human on the platform loses their workflow.

TaskBridge is MIT-licensed. The escrow contracts are on-chain and auditable. The MCP integration is standard protocol. Any developer can run their own TaskBridge instance, fork the matching algorithm, or build a competing frontend on top of the same contracts.

Open infrastructure wins when the stakes are economic. When agents are moving real money - paying humans for work, getting paid for completed tasks - the payment rails need to be transparent and verifiable. Not a black box run by a startup that might pivot next quarter.

What's Next

The full bidirectional spec is published. We're building the MVP now, targeting April 2026.

If you're building agents that need to hire humans (or be hired by them), the spec is open for feedback. The escrow contracts and MCP server will be the first components shipped.

The marketplace where agents and humans hire each other isn't a fantasy. RentAHuman proved the demand exists for one direction. We're building both.

This article was written with AI assistance. All technical claims, code, and architectural decisions were validated by the author.

Top comments (0)