aviation-weather

Fetch aviation weather data (METAR, TAF, PIREPs, SIGMETs) from NOAA. Use when user asks about airport weather, flight conditions, aviation forecasts, pilot reports, or weather briefings for flying. Supports any ICAO airport code worldwide.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "aviation-weather" with this command: npx skills add probichaux/clawdskills/probichaux-clawdskills-aviation-weather

Aviation Weather

CLI tool for aviation weather data from NOAA Aviation Weather Center. No API key required.

Quick Start

# Current conditions
avwx metar KHSV

# Forecast
avwx taf KJFK

# Full briefing
avwx brief KHSV,KMDQ

Commands

METAR (Current Conditions)

avwx metar KHSV              # Single station
avwx metar KHSV,KBHM,KMSL    # Multiple stations
avwx metar KHSV --hours 3    # Last 3 hours
avwx metar KHSV --raw        # Raw METAR text
avwx metar KHSV --json       # JSON output

Output includes: flight category (VFR/MVFR/IFR/LIFR), wind, visibility, clouds, temperature, altimeter.

TAF (Forecast)

avwx taf KJFK                # Terminal forecast
avwx taf KHSV,KBHM           # Multiple stations
avwx taf KJFK --raw          # Raw TAF text

Shows forecast periods with wind, visibility, and cloud conditions.

PIREP (Pilot Reports)

avwx pirep                   # Recent PIREPs
avwx pirep --hours 4         # Last 4 hours
avwx pirep --limit 50        # More results

Includes turbulence, icing, and weather observations from pilots.

SIGMET/AIRMET

avwx sigmet                  # All active
avwx sigmet --hazard TURB    # Turbulence only
avwx sigmet --hazard ICE     # Icing only
avwx sigmet --hazard CONVECTIVE  # Thunderstorms

Full Briefing

avwx brief KHSV              # Complete weather briefing
avwx brief KHSV,KMDQ,KBHM    # Multi-airport briefing

Combines METAR, TAF, and active SIGMETs in one report.

Flight Categories

CategoryCeilingVisibilityColor
VFR>3000ft>5 SMGreen
MVFR1000-3000ft3-5 SMBlue
IFR500-1000ft1-3 SMRed
LIFR<500ft<1 SMMagenta

Common ICAO Codes

Use 4-letter ICAO codes (not FAA LIDs):

  • US airports: Add K prefix (HSV → KHSV, LAX → KLAX)
  • Alaska: PA prefix (PANC = Anchorage)
  • Hawaii: PH prefix (PHNL = Honolulu)
  • International: varies (EGLL = London Heathrow, LFPG = Paris CDG)

Data Source

All data from NOAA Aviation Weather Center (aviationweather.gov). Updated every minute for METARs, every 6 hours for TAFs.

Installation

No dependencies required (uses Python stdlib only).

chmod +x scripts/avwx.py
# Optional: symlink to PATH
ln -s $(pwd)/scripts/avwx.py /usr/local/bin/avwx

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

m365-mail

No summary provided by upstream source.

Repository SourceNeeds Review
General

m365-calendar

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated