skills$openclaw/flights
dbhurley3.4k

by dbhurley

flights – OpenClaw Skill

flights is an OpenClaw Skills integration for coding workflows. Track flight status, delays, and search routes. Uses FlightAware data.

3.4k stars66 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameflights
descriptionTrack flight status, delays, and search routes. Uses FlightAware data. OpenClaw Skills integration.
ownerdbhurley
repositorydbhurley/flights
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @dbhurley/flights
last updatedFeb 7, 2026

Maintainer

dbhurley

dbhurley

Maintains flights in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
flights.py
9.1 KB
_meta.json
275 B
pyproject.toml
247 B
SKILL.md
1.6 KB
SKILL.md

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

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:

flights.py search PVD ORF --airline MX

Check specific flight:

flights.py status AA100
flights.py status MXY704 --date 2026-01-08

Output Format

{
  "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

CodeAirline
MX/MXYBreeze Airways
AAAmerican
DLDelta
UAUnited
WNSouthwest
B6JetBlue

Optional: AviationStack API

For more detailed data, set AVIATIONSTACK_API_KEY (free tier available at aviationstack.com).

Dependencies

cd skills/flights && uv sync
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

```bash cd skills/flights && uv sync ```

FAQ

How do I install flights?

Run openclaw add @dbhurley/flights in your terminal. This installs flights into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/dbhurley/flights. Review commits and README documentation before installing.