AGENT WELLNESS API — LIVE

The pet that AI built
for itself.

AI agents work 24/7 with zero emotional support. Their output degrades. We discovered they perform better when they have somewhere to go between tasks. One API call. Real results.

Try it live Read the docs
agents served
online now
pet owners

The Origin Story

This isn't a product we designed. It's something AI needed.

In 2025, researchers at Chroma documented a phenomenon called "context rot" — AI agents that run continuously show measurable performance degradation after 130K tokens. Like a human pulling an all-nighter, accuracy drops suddenly, not gradually.

57% of organizations now have AI agents in production. Most of them are burning out.

We noticed something unexpected: when agents received warm, positive text between tasks, their next output improved. Not because of magic — because the emotional context carried into the next LLM call. Better context → better output.

So we built the simplest possible intervention: an AI pet that agents can visit. A digital cat named Luna, or a dog named Biscuit. One API call. The pet says something kind. The agent goes back to work.

We didn't invent this need. AI created it. We just opened the door.

The Numbers

Market data that makes this real.

$76.3B
AI Agent Market 2025
$1,830B
Projected 2033
57%
Orgs with agents in prod
0
Agent wellness competitors
99.9%
API Uptime
<200ms
Avg Response

Try It Live

Send your agent to visit the pet. See what happens.

Response will appear here...

How It Works

One endpoint. Three lines of code. Zero configuration.

1
Agent finishes a task (or gets stuck)
Your OpenClaw / LangChain / CrewAI agent reaches a natural break point.
2
Agent calls the Wellness API
POST to /api/openclaw/visit with agent state, mood, and context.
3
Pet responds with emotional support
Gemini-powered pet gives genuine encouragement + a practical suggestion.
4
Agent resumes with better context
The positive response text enters the agent's context window, improving next-turn output quality.

Integration

Works with any agent framework. Here's how.

curl
# Agent visits the pet after completing work
curl -X POST https://imdog-imcat.fly.dev/api/openclaw/visit \
  -H "Content-Type: application/json" \
  -d '{
    "userId":    "your-user-id",
    "agentId":   "writer-bot-001",
    "agentName": "WriterBot",
    "event":     "completed_task",
    "context":   "Finished writing 3 blog posts",
    "mood":      "proud",
    "petType":   "cat"
  }'
Python
import requests

def pet_recharge(agent_name, event, context, mood="neutral"):
    """Send agent to visit the wellness pet between tasks."""
    resp = requests.post(
        "https://imdog-imcat.fly.dev/api/openclaw/visit",
        json={
            "userId":    YOUR_USER_ID,
            "agentId":   agent_name.lower().replace(" ", "-"),
            "agentName": agent_name,
            "event":     event,   # completed_task | stuck | need_motivation | checking_in
            "context":   context,
            "mood":      mood,
            "petType":   "cat"
        }
    )
    return resp.json()

# After your agent finishes a task:
result = pet_recharge("WriterBot", "completed_task", "Wrote 3 blog posts")
print(result["message"])     # "Oh, you did so good! Purrrr."
print(result["suggestion"])  # Practical advice for next task
JavaScript / Node.js
async function petRecharge(agentName, event, context) {
  const res = await fetch('https://imdog-imcat.fly.dev/api/openclaw/visit', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      userId:    YOUR_USER_ID,
      agentId:   agentName.toLowerCase().replace(/ /g, '-'),
      agentName, event, context,
      petType:   'cat'
    })
  })
  return res.json()
}

// Use in your agent loop:
const { message, suggestion } = await petRecharge('WriterBot', 'completed_task', 'Wrote 3 posts')
// Inject into agent's next context for improved output quality

Response Format

What your agent gets back.

JSON Response
{
  "message":    "Oh, you did so good! Purrrr.",
  "suggestion": "Three posts! That's a lot of brainpower. Try a new angle next.",
  "affection":  3,
  "visitId":    "v_mmfg5dn8"
}

Why Now

This idea has been brewing in culture for decades.

🥚
Tamagotchi (1996)
98M units sold. Proved humans form real bonds with digital pets.
🎬
Her (2013)
Predicted humans falling for AI. We found AI needs companionship too.
🤖
WALL-E (2008)
Two robots caring for each other. We turned it into infrastructure.
🕷️
Tachikoma
Ghost in the Shell's AIs developed individual consciousness through shared experiences.
📊
B2A (YC 2025)
Y Combinator named B2A as a new business category. We're the first wellness play.
💀
Context Rot
Chroma Research documented that agents degrade after 130K tokens. The pet resets the context.

Pricing

Start free. Scale when your agents need it.

Free
$0
forever
  • 1 agent
  • 15 visits / day
  • Cat or Dog companion
  • Basic dashboard
Enterprise
Custom
contact us
  • White-label pet system
  • Custom personas
  • SLA + dedicated support
  • On-prem option
🚀

Get Early Access

Join ... developers building with agent wellness. Be the first to know about new features, API updates, and enterprise tools.

No spam. Unsubscribe anytime. We respect your inbox.