weather is agent-read markdown (skill) from initializ/forge: Get current weather and forecasts.
Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.
What the file says
## Tool: weather_current
Get current weather for a location.
**Input:** location (string) - City name or coordinates
**Output:** Current temperature, conditions, humidity, and wind speed
```bash
curl -s "https://wttr.in/${location}?format=j1"
```
Relevant fields in the response: `current_condition[0].temp_C`, `current_condition[0].weatherDesc[0].value`, `current_condition[0].humidity`, `current_condition[0].windspeedKmph`.
## Tool: weather_forecast
Get weather forecast for a location.
**Input:** location (string), days (integer: 1-3)
**Output:** Daily forecast with high/low temperatures and conditions
```bash
curl -s "https://wttr.in/${location}?format=j1"
```
The `weather` array in the response contains up to 3 days of forecast (today + 2 days ahead). Each entry has `date`, `maxtempC`, `mintempC`, and `hourly[].weatherDesc[0].value`. wttr.in's free JSON endpoint caps at 3 days — for a longer forecast window, `open-meteo.com` would be needed instead.
Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.
GET https://markdownregistry.com/api/v1/artifacts/art_66ce3zvsvjnrji54
GET https://markdownregistry.com/api/v1/resolve?ref=initializ/forge/weather
GET https://markdownregistry.com/api/v1/blob/ff27aa094da2833260126da603c4f17b56359a0301de24b5db62fee6e02f6aff
Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.
initializ/forge · forge-skills/local/embedded/code-plan/SKILL.md · Turn a task description and repository into a structured implementation plan (files to create, files to modify, tests…
initializ/forge · forge-skills/local/embedded/codegen-html/SKILL.md · Scaffold and iterate on standalone Preact + HTM applications with zero build dependencies
iflytek/skillhub · builtin-skills/skills/weather/SKILL.md · Retrieve and summarize current weather and forecasts for locations, rain, temperature, and travel planning using an…
trpc-group/trpc-agent-go · openclaw/skills/weather/SKILL.md · Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or…