/** * Skill reference mappings for MCP tools. * * Maps each MCP tool name to its corresponding skill in the aibtcdev/skills repository. * Skills are loaded via the /skill command in Claude Code and provide higher-level * orchestration logic built on top of these MCP tools. * * Skill source: https://github.com/aibtcdev/skills */ export declare const TOOL_SKILL_MAP: Record; /** * Returns the skill name for a given MCP tool name, or undefined if no mapping exists. */ export declare function getSkillForTool(toolName: string): string | undefined; //# sourceMappingURL=skill-mappings.d.ts.map