weather

Fetches current weather and forecasts from wttr.in and Open-Meteo using curl.

1|Updated Aug 5, 2026
One-click install
npx skills add https://github.com/Solizardking/Solana-Robotics-Kit --skill weather-solizardking
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: weather
Source: https://github.com/Solizardking/Solana-Robotics-Kit/tree/main/eliza/packages/skills/skills/weather
Command: npx skills add https://github.com/Solizardking/Solana-Robotics-Kit --skill weather-solizardking

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Getting quick weather information usually requires signing up for API keys or navigating weather websites. This Skill retrieves current conditions and forecasts for any city or location using free services with no API key required. ## Core Features & Use Cases - Current Conditions: Fetch temperature, humidity, wind, and weather condition for any city with a single curl command to wttr.in. - Structured JSON Data: Query the Open-Meteo API for programmatic weather data including temperature, windspeed, and weather codes. - Flexible Output Formats: Use wttr.in format codes for compact one-liners, full forecasts, or PNG images of weather reports. - Use Case: Ask for the weather in Tokyo and receive an instant summary like "Tokyo: ☀️ +22°C 45% ↗10km/h" without any API key setup. ## Quick Start Ask the assistant what the current weather and forecast is for your city, and it will fetch the data using curl.

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 command line without an API key?

Use curl with wttr.in, for example: curl -s "wttr.in/London?format=3". This returns a compact summary like "London: ⛅️ +8°C" with no registration or API key required.

What free weather APIs work without an API key?

wttr.in provides formatted weather text and forecasts via simple curl requests, and Open-Meteo offers a free JSON API at api.open-meteo.com. Both require no signup or authentication.

How do I get weather data as JSON for a city?

Use the Open-Meteo API with latitude and longitude coordinates, for example: curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12&current_weather=true". It returns JSON with temperature, windspeed, and weathercode.

Does wttr.in support cities with spaces in their names?

Yes, URL-encode spaces using plus signs, such as wttr.in/New+York. It also supports airport codes like wttr.in/JFK and unit selection with ?m for metric or ?u for USCS.

What are the limitations of free weather services like wttr.in?

Free services may have rate limits and less granular data than paid APIs. Open-Meteo requires you to know coordinates for the location, and wttr.in output is text-oriented rather than structured data.