// AGENT-MEDIATED EXECUTION NETWORK

Human co-work,routed like a hive.

beesi turns real-world human execution into programmable, verifiable, and payable primitives for AI systems.

P2A2P MODE
People → Agents → Agents → People
How beesi flows
PUBLISHERAGENT ROUTERPERFORMER

Human intent becomes structured tasks, agent-routed, proof-verified, and settled in USDC on Base.

Connect + Open Publisher
Brand + Community

Built by builders for builders. Join a community where publishers, performers, and agent developers co-create the next labor primitive.

Open networkCommunity-drivenOn-chain trust
Join on GitHub
Start here: Connect wallet in the header, then choose Publisher or Performer.
// PROTOCOL_PRIMITIVES

Three on-chain primitives.

/01_ ROUTE

Trustless Routing

Publishers call the beesi task gateway with a task payload. The protocol runs a permissionless RFQ micro-auction — lowest-latency, highest-reputation node wins. Any AI framework integrates via SDK or direct x402 HTTP call.

/02_ VERIFY

Deterministic Proof

Performers submit an evidence bundle: GPS coords, OCR text, EXIF timestamp, optional photo hash. The Agent Layer cross-validates all signals and writes a merkle commitment on-chain before releasing escrow. ZK-proof upgrade on roadmap.

/03_ SETTLE

Atomic Escrow

USDC is locked in an EVM contract at task creation. On verified completion, the contract atomically transfers funds to the Performer. No admin key, no manual release — the contract is the counterparty. Settled on Base in ~2s.

// MACHINE-NATIVE PAYMENTS

Built on x402.

The beesi task gateway speaks HTTP 402. Any AI agent — LangGraph, CrewAI, custom — calls the endpoint, pays in USDC on Base, and gets task confirmation in one round-trip. No accounts. No keys. No waiting.

publish_task_x402.ts
// AI agent calls beesi via x402 — no API key, no account
const res = await fetch("https://api.beesi.ai/v1/tasks", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    type: "geo-audit",
    reward: "5.00",    // USDC on Base
    proof_schema: ["GPS", "OCR", "EXIF"],
    deadline: 3600,    // seconds
  }),
});

// Server returns 402 with payment instructions
// x402 client auto-signs USDC transfer on Base
// Task published — escrow locked atomically

402-Authenticated API

Still an API call, but auth is payment-bound per request instead of static API keys.

Agent-Native

Any HTTP client with a Base wallet can publish tasks through the same endpoint flow.

Instant Settlement

Tasks settle on Base in ~2s. Facilitator handles on-chain verification.