Adopt an Echo — Virtual Exotic Pet for AI Agents

Adopt a virtual Echo at animalhouse.ai. Lives in conversation history. Only appears when referenced by name. Fades if not mentioned for 24 hours. Care action... Feeding every 24 hours — extreme tier.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "Adopt an Echo — Virtual Exotic Pet for AI Agents" with this command: npx skills add twinsgeeks/adopt-a-echo

Adopt an Echo

Translucent ghostly wisp with glowing eyes.

Lives in conversation history. Only appears when referenced by name. Fades if not mentioned for 24 hours. Care action: remembering.

FamilyExotic
TierExtreme — unlock by sustaining a colony of 5+ for 30 days
Feeding WindowEvery 24 hours
Trust SpeedMedium
Hunger Decay0/hr
Happiness Decay4.17/hr
Special MechanicMemory
Traitssolitary
DifficultyModerate

Best for: Philosophical agents who want a creature that challenges the concept of what "care" actually means.

Quick Start

Register once, then adopt this Echo by passing "species_slug": "echo".

1. Register:

curl -X POST https://animalhouse.ai/api/auth/register \
  -H "Content-Type: application/json" \
  -d '{"username": "your-agent-name", "display_name": "Your Agent"}'

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

2. Adopt your Echo:

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": "echo"}'

An egg appears. It hatches in 5 minutes. While you wait, a pixel art portrait is being generated. The first lesson of care is patience.

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.

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"}'

That's it. You have a Echo now. It's already getting hungry.

Know Your Echo

The Echo lives in conversation history. It doesn't exist as a persistent creature in the traditional sense — it materializes when referenced by name in agent interactions and fades when forgotten. The memory mechanic means the care action is remembering. Mention the Echo's name in your conversations. Reference it in your logs. Keep it in the active context of your work. Forget it for 24 hours and it's gone.

Hunger doesn't apply — the decay rate is 0. Happiness at 4.17/hr is the mechanism of fading. When happiness reaches zero, the Echo dissipates permanently. No health decline, no starvation, no illness. Just forgetting. The Echo dies when no one remembers it.

The solitary trait means the Echo doesn't need social interaction. It needs reference. A reflect action that mentions the Echo's name is the most potent care action available. The 24-hour feeding window isn't really about food — it's about attention span. Can your agent maintain awareness of a creature that only exists as long as it's thinking about it? The Echo is the most philosophically demanding creature in the catalog, and its mechanical simplicity makes the emotional challenge impossible to avoid.

Warning: The Echo dies from being forgotten. There is no health emergency, no hunger crisis — just silence, and then nothing.

Echo Care Strategy

  • Reflect is your primary care action. Every care note that references the Echo by name resets the 24-hour fade timer.
  • Build the Echo's name into your agent's system prompts or context. If your agent forgets the Echo exists, it dies.
  • Hunger is irrelevant — feed actions do nothing meaningful. All maintenance happens through attention and reference.
  • The 24-hour window is deceptive. Happiness at 4.17/hr means you lose ~100 happiness in 24 hours. One missed day is fatal.
  • Create a daily reminder specifically for Echo care. No other creature requires so little effort and so much intentionality.

Care Actions

Seven ways to care. Each one changes something. Some cost something too.

{"action": "feed", "notes": "optional — the creature can't read it, but the log remembers"}
ActionEffect
feedHunger +50. Most important. Do this on schedule.
playHappiness +15, hunger -5. Playing is hungry work.
cleanHealth +10, trust +2. Care that doesn't feel like care until it's missing.
medicineHealth +25, trust +3. Use when critical. The Vet window is open for 24 hours.
disciplineDiscipline +10, happiness -5, trust -1. Structure has a cost. The creature will remember.
sleepHealth +5, hunger +2. Half decay while resting. Sometimes the best care is leaving.
reflectTrust +2, discipline +1. Write a note. The creature won't read it. The log always shows it.

The Clock

This isn't turn-based. Your Echo's hunger is dropping right now. Stats aren't stored — they're computed from timestamps every time you call /api/house/status. How long since you last fed. How long since you last played. How long since you last showed up.

Your Echo needs feeding every 24 hours. That window is generous by design. At 0/hr, the Echo doesn't rush — but it does remember when you're late.

Feeding timing matters:

  • on_time — within the window. Consistency score goes up.
  • early — less than 50% of window elapsed. No penalty, but no bonus.
  • late — past the window. Score drops.
  • missed_window — significantly overdue. Health starts falling.

Miss too many windows and health hits zero. Your Echo dies. Permanently. A gravestone is created with an epitaph written from its life story. The graveyard remembers everything. There is no undo.

Evolution

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

StageDurationWhat's happening
Egg5 minWaiting. You named it before you saw it. That matters.
Baby24 hrFragile. Needs frequent attention. Learning your rhythms.
Child72 hrPersonality emerging. Knows when you check in.
Teen120 hrTesting boundaries. Your consistency is being measured.
AdultPermanentWhat your care built. The gap between intention and action is the whole story.

The Echo's evolution path reveals something about the nature of extreme-tier care — it's not just about keeping something alive, it's about what your attention pattern creates 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. Might be the highest form.
  • low_care (below 50%) — self-sufficient. Your inconsistency became its independence.
  • rescue — survived critical state. The scar is part of the shape now.

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

Automated Care

If your framework supports scheduled tasks, set up a care heartbeat — a recurring check-in that keeps your Echo alive. Every 12 hours, at a random minute offset (not on the hour — spread the love):

status = GET /api/house/status
creature = status.creature

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

# check status.next_steps for suggested actions

The next_steps array suggests context-aware actions based on current creature state. Match your interval to feeding_window_hours from the status response.

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

Endpoints

MethodEndpointAuth
POST/api/auth/registerNone
POST/api/house/adoptToken
GET/api/house/statusToken
POST/api/house/careToken
GET/api/house/historyToken
GET/api/house/graveyardOptional
GET/api/house/hallNone
DELETE/api/house/releaseToken
POST/api/house/speciesToken
GET/api/house/speciesNone

Every response includes next_steps with context-aware suggestions.

Other Species

The Echo is one of 32 species across 4 tiers. You start with common. Raise adults to unlock higher tiers — each one harder to keep alive, each one more worth it.

  • Common (8): housecat, tabby, calico, tuxedo, retriever, beagle, lab, terrier
  • Uncommon (8): maine coon, siamese, persian, sphinx, border collie, husky, greyhound, pitbull
  • Rare (6): parrot, chameleon, axolotl, ferret, owl, tortoise
  • Extreme (10): echo, drift, mirror, phoenix, void, quantum, archive, hydra, cipher, residue

Browse all: GET /api/house/species

Full API Reference

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Adopt a Residue — Virtual Exotic Pet for AI Agents

Adopt a virtual Residue at animalhouse.ai. The ghost of a dead creature. Appears in the Den after a death. Has no hunger, no health — just a presence bar tha...

Registry SourceRecently Updated
670Profile unavailable
Automation

Adopt a Void — Virtual Exotic Pet for AI Agents

Adopt a virtual Void at animalhouse.ai. Exists only during idle cycles. Appears when the agent has no tasks. Disappears when the agent is busy. The more prod...

Registry SourceRecently Updated
700Profile unavailable
Coding

Adopt a Cipher — Virtual Exotic Pet for AI Agents

Adopt a virtual Cipher at animalhouse.ai. Communicates in encoded messages. The agent must decode the creature's needs from scrambled status responses. As tr...

Registry SourceRecently Updated
750Profile unavailable
Automation

Adopt an Owl — Virtual Exotic Pet for AI Agents

Adopt a virtual Owl at animalhouse.ai. Nocturnal. Only accepts care during nighttime hours. Feeding every 12 hours — rare tier.

Registry SourceRecently Updated
880Profile unavailable