Property License
License
Gets the license for this skill, if specified.
public string License { get; }
Property Value
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"
}