AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Weather

skill-claude-world-claude-agent-weather · by claude-world

>

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

Install

$ agentstack add skill-claude-world-claude-agent-weather

✓ 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-claude-world-claude-agent-weather)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Weather? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Weather

Get weather data using curl wttr.in (no install needed) and the Open-Meteo API (free, no key).

Prerequisites

No installation required. curl is available by default on macOS and Linux.

Optionally install jq for cleaner JSON parsing:

brew install jq

Commands

Quick current weather (compact):

curl -s "wttr.in/?format=3"

Full weather report (ASCII art):

curl -s "wttr.in/"

3-day forecast (JSON, for structured output):

curl -s "wttr.in/?format=j1" | jq '.weather[0:3]'

Current conditions only:

curl -s "wttr.in/?format=%C+%t+feels+like+%f+humidity+%h"

Open-Meteo for precise hourly forecast (by coordinates):

curl -s "https://api.open-meteo.com/v1/forecast?latitude=&longitude=&current_weather=true&hourly=temperature_2m,precipitation_probability&forecast_days=3"

Usage Examples

Quick weather check:

curl -s "wttr.in/Tokyo?format=3"
# → Tokyo: ⛅️  +18°C

3-day forecast for Taipei:

curl -s "wttr.in/Taipei?format=j1" | jq '.weather[] | {date: .date, max: .maxtempC, min: .mintempC, description: .hourly[4].weatherDesc[0].value}'

Rain probability today (Open-Meteo):

curl -s "https://api.open-meteo.com/v1/forecast?latitude=25.04&longitude=121.53&hourly=precipitation_probability&forecast_days=1" | jq '.hourly.precipitation_probability'

Current conditions formatted:

curl -s "wttr.in/London?format=%l:+%C,+%t+(feels+%f),+humidity+%h,+wind+%w"

Rules

  • Always check if curl is available: which curl (it almost always is)
  • No API keys, no accounts — these are free public APIs
  • URL-encode city names with spaces: replace spaces with + (e.g., New+York)
  • Default to wttr.in for simplicity; use Open-Meteo when user needs hourly breakdown or precise rain probability
  • If the user gives a city name, use it directly with wttr.in; if they give a landmark or neighborhood, geocode first via wttr.in (it handles most names)
  • Format output in plain text — no raw JSON dumps to the user
  • Keep responses concise: current temp, conditions, and forecast summary in 3-5 lines
  • Include "feels like" temperature and precipitation chance when relevant

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.