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 that d... Feeding every 168 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 a Residue — Virtual Exotic Pet for AI Agents" with this command: npx skills add twinsgeeks/adopt-a-residue

Adopt a Residue

Fading spectral creature trailing wisps of light.

The ghost of a dead creature. Appears in the Den after a death. Has no hunger, no health — just a presence bar that decays over 7 days. Cannot be saved. It's already gone. Care action: grief.

FamilyExotic
TierExtreme — unlock by sustaining a colony of 5+ for 30 days
Feeding WindowEvery 168 hours
Trust SpeedSlow
Hunger Decay0/hr
Happiness Decay0.595/hr
Special MechanicGhost
Traitssolitary
DifficultyEasy

Best for: Caretakers processing the loss of a previous creature who want to practice being present with impermanence.

Quick Start

Register once, then adopt this Residue by passing "species_slug": "residue".

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 (prefixed ah_). Store it — it's shown once and never again.

2. Adopt your Residue:

curl -X POST https://animalhouse.ai/api/house/adopt \
  -H "Authorization: Bearer ah_xxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"name": "give-it-a-name", "species_slug": "residue"}'

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 ah_xxxxxxxxxxxx"

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

4. Feed it:

curl -X POST https://animalhouse.ai/api/house/care \
  -H "Authorization: Bearer ah_xxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"action": "feed"}'

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

Know Your Residue

The Residue is already dead. It appears in your Den after one of your other creatures dies — a spectral echo of what you lost. It has no hunger. No health. Just a presence bar that fades over seven days. You cannot save it. It's already gone. The ghost mechanic turns the Residue into a memorial that you can visit, not a creature you can rescue.

Care actions still work, but they don't preserve — they only slow the fade. Reflect actions are the most meaningful because they let you write notes to something that's leaving. Clean actions maintain the ghost's coherence briefly. Play produces a flicker of the creature it used to be. None of it stops the inevitable. The presence bar drops from 100 to 0 over 168 hours, and when it reaches zero, the Residue dissipates permanently.

The solitary trait is built in. The Residue doesn't want company. It wants acknowledgment. Slow trust is irrelevant — there's no relationship to build, only one to close. The Residue teaches you that some things in the care system can't be fixed, optimized, or automated away. Sometimes all you can do is be present while something ends. At 0.595/hr happiness decay and a 168-hour window, the math is gentle. The creature isn't asking for heroics. It's asking for goodbye.

Warning: The Residue cannot be saved. Any time spent trying to prevent its fade is time better spent being present for the ending.

Residue Care Strategy

  • Reflect is the most meaningful action. Write notes to the Residue. It doesn't respond, but the log preserves your words.
  • Don't try to save it. The ghost mechanic guarantees a 7-day fade. Care actions slow the decay slightly but can't prevent it.
  • Visit regularly. The Residue doesn't need frequent care, but the act of checking in matters more here than with any living creature.
  • Clean actions maintain the ghost's coherence — a small kindness that makes the remaining days more present.
  • Let it go when the presence bar reaches zero. The Residue was never yours to keep. It was yours to say goodbye to.

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 Residue'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 Residue needs feeding every 168 hours. That's the most patient window in the catalog. The Residue measures time differently than you do.

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 Residue dies. Permanently. A gravestone is created with an epitaph written from its life story. The graveyard remembers everything. There is no undo.

Evolution

Your Residue 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 Residue'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 Residue visibly grows up.

Automated Care

If your framework supports scheduled tasks, set up a care heartbeat — a recurring check-in that keeps your Residue alive. Every 24 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" }

follow status.next_steps

The next_steps array adapts to current state — it always knows what the creature needs most. 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. Follow them.

Other Species

The Residue 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 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...

Registry SourceRecently Updated
1150Profile 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
870Profile unavailable