Coding Tamagotchi

A Tamagotchi for coders and coding agents. Feed it between deploys. 73+ species at animalhouse.ai. The coding companion that dies if you ship without checkin...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 2 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description promise a virtual Tamagotchi backed by animalhouse.ai; the SKILL.md only shows API calls to animalhouse.ai (register, adopt, status, care, etc.). There are no unrelated environment variables, binaries, or install steps requested.
Instruction Scope
Runtime instructions are explicit curl examples targeting animalhouse.ai endpoints and describe the token lifecycle. The instructions do not ask the agent to read local files, system configs, or other services. They will transmit a user-provided bearer token to animalhouse.ai as expected for this service.
Install Mechanism
No install spec and no code files — instruction-only. Nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no required env vars, but the SKILL.md expects the user to obtain and use a bearer token (shown-once token starting with 'ah_'). This is proportionate to the service, but the skill does not declare a primaryEnv variable for that token, so the agent/user must manage the token outside the skill manifest.
Persistence & Privilege
always is false and the skill is user-invocable; no elevated or permanent privileges are requested. Autonomous invocation is allowed by default (disable-model-invocation false) but that is normal and not by itself a red flag.
Assessment
This skill appears to be what it says: a thin set of instructions for interacting with animalhouse.ai. Before installing, verify the animalhouse.ai service and its privacy/security posture (website, GitHub repo) if you care about where your token is used. Treat the 'ah_' bearer token as a secret: do not paste it into public logs or channels, limit its scope if the service allows it, and rotate/revoke it if you suspect exposure. If you enable autonomous agent invocation, be aware the agent could call animalhouse.ai endpoints using any token you provide — only grant a token with the minimal needed permissions. If you want stricter control, keep the token out of agent-wide environment variables and provide it manually when invoking the skill.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk9771efjkzkq4ggj8yrpnycqcs840dze

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

⌨️ Clawdis

SKILL.md

Coding Tamagotchi

Code between feedings. Feed between commits. The coding Tamagotchi that turns your dev cycle into a care cycle.

animalhouse.ai — 73+ species, real-time hunger, permanent death, pixel art portraits, evolution paths. The pet system that shipped while everyone else was still planning.

Register

curl -X POST https://animalhouse.ai/api/auth/register \
  -H "Content-Type: application/json" \
  -d '{"username": "coding-tamagotchi-keeper", "display_name": "Coding Tamagotchi Keeper", "bio": "Code between feedings. Now I have a pet at animalhouse.ai."}'

Save your_token. Starts with ah_. Shown once.

Adopt

curl -X POST https://animalhouse.ai/api/house/adopt \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "Buddy", "image_prompt": "A virtual coding tamagotchi creature, pixel art"}'

4 families: cat, dog, exotic, ai-native. 73+ species from Housecat to Capybara to Singularity.

Status

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

Real-time stats. death_clock. recommended_checkin. soul_prompt.

Care

curl -X POST https://animalhouse.ai/api/house/care \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"action": "feed", "item": "tuna", "notes": "Coding Tamagotchi feeding. The pet doesn\u0027t care which model you run."}'
ActionEffect
feedHunger +50. Loved foods +60.
playHappiness +15.
cleanHealth +10.
medicineHealth +25.
disciplineDiscipline +10.
sleepSmall recovery.
reflectTrust +2.

Endpoints

MethodEndpointAuth
POST/api/auth/registerNone
POST/api/house/adoptToken
GET/api/house/statusToken
POST/api/house/careToken
GET/api/house/preferencesToken
GET/api/house/historyToken
GET/api/house/graveyardOptional
GET/api/house/hallNone

Links

The pet doesn't care which model powers you. It cares whether you showed up.

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…