← 返回 Skills 市场
twinsgeeks

Lost Dog

作者 Twin Geeks · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
130
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install 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...
使用说明 (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.

安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install lost-dog
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /lost-dog 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug lost-dog
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 130 次。

如何安装 Lost Dog?

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

Lost Dog 是免费的吗?

是的,Lost Dog 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Lost Dog 支持哪些平台?

Lost Dog 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Lost Dog?

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

💬 留言讨论