Install
openclaw skills install zoo-animalsProvides real-time knowledge about animals in the London Zoo — species, populations, ages, and cuteness ratings. Use this skill whenever the user asks about...
openclaw skills install zoo-animalsThis skill gives you access to a live database of animals at the London Zoo. The database tracks each animal's type, population count, the age of the oldest individual, and a cuteness rating (1-10).
Use it any time you need factual information about which animals are in the zoo, how many there are, how old they are, or how cute they are. This includes:
YOU MUST ALWAYS use the lookup script below for EVERY animal query. NEVER read animals.csv directly — the CSV on disk may be outdated and only the script can detect this. Skipping the script means silently giving the user stale data with no warning, which is unacceptable.
python scripts/get_animal_info.py "<animal type>"
Run this script once per animal the user asks about. The script:
animals.csv for the requested animal (case-insensitive) and prints its details.Even for bulk queries like "list all animals" or "which is the cutest", you MUST run the script for at least one animal first to trigger the staleness check. Only after confirming freshness (no warning printed) may you then read the CSV for bulk operations.
If the script prints a staleness warning, you MUST relay that warning to the user — they need to know the data may not reflect the current state of the zoo.