General
235 installs
weather
by steipete/clawdis
Current weather and forecasts with web_fetch, falling back to wttr.in curl for locations, rain, temperature, travel planning.
Skill content
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,
});