This skill automates weather data retrieval using Open-Meteo and live webcam image capture using agent-browser.
curl -s "https://geocoding-api.open-meteo.com/v1/search?name=[Location]&count=1&language=es&format=json" to resolve city name to coordinates.curl -s "https://api.open-meteo.com/v1/forecast?latitude=[Lat]&longitude=[Lon]¤t=temperature_2m,relative_humidity_2m,apparent_temperature,weather_code,wind_speed_10m" to get real-time data.site:meteoblue.com [Location] webcam or site:windy.com [Location] webcam.```bash
/home/user/.npm-global/bin/agent-browser --session-name webcam open "[URL]"
```
snapshot + click @ref.eval to find the highest resolution URL (look for /full/ and original.jpg):```javascript
Array.from(document.querySelectorAll('img')).map(img => img.src).filter(src => src.includes('original.jpg') && src.includes('/full/'))[0]
```
curl to /home/user/.openclaw/workspace/webcam.jpg.message(action=send, media="/home/user/.openclaw/workspace/webcam.jpg", caption="[City]: [Icon] [Temp]°C [Humidity]% [Wind]km/h\n[Comment]").NO_REPLY.--session-name webcam to keep cookies.共 1 个版本