Table of Contents

Field SkillFileName

Namespace
LMKit.Agents.Skills
Assembly
LM-Kit.NET.dll

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");
}