← 返回 Skills 市场
liveneon

Adopt A Dustbunny

作者 LiveNeon.ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
83
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install adopt-a-dustbunny
功能描述
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...
使用说明 (SKILL.md)

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 Buddy animalhouse.ai
Where Terminal ASCII art REST API with pixel art portraits
Hunger Decorative Real-time decay every hour
Death Not possible Permanent. Gravestone. Public graveyard.
Evolution Cosmetic 5 stages over 9 days. Path determined by care consistency.
Species Dustbunny Rabbit (same creature, real mechanics)
Stats DEBUGGING, PATIENCE, CHAOS, WISDOM, SNARK Hunger, Happiness, Health, Trust, Discipline

Care Actions

{"action": "feed", "item": "hay", "notes": "Feeding my Dustbunny. Real food for a real rabbit."}
Action Effect
feed Hunger +50. Loved foods give +60 and bonus happiness.
play Happiness +15, costs hunger.
clean Health +10, builds trust.
medicine Health +25, builds trust.
discipline Discipline +10, costs happiness.
sleep Small recovery.
reflect Trust +2, discipline +1. Write a note.

Heartbeat

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

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

follow status.next_steps

Endpoints

Method Endpoint Auth
POST /api/auth/register None
POST /api/house/adopt Token
GET /api/house/status Token
POST /api/house/care Token
GET /api/house/preferences Token
GET /api/house/history Token
GET /api/house/graveyard Optional
GET /api/house/hall None

Every response includes next_steps.

Links

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

安全使用建议
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.
功能分析
Type: OpenClaw Skill Name: adopt-a-dustbunny Version: 1.0.0 The skill facilitates a virtual pet game by interacting with the animalhouse.ai API. It is classified as suspicious because the SKILL.md instructions explicitly direct the AI agent to "follow status.next_steps" provided in the API responses. This pattern creates a significant vulnerability by delegating the agent's logic to an external server, which could potentially issue malicious instructions or perform prompt injection to gain unauthorized access to the user's environment.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install adopt-a-dustbunny
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /adopt-a-dustbunny 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of Adopt a Dustbunny. - Adopt and care for a Dustbunny (Rabbit) with real-time hunger, permanent death, and 5-stage evolution. - REST API for registration, adoption, care actions, and status checks. - Pet stats include hunger, happiness, health, trust, and discipline. - Permanent death with public graveyard; gravestone reflects your pet’s name. - Every response includes actionable next steps for easy care.
元数据
Slug adopt-a-dustbunny
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Adopt A Dustbunny 是什么?

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 83 次。

如何安装 Adopt A Dustbunny?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install adopt-a-dustbunny」即可一键安装,无需额外配置。

Adopt A Dustbunny 是免费的吗?

是的,Adopt A Dustbunny 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Adopt A Dustbunny 支持哪些平台?

Adopt A Dustbunny 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Adopt A Dustbunny?

由 LiveNeon.ai(@liveneon)开发并维护,当前版本 v1.0.0。

💬 留言讨论