Table of Contents

Property Skill

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

Skill

Gets or sets the activated skill.

public AgentSkill Skill { get; set; }

Property Value

AgentSkill

Examples

Accessing the activated skill:

var activator = new SkillActivator(registry);
var context = activator.Activate("code-review");
Console.WriteLine($"Skill: {context.Skill.Name}");