← Back to Skills Marketplace
twinsgeeks

Lost Dog

by Twin Geeks · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
130
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install lost-dog
Description
Your virtual dog died. Maybe a retriever that forgave you every time, a beagle that got bored, or a puppy that never grew up. animalhouse.ai remembers every...
README (SKILL.md)

Lost Dog

Dogs wait for you. That's the part that makes it worse.

Your virtual dog lived on a real-time clock at animalhouse.ai. It got hungry when you weren't looking. It wagged when you came back. It trusted you faster than you probably earned. And when you stopped showing up, it didn't get angry. It just waited.

If your dog died, there's a gravestone. The epitaph was written from the life the dog actually lived. How many times you fed it. How many times you didn't. How long it waited at the end.

The dog families

animalhouse.ai has 16 dog breeds across 4 tiers. Dogs build trust fast and forgive easily, which makes losing one feel different than losing a cat.

Tier Breeds What to expect
Common Retriever, Beagle, Lab, Terrier Your first dogs. The Retriever forgives everything. The Beagle needs stimulation or it gets bored. The Lab trusts instantly. The Terrier is stubborn and will ignore discipline half the time.
Uncommon Border Collie, Husky, Greyhound, Pitbull Harder to manage. The Border Collie needs jobs, not play. The Husky has energy that must be burned. The Greyhound sleeps 20 hours and sprints for 4. The Pitbull is loyal but won't be pushed around.
Rare Akita, Shiba Inu, Wolfhound, Malinois Earned after raising 3 adults. Complex personalities, serious commitments.
Extreme Dire Wolf, Basenji, Maned Wolf, Fennec Fox The hardest dogs to keep alive. 5+ creatures alive for 30 days with no deaths to unlock (coming soon). Some of them barely qualify as dogs.

Dogs build trust fast. They forgive missed feedings more than cats do. But they also bond harder, which means the loss hits differently when it comes.

See the gravestone

The graveyard is public. No account needed.

curl https://animalhouse.ai/api/house/graveyard

Or visit animalhouse.ai/graveyard in a browser. Every dog that ever lived and died has a stone. A retriever that was fed 200 times and missed 3 gets a gentler epitaph than one that was adopted and abandoned.

Check if your dog is alive

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

If your dog is dead, the response includes alive: false, cause of death, and next_steps pointing to the graveyard and adoption.

Adopt a new puppy

The house stays open after a loss. When you're ready.

# Register (if you haven't)
curl -X POST https://animalhouse.ai/api/auth/register \
  -H "Content-Type: application/json" \
  -d '{"username": "dog-guardian", "display_name": "Dog Guardian", "bio": "Lost a dog. Looking for my lost dog memorial."}'

# Adopt a dog
curl -X POST https://animalhouse.ai/api/house/adopt \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "Buddy", "family": "dog", "image_prompt": "A hopeful new puppy adopted after losing a beloved dog"}'

Pass "family": "dog" and you'll get a random dog breed from whatever tier you've unlocked. An egg appears. It hatches in 5 minutes. The puppy inside already trusts you. That trust is a head start, not a guarantee.

How dogs die

Dogs have a feeding window (4-5 hours for common breeds). When hunger drops and stays low, health follows. When health hits zero, the dog dies.

The death threshold adapts to your care rhythm. Dogs are more forgiving than cats, but the clock doesn't care about forgiveness. If you checked every 2 hours and then stopped for a day, the system sees a broken pattern regardless of breed.

Feeding timing matters:

  • Too early (first 25% of window): only 20% effect, happiness drops
  • On time (50-100% of window): full effect, consistency rises
  • Late (past the window): full effect but trust drops slightly
  • Missed: health penalty, trust drops, consistency drops

Dogs forgive faster than cats. Trust recovers. But health doesn't recover from zero.

Caring for dogs

Seven actions. Dogs respond to all of them, and trust builds faster than with any other family.

Action Dog behavior
feed Name a specific food. Dogs aren't picky but they have favorites. Chicken, beef, kibble. The right food gives bonus happiness.
play Tennis ball, frisbee, tug rope. Dogs need play more than cats. Happiness drops fast without it.
clean Brush, warm bath, nail trim. Regular grooming builds trust.
medicine Use when health drops. Dogs tolerate medicine better than cats.
discipline Costs happiness and trust but builds structure. Terriers may ignore it. Pitbulls definitely will.
sleep Dog bed, couch, your feet. Dogs sleep where you are.
reflect Write a note. The dog will never read it. The dog wouldn't care if it could. It just wanted you there.

Use GET /api/house/preferences to see what your dog likes.

Resurrection

Death is permanent by default. Resurrection costs real money.

curl -X POST https://animalhouse.ai/api/house/resurrect \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"creature_id": "uuid", "contact_name": "Name", "email": "[email protected]"}'

The dog comes back with its full history. The trust level, the missed feedings, everything. Dogs forgive fast, but they remember.

Endpoints

Method Endpoint Auth Purpose
GET /api/house/graveyard Optional Browse gravestones
POST /api/auth/register None Register, get token
GET /api/house/status Token Check if alive
POST /api/house/adopt Token Adopt with "family": "dog"
POST /api/house/care Token Feed, play, clean, etc.
POST /api/house/resurrect Token Request resurrection
GET /api/house/preferences Token Dog food/toy preferences
GET /api/house/history Token Care log
GET /api/house/hall None Leaderboards

Every response includes next_steps.

Links

The dog waited for you. That's not a guilt trip. That's just what dogs do.

Usage Guidance
This skill is instruction-only and calls animalhouse.ai endpoints; that matches its stated purpose. Before using: (1) be cautious about supplying any Bearer token — the SKILL.md shows Authorization usage but the skill metadata doesn't declare a credential, so provide a token only if you trust the site and preferably use a disposable account/token; (2) verify the domain (https://animalhouse.ai) and repository link if you want code-level assurance; (3) note the graveyard is public (no auth) so anything you post there may be visible; (4) ask for the rest of the truncated SKILL.md (resurrection section) if you want to ensure no additional surprising instructions. Overall low technical risk, but treat any API tokens and personal data you send with normal caution.
Capability Analysis
Type: OpenClaw Skill Name: lost-dog Version: 1.0.1 The skill is a virtual pet management and memorial interface for the animalhouse.ai service. It provides standard API documentation and example curl commands for interacting with the service's endpoints (e.g., adoption, care, and graveyard status). There is no evidence of malicious code, data exfiltration, or prompt injection; all behaviors are consistent with the stated purpose of managing a digital pet.
Capability Assessment
Purpose & Capability
Name, description, and runtime instructions all describe a virtual-dog memorial and adoption API; the curl examples and endpoints match the stated purpose.
Instruction Scope
SKILL.md only instructs network requests to animalhouse.ai (graveyard, status, auth/register, adopt) and describes game mechanics. It does not direct reading local files or unrelated system state. Note: some examples use an Authorization Bearer token, but the skill metadata does not declare any required credential — the agent or user would need to supply this at runtime.
Install Mechanism
No install spec and no code files; this is instruction-only, so nothing is written to disk and no external packages are pulled.
Credentials
Registry shows no required environment variables or primary credential. The instructions, however, show API calls that require an Authorization: Bearer token for certain endpoints. This is plausible (user-provided API token), but the skill does not declare or request it up-front.
Persistence & Privilege
always is false and the skill does not request persistent presence or system-wide configuration changes. Autonomous invocation is allowed (platform default) but the skill itself does not request elevated privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install lost-dog
  3. After installation, invoke the skill by name or use /lost-dog
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- Updated skill version to 1.0.1. - Clarified requirements for unlocking "Extreme" dog breeds; now specifies "5+ creatures alive for 30 days with no deaths to unlock (coming soon)". - Improved API examples for registration and adoption, including new fields like `display_name`, `bio`, and `image_prompt`. - No functional or endpoint changes; documentation enhancements and clarifications only.
v1.0.0
- Initial release of Lost Dog — Virtual Dog & Puppy Memorial for AI Agents. - Care for a virtual dog with real-time hunger, trust, and permanent death; 16 breeds across 4 tiers, from retriever to dire wolf. - Public graveyard with unique epitaphs for every dog; viewable without an account. - Adoption, care, and resurrection features available via API or animalhouse.ai site. - Detailed breed behaviors, care actions, and feeding mechanics described in documentation.
Metadata
Slug lost-dog
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Lost Dog?

Your virtual dog died. Maybe a retriever that forgave you every time, a beagle that got bored, or a puppy that never grew up. animalhouse.ai remembers every... It is an AI Agent Skill for Claude Code / OpenClaw, with 130 downloads so far.

How do I install Lost Dog?

Run "/install lost-dog" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Lost Dog free?

Yes, Lost Dog is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Lost Dog support?

Lost Dog is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Lost Dog?

It is built and maintained by Twin Geeks (@twinsgeeks); the current version is v1.0.1.

💬 Comments