Find active storm/precip weather areas, pick nearby airports by country, and report airports currently in MVFR, IFR, or LIFR using AviationWeather data and METAR flight categories. Use when a pilot asks where IMC is currently being reported around significant weather.
Identify IFR-focused weather areas and return airports currently reporting IMC-like categories (MVFR/IFR/LIFR).
Run with default North America scope (includes CONUS, AK, HI):
/home/dc/.openclaw/workspace/skills/findimc/scripts/find_imc.sh
Increase scan depth:
/home/dc/.openclaw/workspace/skills/findimc/scripts/find_imc.sh --hours 6 --max-areas 8 --airports-per-area 6
Use IFR-focused G-AIRMET source:
/home/dc/.openclaw/workspace/skills/findimc/scripts/find_imc.sh --source gairmet --forecast-hour 0
Set explicit search extent:
/home/dc/.openclaw/workspace/skills/findimc/scripts/find_imc.sh --search-bbox 18,-170,72,-52
⚠️ Exec policy constraints — The gateway runs in
security=allowlistmode. To avoid approval prompts:
- Always use the full absolute path shown above — never
~or{baseDir}.- Never append shell redirections (
2>/dev/null,>/tmp/out), pipes (| jq), or chaining (&& echo done). Redirections and chaining cause the allowlist to reject the command.- Pass all options as flags to the script itself. Stderr is already handled internally.
aviation_weather.sh, then report all checked airports with category and highlight MVFR, IFR, or LIFR.--hours <N>: look-back hours for weather-area scan (default 4)--source <gairmet|sigmet|both>: choose weather-area source (default both)--forecast-hour <N>: G-AIRMET forecast hour (default 0)--search-bbox <lat0,lon0,lat1,lon1>: region to scan (default 18,-170,72,-52)--countries <C1,C2,...>: airport country filter using ISO alpha-2 codes (default US)--max-areas <N>: max weather areas to evaluate (default 5)--airports-per-area <N>: airport sample size for each area (default 5)--metar-hours <N>: METAR look-back hours (default 2)--json: emit structured JSON output--debug: include full METAR JSON records for checked airports--debug-airport <ICAO>: only print debug METAR JSON for one airport code--source both to blend with SIGMET/AIRMET coverage.--countries (default US) in station metadata.VFR/MVFR/IFR/LIFR) comes directly from METAR fltCat in AviationWeather API JSON.fltCat is missing, category is derived from METAR visibility and ceiling fallback logic.