Return SKILL.md without the YAML frontmatter.
(skill_dir: Path)
| 158 | |
| 159 | |
| 160 | def _read_body(skill_dir: Path) -> str: |
| 161 | """Return SKILL.md without the YAML frontmatter.""" |
| 162 | skill_md = skill_dir / "SKILL.md" |
| 163 | return extract_body(skill_md.read_text(encoding="utf-8")).lstrip() |
| 164 | |
| 165 | |
| 166 | def _read_references_preview(skill_dir: Path) -> str: |
no test coverage detected