/** * Command path resolver utilities for command discovery * Handles conversion between file paths and command IDs */ /** * Generate command ID from file path * @param filePath - Absolute path to markdown file * @param rootDir - Root commands directory path * @returns Command identifier string * @throws Error on invalid path structure */ export declare function generateCommandId(filePath: string, rootDir: string): string; /** * Validate command ID format * @param commandId - Command identifier to validate * @returns Boolean indicating validity */ export declare function validateCommandId(commandId: string): boolean;