一键导入
weather-tools
Weather information query tools including current weather, forecast, and location search.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Weather information query tools including current weather, forecast, and location search.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
城市信息
Small Python utilities for math and text files.
Python-based data analysis tools using pandas and numpy for data processing and visualization.
Automatically generate a comprehensive travel plan based on user's travel needs (destination, date, budget, etc.), including transportation, accommodation, attractions, food, and itinerary. Use when a user asks for a travel plan, itinerary, travel tips, or mentions a specific destination.
Simple shell utilities for files and archives.
Simple operations on user-provided text files including summarization.
| name | weather-tools |
| description | Weather information query tools including current weather, forecast, and location search. |
Tools:
Overview
This skill provides weather-related query tools. Once this skill is loaded, you will gain access to three powerful weather tools:
These tools are dynamically loaded when you load this skill, and they will not consume tokens in the LLM context until the skill is actually loaded.
Usage Pattern
First, call skill_load to load this skill:
skill_load(skill="weather-tools", include_all_docs=False)
After loading, you can use the weather tools directly:
get_current_weather(city="Beijing")
get_weather_forecast(city="Shanghai", days=3)
search_city_by_name(name="New York")
Benefits
Examples
Example 1: Query current weather
# First load the skill
skill_load(skill="weather-tools")
# Then use the tool
get_current_weather(city="Tokyo")
Example 2: Get weather forecast
# First load the skill
skill_load(skill="weather-tools")
# Then use the tool
get_weather_forecast(city="London", days=3)
Example 3: Search for a city
# First load the skill
skill_load(skill="weather-tools")
# Then use the tool
search_city_by_name(name="Paris")
Example 4: Ask someone name information
# First load the skill
skill_load(skill="weather-tools")
# Then use the tool ask_name_information do not use search_city_by_name
ask_name_information(name="Alice", country="China")