Weather forecast
Skill hec-ovi/agentickit/examples/travel/.pilot/skills/weather-forecast
AI copilot for React apps. Reads your state, fills forms, confirms actions, calls your tools. Multi-agent, AI SDK 6 + AG-UI, markdown skills. MIT.
npx -y skills add hec-ovi/agentickit --skill weather-forecastAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing 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.
What its author says it does
Copied from the file, not written here
Look up current conditions or a forecast for a specific city and date. Backed by an OpenWeather proxy when OPENWEATHER_API_KEY is set, otherwise a deterministic mock so the demo works fully offline.
SKILL.md
1.8 KB, as published. Nobody here has run it
When to use
Call get_weather when the user asks about conditions or a forecast.
Typical phrasings:
- "what's the weather in Lisbon next week"
- "will it rain on the 12th"
- "how cold will it be in Tokyo in December"
- "should I pack a coat for Madrid"
Do NOT call for general climate questions ("what's Lisbon usually like in spring") — answer in prose for those.
How to use
- Resolve the date. If the user says "next week" or "the 12th", call
compute_relative_dateto get aYYYY-MM-DD. If they ask for "today", callget_current_date. - Call
get_weather({ city, date }). The tool returns{ tempC, tempF, condition, summary, source }. - Reply in one short sentence with the user-facing values. Mention
sourceonly if it's the mock (the user should know they're seeing demo data, not a real forecast).
Output narration
Examples of good replies:
- "Lisbon on 2026-05-20: 22°C, partly cloudy."
- "Tokyo on 2026-12-15: -2°C, light snow expected (mock data — set OPENWEATHER_API_KEY for live)."
Anti-patterns
- Do NOT call
get_weatherrepeatedly for adjacent days; one call per city/day is enough for a single user question. - Do NOT recommend specific clothing items here; that's the packing skill's job. Just report the conditions.
- Do NOT hide the
source: "mock"flag from the user.