一键导入
weather-lookup
Get current weather information for any location
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Get current weather information for any location
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Perform mathematical calculations using various operations
A skill with unexpected fields in frontmatter for testing validation
This is from the lowercase skill.md file
A skill with lowercase skill.md filename for testing
Perform systematic code reviews following best practices and team standards
Compose and send professional emails with optional attachments and formatting
| name | weather-lookup |
| description | Get current weather information for any location |
| version | 1.0.0 |
| author | AgentSkills.NET Sample |
| tags | ["weather","information","location"] |
| allowed-tools | ["get_weather"] |
Get current weather information for cities and locations.
This skill enables you to retrieve weather information when users ask about weather conditions in specific locations.
When a user asks about the weather:
Extract the location from the user's request
Call the weather tool: Use get_weather with the location parameter
Format the response with:
User: "What's the weather in San Francisco?"
Action: Call get_weather("San Francisco")
Response: "In San Francisco, it's currently 65°F and partly cloudy."
User: "Tell me the weather in Paris, France"
Action: Call get_weather("Paris, France")
Response: "In Paris, France, it's currently 12°C (54°F) and overcast with light rain."
User: "What's the weather in New York and London?"
Action: Call get_weather("New York") then get_weather("London")
Response: "In New York, it's 72°F and sunny. In London, it's 16°C (61°F) and cloudy."
get_weather tool