/** * Skillset management for Nori Skillsets * Handles skillset listing, loading, and switching */ import type { Command } from "commander"; /** * Shared action handler for switch-skillset and switch-profile commands * @param args - Configuration arguments * @param args.name - The skillset name to switch to * @param args.options - Command options * @param args.options.agent - Optional agent name override * @param args.program - Commander program instance */ export declare const switchSkillsetAction: (args: { name: string; options: { agent?: string; }; program: Command; }) => Promise; /** * Register the 'switch-skillset' and 'switch-profile' (alias) commands with commander * @param args - Configuration arguments * @param args.program - Commander program instance */ export declare const registerSwitchProfileCommand: (args: { program: Command; }) => void; //# sourceMappingURL=profiles.d.ts.map