import { SPOTLIGHT_LAYOUT, SPOTLIGHT_SKILL_LOAD_LEVELS, spotlightSkillsGlobPattern, type CapabilitySurface, type SpotlightSkillFrontmatter } from "@inupedia/spotlight-protocol"; export type SkillValidationIssue = { level: "error" | "warning"; message: string; }; export type SkillValidationResult = { ok: boolean; errors: string[]; warnings: string[]; issues: SkillValidationIssue[]; }; /** * Validate skill frontmatter against Spotlight + Agent Skills conventions. * Use in CI or local skill authoring tools. * * @deprecated Legacy Inupedia compatibility validator; use * `validateAgentSkillMarkdown` from `@inupedia/spotlight-client/node` for * Agent Skills conformance. */ export declare function validateSkillFrontmatter(data: Record): SkillValidationResult; /** Document how to wire a capability by execution surface. */ export declare function describeCapabilitySurface(surface: CapabilitySurface): string; export { SPOTLIGHT_LAYOUT, SPOTLIGHT_SKILL_LOAD_LEVELS, spotlightSkillsGlobPattern, type SpotlightSkillFrontmatter, }; //# sourceMappingURL=skillServiceStandard.d.ts.map