/** * Skill Management Tool Handlers * * Handlers for the skill_management tool (deprecated). * Skills are now automatically applied during smart_browse operations. */ import type { SmartBrowser } from '../../core/smart-browser.js'; import { type McpResponse } from '../response-formatters.js'; /** * Skill management action types */ export type SkillAction = 'stats' | 'progress' | 'find' | 'details' | 'explain' | 'versions' | 'rollback' | 'rate' | 'anti_patterns' | 'dependencies' | 'bootstrap' | 'export' | 'import' | 'pack_stats' | 'manage'; /** * Handle skill_management tool call */ export declare function handleSkillManagement(smartBrowser: SmartBrowser, action: SkillAction, args: Record): Promise; //# sourceMappingURL=skill-handlers.d.ts.map