Ben gurion flight board
Skill danielrosehill/Claude-Israel-Agent-Skills-Plugin/skills/ben-gurion-flight-board
Collection of Israel-specific skills for Claude Code and other agentic CLIs
npx -y skills add danielrosehill/Claude-Israel-Agent-Skills-Plugin --skill ben-gurion-flight-boardAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
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".
SKILL.md
2.0 KB, as published. Nobody here has run it
Ben Gurion Airport — Flight Board
Fetches the official IAA arrivals or departures board for Ben Gurion (TLV / LLBG) and optionally filters client-side by city, airline, or flight number.
When to use
- "Is LY 008 from New York on time?"
- "What arrivals are coming in from Athens right now?"
- "Show me all El Al departures today."
- "Did the Bangkok flight leave?"
Usage
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.
Returned fields
| 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 |
Limitations
- No country filter (the board does not expose country).
- No date-range filter — only flights in the current operational window.
- English locale only.
Requires
- Python 3.10+
playwrightwith Chromium installed (pip install playwright && playwright install chromium)