원클릭으로
open-meteo-weather-forecast
Resolve a place and fetch global forecast and air-quality evidence through governed, keyless Open-Meteo HTTP calls.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Resolve a place and fetch global forecast and air-quality evidence through governed, keyless Open-Meteo HTTP calls.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Governed runtime for agent skills: discover and install portable skills, run bounded skill graphs with explicit authority, and inspect signed receipts for what happened.
Audit a sealed runx receipt for governance, comparing the authority a run exercised against what it was granted, and flag over-reach, ungated mutation, unrecorded refusals, or exposed secret material.
Verify the receipt ids behind a normalized authority-usage summary, compare that evidence with granted scopes, and propose the narrowest grant the evidence supports.
Answer a cross-run audit question against the receipt ledger, returning matched receipts and a chain-verification result.
Read durable reflect projections, group repeated signals by skill, and emit validated handoffs to skill-lab improve when the evidence clears configured floors.
Review receipts and harness failures to propose bounded skill improvements.
| name | open-meteo-weather-forecast |
| description | Resolve a place and fetch global forecast and air-quality evidence through governed, keyless Open-Meteo HTTP calls. |
| runx | {"category":"data"} |
Fetch global place, forecast, and air-quality evidence through runx's governed
HTTP front. The skill never performs an ad-hoc fetch. Each stage is a bounded,
read-only HTTP runner whose endpoint, inputs, status, authority scope, and
output packet are recorded in the sealed receipt. Open-Meteo requires no API key
and covers the whole globe, so this is the worldwide counterpart to the US-only
nws-weather-forecast provider.
locate with a city or place name.forecast runner with the selected coordinates.name (locate, required): city or place to resolve.count (locate, optional): maximum candidate results, default 5.latitude (forecast, required): decimal latitude.longitude (forecast, required): decimal longitude.forecast_days (forecast, optional): days requested, default 3.Two runners are exposed. The default main runner runs locate then
forecast. The air_quality runner runs locate then air_quality. Each
graph step produces a typed sealed packet:
locate produces Open-Meteo geocoding provider evidence.forecast produces Open-Meteo forecast provider evidence.air_quality produces Open-Meteo air-quality provider evidence (PM2.5, PM10,
carbon monoxide, nitrogen dioxide, sulphur dioxide, ozone, and the European
and US air-quality indices).Preserve provider metadata and receipt references when passing either packet to another skill. Do not convert provider evidence into high-stakes advice.
needs_input; do not silently choose a
similarly named location.needs_input.needs_more_evidence,
preserve the failure in the receipt, and retry only under the caller's retry
policy.needs_more_evidence.locate with name: Shanghai.forecast using the sealed latitude and longitude with
forecast_days: "3".Combined from two community contributions: the forecast skill (#63, @why123-boop) and the air-quality snapshot (#64, @yanziwei).