weather
Installation
SKILL.md
Weather
Use for current weather, rain/temperature checks, forecasts, and travel planning. Need a city, region, airport code, or coordinates.
Preferred: web_fetch
Use web_fetch first when the tool is available. Request JSON because wttr.in
returns browser-oriented HTML for many text formats when called with a browser-like
User-Agent.
await web_fetch({
url: "https://wttr.in/London?format=j2",
extractMode: "text",
maxChars: 12000,
});