Install
openclaw skills install flight-tracker-apacCheck 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.
openclaw skills install flight-tracker-apacUse 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:
The script can display:
If no API key is configured, the script falls back to manual lookup links for Google Flights and FlightRadar24.
This skill requires:
python3AVIATIONSTACK_API_KEY~/.openclaw/.env
AVIATIONSTACK_API_KEY=your_real_api_key_here
chmod 600 ~/.openclaw/.env
Recommended skill folder:
flight-tracker-apac/
├── SKILL.md
└── scripts/
└── schedule.py
Use this skill when the user asks to:
Do not use this skill for:
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
--countdown if the user wants time remaining to departure.When presenting results, summarize:
The script connects to:
The required API key is:
AVIATIONSTACK_API_KEYWhat leaves the machine:
What stays local:
Notes:
access_key query parameter required by Aviationstack, but the request is sent over HTTPS~/.openclaw/.env private and do not commit it to source controlFor best results, make sure the script and the AVIATIONSTACK_API_KEY environment variable are both available before running the skill.