feat(cli): add CLI entry point with commander and start command

This commit is contained in:
William Valentin
2026-02-05 22:14:42 -08:00
parent 6f7b5b8f0f
commit 72c75a8bd7
10 changed files with 175 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Command } from 'commander';
export function registerSendCommand(program: Command): void {
program
.command('send <message>')
.description('Send a one-shot message and print the response')
.option('-c, --config <path>', 'Config file path')
.action(async (_message: string, _opts: { config?: string }) => {
console.error('Not yet implemented');
process.exit(1);
});
}