weather-fetcher

Fetch real-time weather data for global cities via OpenWeatherMap.

12|1|Updated Jan 1, 2026
One-click install
npx skills add https://github.com/huangusaki/Aurora --skill weather-fetcher
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: weather-fetcher
Source: https://github.com/huangusaki/Aurora/tree/main/skills/weather_fetcher
Command: npx skills add https://github.com/huangusaki/Aurora --skill weather-fetcher

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

获取全球任何位置的实时天气信息。当用户询问“我想知道xx的天气”或“现在的温度是多少”时使用。

Core Features & Use Cases

  • 实时天气查询:为全球任意城市获取天气数据
  • 支持自定义参数:city、api_key、--units、--lang 等输入
  • 稳定、可编程输出:返回 JSON 格式的天气信息,便于下游处理

Quick Start

Ask the Weather Fetcher to fetch the current weather for a city by providing the city name and an API key.

Frequently Asked Questions about weather-fetcher

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

FAQPage Schema
How do I fetch real-time weather data for a city using Python?

To fetch real-time weather data, you need to provide a city name and an OpenWeatherMap API key to the Python script. The script constructs a request using these parameters and returns a JSON payload containing the current weather conditions.

What do I need to get current weather forecasts through OpenWeatherMap?

You need an active OpenWeatherMap api_key and the target city name to retrieve current weather forecasts. Optional parameters like units and language can be included to customize the JSON output returned by the Python script.

Can I customize the weather API request to return specific units and languages?

Yes, the weather API request supports optional units and lang parameters. By providing these inputs alongside the city name and api_key, the Python script returns localized real-time weather data formatted as JSON.

How does the weather fetcher handle programmatic integration for downstream processing?

The weather fetcher handles programmatic integration by returning real-time weather data in a structured JSON format. This stable output allows downstream systems to easily parse and process the temperature and forecast information retrieved by the Python script.

Is an API key required to retrieve global weather conditions with this Python script?

Yes, a valid OpenWeatherMap api_key is a required parameter to retrieve global weather conditions. The Python script needs this key along with the city name to authenticate the request and return the real-time weather JSON payload.