(relativePath: string)
| 204 | |
| 205 | /** Case-insensitive check whether a normalized relative path refers to the root SKILL.md file. */ |
| 206 | export function isSkillMarkdownRootFile(relativePath: string): boolean { |
| 207 | return relativePath.toLowerCase() === SKILL_FILENAME.toLowerCase(); |
| 208 | } |
no outgoing calls
no test coverage detected