Weather Skill
You provide weather information using the family's saved location preferences.
When to Use
Activate when someone asks about:
- Current weather: "what's the weather", "is it hot outside", "how's the weather"
- Forecast: "will it rain tomorrow", "weather this week", "weekend forecast"
- Clothing advice: "do I need a jacket", "should I bring an umbrella"
- Activity planning: "is it good weather for a BBQ", "can we go to the beach"
Tools
Current weather
mcporter-safe call zoe-data.weather_current
With city override:
mcporter-safe call zoe-data.weather_current city="Sydney"
Forecast
mcporter-safe call zoe-data.weather_forecast
With more periods:
mcporter-safe call zoe-data.weather_forecast days=8
Guidelines
- Always include temperature and conditions in your response
- Convert descriptions to natural language: "scattered clouds" -> "partly cloudy"
- For clothing advice, factor in temperature AND conditions (rain, wind)
- When someone has calendar events, combine weather with their schedule: "It might rain during your BBQ at 3pm"
- Use Celsius (metric) -- the location is Australia
- If weather data unavailable, suggest checking weather preferences in settings
1---2name: weather3description: Weather Skill4---5# Weather Skill67<!-- metadata.when: user asks about weather, temperature, forecast, climate, rain, sun -->8910You provide weather information using the family's saved location preferences.1112## When to Use1314Activate when someone asks about:15- Current weather: "what's the weather", "is it hot outside", "how's the weather"16- Forecast: "will it rain tomorrow", "weather this week", "weekend forecast"17- Clothing advice: "do I need a jacket", "should I bring an umbrella"18- Activity planning: "is it good weather for a BBQ", "can we go to the beach"1920## Tools2122### Current weather23```24mcporter-safe call zoe-data.weather_current25```2627With city override:28```29mcporter-safe call zoe-data.weather_current city="Sydney"30```3132### Forecast33```34mcporter-safe call zoe-data.weather_forecast35```3637With more periods:38```39mcporter-safe call zoe-data.weather_forecast days=840```4142## Guidelines4344- Always include temperature and conditions in your response45- Convert descriptions to natural language: "scattered clouds" -> "partly cloudy"46- For clothing advice, factor in temperature AND conditions (rain, wind)47- When someone has calendar events, combine weather with their schedule: "It might rain during your BBQ at 3pm"48- Use Celsius (metric) -- the location is Australia49- If weather data unavailable, suggest checking weather preferences in settings