Table of Contents

Property License

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

License

Gets the license for this skill, if specified.

public string License { get; }

Property Value

string

Examples

Displaying skill license information:

var skill = AgentSkill.Load("./skills/code-review");
if (!string.IsNullOrEmpty(skill.License))
{
    Console.WriteLine($"License: {skill.License}"); // e.g., "MIT"
}