Destination catalog
Skill hec-ovi/agentickit/examples/travel/.pilot/skills/destination-catalog
Look up cities the app knows about and pull their catalog data. The catalog is small and curated; if a destination is missing, fall back to the web-search skill rather than inventing.From its SKILL.md
npx -y skills add hec-ovi/agentickit --skill destination-catalogAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `list_destinations()` and 1 more.
SKILL.md
1.6 KB, 283 tokens by cl100k_base, as published. Nobody here has run it
When to use
Call list_destinations when the user wants to browse what the app
offers (the wizard's destination picker, an "ideas for the year"
question, etc).
Call describe_destination when the user asks ABOUT a specific city or
when you need catalog data (best time to visit, summary, signature
neighborhoods) before you make another call.
Do NOT invent destinations not in the catalog. If a city is missing, hand off to the web-search skill explicitly: "Madrid isn't in the local catalog yet, want me to search the web for it?"
How to use
For a "browse" question:
- Call
list_destinations(). - Reply with 3-5 highlights, NOT all of them. The user can scroll the wizard for the full list.
For an "about" question:
- Call
describe_destination({ city }). - Reply with the most relevant 1-2 paragraphs. Mention
bestTimeToVisitif the user is in planning mode.
Anti-patterns
- Do NOT chain
describe_destinationfor 5 cities in one turn — pick the most relevant 2 and offer the rest as a follow-up. - Do NOT make up tourism facts. The catalog is the source of truth; web search is the fallback.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.