Airline Codes
Description
Lightweight npm dataset for airline IATA/ICAO code lookups.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Airline Codes
[](https://mintlify.com/npow/airline-codes)
Airline codes (IATA) and information pulled from OpenFlights.org
Install
npm install airline-codes
Usage
The list of airline codes is wrapped in a Backbone Collection, so have access to all normal collection methods like `findWhere`, `at`, and `sort`.
var airlines = require('airline-codes');
console.log(airlines.findWhere({ iata: 'WS' }).get('name'));
//=> Westjet
If you'd like only the JSON list of airline codes, you can use either the Backbone Collection's `toJSON` method or import the json list directly:
require('airline-codes').toJSON();
require('airline-codes/airlines.json');
Update the list of Airline Codes
Data is synced automatically every week from [jpatokal/openflights](https://github.com/jpatokal/openflights). To update manually:
$ wget https://raw.githubusercontent.com/jpatokal/openflights/master/data/airlines.dat
$ node normalize.js # apply local corrections (country names, etc.)
$ node convert.js # regenerate airlines.json from airlines.dat
Adding corrections
Upstream data uses different conventions for some country names and contains occasional data quality issues. `normalize.js` maintains a `COUNTRY_CORRECTIONS` map that is applied automatically after every upstream fetch. To add a new correction, edit the map in `normalize.js`:
var COUNTRY_CORRECTIONS = {
'Macao': 'Macau',
'Republic of Korea': 'South Korea',
// add new entries here ...
};
After editing, re-run the pipeline above to apply the change.
Thanks
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11