with one click
flights
Track flight status, delays, and search routes. Uses FlightAware data.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Track flight status, delays, and search routes. Uses FlightAware data.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.
Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store
Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creating social media content, analyzing brand voice, optimizing SEO, planning content calendars, or when user mentions content creation, brand voice, SEO optimization, social media marketing, or content strategy.
| name | flights |
| description | Track flight status, delays, and search routes. Uses FlightAware data. |
| homepage | https://flightaware.com |
| metadata | {"clawdis":{"emoji":"✈️","requires":{"bins":[],"env":[]}}} |
Track flight status, search routes, and monitor delays using FlightAware data.
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
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
{
"flight": "MXY704",
"airline": "Breeze Airways",
"origin": "PVD",
"destination": "ORF",
"departure": "Thu 05:04PM EST",
"arrival": "06:41PM EST",
"status": "Scheduled / Delayed",
"aircraft": "BCS3"
}
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| Code | Airline |
|---|---|
| MX/MXY | Breeze Airways |
| AA | American |
| DL | Delta |
| UA | United |
| WN | Southwest |
| B6 | JetBlue |
For more detailed data, set AVIATIONSTACK_API_KEY (free tier available at aviationstack.com).
cd skills/flights && uv sync