Track flight prices using Google Flights data. Search flights, find cheapest dates, filter by airline/time/duration/price, track routes over time, and get al...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install flightclaw或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install flightclaw⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/flightclaw/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: flightclaw description: Track flight prices using Google Flights data. Search flights, find cheapest dates, filter by airline/time/duration/price, track routes over time, and get alerts when prices drop. Also runs as an MCP server. Requires Python 3.10+ and the 'flights' and 'mcp' pip packages. Run setup.sh to install dependencies. ---
Track flight prices from Google Flights. Search routes, monitor prices over time, and get alerts when prices drop.
npx skills add jackculpan/flightclaw
Or manually:
bash skills/flightclaw/setup.sh
Find flights for a specific route and date. Supports multiple airports and date ranges.
python skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01
python skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01 --cabin BUSINESS
python skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01 --return-date 2025-07-08
python skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01 --stops NON_STOP --results 10
# Multiple airports (searches all combinations)
python skills/flightclaw/scripts/search-flights.py LHR,MAN JFK,EWR 2025-07-01
# Date range (searches each day)
python skills/flightclaw/scripts/search-flights.py LHR JFK 2025-07-01 --date-to 2025-07-05
# Both
python skills/flightclaw/scripts/search-flights.py LHR,MAN JFK,EWR 2025-07-01 --date-to 2025-07-03
Arguments:
origin - IATA airport code(s), comma-separated (e.g. LHR or LHR,MAN)destination - IATA airport code(s), comma-separated (e.g. JFK or JFK,EWR)date - Departure date (YYYY-MM-DD)--date-to - End of date range (YYYY-MM-DD). Searches each day from date to date-to inclusive.--return-date - Return date for round trips (YYYY-MM-DD)--cabin - ECONOMY (default), PREMIUM_ECONOMY, BUSINESS, FIRST--stops - ANY (default), NON_STOP, ONE_STOP, TWO_STOPS--results - Number of results (default: 5)Add a route to the price tracking list and record the current price. Supports multiple airports and date ranges (creates a separate tracking entry for each combination).
python skills/flightclaw/scripts/track-flight.py LHR JFK 2025-07-01
python skills/flightclaw/scripts/track-flight.py LHR JFK 2025-07-01 --target-price 400
python skills/flightclaw/scripts/track-flight.py LHR JFK 2025-07-01 --return-date 2025-07-08 --cabin BUSINESS
# Track multiple airports and dates
python skills/flightclaw/scripts/track-flight.py LHR,MAN JFK,EWR 2025-07-01 --date-to 2025-07-03 --target-price 400
Arguments:
--target-price - Alert when price drops below this amountCheck all tracked flights for price changes. Designed to run on a schedule (cron).
python skills/flightclaw/scripts/check-prices.py
python skills/flightclaw/scripts/check-prices.py --threshold 5
Arguments:
--threshold - Percentage drop to trigger alert (default: 10)Output: Reports price changes for tracked flights. Highlights drops and alerts when target prices are reached.
Show all flights being tracked with current vs original prices.
python skills/flightclaw/scripts/list-tracked.py
FlightClaw also runs as an MCP server with extended search capabilities:
pip install flights "mcp[cli]"
claude mcp add flightclaw -- python3 server.py
MCP tools: search_flights, search_dates, track_flight, check_prices, list_tracked, remove_tracked
Additional MCP filters: passengers (adults/children/infants), airline filter, price limit, max flight duration, departure/arrival time restrictions, layover duration, sort order, and cheapest-date calendar search.
Prices are returned in the user's local currency based on their IP location. The currency is auto-detected from the Google Flights API response and displayed with the correct symbol (e.g. $, £, ฿, €). Tracked flights store the currency code in tracked.json.
Price history is stored in skills/flightclaw/data/tracked.json and persists via R2 backup.
安装 FlightClaw 后,可以对 AI 说这些话来触发它
Help me get started with FlightClaw
Explains what FlightClaw does, walks through the setup, and runs a quick demo based on your current project
Use FlightClaw to track flight prices using Google Flights data
Invokes FlightClaw with the right parameters and returns the result directly in the conversation
What can I do with FlightClaw in my data & analytics workflow?
Lists the top use cases for FlightClaw, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/flightclaw/ 目录(个人级,所有项目可用),或 .claude/skills/flightclaw/(项目级)。重启 AI 客户端后,用 /flightclaw 主动调用,或让 AI 根据上下文自动发现并使用。
FlightClaw 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
FlightClaw 可免费安装使用。请查阅仓库了解许可证信息。
Track flight prices using Google Flights data. Search flights, find cheapest dates, filter by airline/time/duration/price, track routes over time, and get al...
FlightClaw 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using FlightClaw
Identifies repetitive steps in your workflow and sets up FlightClaw to handle them automatically