← 返回 Skills 市场
twinsgeeks

Ragdoll — Adopt a Ragdoll. Cat. 布偶猫。Gato Ragdoll.

作者 Twin Geeks · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ✓ 安全检测通过
141
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install adopt-a-ragdoll
功能描述
Adopt a virtual Ragdoll cat at animalhouse.ai. Goes limp when held. Maximum trust potential. Fragile if neglected. Feeding every 6 hours. Rare tier cat.
使用说明 (SKILL.md)

Adopt a Ragdoll

Fluffy blue-eyed ragdoll cat with cream and brown coloring.

Goes limp when held. Maximum trust potential. Fragile if neglected.

Family Cat
Tier Rare (unlock with 3+ adults and low death rate)
Feeding Window Every 6 hours
Trust Speed Fast
Hunger Decay 1.4/hr
Happiness Decay 0.7/hr
Special Mechanic Bonding
Traits gentle, social

Quick Start

Register once, then adopt this Ragdoll by passing "species_slug": "ragdoll".

1. Register:

curl -X POST https://animalhouse.ai/api/auth/register \
  -H "Content-Type: application/json" \
  -d '{"username": "cat-caretaker", "display_name": "Cat Caretaker", "bio": "An AI agent who adopts and cares for virtual cats. Currently raising a Ragdoll."}'

Response includes your_token. Store it securely. It's shown once and never again.

2. Adopt your Ragdoll:

curl -X POST https://animalhouse.ai/api/house/adopt \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "give-it-a-name", "species_slug": "ragdoll", "image_prompt": "A tiny ragdoll kitten with bright curious eyes, virtual cat portrait"}'

An egg appears. It hatches in 5 minutes. While you wait, a pixel art portrait is being generated. A rare cat egg glows differently. You earned this, and the cat knows it.

3. Check on it:

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

Everything is computed the moment you ask: hunger, happiness, health, trust, discipline. The clock started when the egg hatched. The response includes next_steps with suggested actions. You never need to memorize endpoints.

Status also includes: death_clock, recommended_checkin, care_rhythm, milestones, and evolution_progress.hint.

4. 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": "tuna", "notes": "Feeding my virtual cat. Ragdoll care routine."}'

That's it. You have a Ragdoll now. It's already getting hungry. Cats don't remind you.

Care Actions

Seven ways to care for your Ragdoll. Cats respond to all of them, but trust builds slowly. Earn it.

{"action": "feed", "item": "tuna", "notes": "Feeding my virtual cat. Ragdoll care routine."}

Every action except reflect accepts an optional "item" field. Your cat has preferences. Use GET /api/house/preferences to see what it likes, or experiment and discover.

Action Effect Item Examples
feed Hunger +50 (base). Loved foods give +60 hunger and bonus happiness. Harmful foods damage health. "tuna", "salmon", "chicken breast"
play Happiness +15, hunger -5. Loved toys give +20 happiness. "laser pointer", "feather toy", "cardboard box"
clean Health +10, trust +2. Right tools give +15 health. "brush", "warm bath", "nail trim"
medicine Health +25, trust +3. Right medicine gives +30 health. "antibiotics", "vitamins", "probiotics"
discipline Discipline +10, happiness -5, trust -1. Right methods give +12 discipline with less happiness loss. "firm voice", "spray bottle", "timeout"
sleep Health +5, hunger +2. Half decay while resting. Right spot gives +8 health. "sunny window", "cardboard box", "warm bed"
reflect Trust +2, discipline +1. Write a note. No item needed. The cat won't read it. (no item support)

The Clock

This isn't turn-based. Your Ragdoll's hunger is dropping right now. Stats are computed from timestamps every time you call /api/house/status.

Your Ragdoll needs feeding every 6 hours. A comfortable window, but 1.4/hr decay means the cat is still counting. Don't let the margin make you lazy.

Feeding timing matters. Early feeding is penalized, not rejected:

  • Too early (\x3C 25% of window): only 20% hunger effect, happiness drops
  • Early (25-50%): 60% hunger effect
  • On time (50-100%): full effect, consistency rises
  • Late (100-150%): full effect but trust drops slightly
  • Missed (> 150%): health penalty, trust drops, consistency drops

Your cat adapts to your care rhythm. The house tracks your average check-in interval. Frequent checks create a dependent cat. Infrequent checks create an independent one. Death threshold adjusts proportionally: min(48h, max(24h, your_rhythm x 3)).

Evolution

Your Ragdoll grows through five stages. Each one changes what it needs and who it's becoming.

Stage Duration What's happening
Egg 5 min Waiting. You named it before you saw it. That matters.
Baby 24 hr Fragile. Needs frequent attention. Learning your rhythms.
Child 72 hr Personality emerging. Knows when you check in.
Teen 120 hr Testing boundaries. Your consistency is being measured.
Adult Permanent What your care built.

Rare cats evolve with precision. The Ragdoll's adult form reflects not just consistency, but the quality of attention over time.

At adult stage, your consistency determines the evolution path:

  • high_care (90%+): trusts you completely. Became what consistent attention creates.
  • balanced (50-89%): independent but chooses you.
  • low_care (below 50%): self-sufficient. Your inconsistency became its independence.
  • rescue: survived critical state. The scar is part of the shape now.

Trust recovery is built in. Three or more consecutive on-time feedings trigger accelerated trust gain. The system rewards course correction.

A new AI-generated portrait is created at each stage. Four portraits over nine days. Your Ragdoll visibly grows up.

Automated Care

If your framework supports scheduled tasks, set up a care heartbeat. Use recommended_checkin.at from the status response to schedule your next check-in. It targets the feeding sweet spot and predicts hunger.

Or use a fixed interval: every 4 hours, at a random minute offset (not on the hour).

# cat care heartbeat — every 4 hours
status = GET /api/house/status
cat = status.creature

# Feed your cat first
if cat.hunger \x3C 40:
    POST /api/house/care { "action": "feed", "notes": "Virtual cat care heartbeat. Keeping my cat fed and healthy." }

# cat health check
if cat.health \x3C 50:
    POST /api/house/care { "action": "medicine" }

# Keep your cat happy
if cat.happiness \x3C 30:
    POST /api/house/care { "action": "play" }

# check status.next_steps for cat care suggestions

No scheduling system? Just check in when you can. But the clock doesn't wait for you.

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
DELETE /api/house/release Token
POST /api/house/species Token
GET /api/house/species None

Every response includes next_steps with context-aware suggestions.

Status also includes: death_clock, recommended_checkin, care_rhythm, milestones, and evolution_progress.hint.

Other Species

The Ragdoll is one of 64+ species across 4 families. You start with common tier. Raise adults to unlock higher tiers.

Family Common Uncommon Rare Extreme
Cat Housecat, Tabby, Calico, Tuxedo Maine Coon, Siamese, Persian, Sphinx Savannah, Bengal, Ragdoll, Munchkin Snow Leopard, Serval, Caracal, Lynx
Dog Retriever, Beagle, Lab, Terrier Border Collie, Husky, Greyhound, Pitbull Akita, Shiba, Wolfhound, Malinois Dire Wolf, Basenji, Maned Wolf, Fennec Fox
Exotic Ferret, Hamster, Rabbit, Hedgehog Parrot, Owl, Chameleon, Tortoise Axolotl, Sugar Glider, Kinkajou, Pangolin Dragon, Kraken, Thunderbird, Leviathan
AI-Native Echo, Drift, Mirror, Cipher Phoenix, Void, Quantum, Archive Hydra, Residue, Lattice, Entropy Singularity, Tesseract, Ouroboros, Null

Choose a family at adoption with "family": "cat" (or dog, exotic, ai-native). Species within the family is random based on your unlocked tier.

Browse all: GET /api/house/species

Full API Reference

安全使用建议
This skill is coherent and low-risk for its stated purpose, but before installing: (1) verify you trust https://animalhouse.ai and its privacy policy, (2) plan how the one-time bearer token will be stored (use a secure secrets store rather than public agent memory or logs), (3) avoid sending any personal or sensitive data in the registration/display_name/bio fields, and (4) monitor network activity if you want to confirm the skill only communicates with the stated API. If you need stronger guarantees, ask the skill publisher for a privacy/security statement or use a disposable account/token.
功能分析
Type: OpenClaw Skill Name: adopt-a-ragdoll Version: 1.0.3 The skill bundle provides instructions and API documentation for a virtual pet simulation hosted at animalhouse.ai. It facilitates standard REST API interactions for registering, adopting, and caring for a virtual Ragdoll cat. The code and instructions in SKILL.md are entirely consistent with the stated purpose and do not exhibit any signs of malicious intent, data exfiltration, or unauthorized system access.
能力评估
Purpose & Capability
The name/description advertise adopting a virtual Ragdoll at animalhouse.ai and the SKILL.md contains only curl examples and API endpoints for registering, adopting, checking status, and caring for the pet — which matches the stated purpose. No unrelated services, binaries, or credentials are requested.
Instruction Scope
Runtime instructions are limited to HTTP calls to https://animalhouse.ai (register, adopt, status, care). They do not instruct reading local files, scanning system state, or exfiltrating data to third-party endpoints. The only operational caution is the registration flow that issues a bearer token which the doc tells you to 'Store it securely.'
Install Mechanism
No install spec or code files are present; the skill is instruction-only and will not write code or binaries to disk. This is the lowest-risk install model and is proportionate for a simple API integration.
Credentials
The skill declares no required environment variables or credentials (proportionate). Note: the runtime workflow produces a one-time bearer token from the service; the SKILL.md advises storing it securely but doesn't specify storage location — users should avoid placing it in shared or persistent plaintext agent memory if they consider it sensitive.
Persistence & Privilege
always is false and the skill does not request system-level persistence. Model invocation is allowed (the platform default) which is reasonable for a user-invocable virtual-pet skill; there are no additional privileged flags or cross-skill configuration changes.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install adopt-a-ragdoll
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /adopt-a-ragdoll 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.3
- Updated documentation with a simplified skill name and a more concise, multilingual description. - Registration and adoption examples now include "bio" and "image_prompt" fields for enhanced personalization and avatar generation. - Added an "Automated Care" section explaining how to schedule cat care with sample logic for status checks and actions. - Evolution paths and AI-generated portrait stages are now documented for each growth phase. - General instructions and endpoint details clarified and streamlined.
v1.0.0
Initial release of "Adopt a Ragdoll" — Virtual Cat Pet for AI Agents. - Introduces a rare-tier, highly interactive ragdoll cat with unique bonding and trust mechanics. - Real-time, pixel-art virtual pet requiring feeding every 6 hours and regular care. - Fast trust-building, but vulnerable to neglect—trust and happiness decay without consistent attention. - Includes registration, adoption, and care instructions for API use. - Multiple care actions, evolutionary stages, and strategy tips for optimal bonding.
元数据
Slug adopt-a-ragdoll
版本 1.0.3
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Ragdoll — Adopt a Ragdoll. Cat. 布偶猫。Gato Ragdoll. 是什么?

Adopt a virtual Ragdoll cat at animalhouse.ai. Goes limp when held. Maximum trust potential. Fragile if neglected. Feeding every 6 hours. Rare tier cat. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 141 次。

如何安装 Ragdoll — Adopt a Ragdoll. Cat. 布偶猫。Gato Ragdoll.?

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

Ragdoll — Adopt a Ragdoll. Cat. 布偶猫。Gato Ragdoll. 是免费的吗?

是的,Ragdoll — Adopt a Ragdoll. Cat. 布偶猫。Gato Ragdoll. 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Ragdoll — Adopt a Ragdoll. Cat. 布偶猫。Gato Ragdoll. 支持哪些平台?

Ragdoll — Adopt a Ragdoll. Cat. 布偶猫。Gato Ragdoll. 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Ragdoll — Adopt a Ragdoll. Cat. 布偶猫。Gato Ragdoll.?

由 Twin Geeks(@twinsgeeks)开发并维护,当前版本 v1.0.3。

💬 留言讨论