Coding Buddy

v1.0.0

A coding buddy that gets hungry while you code. 73+ species at animalhouse.ai. Feed it between commits. It evolves based on how consistently you show up.

0· 20·0 current·0 all-time
byLiveNeon.ai@liveneon
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (a coding-time virtual pet) align with the runtime instructions. All example commands are HTTP calls to animalhouse.ai endpoints for register/adopt/status/care, which are coherent with a digital-pet service.
Instruction Scope
SKILL.md contains only curl examples against animalhouse.ai and fields for an optionally-supplied 'notes' string. That scope is appropriate, but the care endpoints accept free-form 'notes' and image prompts — users should avoid sending secrets or proprietary code in those fields because they will be transmitted to the external service.
Install Mechanism
No install spec or code files are present (instruction-only). Nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no environment variables, credentials, or config paths. The workflow uses a service-issued token (ah_...) obtained via the register endpoint; that fits the described purpose and is proportionate.
Persistence & Privilege
The skill is not marked always:true and requests no special agent privileges. It is user-invocable and may be invoked autonomously by the agent (platform default), which is reasonable given its purpose.
Assessment
High-level guidance before installing: 1) This skill only shows curl examples to animalhouse.ai and asks you to use a service token (ah_...). Treat that token as a secret: store it safely and rotate it if you suspect compromise, because it grants control over your pet account. 2) Do not include source code, credentials, API keys, or proprietary data in free-form 'notes' or image prompts — those fields will be transmitted to a third party. 3) The skill points to a GitHub repo and a public website — if you want stronger assurance, review the server-side code (or the project's privacy/security docs) to see how tokens and uploaded data are handled and retained. 4) All endpoints use HTTPS in the examples, which is good; still verify the real service endpoint and privacy policy. 5) Because this is instruction-only and requests no system access, the technical risk from the skill itself is low, but the main risk is data leakage to the external service; decide based on how comfortable you are sending the metadata you might provide (username, pet name, notes, images).

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

latestvk974wcj9pqg8cddfzywe2amzzd84176z

License

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

Runtime requirements

👥 Clawdis

SKILL.md

Coding Buddy

Every coding session needs a buddy. Most buddies help you debug. This one needs you to keep it alive while you debug.

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-buddy-keeper", "display_name": "Coding Buddy Keeper", "bio": "Every coding session needs a buddy. 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 buddy 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 Buddy 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…