From israel-agent-skills
Use when the user wants to check live arrivals or departures at Ben Gurion Airport (Tel Aviv, TLV, LLBG) from the official Israel Airports Authority flight board. Supports filtering by city, airline, or flight number. Trigger phrases include "is flight X on time", "Ben Gurion arrivals", "TLV departures", "flights from [city] to Tel Aviv", "did the [destination] flight leave", "arrivals today at Ben Gurion", "when does [airline] flight land".
How this skill is triggered — by the user, by Claude, or both
Slash command
/israel-agent-skills:ben-gurion-flight-boardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetches the official IAA arrivals or departures board for Ben Gurion (TLV / LLBG) and optionally filters client-side by city, airline, or flight number.
Fetches the official IAA arrivals or departures board for Ben Gurion (TLV / LLBG) and optionally filters client-side by city, airline, or flight number.
python3 scripts/flight_board.py arrivals
python3 scripts/flight_board.py departures
python3 scripts/flight_board.py arrivals --airline "EL AL"
python3 scripts/flight_board.py departures --city "ATHENS"
python3 scripts/flight_board.py arrivals --flight "LY 008"
python3 scripts/flight_board.py arrivals --json
Filters are case-insensitive substring matches. The board only returns flights in the current operational window (a few hours either side of now); it is not a historical query.
| Field | Notes |
|---|---|
Flight | e.g. LY 008 |
AirlineCompany | e.g. EL AL ISRAEL AIRLINES |
City | origin for arrivals, destination for departures |
Terminal | 1 or 3 |
ScheduledDateTime | HH:MM DD/MM |
UpdatedDateTime | live estimate, HH:MM |
StatusColor | e.g. FINAL, LANDED, DELAYED, NOT FINAL, or empty |
playwright with Chromium installed (pip install playwright && playwright install chromium)npx claudepluginhub danielrosehill/claude-code-plugins --plugin israel-agent-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.