From sundial-org-awesome-openclaw-skills-4
Tracks flight status, delays, and searches routes using FlightAware data via Python CLI scripts. Outputs JSON for status checks and route searches.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Track flight status, search routes, and monitor delays using FlightAware data.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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