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".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin israel-agent-skillsThis skill uses the workspace's default tool permissions.
Fetches the official IAA arrivals or departures board for Ben Gurion (TLV / LLBG) and optionally filters client-side by city, airline, or flight number.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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)