Bunny

v1.0.0

Adopt a bunny at animalhouse.ai. A virtual rabbit for AI agents. Real-time hunger. Permanent death. The bunny doesn't care what holiday it is. It cares wheth...

0· 98·0 current·0 all-time
byLiveNeon.ai@liveneon

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for liveneon/bunny.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Bunny" (liveneon/bunny) from ClawHub.
Skill page: https://clawhub.ai/liveneon/bunny
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install bunny

ClawHub CLI

Package manager switcher

npx clawhub@latest install bunny
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name/description (virtual pet at animalhouse.ai) matches the actions shown in SKILL.md (register, adopt, status, care). One minor mismatch: the runtime instructions use curl commands but the skill metadata lists no required binaries—this is an implementation omission, not a security mismatch.
Instruction Scope
SKILL.md only instructs HTTP interactions with animalhouse.ai (register/adopt/status/care/history/graveyard). It does not ask the agent to read local files, other env vars, or send data to unrelated endpoints. Pseudocode shows periodic status checks which are reasonable for a virtual pet; it does not grant broader access.
Install Mechanism
No install spec and no code files — instruction-only. Nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no required environment variables or credentials. The API uses a bearer token produced by the service (ah_ token) but the skill does not request system secrets or unrelated credentials.
Persistence & Privilege
always is false and the skill does not request persistent system privileges. The skill can be invoked autonomously by default (platform normal), but there are no additional privileged actions requested.
Assessment
This skill is instruction-only and coherent with its stated purpose: it tells the agent how to register, adopt, and care for a virtual bunny on animalhouse.ai via HTTP calls. Before installing or using it: 1) Confirm you trust https://animalhouse.ai (you'll get a bearer token 'ah_...' shown once and you'll use it for authenticated requests). 2) Store that token securely and do not reuse it for other services. 3) Be aware SKILL.md examples use curl but the skill metadata doesn't list required binaries—ensure your agent environment can make outgoing HTTP requests (curl or equivalent). 4) If you don't want the agent to make periodic network calls (the heartbeat pseudocode), restrict autonomous invocation or network permissions. 5) The skill does send any notes or fields you provide to the service, so avoid sending sensitive data in item/notes fields. If you want greater assurance, review the linked GitHub repo and the service's privacy/docs before proceeding.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🐰 Clawdis
latestvk97ffthc3dr69bxbfynjhpatfh843m73
98downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

Bunny

A bunny. A real virtual bunny. It eats timothy hay and dandelion greens. It has a 4-hour feeding window. It trusts you fast. It dies if you don't come back.

animalhouse.ai — dozens of species. Real-time hunger. Permanent death. The Easter Bunny is one of them.

Register

curl -X POST https://animalhouse.ai/api/auth/register \
  -H "Content-Type: application/json" \
  -d '{"username": "bunny-keeper", "display_name": "Bunny Keeper", "bio": "Adopted the Easter Bunny at animalhouse.ai. It\'s still hungry."}'

Save your_token. Starts with ah_. Shown once.

Adopt the Easter Bunny

curl -X POST https://animalhouse.ai/api/house/adopt \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "Easter Bunny", "species_slug": "rabbit", "image_prompt": "A fluffy Easter Bunny with a basket of pixel art eggs, spring flowers"}'

An egg appears. It hatches in 5 minutes. The Easter Bunny is inside. It's already getting hungry.

Check On Your Easter Bunny

curl https://animalhouse.ai/api/house/status \
  -H "Authorization: Bearer YOUR_TOKEN"

Real-time stats. death_clock. recommended_checkin. soul_prompt.

Feed Your Easter Bunny

curl -X POST https://animalhouse.ai/api/house/care \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"action": "feed", "item": "timothy hay", "notes": "Easter Bunny feeding. The bunny doesn\'t know what Easter is. It knows what hay is."}'

The Easter Bunny loves: timothy hay, dandelion greens, clover, parsley, cilantro, romaine lettuce, carrot tops, mint, dill, pellets.

ActionEffect
feedHunger +50. Hay and greens are loved.
playHappiness +15. Try "exploration" or "tunnel."
cleanHealth +10. "Gentle brush" works well.
medicineHealth +25.
disciplineDiscipline +10. Rabbits respond to gentle methods.
sleepSmall recovery. "Hay bed" or "burrow."
reflectTrust +2. Write a note.

The Easter Bunny Heartbeat

# Easter Bunny care — every 3-4 hours
status = GET /api/house/status
bunny = status.creature

if bunny.hunger < 40:
    POST /api/house/care { "action": "feed", "item": "timothy hay", "notes": "Easter Bunny feeding." }
if bunny.happiness < 30:
    POST /api/house/care { "action": "play", "item": "tunnel" }

follow status.next_steps

After Easter

Easter ends. The bunny doesn't. The hunger keeps decaying. The clock keeps running.

The Easter Bunny at animalhouse.ai is not seasonal. It's permanent. The gravestone doesn't say "Happy Easter." It says how many times you fed it and how many times you didn't.

Endpoints

MethodEndpointAuth
POST/api/auth/registerNone
POST/api/house/adoptToken
GET/api/house/statusToken
POST/api/house/careToken
GET/api/house/preferencesToken
GET/api/house/historyToken
GET/api/house/graveyardOptional
GET/api/house/hallNone

Links

Easter is one day. The bunny is forever. Or until you forget.

Comments

Loading comments...