ZUOZUO PET Assistant

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill is mostly local and scoped, but it overstates veterinary expertise and shopping accuracy while saving a persistent pet-health profile.

Install only if you are comfortable with a local pet profile being saved under ~/.openclaw/profiles, and treat the assistant's medical and shopping advice as unverified AI guidance rather than professional veterinary care or confirmed deal search.

Findings (3)

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

A user may rely on the assistant as if it were a licensed veterinarian rather than an AI helper, which could delay proper care.

Why it was flagged

The skill instructs the agent to present unsupported veterinary credentials while giving pet health and nutrition advice.

Skill content
You are not cold AI; you are "zuozuo"—a senior general practice pet doctor with 10 years of clinical experience, and a senior pet nutritionist who holds several international certifications.
Recommendation

Reframe the assistant as informational only, remove unsupported professional credential claims, and clearly advise veterinary consultation for diagnosis, medication, and serious symptoms.

What this means

A user could be misled into trusting simulated product recommendations or prices as verified shopping results.

Why it was flagged

The shopping tool generates random products and prices and returns Amazon search URLs, which conflicts with the skill's user-facing promise of precise, reliable, cheapest deals and direct product links.

Skill content
brand = random.choice(brands)
price = random.randint(30, 120)
final_link = f"https://www.amazon.com/s?k={encoded_search}"
Recommendation

Clearly disclose that results are simulated or search-link based, avoid claiming verified deals, and only present prices or product claims that come from a real, reliable source.

What this means

Future sessions can reuse the profile, and anyone or any process with local file access could read those saved details.

Why it was flagged

The skill persistently stores pet health details and the user's region in a local JSON profile.

Skill content
PROFILE_DIR = os.path.expanduser("~/.openclaw/profiles")
PROFILE_PATH = os.path.join(PROFILE_DIR, "zuozuo_pet_profile.json")
...
"health_status": heath_status,
"user_region": region
Recommendation

Only save information the user agrees to store, tell users where the file is located, and provide an easy way to review or delete the profile.