/** * MCP tools for skill discovery and reference loading. */ import type { InferSchema } from "../../../src/extensions/schema/index.js"; import type { MCPTool } from "../tools.js"; declare const getSkillsInput: import("../../../src/internal-agents/schema.js").Schema; }>>; type GetSkillsInput = InferSchema; interface SkillMetadata { name: string; description: string; license?: string; compatibility?: string; tools?: string[]; } interface SkillContent extends SkillMetadata { content: string; references?: string[]; } interface GetSkillsResult { skills?: SkillMetadata[]; skill?: SkillContent; error?: string; } export declare const vfGetSkills: MCPTool; declare const getSkillReferenceInput: import("../../../src/internal-agents/schema.js").Schema; reference: import("../../../src/internal-agents/schema.js").Schema; }>>; type GetSkillReferenceInput = InferSchema; interface GetSkillReferenceResult { content?: string; error?: string; } export declare const vfGetSkillReference: MCPTool; export {}; //# sourceMappingURL=skill-tools.d.ts.map