flight-tracker-apac
by caddytan
Check flight schedules between supported airports, show timings, terminals, gates, delays, aircraft details, and optional departure countdowns using a local Python script backed by the Aviationstack API. Best for APAC routes and selected long haul routes included in the built in airport list.
安装
claude skill add --url github.com/openclaw/skills/tree/main/skills/caddytan/flight-tracker-apac必需环境变量
AVIATIONSTACK_API_KEY必需命令行工具
python3文档
Flight Tracker APAC
Overview
Use this skill to check flight schedules between supported airports with a local Python script.
This skill is best for APAC routes and also supports a small number of built in long haul airports such as SFO, LAX, and JFK.
This skill is useful for requests such as:
- check flights from SIN to HKG
- show today's flights from SIN to TFU
- give me a departure countdown for SIN to MEL
- check flights from SIN to LAX
The script can display:
- scheduled, estimated, and actual departure and arrival times
- terminal and gate details when available
- airline, flight number, aircraft, delay, and status
- calculated flight time and scheduled duration
- optional countdown to departure
If no API key is configured, the script falls back to manual lookup links for Google Flights and FlightRadar24.
Requirements
This skill requires:
python3- a free Aviationstack API key in
AVIATIONSTACK_API_KEY
API key setup
- Create a free account at Aviationstack.
- Copy your API access key from the Aviationstack dashboard.
- Open this file on your machine:
~/.openclaw/.env
- Add this line:
AVIATIONSTACK_API_KEY=your_real_api_key_here
- Restrict the file so only your user can read it:
chmod 600 ~/.openclaw/.env
File layout
Recommended skill folder:
flight-tracker-apac/
├── SKILL.md
└── scripts/
└── schedule.py
When to use this skill
Use this skill when the user asks to:
- check flights between two supported IATA airports
- compare available operating flights on a route
- view departure and arrival timings on a route
- see a countdown to departure for a route
Do not use this skill for:
- ticket prices, fare comparisons, or booking actions
- unsupported airport codes that are not in the script's built in airport list
- general travel planning that is unrelated to route schedules
Supported usage patterns
Run the local script from the skill folder:
python3 {baseDir}/scripts/schedule.py SIN HKG
python3 {baseDir}/scripts/schedule.py --from SIN --to HKG
python3 {baseDir}/scripts/schedule.py --from SIN --to TFU --countdown
Workflow
- Confirm the user wants a flight schedule between two airports.
- Use IATA airport codes from the script's supported list.
- Run the script with origin and destination.
- Add
--countdownif the user wants time remaining to departure. - Return the results clearly, grouped by date if multiple flights are shown.
- If the API key is missing, tell the user the script returned manual lookup links instead.
Output guidance
When presenting results, summarize:
- route searched
- number of operating flights found
- each flight's airline and code
- departure and arrival timing
- terminal and gate where available
- status, delay, and aircraft
- countdown if requested
External services
The script connects to:
- Aviationstack for flight schedule data over HTTPS
- Google Flights for manual fallback lookup links over HTTPS
- FlightRadar24 for manual fallback route links over HTTPS
The required API key is:
AVIATIONSTACK_API_KEY
Security and privacy
What leaves the machine:
- route lookup parameters and your Aviationstack API key go to Aviationstack
- route codes go into the fallback Google Flights and FlightRadar24 URLs
What stays local:
- the script logic
- local environment files
- any other files on the machine
Notes:
- the script uses the documented
access_keyquery parameter required by Aviationstack, but the request is sent over HTTPS - keep
~/.openclaw/.envprivate and do not commit it to source control - only install and use this skill if you are comfortable sending route data to those external services
Notes
For best results, make sure the script and the AVIATIONSTACK_API_KEY environment variable are both available before running the skill.
相关 Skills
技能工坊
by anthropics
覆盖 Skill 从创建到迭代优化全流程:起草能力、补测试提示、跑评测与基准方差分析,并持续改写内容和描述,提升效果与触发准确率。
✎ 技能工坊把技能从创建、迭代到评测串成闭环,方差分析加描述优化,特别适合把触发准确率打磨得更稳。
表格处理
by anthropics
围绕 .xlsx、.xlsm、.csv、.tsv 做读写、修复、清洗、格式整理、公式计算与格式转换,适合修改现有表格、生成新报表或把杂乱数据整理成交付级电子表格。
✎ 做 Excel/CSV 相关任务很省心,能直接读写、修复、清洗和格式转换,尤其擅长把乱七八糟的表格整理成交付级文件。
PDF处理
by anthropics
遇到 PDF 读写、文本表格提取、合并拆分、旋转加水印、表单填写或加解密时直接用它,也能提取图片、生成新 PDF,并把扫描件通过 OCR 变成可搜索文档。
✎ PDF杂活别再来回切工具了,文本表格提取、合并拆分到OCR识别一次搞定,连扫描件也能变可搜索。
相关 MCP 服务
文件系统
编辑精选by Anthropic
Filesystem 是 MCP 官方参考服务器,让 LLM 安全读写本地文件系统。
✎ 这个服务器解决了让 Claude 直接操作本地文件的痛点,比如自动整理文档或生成代码文件。适合需要自动化文件处理的开发者,但注意它只是参考实现,生产环境需自行加固安全。
by wonderwhy-er
Desktop Commander 是让 AI 直接执行终端命令、管理文件和进程的 MCP 服务器。
✎ 这工具解决了 AI 无法直接操作本地环境的痛点,适合需要自动化脚本调试或文件批量处理的开发者。它能让你用自然语言指挥终端,但权限控制需谨慎,毕竟让 AI 执行 rm -rf 可不是闹着玩的。
EdgarTools
编辑精选by dgunning
EdgarTools 是无需 API 密钥即可解析 SEC EDGAR 财报的开源 Python 库。
✎ 这个工具解决了金融数据获取的痛点——直接让 AI 读取结构化财报,比如让 Claude 分析苹果的 10-K 文件。适合量化分析师或金融开发者快速构建数据管道。但注意,它依赖 SEC 网站稳定性,高峰期可能延迟。