[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openclaw-openclaw-skills-weather":3},{"error":4,"detail":5,"metadata":23,"markdownContent":26,"rawMarkdown":20},false,{"repo_full_name":6,"owner":7,"repo_name":7,"repo_forks":8,"skill_path":9,"repo_stars":10,"name":11,"category_id":12,"description":13,"file_tree":14,"skill_md_content":20,"skill_id":21,"skill_key":22},"openclaw/openclaw","openclaw",64359,"skills/weather",330752,"weather",13,"Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for any location. NOT for: historical weather data, severe weather alerts, or detailed meteorological analysis. No API key needed.",[15],{"name":16,"path":17,"size":18,"type":19},"SKILL.md","skills/weather/SKILL.md",2287,"file","---\nname: weather\ndescription: \"Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for any location. NOT for: historical weather data, severe weather alerts, or detailed meteorological analysis. No API key needed.\"\nhomepage: https://wttr.in/:help\nmetadata: { \"openclaw\": { \"emoji\": \"☔\", \"requires\": { \"bins\": [\"curl\"] } } }\n---\n\n# Weather Skill\n\nGet current weather conditions and forecasts.\n\n## When to Use\n\n✅ **USE this skill when:**\n\n- \"What's the weather?\"\n- \"Will it rain today/tomorrow?\"\n- \"Temperature in [city]\"\n- \"Weather forecast for the week\"\n- Travel planning weather checks\n\n## When NOT to Use\n\n❌ **DON'T use this skill when:**\n\n- Historical weather data → use weather archives/APIs\n- Climate analysis or trends → use specialized data sources\n- Hyper-local microclimate data → use local sensors\n- Severe weather alerts → check official NWS sources\n- Aviation/marine weather → use specialized services (METAR, etc.)\n\n## Location\n\nAlways include a city, region, or airport code in weather queries.\n\n## Commands\n\n### Current Weather\n\n```bash\n# One-line summary\ncurl \"wttr.in/London?format=3\"\n\n# Detailed current conditions\ncurl \"wttr.in/London?0\"\n\n# Specific city\ncurl \"wttr.in/New+York?format=3\"\n```\n\n### Forecasts\n\n```bash\n# 3-day forecast\ncurl \"wttr.in/London\"\n\n# Week forecast\ncurl \"wttr.in/London?format=v2\"\n\n# Specific day (0=today, 1=tomorrow, 2=day after)\ncurl \"wttr.in/London?1\"\n```\n\n### Format Options\n\n```bash\n# One-liner\ncurl \"wttr.in/London?format=%l:+%c+%t+%w\"\n\n# JSON output\ncurl \"wttr.in/London?format=j1\"\n\n# PNG image\ncurl \"wttr.in/London.png\"\n```\n\n### Format Codes\n\n- `%c` — Weather condition emoji\n- `%t` — Temperature\n- `%f` — \"Feels like\"\n- `%w` — Wind\n- `%h` — Humidity\n- `%p` — Precipitation\n- `%l` — Location\n\n## Quick Responses\n\n**\"What's the weather?\"**\n\n```bash\ncurl -s \"wttr.in/London?format=%l:+%c+%t+(feels+like+%f),+%w+wind,+%h+humidity\"\n```\n\n**\"Will it rain?\"**\n\n```bash\ncurl -s \"wttr.in/London?format=%l:+%c+%p\"\n```\n\n**\"Weekend forecast\"**\n\n```bash\ncurl \"wttr.in/London?format=v2\"\n```\n\n## Notes\n\n- No API key needed (uses wttr.in)\n- Rate limited; don't spam requests\n- Works for most global cities\n- Supports airport codes: `curl wttr.in/ORD`\n","65b98615-e97d-542d-b333-e6e86058d125","openclaw-openclaw-skills-weather",{"name":11,"description":13,"homepage":24,"metadata":25},"https://wttr.in/:help","{ \"openclaw\": { \"emoji\": \"☔\", \"requires\": { \"bins\": [\"curl\"] } } }","\u003Ch1>Weather Skill\u003C/h1>\n\u003Cp>Get current weather conditions and forecasts.\u003C/p>\n\u003Ch2>When to Use\u003C/h2>\n\u003Cp>✅ \u003Cstrong>USE this skill when:\u003C/strong>\u003C/p>\n\u003Cul>\n\u003Cli>&quot;What&#39;s the weather?&quot;\u003C/li>\n\u003Cli>&quot;Will it rain today/tomorrow?&quot;\u003C/li>\n\u003Cli>&quot;Temperature in [city]&quot;\u003C/li>\n\u003Cli>&quot;Weather forecast for the week&quot;\u003C/li>\n\u003Cli>Travel planning weather checks\u003C/li>\n\u003C/ul>\n\u003Ch2>When NOT to Use\u003C/h2>\n\u003Cp>❌ \u003Cstrong>DON&#39;T use this skill when:\u003C/strong>\u003C/p>\n\u003Cul>\n\u003Cli>Historical weather data → use weather archives/APIs\u003C/li>\n\u003Cli>Climate analysis or trends → use specialized data sources\u003C/li>\n\u003Cli>Hyper-local microclimate data → use local sensors\u003C/li>\n\u003Cli>Severe weather alerts → check official NWS sources\u003C/li>\n\u003Cli>Aviation/marine weather → use specialized services (METAR, etc.)\u003C/li>\n\u003C/ul>\n\u003Ch2>Location\u003C/h2>\n\u003Cp>Always include a city, region, or airport code in weather queries.\u003C/p>\n\u003Ch2>Commands\u003C/h2>\n\u003Ch3>Current Weather\u003C/h3>\n\u003Cdiv class=\"md-code-block\">\u003Cdiv class=\"md-code-lang\">bash\u003C/div>\u003Cpre>\u003Ccode class=\"hljs language-bash\">\u003Cspan class=\"hljs-comment\"># One-line summary\u003C/span>\ncurl \u003Cspan class=\"hljs-string\">&quot;wttr.in/London?format=3&quot;\u003C/span>\n\n\u003Cspan class=\"hljs-comment\"># Detailed current conditions\u003C/span>\ncurl \u003Cspan class=\"hljs-string\">&quot;wttr.in/London?0&quot;\u003C/span>\n\n\u003Cspan class=\"hljs-comment\"># Specific city\u003C/span>\ncurl \u003Cspan class=\"hljs-string\">&quot;wttr.in/New+York?format=3&quot;\u003C/span>\u003C/code>\u003C/pre>\u003C/div>\u003Ch3>Forecasts\u003C/h3>\n\u003Cdiv class=\"md-code-block\">\u003Cdiv class=\"md-code-lang\">bash\u003C/div>\u003Cpre>\u003Ccode class=\"hljs language-bash\">\u003Cspan class=\"hljs-comment\"># 3-day forecast\u003C/span>\ncurl \u003Cspan class=\"hljs-string\">&quot;wttr.in/London&quot;\u003C/span>\n\n\u003Cspan class=\"hljs-comment\"># Week forecast\u003C/span>\ncurl \u003Cspan class=\"hljs-string\">&quot;wttr.in/London?format=v2&quot;\u003C/span>\n\n\u003Cspan class=\"hljs-comment\"># Specific day (0=today, 1=tomorrow, 2=day after)\u003C/span>\ncurl \u003Cspan class=\"hljs-string\">&quot;wttr.in/London?1&quot;\u003C/span>\u003C/code>\u003C/pre>\u003C/div>\u003Ch3>Format Options\u003C/h3>\n\u003Cdiv class=\"md-code-block\">\u003Cdiv class=\"md-code-lang\">bash\u003C/div>\u003Cpre>\u003Ccode class=\"hljs language-bash\">\u003Cspan class=\"hljs-comment\"># One-liner\u003C/span>\ncurl \u003Cspan class=\"hljs-string\">&quot;wttr.in/London?format=%l:+%c+%t+%w&quot;\u003C/span>\n\n\u003Cspan class=\"hljs-comment\"># JSON output\u003C/span>\ncurl \u003Cspan class=\"hljs-string\">&quot;wttr.in/London?format=j1&quot;\u003C/span>\n\n\u003Cspan class=\"hljs-comment\"># PNG image\u003C/span>\ncurl \u003Cspan class=\"hljs-string\">&quot;wttr.in/London.png&quot;\u003C/span>\u003C/code>\u003C/pre>\u003C/div>\u003Ch3>Format Codes\u003C/h3>\n\u003Cul>\n\u003Cli>\u003Ccode>%c\u003C/code> — Weather condition emoji\u003C/li>\n\u003Cli>\u003Ccode>%t\u003C/code> — Temperature\u003C/li>\n\u003Cli>\u003Ccode>%f\u003C/code> — &quot;Feels like&quot;\u003C/li>\n\u003Cli>\u003Ccode>%w\u003C/code> — Wind\u003C/li>\n\u003Cli>\u003Ccode>%h\u003C/code> — Humidity\u003C/li>\n\u003Cli>\u003Ccode>%p\u003C/code> — Precipitation\u003C/li>\n\u003Cli>\u003Ccode>%l\u003C/code> — Location\u003C/li>\n\u003C/ul>\n\u003Ch2>Quick Responses\u003C/h2>\n\u003Cp>\u003Cstrong>&quot;What&#39;s the weather?&quot;\u003C/strong>\u003C/p>\n\u003Cdiv class=\"md-code-block\">\u003Cdiv class=\"md-code-lang\">bash\u003C/div>\u003Cpre>\u003Ccode class=\"hljs language-bash\">curl -s \u003Cspan class=\"hljs-string\">&quot;wttr.in/London?format=%l:+%c+%t+(feels+like+%f),+%w+wind,+%h+humidity&quot;\u003C/span>\u003C/code>\u003C/pre>\u003C/div>\u003Cp>\u003Cstrong>&quot;Will it rain?&quot;\u003C/strong>\u003C/p>\n\u003Cdiv class=\"md-code-block\">\u003Cdiv class=\"md-code-lang\">bash\u003C/div>\u003Cpre>\u003Ccode class=\"hljs language-bash\">curl -s \u003Cspan class=\"hljs-string\">&quot;wttr.in/London?format=%l:+%c+%p&quot;\u003C/span>\u003C/code>\u003C/pre>\u003C/div>\u003Cp>\u003Cstrong>&quot;Weekend forecast&quot;\u003C/strong>\u003C/p>\n\u003Cdiv class=\"md-code-block\">\u003Cdiv class=\"md-code-lang\">bash\u003C/div>\u003Cpre>\u003Ccode class=\"hljs language-bash\">curl \u003Cspan class=\"hljs-string\">&quot;wttr.in/London?format=v2&quot;\u003C/span>\u003C/code>\u003C/pre>\u003C/div>\u003Ch2>Notes\u003C/h2>\n\u003Cul>\n\u003Cli>No API key needed (uses wttr.in)\u003C/li>\n\u003Cli>Rate limited; don&#39;t spam requests\u003C/li>\n\u003Cli>Works for most global cities\u003C/li>\n\u003Cli>Supports airport codes: \u003Ccode>curl wttr.in/ORD\u003C/code>\u003C/li>\n\u003C/ul>\n"]