#!/usr/bin/env node /** * cli.ts — Entry point for the kosha CLI. * * This module is intentionally minimal: it parses raw `process.argv`, * routes to the appropriate command handler in `./cli-commands.js`, and * handles top-level errors. * * TypeScript 5.7+ preserves the shebang comment in compiled output, so * the built `.js` file can be executed directly as `./cli.js` on Unix. * * @module cli */ export {}; //# sourceMappingURL=cli.d.ts.map