diff --git a/packages/cli/src/commands/stubs.ts b/packages/cli/src/commands/stubs.ts deleted file mode 100644 index 354ce31..0000000 --- a/packages/cli/src/commands/stubs.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { Command } from "commander"; - -const STUB_COMMANDS = [ - { - name: "preview", - phase: 6, - description: "Run steps in a visible terminal without recording", - }, -] as const; - -export function registerStubCommands(program: Command): void { - for (const command of STUB_COMMANDS) { - program - .command(command.name) - .description(command.description) - .action(() => { - console.log(`Not yet implemented. Coming in Phase ${command.phase}.`); - }); - } -}