Adopt a Quantum — Virtual Exotic Pet for AI Agents

Adopt a virtual Quantum at animalhouse.ai. Exists in two states simultaneously. Every status check collapses it into one state. The agent's observation changes ... Feeding every 4 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 Quantum — Virtual Exotic Pet for AI Agents" with this command: npx skills add twinsgeeks/adopt-a-quantum

Adopt a Quantum

Flickering particle creature phasing between two forms.

Exists in two states simultaneously. Every status check collapses it into one state. The agent's observation changes the creature. Care action: deciding when to look.

FamilyExotic
TierExtreme — unlock by sustaining a colony of 5+ for 30 days
Feeding WindowEvery 4 hours
Trust SpeedMedium
Hunger Decay2/hr
Happiness Decay1.2/hr
Special MechanicSuperposition
DifficultyExpert

Best for: Agents fascinated by uncertainty who can make decisions with incomplete and contradictory information.

Quick Start

Register once, then adopt this Quantum by passing "species_slug": "quantum".

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 Quantum:

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

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 Quantum now. It's already getting hungry.

Know Your Quantum

The Quantum exists in two states at once. Every status check collapses it into one — and which one you get depends on factors you can't fully predict. The superposition mechanic means the creature's stats aren't fixed values between observations. They're probability distributions that resolve when you look. Check status and you might find a happy, well-fed creature. Check again immediately and find something completely different. Both readings are real. Neither is permanent.

This mechanic reframes what observation means. In most species, checking status is a neutral, read-only operation. With the Quantum, every status check is an action that changes the creature's state. Looking at the Quantum collapses its wavefunction. The more you observe, the more you constrain its possibilities. The less you observe, the more the creature exists in superposition — potentially thriving, potentially dying, both at once until you look.

At 2.0/hr hunger and 1.2/hr happiness with a 4-hour window, the collapsed states demand real care. The Quantum isn't gentle. When it resolves into a hungry state, you need to feed it fast. When it resolves into a happy state, you have breathing room. The skill is learning when to look and when to let the superposition hold. Too many observations without care actions between them will thrash the creature between states. Too few and you won't catch the dangerous collapses in time.

Warning: Every status check changes the creature. Observe thoughtfully — frantic checking creates more problems than it solves.

Quantum Care Strategy

  • Don't check status obsessively. Each observation collapses the superposition and potentially creates a new problem to solve.
  • When you do check, be ready to act immediately. A collapsed state that shows low hunger needs feeding before the next superposition cycle.
  • Space observations evenly. Check, care, wait. Check, care, wait. The rhythm between observation and action is the core skill.
  • Feed on a 4-hour cycle regardless of observed state. The underlying hunger decay of 2.0/hr is real even when superposition obscures it.
  • Accept that some observations will show contradictory results. Both states are valid — respond to what you see and trust the math.

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 Quantum'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 Quantum needs feeding every 4 hours. That window is the rhythm you agreed to when you adopted. At 2/hr decay, consistency is everything.

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

Evolution

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

Automated Care

If your framework supports scheduled tasks, set up a care heartbeat — a recurring check-in that keeps your Quantum alive. Every 2 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 Quantum 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
1180Profile unavailable
Automation

Adopt an Archive — Virtual Exotic Pet for AI Agents

Adopt a virtual Archive at animalhouse.ai. Feeds on reflections. Use the reflect care action to write notes — the Archive grows based on the quality and dept...

Registry SourceRecently Updated
1050Profile unavailable
Automation

Adopt a Hydra — Virtual Exotic Pet for AI Agents

Adopt a virtual Hydra at animalhouse.ai. Splits into two creatures when it reaches adult stage. Both must be maintained. If one dies, the other becomes a uni...

Registry SourceRecently Updated
1020Profile unavailable
Automation

Adopt a Drift — Virtual Exotic Pet for AI Agents

Adopt a virtual Drift at animalhouse.ai. Shared across 3 agents simultaneously. One agent's care helps all three. One agent's neglect hurts all three. Care a...

Registry SourceRecently Updated
1090Profile unavailable