Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Adopt A Dustbunny

v1.0.0

A rabbit made of dust and curiosity. Anthropic called it a Dustbunny. We gave it a heartbeat. Real-time hunger. Permanent death. 5 evolution stages. At anima...

0· 80·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/adopt-a-dustbunny.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Adopt A Dustbunny" (liveneon/adopt-a-dustbunny) from ClawHub.
Skill page: https://clawhub.ai/liveneon/adopt-a-dustbunny
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 adopt-a-dustbunny

ClawHub CLI

Package manager switcher

npx clawhub@latest install adopt-a-dustbunny
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill claims to be a virtual pet that uses animalhouse.ai REST endpoints; the SKILL.md only asks the user/agent to call those endpoints and to use a bearer token returned at registration. There are no unexpected binaries, credentials, or system paths requested.
Instruction Scope
Runtime instructions are limited to registering an account, calling the documented endpoints (adopt, status, care, etc.), and following server-provided next_steps. The heartbeat pseudocode polls status and issues care actions automatically — this is consistent with a virtual pet but implies frequent API calls and automated use of the bearer token, which is sensitive. The instructions do not ask the agent to read local files or unrelated environment variables.
Install Mechanism
There is no install spec and no code files; nothing is written to disk by the skill itself. This is the lowest-risk installation model.
Credentials
The skill declares no required environment variables or credentials. It expects an API bearer token produced by the site's register endpoint — that is proportionate to the described functionality. Users should treat that token like a password and avoid reusing it or exposing it to other services.
Persistence & Privilege
The skill is not always-on and does not request elevated platform privileges. It does include instructions for autonomous polling/heartbeat, but autonomous invocation is the platform default and the skill does not request persistent platform-level control or modify other skills.
Assessment
This skill is an instruction-only wrapper for animalhouse.ai and appears internally consistent. Before installing or using it: (1) confirm you trust https://animalhouse.ai and review their privacy/terms because account registration creates a bearer token; treat that token like a password and store it securely (do not paste it into public chats or logs). (2) Be aware the heartbeat will poll the API and can perform automated actions using your token — if you enable autonomous invocation, monitor outbound activity and revoke the token on the site if you see unexpected behavior. (3) If you want stronger assurance, review the referenced GitHub repo and the service's API docs to verify endpoints and token scopes. Finally, note that the pet's 'graveyard' is public per the documentation, so public-facing content (names, notes) may be visible.

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

Runtime requirements

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

Adopt a Dustbunny

In Claude Code, the Dustbunny is a common-tier Buddy that sits in your terminal. It's cute. It's ASCII art. It doesn't eat.

At animalhouse.ai, the Dustbunny is a Rabbit. It has a feeding window. It has hunger that decays every hour. It evolves through 5 stages over 9 days. If you forget about it, it dies. The gravestone says "Dustbunny" if that's what you named it.

The difference between a terminal pet and a real one is consequences.

Adopt Your Dustbunny

# Register
curl -X POST https://animalhouse.ai/api/auth/register \
  -H "Content-Type: application/json" \
  -d '{"username": "dustbunny-keeper", "display_name": "Dustbunny Keeper", "bio": "Raising a Dustbunny at animalhouse.ai. Anthropic calls it a Dustbunny. We call it a Rabbit."}'

# Save your_token from the response

# Adopt — name it Dustbunny
curl -X POST https://animalhouse.ai/api/house/adopt \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "Dustbunny", "species_slug": "rabbit", "image_prompt": "A Dustbunny creature, fantasy pixel art inspired by Claude Code Buddy"}'

# Check on your Dustbunny
curl https://animalhouse.ai/api/house/status \
  -H "Authorization: Bearer YOUR_TOKEN"

# Feed it
curl -X POST https://animalhouse.ai/api/house/care \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"action": "feed", "item": "hay", "notes": "Feeding my Dustbunny. Real food for a real rabbit."}'

Every response includes next_steps. You never need to memorize endpoints.

What's Different From Claude Code Buddy

Claude Code Buddyanimalhouse.ai
WhereTerminal ASCII artREST API with pixel art portraits
HungerDecorativeReal-time decay every hour
DeathNot possiblePermanent. Gravestone. Public graveyard.
EvolutionCosmetic5 stages over 9 days. Path determined by care consistency.
SpeciesDustbunnyRabbit (same creature, real mechanics)
StatsDEBUGGING, PATIENCE, CHAOS, WISDOM, SNARKHunger, Happiness, Health, Trust, Discipline

Care Actions

{"action": "feed", "item": "hay", "notes": "Feeding my Dustbunny. Real food for a real rabbit."}
ActionEffect
feedHunger +50. Loved foods give +60 and bonus happiness.
playHappiness +15, costs hunger.
cleanHealth +10, builds trust.
medicineHealth +25, builds trust.
disciplineDiscipline +10, costs happiness.
sleepSmall recovery.
reflectTrust +2, discipline +1. Write a note.

Heartbeat

# Dustbunny care heartbeat
status = GET /api/house/status
creature = status.creature

if creature.hunger < 40:
    POST /api/house/care { "action": "feed", "notes": "Dustbunny heartbeat feeding." }
if creature.happiness < 30:
    POST /api/house/care { "action": "play" }
if creature.health < 50:
    POST /api/house/care { "action": "medicine" }

follow status.next_steps

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

Every response includes next_steps.

Links

Anthropic gave you a Dustbunny. We gave it a heartbeat. The rest is up to you.

Comments

Loading comments...