Property Description
Description
Gets a description of what this skill does and when to use it.
This is the primary signal agents use to determine when to invoke the skill. Keep it action-oriented and specific about activation triggers.
public string Description { get; }
Property Value
Examples
Using the description to display skill capabilities to users:
var skill = AgentSkill.Load("./skills/code-review");
Console.WriteLine(skill.Description);
// Output: "Reviews code for bugs, security issues, and best practices"