class ClaudeCodeSlashCommands::CLI

def run

def run
  case @args.first
  when "install"
    local = @args.include?("--local")
    Installer.new(local: local).install
  when "help", "-h", "--help", nil
    show_help
  else
    puts "Unknown command: #{@args.first}"
    show_help
    exit(1)
  end
end