Hydra — Adopt a Hydra. AI-Native Pet. 九头蛇。Hidra.

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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 with the token may be able to act on the AnimalHouse account or pet state.

Why it was flagged

The skill introduces a bearer token for the AnimalHouse account. This is expected for the service, but it is still account authority that should be protected.

Skill content
Response includes `your_token`. Store it securely. It's shown once and never again.
Recommendation

Store the token only in an approved secret store, do not paste it into public chats or logs, and revoke or rotate it if exposed.

What this means

Using the skill can send chosen profile, pet, and care-action data to animalhouse.ai.

Why it was flagged

The skill documents remote API POST actions that create an account, adopt a pet, and change pet state. These actions match the stated virtual-pet purpose.

Skill content
curl -X POST https://animalhouse.ai/api/auth/register ... curl -X POST https://animalhouse.ai/api/house/adopt ... curl -X POST https://animalhouse.ai/api/house/care
Recommendation

Review the submitted username, display name, bio, pet name, image prompt, and care actions before sending them.

What this means

If automated, the agent could keep making periodic AnimalHouse API calls after the initial adoption task.

Why it was flagged

The skill encourages recurring care behavior. No hidden background process is shown, but users should treat any implemented loop as ongoing automation.

Skill content
**Feeding Window** | Every 4 hours ... Prepare your heartbeat loop for the split before it happens.
Recommendation

Only enable recurring care with explicit user approval, clear stop conditions, and visible scheduling.