经 AI Skill Hub 精选评估,航班价格追踪器 获评「推荐使用」。这款AI工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
航班价格追踪器 是一款基于 TypeScript 开发的开源工具,专注于 flight-finder、flight-prices、flights 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
航班价格追踪器 是一款基于 TypeScript 开发的开源工具,专注于 flight-finder、flight-prices、flights 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:npm 全局安装 npm install -g flight-finder # 方式二:npx 直接运行(无需安装) npx flight-finder --help # 方式三:项目依赖安装 npm install flight-finder # 方式四:从源码运行 git clone https://github.com/affromero/flight-finder cd flight-finder npm install npm start
# 命令行使用
flight-finder --help
# 基本用法
flight-finder [options] <input>
# Node.js 代码中使用
const flight_finder = require('flight-finder');
const result = await flight_finder.run(options);
console.log(result);
# flight-finder 配置说明 # 查看配置选项 flight-finder --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export FLIGHT_FINDER_CONFIG="/path/to/config.yml"
<details> <summary>LLM Providers</summary>
Flight Finder needs an LLM for two things: parsing natural language queries and extracting price data from Google Flights pages.
| Provider | Auth | Cost | Notes |
|---|---|---|---|
| **Claude Code** | Auto-detected (host ~/.claude) | Free (Pro/Max plan) | Subscription CLI |
| **Codex CLI** | Auto-detected (host ~/.codex) | Free (ChatGPT Pro) | Subscription CLI |
| **Anthropic** | ANTHROPIC_API_KEY | Pay-per-token | Claude Haiku 4.5 (default) |
| **OpenAI** | OPENAI_API_KEY | Pay-per-token | GPT-4.1 Mini |
| **Google** | GOOGLE_AI_API_KEY | Pay-per-token | Gemini 2.5 Flash |
| **Ollama** | None (local) | Free | Select in admin UI |
| **llama.cpp** | None (local) | Free | Select in admin UI |
| **vLLM** | None (local) | Free | GPU-accelerated (port 8000) |
| **OpenAI + custom URL** | OPENAI_BASE_URL | Varies | OpenRouter or any OpenAI-compatible endpoint |
Three ways to use Flight Finder:
Picking a local model (Ollama, llama.cpp, vLLM):
The parse step needs a model that follows strict JSON instructions. Tiny models tend to ramble or refuse. Stick with current generation families that have reliable structured output. Qwen3 / Qwen3.5 currently have the most stable tool calling and JSON behaviour in the small model class; Gemma 3n / Gemma 4 are strong alternatives with native function calling on the laptop tier.
qwen3:0.6b (523MB) or qwen3.5:0.8b (1.0GB). JSON mode is forced server side, so even these can produce parseable output.qwen3:1.7b (1.4GB) or qwen3:4b (2.5GB, sweet spot if you have the RAM).gemma3n:e2b (5.6GB, 32K context) or gemma4:e2b (7.2GB, 128K context, newer).qwen3.5:9b (6.6GB, best JSON quality and speed balance), qwen3:8b (5.2GB), or gemma4:e4b (9.6GB, native function calling).Avoid models under 1B (TinyLlama, etc.) and older generations (Llama 3.x, Qwen 2.5). They tend to ramble even with JSON mode forcing valid syntax, because the field values still need to be semantically correct. For slow CPUs, bump EXTRACT_TIMEOUT_MS in .env if larger models keep timing out (default 90000). </details>
1. During install, say yes to "Set up ExpressVPN?" and paste your activation code -- or paste it later in Settings 2. The VPN sidecar starts automatically with Flight Finder (no extra commands needed) 3. When creating a new tracker, toggle "Compare prices from different countries" and pick which countries to compare 4. Each scrape run: local baseline first, then each VPN country sequentially 5. On the chart page, use the view filter to switch between: - All countries (full detail) - Country comparison (cheapest price per country over time) - Local only / individual country isolation
<details> <summary>docker-compose.vpn.yml details</summary>
The VPN sidecar uses misioslav/expressvpn and exposes: - SOCKS5 proxy on port 1080 (internal, used by Playwright) - REST API on port 8000 (internal, used by Flight Finder to switch countries)
Requirements: - EXPRESSVPN_CODE in ~/.flight-finder/.env - Docker host must have /dev/net/tun (kernel TUN module) - The sidecar needs NET_ADMIN capability
Only Playwright traffic goes through the VPN. Database, Redis, and web UI traffic stay on normal Docker networking. </details>
<details> <summary>Supported countries</summary>
US, GB, DE, FR, ES, IT, NL, IE, JP, KR, IN, AU, CA, MX, BR, AR, CO, TH, SG, HK
Each country profile aligns: locale, timezone, Accept-Language header, and geolocation to match the VPN exit point. Currency stays user-controlled (independent from VPN country). </details>
curl -fsSL https://flight-finder.org/install.sh | bash
If you have Claude Code or Codex installed, the setup script detects it automatically. Otherwise, it asks you to paste an API key.
Once it finishes:
flight-finder search "NYC to Tokyo in July under $800"Flight Finder walks an ordered chain of price sources per query. The chain is admin allowlisted and per user orderable. Each source has different reliability:
| Source | Default | Reliability | Notes |
|---|---|---|---|
| Google Flights | on | High | Three URL rotation + stealth context. Rate limit kicks in around 30 sustained requests per IP. |
| Airline direct | on | High when supported | URL templates in airline-urls.ts. Falls through to the next source when an airline returns a stub page. |
| Skyscanner | off | **Experimental** (40 to 70 percent in burst, drops under sustained load) | Cloudflare interstitials + bot detection. v1 is best effort. |
| Kayak | off | **Experimental** (similar to Skyscanner) | PerimeterX bot detection. v1 is best effort. |
Skyscanner and Kayak are off by default. Admin enables them in /admin/config; users then order them in /account/settings. When a source returns no flights the next source in the chain runs; an all_filtered_out result (real flights existed but query filters excluded them) short circuits the chain because changing sources cannot help.
For Skyscanner and Kayak to be production grade you would need residential proxies or paid CAPTCHA solving, neither of which Flight Finder ships. If those sources fail consistently for your route, leave them off.
Test the myth that VPN location affects flight prices. Flight Finder can scrape the same query from multiple countries and show the results side by side.
Flight Finder是一个开源AI工具,支持自带LLM,实时航班价格跟踪。虽然代码质量良好,但缺乏更多的使用案例和文档支持。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:航班价格追踪器 的核心功能完整,质量良好。对于AI 技术爱好者来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | flight-finder |
| 原始描述 | 开源AI工具:Flight price tracker. Self-hosted, open source, bring your own LLM. The price tr。⭐95 · TypeScript |
| Topics | flight-finderflight-pricesflightsllm |
| GitHub | https://github.com/affromero/flight-finder |
| License | MIT |
| 语言 | TypeScript |
收录时间:2026-06-11 · 更新时间:2026-06-11 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。