* Check if a file path is a skill file (SKILL.md)
(filePath: string)
| 51 | * Check if a file path is a skill file (SKILL.md) |
| 52 | */ |
| 53 | function isSkillFile(filePath: string): boolean { |
| 54 | return /^skill\.md$/i.test(basename(filePath)) |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Get command name from file path, handling both regular files and skills |
no outgoing calls
no test coverage detected