/** * Supabase Commands Integration for VCSYS CLI * Integrates our working Phase 4 Supabase implementation with the CLI */ import { Command } from 'commander'; import { createAuthCommand } from './auth'; import { createProvisionCommand } from './provision'; import { createSetupCommand } from './setup'; export class SupabaseCommands { /** * Register all Supabase-related commands using our working implementation */ registerCommands(program: Command): void { // Register our working auth commands program.addCommand(createAuthCommand()); // Register our working provision commands program.addCommand(createProvisionCommand()); // Register our working setup commands program.addCommand(createSetupCommand()); } }