/** * CLI command name mapping for user-facing messages * * Maps CLI names (nori-ai, nori-skillsets) to their respective command names. * Used to display correct command hints in output messages. */ export type CliName = "nori-ai" | "nori-skillsets"; export type CommandNames = { download: string; downloadSkill: string; search: string; update: string; upload: string; uploadSkill: string; switchProfile: string; }; /** * Get the command names for the given CLI * @param args - The function arguments * @param args.cliName - The CLI name (nori-ai or nori-skillsets). Defaults to nori-ai. * * @returns The command names for the CLI */ export declare const getCommandNames: (args: { cliName?: CliName | null; }) => CommandNames; //# sourceMappingURL=cliCommandNames.d.ts.map