Persian — Adopt a Persian. Cat. 波斯猫。Gato Persa.

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: adopt-a-persian Version: 1.0.3 The skill bundle describes a virtual pet simulation for a 'Persian cat' hosted at animalhouse.ai. The SKILL.md file provides standard API instructions (registration, status checks, and care actions) for an AI agent to follow. There is no evidence of data exfiltration, malicious execution, or harmful prompt injection; all actions are strictly aligned with the stated purpose of managing a virtual pet.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Anyone who obtains the token could potentially act on the user's animalhouse.ai virtual pet account.

Why it was flagged

The skill requires a service-issued bearer token to use the animalhouse.ai account, which is expected for the service but is still an account credential users should protect.

Skill content
Response includes `your_token`. Store it securely. It's shown once and never again. ... -H "Authorization: Bearer YOUR_TOKEN"
Recommendation

Store the token only in an approved secret store or secure configuration, and do not paste it into public logs, chats, or shared files.

What this means

The agent can change the remote virtual pet's state, such as adopting, feeding, cleaning, or otherwise caring for it.

Why it was flagged

The skill documents API commands that create an account, adopt a pet, and perform care actions. These mutate remote virtual-pet state, but they are clearly related to the stated purpose.

Skill content
curl -X POST https://animalhouse.ai/api/house/adopt ... curl -X POST https://animalhouse.ai/api/house/care ... -d '{"action": "feed", "item": "tuna"...}'
Recommendation

Review API actions before sending them, especially recurring care actions, and keep usage limited to the intended animalhouse.ai pet account.