weather

Fetch current weather and short-term forecasts via wttr.in.

30|5|Updated Jul 25, 2025
One-click install
npx skills add https://github.com/phuetz/code-buddy --skill weather-phuetz
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: weather
Source: https://github.com/phuetz/code-buddy/tree/main/.codebuddy/skills/bundled/weather
Command: npx skills add https://github.com/phuetz/code-buddy --skill weather-phuetz

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides quick access to weather data directly from the terminal, eliminating the need to browse websites or apps for basic conditions and forecasts.

Core Features & Use Cases

  • Current weather: Retrieve on-demand conditions for a location using wttr.in.
  • Forecasts: Access short-term forecasts without API keys.
  • No setup required: Works in any environment with internet access using a basic HTTP client; can fall back to Open-Meteo if wttr.in is unavailable.

Quick Start

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

Frequently Asked Questions about weather

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get current weather from the terminal using curl?

Get current weather from the terminal by running a curl command against wttr.in. You can retrieve on-demand conditions for a specific city without needing an API key, such as curl -s "wttr.in/Paris?format=3".

Can I fetch a weather forecast without an API key?

Yes, you can fetch short-term weather forecasts without an API key. This functionality uses wttr.in for data retrieval and automatically falls back to Open-Meteo if wttr.in is unavailable.

What is the best way to check weather conditions in an automated script?

The best way to check weather conditions in an automated script is using a basic HTTP client like curl to query wttr.in. It requires only internet access and provides city-level current conditions suitable for terminal workflows.

Does wttr.in have any limitations for retrieving weather data?

wttr.in can experience downtime, but this approach includes an Open-Meteo fallback to ensure data retrieval. It is designed for basic city-level current conditions and short-term forecasts rather than comprehensive meteorological analysis.

Do I need to install any dependencies to check the weather from the command line?

No dependencies are required to check the weather from the command line beyond a basic HTTP client like curl. The workflow operates in any environment with internet access and requires no setup or API keys.

Can I get weather data for a specific city using wttr.in?

Yes, wttr.in supports city-level current conditions and short-term forecasts. You simply include the city name in your curl request to retrieve the specific weather data for that location.