(skillType: SkillType)
| 61 | } |
| 62 | |
| 63 | function getSkillSourcePath(skillType: SkillType): string { |
| 64 | const resourceRoot = getResourceRoot(); |
| 65 | return path.join(resourceRoot, 'skills', skillDirName(skillType), 'SKILL.md'); |
| 66 | } |
| 67 | |
| 68 | function readSkillContent(skillType: SkillType): string { |
| 69 | const sourcePath = getSkillSourcePath(skillType); |
no test coverage detected