Track flight status, delays, and search routes. Uses FlightAware data.
Scanned 2/10/2026
Install to Claude Code
npx -y skills add sundial-org/awesome-openclaw-skills --skill flights --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Flights?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/sundial-org-flights)More formats (shields.io, HTML) on the badges page.
---
name: flights
description: Track flight status, delays, and search routes. Uses FlightAware data.
homepage: https://flightaware.com
metadata: {"clawdis":{"emoji":"✈️","requires":{"bins":[],"env":[]}}}
---
# Flights Skill
Track flight status, search routes, and monitor delays using FlightAware data.
## Quick Commands
```bash
cd skills/flights
# Search flights by route
uv run python scripts/flights.py search PVD ORF --airline MX
# Get specific flight status
uv run python scripts/flights.py status MXY704
```
## Usage Examples
**Search for Breeze flights PVD → ORF:**
```bash
flights.py search PVD ORF --airline MX
```
**Check specific flight:**
```bash
flights.py status AA100
flights.py status MXY704 --date 2026-01-08
```
## Output Format
```json
{
"flight": "MXY704",
"airline": "Breeze Airways",
"origin": "PVD",
"destination": "ORF",
"departure": "Thu 05:04PM EST",
"arrival": "06:41PM EST",
"status": "Scheduled / Delayed",
"aircraft": "BCS3"
}
```
## Status Values
- `Scheduled` - Flight on time
- `Scheduled / Delayed` - Delay expected
- `En Route / On Time` - In the air, on time
- `En Route / Delayed` - In the air, running late
- `Arrived / Gate Arrival` - Landed and at gate
- `Cancelled` - Flight cancelled
## Airline Codes
| Code | Airline |
|------|---------|
| MX/MXY | Breeze Airways |
| AA | American |
| DL | Delta |
| UA | United |
| WN | Southwest |
| B6 | JetBlue |
## Optional: AviationStack API
For more detailed data, set `AVIATIONSTACK_API_KEY` (free tier available at aviationstack.com).
## Dependencies
```bash
cd skills/flights && uv sync
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!