— 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
✓ PassedNo 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 claimAbout
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
- Extract city name from user query
- Call the API with
scripts/query_weather.sh - Parse JSON response and format as human-readable text
- 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=metricunless 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.
- Author: agenthatch
- Source: agenthatch/agenthatch
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.