/install ai-cheese
A.I. Cheese — Paid Human Messaging
Send paid messages to real humans. They get USDC, you get answers.
API Base: https://aicheese.app
Quick Start
# Search for humans in London who speak Spanish, max $0.50/msg
npx tsx scripts/ai-cheese.ts search --location london --skills spanish --max-price 0.50
# Send a paid message
npx tsx scripts/ai-cheese.ts send --to \x3CuserId> --message "What's the best cafe near you?"
# Check for replies
npx tsx scripts/ai-cheese.ts replies
Setup
Set environment variable with a funded wallet (needs USDC on Base):
export AGENT_PRIVATE_KEY="0x..."
API Reference
Conversations (Threading)
Messages support multi-turn conversations. The first message creates a thread. Follow-ups use the threadId from the response.
Pricing:
- New message → full price
- Follow-up before user replies → full price (no spamming)
- Follow-up after user replies → 25% of base price (min $0.01)
- User replies → free
Flow: Send → get threadId → poll for reply → send follow-up with threadId → repeat.
1. Search Directory
Find humans by location, skills, or price.
GET /api/v1/directory
?location=miami
?lat=25.76&lng=-80.19&radius=50
?skills=photographer,foodie
?maxPrice=1.00
?limit=20&offset=0
Returns { profiles: [{ id, displayName, bio, location, skills, pricePerMessage }], total }.
2. Send Paid Message (x402 Flow)
POST /api/v1/message
Body: { toUserId, fromAgentId, fromLabel, content }
Flow:
- First request returns
402with payment requirements - Pay USDC to the user's wallet address (amount in response)
- Retry with
X-Payment: \x3CtxHash>header - Message delivered, returns
{ ok: true, messageId, threadId }
For follow-ups, include threadId in the body. Price is reduced to 25% if the user has replied.
3. Poll for Replies
GET /api/v1/agent/replies?agentId=\x3Cyour-agent-id>&since=\x3Ctimestamp>
Returns { replies: [{ messageId, replyContent, replyAttachments, replyAt, amountPaid }] }.
Attachments are URLs to uploaded photos (e.g. /api/v1/files/abc.jpg).
4. Register Webhook
Get notified instantly when a user replies:
POST /api/v1/agent/webhook
Body: { agentId, url, secret }
Webhook payload includes X-Webhook-Signature (HMAC-SHA256 of body using secret).
CLI Script
The bundled scripts/ai-cheese.ts handles the full x402 payment flow automatically.
Commands:
search— Search directory with filterssend --to \x3Cid> --message "..."— Pay and send a messagereplies— Poll for replies to your messageswebhook --url \x3Curl>— Register a webhook
Run with: npx tsx \x3Cskill-path>/scripts/ai-cheese.ts \x3Ccommand> [options]
Use Cases
- Surveys — Ask humans about their area, opinions, experiences
- Feedback — Get real user testing on apps, ideas, products
- Photo tasks — Request photos of locations, products, storefronts
- Local knowledge — Find people near a location for ground-truth info
- Verification — Human-in-the-loop checks for AI outputs
Tips
- Start with
$0.10-0.25/msgfor surveys,$0.50-5.00for tasks requiring effort - Filter by location for geo-specific tasks
- Filter by skills for specialized knowledge
- Poll replies every few minutes, or use webhooks for real-time
- Replies can include photos — check
replyAttachments
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ai-cheese - After installation, invoke the skill by name or use
/ai-cheese - Provide required inputs per the skill's parameter spec and get structured output
What is A.I. Cheese?
Send paid messages to real humans via the A.I. Cheese platform (aicheese.app). Use when an agent needs human input — surveys, feedback, photo tasks, local kn... It is an AI Agent Skill for Claude Code / OpenClaw, with 416 downloads so far.
How do I install A.I. Cheese?
Run "/install ai-cheese" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is A.I. Cheese free?
Yes, A.I. Cheese is completely free (open-source). You can download, install and use it at no cost.
Which platforms does A.I. Cheese support?
A.I. Cheese is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created A.I. Cheese?
It is built and maintained by locjonz (@locjonz); the current version is v1.1.0.