Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Discover destinations served from any airport via Wikipedia. Sanity-check whether an airline flies a specific route, find regional service that fare tools miss, identify late-split-return airport options.
.claude/skills/borski-wikipedia-airports/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | -8% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 112% | 0% |
| case-16 | ✗→✓ | ▲ Improved | 16% | 0% |
| case-17 | ✗→✓ | ▲ Improved | 6% | 0% |
| case-02 | ✓→✗ | ▼ Worse | 250% | 0% |
Use Wikipedia as a route discovery and sanity-check source for airport destinations. This is especially useful when:
Wikipedia is not a booking source and not a real-time schedule source. Use it to discover likely routes, then confirm them with airline or fare tools.
Use Wikipedia search with the airport code plus the word airport.
bashcurl -s "https://en.wikipedia.org/w/api.php?action=query&list=search&srsearch=SAN+airport&format=json" \ | jq '.query.search[0:5][] | {title}'
Usually the first result is the airport page, e.g. San Diego International Airport.
Use the readable page HTML or the wikitext parse API.
bashcurl -s "https://en.wikipedia.org/w/api.php?action=parse&page=San_Diego_International_Airport&prop=wikitext&formatversion=2&format=json" \ | jq -r '.parse.wikitext'
Or fetch the rendered page:
bashcurl -Ls "https://en.wikipedia.org/wiki/San_Diego_International_Airport"
Search for headings like:
Airlines and destinationsDestinationsPassengerAirlinesExample:
bashcurl -s "https://en.wikipedia.org/w/api.php?action=parse&page=San_Diego_International_Airport&prop=wikitext&formatversion=2&format=json" \ | jq -r '.parse.wikitext' \ | rg -n "Airlines and destinations|Destinations|Passenger|Southwest|Eugene|Portland"
If the airport page is incomplete, use airline route pages to validate the pattern.
Examples:
bashcurl -Ls "https://www.southwest.com/en/flights/flights-from-portland-or-to-san-diego" | rg "PDX|SAN|Portland|San Diego" curl -Ls "https://www.southwest.com/en/flights/flights-from-portland-or-to-orange-county-santa-ana" | rg "PDX|SNA|Portland|Orange County"
This is especially useful for Southwest because:
After Wikipedia suggests the route exists:
If the SAN airport page or related route references indicate Southwest serves Eugene, treat that as a lead, not final proof.
Then validate with:
This skill is most valuable when it tells you "search this route, don't assume it doesn't exist."
bashCODE=SAN curl -s "https://en.wikipedia.org/w/api.php?action=query&list=search&srsearch=${CODE}+airport&format=json" \ | jq -r '.query.search[0].title'
bashPAGE="San_Diego_International_Airport" curl -s "https://en.wikipedia.org/w/api.php?action=parse&page=${PAGE}&prop=wikitext&formatversion=2&format=json" \ | jq -r '.parse.wikitext' \ | rg -n "Airlines and destinations|Destinations|Alaska|Southwest|United|Delta|Eugene|Portland|Redmond"
bashPAGE="San_Diego_International_Airport" curl -s "https://en.wikipedia.org/w/api.php?action=parse&page=${PAGE}&prop=wikitext&formatversion=2&format=json" \ | jq -r '.parse.wikitext' \ | rg -n "Southwest|Eugene|EUG"
Other measured skills in the registry, with their headline benchmark lift.