Aaron Levin

Flight Search

5 versions
Aaron Levin·Feb 6, 2026

Summary

TL;DR: Search Google Flights for prices, times, and airlines directly from Claude. No API key needed, just ask about any route.

Flight Search is an OpenClaw skill that search Google Flights for prices, times, and airlines. No API key required.

Created by Aaron Levin, this skill has been downloaded 4k+ times on ClawHub. Install it with one command and your AI agent gains these capabilities right away. Browse all lifestyle skills for more.

Use cases

  • Comparing round-trip prices from NYC to London across three different weekends
  • Finding the cheapest one-way flight to Tokyo with flexible departure dates
  • Checking layover times and durations for connecting flights to smaller airports
  • Scanning multiple airlines for direct flights on a specific date and route

Installation

Run this command to install the skill on your OpenClaw agent:

Install with OpenClaw
npx clawhub@latest install flight-search
Downloads
4k
Active installs
32
Stars
4
Updated
Feb 6, 2026

Security scan

Security scan
VirusTotalBenign
View report
OpenClawBenignhigh confidence

The skill's code, declared dependencies, and runtime instructions are coherent with a Google Flights scraper CLI; nothing requested or installed appears disproportionate to that purpose.

Purpose & Capability
Instruction Scope
Install Mechanism
Credentials
Persistence & Privilege

SKILL.md

SKILL.md
---
name: flight-search
description: Search Google Flights for prices, times, and airlines. No API key required.
homepage: https://github.com/Olafs-World/flight-search
metadata:
  {
    "openclaw":
      {
        "emoji": "✈️",
        "requires": { "bins": ["uvx"] },
        "install":
          [
            {
              "id": "uv",
              "kind": "pip",
              "package": "uv",
              "bins": ["uvx"],
              "label": "Install uv (for uvx)",
            },
          ],
      },
  }
---

# Flight Search

Search Google Flights from the command line. Get prices, times, and airlines - no API key needed.

Built on [fast-flights](https://github.com/AWeirdDev/flights).

## Quick Start

```bash
# one-off search (no install needed)
uvx flight-search DEN LAX --date 2026-03-01

# or install globally
uv tool install flight-search
flight-search JFK LHR --date 2026-06-15 --return 2026-06-22
```

## Options

```
positional arguments:
  origin                Origin airport code (e.g., DEN, LAX, JFK)
  destination           Destination airport code

options:
  --date, -d            Departure date (YYYY-MM-DD) [required]
  --return, -r          Return date for round trips (YYYY-MM-DD)
  --adults, -a          Number of adults (default: 1)
  --children, -c        Number of children (default: 0)
  --class, -C           Seat class: economy, premium-economy, business, first
  --limit, -l           Max results (default: 10)
  --output, -o          Output format: text or json (default: text)
```

## Examples

```bash
# One-way flight
flight-search DEN LAX --date 2026-03-01

# Round trip with passengers
flight-search JFK LHR --date 2026-06-15 --return 2026-06-22 --adults 2

# Business class
flight-search SFO NRT --date 2026-04-01 --class business

# JSON output for parsing
flight-search ORD CDG --date 2026-05-01 --output json
```

## Example Output

```
✈️  DEN → LAX
   One way · 2026-03-01
   Prices are currently: typical

──────────────────────────────────────────────────
   Frontier ⭐ BEST
   🕐 10:43 PM → 12:30 AM +1
   ⏱️  2 hr 47 min
   ✅ Nonstop
   💰 $84

──────────────────────────────────────────────────
   United ⭐ BEST
   🕐 5:33 PM → 7:13 PM
   ⏱️  2 hr 40 min
   ✅ Nonstop
   💰 $139
```

## JSON Output

Returns structured data:

```json
{
  "origin": "DEN",
  "destination": "LAX",
  "date": "2026-03-01",
  "current_price": "typical",
  "flights": [
    {
      "airline": "Frontier",
      "departure_time": "10:43 PM",
      "arrival_time": "12:30 AM",
      "duration": "2 hr 47 min",
      "stops": 0,
      "price": 84,
      "is_best": true
    }
  ]
}
```

## Links

- [PyPI](https://pypi.org/project/flight-search/)
- [GitHub](https://github.com/Olafs-World/flight-search)

Version history

v0.1.7Latest
Feb 6, 2026

Release 0.1.7

v0.1.6
Feb 6, 2026

Release 0.1.6

v0.1.4
Feb 6, 2026

Release 0.1.4

v0.1.3
Feb 6, 2026

Release 0.1.3

v1.0.0
Feb 6, 2026

Initial release - search Google Flights from CLI

Frequently asked questions

It only searches. You'll get prices, times, and airline details, but you'll need to book through the airline or a booking site directly.

Installation method

Send this prompt to your agent to install the skill

npx clawhub@latest install flight-search
Download ZIP

Skill info

Versionv0.1.7
AuthorAaron Levin
UpdatedFeb 6, 2026

Files

SKILL.md2.9 KB

Run OpenClaw in the cloud

Deploy in seconds. Skills pre-installed.

See plans

Skill data sourced from ClawHub