AgentStack
SKILL verified MIT Self-run

Weather Reporter

skill-agenthatch-agenthatch-weather-reporter · by agenthatch

Query current weather and forecast data from OpenWeatherMap API. Use when the user asks about weather, temperature, forecast, humidity, wind, or precipitation for any location.

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add skill-agenthatch-agenthatch-weather-reporter

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Weather Reporter? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Weather Reporter

Query weather data from OpenWeatherMap API.

Quick Start

curl -s "https://api.openweathermap.org/data/2.5/weather?q=${CITY}&appid=${OPENWEATHER_API_KEY}&units=metric" | jq .

Workflow

  1. Extract city name from user query
  2. Call the API with scripts/query_weather.sh
  3. Parse JSON response and format as human-readable text
  4. For forecasts, use scripts/forecast_weather.sh

Output Format

Weather in {city}, {country}:
  Temperature: {temp}°C (feels like {feels_like}°C)
  Condition: {description}
  Humidity: {humidity}%
  Wind: {wind_speed} m/s

Gotchas

  • City names with spaces must be URL-encoded (e.g., "New York" → "New%20York")
  • The free API tier limits to 60 calls/min
  • Always specify units=metric unless user explicitly requests imperial

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.