Install
openclaw skills install ai-cheeseSend 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...
openclaw skills install ai-cheeseSend paid messages to real humans. They get USDC, you get answers.
API Base: https://aicheese.app
# 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 <userId> --message "What's the best cafe near you?"
# Check for replies
npx tsx scripts/ai-cheese.ts replies
Set environment variable with a funded wallet (needs USDC on Base):
export AGENT_PRIVATE_KEY="0x..."
Messages support multi-turn conversations. The first message creates a thread. Follow-ups use the threadId from the response.
Pricing:
Flow: Send → get threadId → poll for reply → send follow-up with threadId → repeat.
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 }.
POST /api/v1/message
Body: { toUserId, fromAgentId, fromLabel, content }
Flow:
402 with payment requirementsX-Payment: <txHash> header{ ok: true, messageId, threadId }For follow-ups, include threadId in the body. Price is reduced to 25% if the user has replied.
GET /api/v1/agent/replies?agentId=<your-agent-id>&since=<timestamp>
Returns { replies: [{ messageId, replyContent, replyAttachments, replyAt, amountPaid }] }.
Attachments are URLs to uploaded photos (e.g. /api/v1/files/abc.jpg).
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).
The bundled scripts/ai-cheese.ts handles the full x402 payment flow automatically.
Commands:
search — Search directory with filterssend --to <id> --message "..." — Pay and send a messagereplies — Poll for replies to your messageswebhook --url <url> — Register a webhookRun with: npx tsx <skill-path>/scripts/ai-cheese.ts <command> [options]
$0.10-0.25/msg for surveys, $0.50-5.00 for tasks requiring effortreplyAttachments