Check if path points directly to a SKILL.md or skill.md file.
(path: Path)
| 13 | |
| 14 | |
| 15 | def _is_skill_md_file(path: Path) -> bool: |
| 16 | """Check if path points directly to a SKILL.md or skill.md file.""" |
| 17 | return path.is_file() and path.name.lower() == "skill.md" |
| 18 | |
| 19 | |
| 20 | @click.group() |
no outgoing calls
no test coverage detected