Agent skill
flights
Track flight status, delays, and search routes. Uses FlightAware data.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/flights
Metadata
Additional technical details for this skill
- clawdis
-
{ "emoji": "\u2708\ufe0f", "requires": { "env": [], "bins": [] } }
SKILL.md
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 timeScheduled / Delayed- Delay expectedEn Route / On Time- In the air, on timeEn Route / Delayed- In the air, running lateArrived / Gate Arrival- Landed and at gateCancelled- 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
cd skills/flights && uv sync
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?