Property Skill
Skill
Gets the matched skill.
public AgentSkill Skill { get; }
Property Value
Examples
Accessing the matched skill:
var matches = registry.FindMatches("review my code");
foreach (var match in matches)
{
Console.WriteLine($"Skill: {match.Skill.Name}");
}