Table of Contents

Property Skill

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

Skill

Gets the matched skill.

public AgentSkill Skill { get; }

Property Value

AgentSkill

Examples

Accessing the matched skill:

var matches = registry.FindMatches("review my code");
foreach (var match in matches)
{
    Console.WriteLine($"Skill: {match.Skill.Name}");
}