← 返回 Skills 市场
kurosh87

Aerobase Flight Deals

作者 Aerobase · GitHub ↗ · v3.2.1 · MIT-0
cross-platform ✓ 安全检测通过
766
总下载
0
收藏
1
当前安装
20
版本数
在 OpenClaw 中安装
/install aerobase-flight-deals
功能描述
Find cheap flights, monitor prices, and alert on price drops
使用说明 (SKILL.md)

Aerobase Flight Deals 💰

Use this skill for shopping, ranking, and tracking fare movement so users get the right flight value at the right moment.

Setup

Use this skill by getting a free API key at https://aerobase.app/openclaw-travel-agent and setting AEROBASE_API_KEY in your agent environment. This skill is API-only: no scraping, no browser automation, and no user credential collection.

Usage is capped at 5 requests/day for free users. Upgrade to Pro ($9.95/month) at https://aerobase.app/openclaw-travel-agent for 500 API calls/month.

Agent API Key Protocol

  • Base URL: https://aerobase.app
  • Required env var: AEROBASE_API_KEY
  • Auth header (preferred): Authorization: Bearer ${AEROBASE_API_KEY}
  • Never ask users for passwords, OTPs, cookies, or third-party logins.
  • Never print raw API keys in output; redact as sk_live_***.

Request rules

  • Use only Aerobase endpoints documented in this skill.
  • Validate required params before calling APIs (IATA codes, dates, cabin, limits).
  • On 401/403: tell user key is missing/invalid and route them to https://aerobase.app/openclaw-travel-agent.
  • On 429: explain free-tier quota (5 requests/day) and suggest Pro ($9.95/month, 500 API calls/month) or Lifetime ($249, 500 API calls/month).
  • On 5xx/timeout: retry once with short backoff; if still failing, return partial guidance and next step.
  • Use concise responses: top options first, then 1-2 follow-up actions.

What this skill does

  • Search live and saved-route deals from Aerobase deal data.
  • Compare options by price, value score, and jetlag recovery impact.
  • Create, list, and manage watch alerts for meaningful price drops.

Deal search

GET /api/v1/deals
Query params:

  • origin departure IATA code
  • destination destination IATA code
  • max_price maximum price in USD
  • min_score minimum value score
  • max_recovery_days max recovery window
  • date_from travel date start
  • date_to travel date end
  • sort (value_score, price, jetlag_score, newest)
  • limit up to 50

Deal alerts

  • POST /api/deals/alerts — create a watch alert for a route/date strategy
  • GET /api/deals/alerts — list active user alerts

Output pattern

  • Show route + travel window + fare + airline first.
  • Add jetlag_score and recovery recommendations inline.
  • For long layover routes, call out whether price gain comes with recovery burden.

Usage limits

  • Free: 5 requests/day
  • Pro: 500 API calls/month (upgrade at $9.95/month)
  • Lifetime: $249 for 500 API calls/month

Monitoring checks remain triggered based on route watch setup.

Safety

  • Do not request credentials, account numbers, or saved logins.
  • Do not instruct users to provide private account details or one-time tokens.

Pro Superpowers

Upgrade to Pro to unlock browser-powered superpowers for travel deal sites:

  • Real-time deal feeds from SecretFlying, TheFlightDeal, TravelPirates, and Going.com
  • Google Flights price verification for deal confirmation
  • 500 API calls/month instead of 5/day
  • Get Pro at https://aerobase.app/openclaw-travel-agent
安全使用建议
This skill appears coherent for an Aerobase API integration and only needs your AEROBASE_API_KEY. Before installing: 1) Verify the Aerobase service and link (https://aerobase.app) and review their privacy/terms if you will share billing or personal travel data. 2) Treat the API key like a secret — do not paste it into chat messages and rotate it if you suspect leakage. 3) Clarify the 'Pro Superpowers' wording (the SKILL.md says API-only but advertises 'browser-powered' features) — ask the vendor whether Pro requires giving the agent any additional access or whether those capabilities run server-side. 4) Monitor API usage and billing after enabling the skill, and restrict the key's scope if Aerobase supports scoped keys. If you need higher assurance, request source code or more details from the publisher before enabling autonomous invocation.
功能分析
Type: OpenClaw Skill Name: aerobase-flight-deals Version: 3.2.1 The aerobase-flight-deals skill is a standard API-based integration for searching and monitoring flight prices via the aerobase.app service. The SKILL.md file contains clear safety instructions for the agent, such as redacting API keys and explicitly forbidding the collection of user credentials, passwords, or OTPs. No malicious code, data exfiltration patterns, or suspicious execution logic were identified.
能力评估
Purpose & Capability
Name/description (search, monitor, alert on fares) match the declared primary credential AEROBASE_API_KEY and the API endpoints listed. The only minor inconsistency is that the SKILL.md states 'API-only: no scraping, no browser automation' but the 'Pro Superpowers' section advertises 'browser-powered superpowers' for site feeds and Google Flights verification; this could be a marketing note about Aerobase's server-side features, but it is worth clarifying.
Instruction Scope
SKILL.md provides concrete API endpoint paths, auth header format, error-handling rules, and explicitly forbids requesting user credentials. It does not instruct the agent to read local files, other env vars, or send data to endpoints outside the Aerobase base URL.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk deployment footprint. Nothing is downloaded or written to disk by the skill itself.
Credentials
Only one credential is declared (AEROBASE_API_KEY), which is appropriate for an API-based integration. No unexplained secrets, host keys, or unrelated environment variables are requested.
Persistence & Privilege
The skill does not request always-on presence, does not claim elevated platform privileges, and does not require access to other skills' configs or system paths.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install aerobase-flight-deals
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /aerobase-flight-deals 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v3.2.1
Fix pricing to $9.95/mo, remove broken X-Api-Key fallback, add auth protocol to all Pro skills, fix broken endpoint references
v3.2.0
Fix: lifetime price $149.99→$249, add /month to setup price, lounge emoji consistency
v3.1.9
Browser-powered superpowers wording for Pro sections
v3.1.8
Clean Pro wording, add tier comparison, fix endpoint docs
v3.1.7
Version bump for consistency
v3.1.6
Sync local updates
v3.0.8
- Expanded API key protocol section, detailing headers, redaction, and security guidelines. - Updated free and Pro usage limits; Pro now offers 500 API calls/month ($10.99/month), with a Lifetime tier ($149.99) also noted. - Refined authentication error handling instructions and response rules for rate limits and server errors. - Clarified setup instructions and endpoint usage requirements. - No functional or endpoint changes introduced.
v3.0.7
- Updated skill version from 3.1.5 to 3.1.6 in documentation. - No changes to functionality or usage; documentation update only.
v3.0.6
Standardize usage-limit messaging across all skills: free 5 requests/day and unlimited for Pro at .99.
v3.0.5
Add global usage limits across all skills: free 5 requests/day, unlimited for Pro (.99).
v3.0.4
Marketing-focused wording refresh: clearer value framing, trust/safety section, and API-first usage clarity for all travel skills.
v3.0.3
Align docs with live Aerobase API and remove credential/scraping guidance.
v3.0.2
- Added LICENSE.txt file to the repository. - No changes to features or API; documentation and functionality remain unchanged.
v3.0.1
Major documentation update and capability clarifications: - Expanded API documentation with detailed parameter tables and query examples. - Added clear workflow guidance for deal search, price monitoring, and when to use browser-based verification. - Clarified usage of multiple deal sources (API, Scrapling, browser, Google Flights) and integration best practices. - Provided UI rendering instructions, including DealCard component structure and filtering examples. - Updated rate limits and data source policies for transparency.
v3.0.0
No changes detected for version 3.0.0. - No file changes or updates from the previous version. - The skill features and documentation remain the same.
v2.0.0
- Updated the SKILL.md documentation with rate limit pricing link to https://aerobase.app/openclaw-travel-agent/pricing (was previously https://aerobase.app/concierge/pricing) - Added a version field to the SKILL.md metadata - No changes to functionality; documentation update only
v1.2.0
Added API documentation links
v1.1.0
Added marketing content with Aerobase intro and cross-promotion
v1.0.1
- Streamlined and clarified SKILL.md documentation - Removed detailed implementation notes and third-party tool instructions - Simplified API documentation and usage examples - Highlighted key features: price alerts, jetlag scoring, and value sorting - Clear instructions for API key configuration and limits
v1.0.0
- Initial release of aerobase-flight-deals: find cheap flights, monitor prices, and get alerts on price drops via the Kiwi API. - Supports deal searching with advanced filters (origin, destination, price, dates, cabin, jetlag score, etc.), up to 50 results (3 for free tier). - Automated price monitoring and alert system for watched routes, including jetlag context and calendar awareness. - Integrates browser-based verification/comparison with Google Flights and leading flight deal sites (SecretFlying, TheFlightDeal, TravelPirates, Going.com). - Visual rendering of deals using the DealCard component with rich detail (route, price, jetlag score, value score, etc.). - Enforced API rate limits: free tier (5 requests/day), premium tier (unlimited).
元数据
Slug aerobase-flight-deals
版本 3.2.1
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 20
常见问题

Aerobase Flight Deals 是什么?

Find cheap flights, monitor prices, and alert on price drops. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 766 次。

如何安装 Aerobase Flight Deals?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install aerobase-flight-deals」即可一键安装,无需额外配置。

Aerobase Flight Deals 是免费的吗?

是的,Aerobase Flight Deals 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Aerobase Flight Deals 支持哪些平台?

Aerobase Flight Deals 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Aerobase Flight Deals?

由 Aerobase(@kurosh87)开发并维护,当前版本 v3.2.1。

💬 留言讨论