← All skills
Tencent SkillHub · Communication & Collaboration

Variflight Aviation

飞常准航班信息查询 - 实时航班动态、航线搜索、舒适度评估、机场天气、飞机追踪

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

飞常准航班信息查询 - 实时航班动态、航线搜索、舒适度评估、机场天气、飞机追踪

⬇ 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
README.md, SKILL.md, config.json, debug-search.js, package.json, src/cli.js

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
1.0.1

Documentation

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

功能概述

本 Skill 通过飞常准 MCP 服务器提供全球航班信息查询服务,采用按需启动架构: 每次调用命令时自动启动 MCP 服务器 执行查询操作 完成后自动关闭 MCP 服务器,释放资源

方法 1:环境变量(推荐)

注意:Variflight 官方使用 X_VARIFLIGHT_KEY export X_VARIFLIGHT_KEY="your_api_key_here" 或使用兼容变量名: export VARIFLIGHT_API_KEY="your_api_key_here"

方法 2:本地配置文件

创建 config.local.json(已加入 .gitignore): { "apiKey": "your_api_key_here" } ⚠️ 注意:请勿将包含真实 API Key 的 config.local.json 提交到 Git!

1. search - 航线搜索

@variflight-aviation search <dep> <arr> <date> 按出发地、目的地、日期搜索航班。 参数: dep: 出发机场 IATA 代码(如 PEK) arr: 到达机场 IATA 代码(如 SHA) date: 日期,格式 YYYY-MM-DD 示例: @variflight-aviation search PEK SHA 2026-02-20

2. info - 航班号查询

@variflight-aviation info <fnum> <date> 按航班号查询详细信息。 参数: fnum: 航班号(如 MU2157) date: 日期,格式 YYYY-MM-DD 示例: @variflight-aviation info HU7601 2026-02-20

3. comfort - 舒适度指数

@variflight-aviation comfort <fnum> <date> 获取航班舒适度评估,包括准点率、机型评分等。 示例: @variflight-aviation comfort CA1501 2026-02-20

4. weather - 机场天气

@variflight-aviation weather <airport> 查询机场未来3天天气预报。 参数: airport: 机场 IATA 代码(如 PEK) 示例: @variflight-aviation weather PEK

5. transfer - 中转方案

@variflight-aviation transfer <depcity> <arrcity> <date> 查询最优中转方案。 参数: depcity: 出发城市代码(如 BJS) arrcity: 到达城市代码(如 SHA) date: 日期,格式 YYYY-MM-DD 示例: @variflight-aviation transfer BJS SHA 2026-02-20

6. track - 飞机追踪

@variflight-aviation track <anum> 实时追踪飞机位置。 参数: anum: 飞机注册号(如 B-308M) 示例: @variflight-aviation track B-308M

机场代码(IATA)

PEK: 北京首都 PKX: 北京大兴 SHA: 上海虹桥 PVG: 上海浦东 CAN: 广州白云 SZX: 深圳宝安 CTU: 成都天府 HGH: 杭州萧山 XIY: 西安咸阳 CKG: 重庆江北

城市代码

BJS: 北京(含 PEK/PKX) SHA: 上海(含 SHA/PVG) CAN: 广州 SZX: 深圳

日期格式

标准格式:YYYY-MM-DD 示例:2026-02-20

航班搜索返回

{ "code": 200, "message": "Success", "data": [ { "FlightNo": "HU7601", "FlightCompany": "海南航空股份有限公司", "FlightDepcode": "PEK", "FlightArrcode": "SHA", "FlightDeptimePlanDate": "2026-02-20 07:25:00", "FlightArrtimePlanDate": "2026-02-20 09:35:00", "FlightState": "计划", "OntimeRate": "93.33%", "ftype": "78A", "FlightHTerminal": "T2", "FlightTerminal": "T2", "CheckinTable": "F,G", "distance": "1178" } ] }

隐私与安全声明

API Key 本地存储:仅存储在用户本地环境变量或配置文件中 不上传云端:敏感信息不会上传到 ClawHub 或任何远程服务器 日志脱敏:日志中 API Key 等敏感信息已脱敏处理 Git 保护:config.local.json 已加入 .gitignore,防止意外提交

错误:API Key not configured / 401 Unauthorized

原因:未配置 API Key 或 Key 无效 解决: 确认已设置 X_VARIFLIGHT_KEY 环境变量 确认 API Key 已激活(验证邮箱) 确认 Key 未过期

错误:MCP server start timeout

原因:MCP 服务器启动超时 解决: 检查网络连接 确认 API Key 有效 检查 Node.js 版本 >= 18.0.0

错误:No flights found / 未找到航班

原因:未找到航班数据 解决: 确认日期格式正确(YYYY-MM-DD) 确认机场/城市代码正确 确认该航线在指定日期有航班

错误:Command not found

原因:命令拼写错误 解决:使用上述列出的标准命令名称

相关链接

飞常准 MCP 官方文档 Model Context Protocol 规范 OpenClaw 文档 GitHub 仓库

许可证

MIT License © 2026 lixiao

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts2 Config
  • SKILL.md Primary doc
  • README.md Docs
  • debug-search.js Scripts
  • src/cli.js Scripts
  • config.json Config
  • package.json Config