import type { RbacScopeItems } from '@redocly/config'; export type Skill = { /** URL-safe slug: the @skills subfolder name, or the project-default name for a root SKILL.md. */ slug: string; /** Display name (frontmatter `name`) */ name: string; description: string; /** Raw SKILL.md content, served verbatim as text/markdown. */ content: string; /** `sha256:` over the raw content. */ digest: string; fsPath: string; rbac?: RbacScopeItems; tags: string[]; }; //# sourceMappingURL=skills.d.ts.map