UNPKG

ds-sfcoe-ailabs

Version:

AI-powered code review tool with static analysis integration for comprehensive code quality assessment.

18 lines (17 loc) 502 B
/** * @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';