Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Search flights via Google Flights. Find nonstop/connecting flights, filter by time and cabin class, get booking links. Supports city names (NYC, London, Toky...
Search flights via Google Flights. Find nonstop/connecting flights, filter by time and cabin class, get booking links. Supports city names (NYC, London, Toky...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Search real-time flight schedules and prices via Google Flights data.
Python 3.9+ uv (recommended) β install with curl -LsSf https://astral.sh/uv/install.sh | sh The flights-search CLI is bundled at scripts/flights-search in this skill directory. The fast-flights library is installed automatically on first run via uvx (cached after that). Or install manually: pip install fast-flights
uvx --with fast-flights python3 scripts/flights-search <origin> <destination> <date> [options] Origin and destination accept IATA codes (JFK, LAX) or city names (NYC, London, Tokyo). City names automatically search all airports in that metro area.
# Search all NYC airports to LAX flights-search NYC LAX 2026-03-15 # Nonstop flights from NYC to Berlin flights-search NYC Berlin 2026-03-15 --nonstop # Evening departures only flights-search JFK LHR 2026-03-15 --after 17 --before 22 # Business class flights-search NYC London 2026-03-15 --class business # Multiple passengers with booking link flights-search SF Tokyo 2026-04-01 --passengers 2 --link
OptionDescription--nonstopNonstop flights only--all-stopsShow all flights regardless of stops--after HHDepart after hour (24h format)--before HHDepart before hour (24h format)--classCabin: economy, premium, business, first--passengers NNumber of travelers (default: 1)--linkPrint Google Flights URL
When you use a city name, the CLI searches all airports in that metro area: CityAirportsNYC / New YorkJFK, EWR, LGALA / Los AngelesLAX, BUR, LGB, ONT, SNASF / San FranciscoSFO, OAK, SJCChicagoORD, MDWDC / WashingtonDCA, IAD, BWILondonLHR, LGW, STN, LTN, LCYParisCDG, ORYTokyoNRT, HNDTorontoYYZ, YTZ 60+ metro areas supported. Use any IATA code directly for airports not in the list.
By default, the CLI shows only flights with the minimum stops available: If nonstops exist β shows only nonstops If no nonstops β shows only 1-stop flights Use --all-stops to see everything
Searching from NYC: JFK, EWR, LGA Route Depart Arrive Airline Price Duration ------------------------------------------------------------------------------------------------------------ EWRβLAX 6:00 AM on Sat, Mar 7 9:07 AM on Sat, Mar 7 United $289 6 hr 7 min EWRβLAX 12:00 PM on Sat, Mar 7 3:14 PM on Sat, Mar 7 United $289 6 hr 14 min JFKβLAX 8:00 AM on Sat, Mar 7 11:30 AM on Sat, Mar 7 Delta $304 5 hr 30 min 3 flight(s) found.
Date format: YYYY-MM-DD Airport codes: Standard IATA codes (JFK, LAX, LHR, etc.) Prices are in USD Times shown in local airport timezone No API key required β uses Google Flights data via reverse-engineered protobuf API Some routes may return price-only results (missing departure/arrival times) due to upstream parsing limitations
Uses Google Flights data via the fast-flights Python package.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.