feat(cli): add onboard alias for setup wizard

This commit is contained in:
William Valentin
2026-02-16 18:30:17 -08:00
parent 10aa224961
commit 5b5fbb887c
5 changed files with 33 additions and 0 deletions
+2
View File
@@ -17,6 +17,7 @@ import { registerConfigCommand } from './config-cmd.js';
import { registerTuiCommand } from './tui.js';
import { registerCompletionCommand } from './completion.js';
import { registerSetupCommand } from './setup.js';
import { registerOnboardCommand } from './onboard.js';
import { registerGmailAuthCommand } from './gmail-auth.js';
import { registerGcalAuthCommand } from './gcal-auth.js';
import { registerGdocsAuthCommand } from './gdocs-auth.js';
@@ -45,6 +46,7 @@ export function createProgram(): Command {
registerConfigCommand(program);
registerCompletionCommand(program);
registerSetupCommand(program);
registerOnboardCommand(program);
registerGmailAuthCommand(program);
registerGcalAuthCommand(program);
registerGdocsAuthCommand(program);