원클릭으로
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