/**
 * @fileoverview Main entry point for the AI PR Review CLI application
 * Exports the OCLIF framework's run function to bootstrap the command-line interface
 *
 * @example
 * ```typescript
 * import { run } from './index';
 *
 * // Run the CLI with command line arguments
 * run(process.argv.slice(2));
 * ```
 */
/**
 * Re-export the OCLIF run function for CLI bootstrap
 * This function is used to start the command-line interface and process user commands
 */
export { run } from '@oclif/core';
