/** * SKILL.md content reading utility */ /** * Reads a SKILL.md file and returns its body content (without YAML frontmatter). * * @param skillPath - Relative path to the skill directory (e.g., '.claude/skills/my-skill') * @param projectDir - Absolute path to the project root * @returns Body content trimmed, or null if file not found, empty, or read error */ export declare function readSkillBody(skillPath: string, projectDir: string): string | null; //# sourceMappingURL=skill-content.d.ts.map