원클릭으로
weather
Retrieve real-time weather data from public weather services without requiring API authentication.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Retrieve real-time weather data from public weather services without requiring API authentication.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | weather |
| description | Retrieve real-time weather data from public weather services without requiring API authentication. |
This capability enables fetching current weather conditions and forecasts through publicly accessible weather endpoints.
When handling weather-related inquiries, this skill offers multiple query approaches to obtain meteorological information.
A straightforward approach using console commands:
curl -s "wttr.in/Beijing?format=3"
For detailed output with humidity and wind information:
curl -s "wttr.in/Shanghai?format=%l:+%c+%t+%h+%w"
For programmatic processing, use the JSON-based endpoint:
curl -s "https://api.open-meteo.com/v1/forecast?latitude=31.2&longitude=121.5¤t_weather=true"
This returns structured weather metrics including temperature, wind speed, and weather condition codes.