/** * Command name detection utilities * * Detects the actual command name used to invoke vibe-validate (e.g., "vv" vs "vibe-validate") * so error messages and usage examples reflect what the user actually typed. */ /** * Get the command name that was used to invoke the CLI * * @returns The command name (e.g., "vv", "vibe-validate", or fallback "vibe-validate") * * @example * ```typescript * const cmd = getCommandName(); * console.error(`Usage: ${cmd} watch-pr `); * // If invoked with "vv": "Usage: vv watch-pr " * // If invoked with "vibe-validate": "Usage: vibe-validate watch-pr " * ``` */ export declare function getCommandName(): string; //# sourceMappingURL=command-name.d.ts.map