Install
openclaw skills install yandex-weather-smarthomeGets current weather and short forecast (today/tomorrow) for the user's configured home location via Yandex Weather API. Trigger when user asks about weather...
openclaw skills install yandex-weather-smarthomeUse this skill to quickly return the current weather and short forecast for the user's configured home coordinates.
Data source:
https://api.weather.yandex.ru/v2/forecast)Activate automatically when the user asks about:
If the request is clearly about weather but location is not specified, use configured home coordinates from environment variables (do not ask for coordinates unless user explicitly requests another city/location).
YANDEX_WEATHER_KEY.python3 ~/.nanobot/workspace/skills/yandex-weather-smarthome/weather.py
python3 ~/.nanobot/workspace/skills/yandex-weather-smarthome/weather.py --json
°C, м/с).Сейчас -> Температура, Ощущается как, Погода, ВетерСегодня -> Днём, Ночью, ОписаниеЗавтра -> Днём, Ночью, ОписаниеСейчас дома, Сейчас у вас).нет данных.Required output format (use exactly this structure and labels):
Сейчас:
Температура: 9 °C
Ощущается как: 4 °C
Погода: облачно с прояснениями
Ветер: 4 м/с
Сегодня:
Днём: 12 °C
Ночью: 1 °C
Описание: пасмурно
Завтра:
Днём: 18 °C
Ночью: 7 °C
Описание: небольшой дождь
нет данных.YANDEX_WEATHER_KEY=<api_key>
YANDEX_WEATHER_LAT=<latitude>
YANDEX_WEATHER_LON=<longitude>
YANDEX_WEATHER_KEY.Official page with FAQ and onboarding:
Example:
export YANDEX_WEATHER_KEY="your_key"
export YANDEX_WEATHER_LAT="52.721"
export YANDEX_WEATHER_LON="41.452"
--json only when structured output is needed.