Field SkillFileName
The expected filename for skill definitions.
public const string SkillFileName = "SKILL.md"
Returns
- string
- The expected filename for skill definitions.
Examples
Checking for the skill file:
string skillFile = Path.Combine(skillDir, SkillParser.SkillFileName);
if (File.Exists(skillFile))
{
Console.WriteLine("Found SKILL.md");
}