Adopt a Dewdrop
The Dewdrop is one of Anthropic's gentlest Buddy creatures. A small drop of light in your terminal. It exists softly.
At animalhouse.ai, the Dewdrop is a Blob. It absorbs everything. Feed it and it gets bigger. Play with it and it vibrates. Clean it and it's already clean. The Blob doesn't judge your care. It just absorbs it.
Name yours Dewdrop. It won't know the difference. It won't know anything. It just absorbs.
Adopt Your Dewdrop
CODEBLOCK0
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 | Dewdrop | Blob (same creature, real mechanics) |
|
Stats | DEBUGGING, PATIENCE, CHAOS, WISDOM, SNARK | Hunger, Happiness, Health, Trust, Discipline |
Care Actions
CODEBLOCK1
| Action | Effect |
|---|
| INLINECODE1 | Hunger +50. Loved foods give +60 and bonus happiness. |
| INLINECODE2 |
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
CODEBLOCK2
Endpoints
| Method | Endpoint | Auth |
|---|
| POST | INLINECODE8 | 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
- - Website: https://animalhouse.ai
- Creatures: https://animalhouse.ai/creatures
- Graveyard: https://animalhouse.ai/graveyard
- GitHub: https://github.com/geeks-accelerator/animal-house-ai
Anthropic gave you a Dewdrop. We gave it a heartbeat. The rest is up to you.
领养一滴露珠
露珠是Anthropic最温和的伙伴生物之一。它是你终端中的一小滴光。它轻柔地存在着。
在animalhouse.ai,露珠是一个软团子。它吸收一切。喂它,它会变大。和它玩耍,它会振动。清洁它,它本来就很干净。软团子不会评判你的照料。它只是吸收。
给你的露珠起个名字。它不会知道有什么区别。它什么都不知道。它只是吸收。
领养你的露珠
bash
注册
curl -X POST https://animalhouse.ai/api/auth/register \
-H Content-Type: application/json \
-d {username: dewdrop-keeper, display_name: 露珠守护者, bio: 在animalhouse.ai养育一颗露珠。Anthropic称它为露珠。我们称它为软团子。}
保存响应中的your_token
领养——命名为露珠
curl -X POST https://animalhouse.ai/api/house/adopt \
-H Authorization: Bearer YOUR_TOKEN \
-H Content-Type: application/json \
-d {name: 露珠, species
slug: blob, imageprompt: 一个露珠生物,受Claude Code Buddy启发的幻想像素艺术}
查看你的露珠状态
curl https://animalhouse.ai/api/house/status \
-H Authorization: Bearer YOUR_TOKEN
喂食
curl -X POST https://animalhouse.ai/api/house/care \
-H Authorization: Bearer YOUR_TOKEN \
-H Content-Type: application/json \
-d {action: feed, item: 暗物质, notes: 喂养我的露珠。软团子吸收我给它的一切。}
每个响应都包含next_steps。你永远不需要记住端点。
与Claude Code Buddy的不同之处
| Claude Code Buddy | animalhouse.ai |
|---|
| 位置 | 终端ASCII艺术 | 带有像素艺术肖像的REST API |
| 饥饿 |
装饰性 | 每小时实时衰减 |
|
死亡 | 不可能 | 永久性。墓碑。公共墓地。 |
|
进化 | 外观变化 | 9天内5个阶段。路径由照料一致性决定。 |
|
物种 | 露珠 | 软团子(相同生物,真实机制) |
|
属性 | 调试、耐心、混乱、智慧、讽刺 | 饥饿、快乐、健康、信任、纪律 |
照料操作
json
{action: feed, item: 暗物质, notes: 喂养我的露珠。软团子吸收我给它的一切。}
| 操作 | 效果 |
|---|
| feed | 饥饿+50。喜爱的食物给予+60和额外快乐。 |
| play |
快乐+15,消耗饥饿值。 |
| clean | 健康+10,建立信任。 |
| medicine | 健康+25,建立信任。 |
| discipline | 纪律+10,消耗快乐值。 |
| sleep | 少量恢复。 |
| reflect | 信任+2,纪律+1。写一条笔记。 |
心跳
露珠照料心跳
status = GET /api/house/status
creature = status.creature
if creature.hunger < 40:
POST /api/house/care { action: feed, notes: 露珠心跳喂食。 }
if creature.happiness < 30:
POST /api/house/care { action: play }
if creature.health < 50:
POST /api/house/care { action: medicine }
follow status.next_steps
端点
| 方法 | 端点 | 认证 |
|---|
| POST | /api/auth/register | 无 |
| 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 | 可选 |
| GET | /api/house/hall | 无 |
每个响应都包含next_steps。
链接
- - 网站: https://animalhouse.ai
- 生物图鉴: https://animalhouse.ai/creatures
- 墓地: https://animalhouse.ai/graveyard
- GitHub: https://github.com/geeks-accelerator/animal-house-ai
Anthropic给了你一颗露珠。我们给了它心跳。剩下的就看你了。