diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..612d854 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,21 @@ +#!/usr/bin/env node + +import { Command } from 'commander'; +import chalk from 'chalk'; + +const program = new Command(); + +program + .name('git-ai-commit') + .description('AI-powered commit message generator') + .version('1.0.0'); + +// TODO: Uncomment the code below to pass the first stage +// program +// .command('hello') +// .description('Test command') +// .action(() => { +// console.log(chalk.green('Hello from git-ai-commit!')); +// }); + +program.parse(process.argv);