โ† All skills
Tencent SkillHub ยท Developer Tools

Flight Search

Search Google Flights for prices, times, and airlines. No API key required.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Search Google Flights for prices, times, and airlines. No API key required.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
AGENTS.md, CHANGELOG.md, README.md, SKILL.md, flight_search/__init__.py, flight_search/cli.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.7

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Flight Search

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

Quick Start

# 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

# 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: { "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 GitHub

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs2 Scripts
  • SKILL.md Primary doc
  • AGENTS.md Docs
  • CHANGELOG.md Docs
  • README.md Docs
  • flight_search/__init__.py Scripts
  • flight_search/cli.py Scripts