Property Name
Name
Gets the unique identifier for this skill.
Lowercase letters, numbers, and hyphens only. Max 64 characters.
This value is used to reference the skill in slash commands (e.g., /pdf-processing).
public string Name { get; }
Property Value
Examples
Accessing the skill name for display or slash command routing:
var skill = AgentSkill.Load("./skills/code-review");
Console.WriteLine(skill.Name); // Output: "code-review"
// Build a slash command from the name
string command = $"/{skill.Name}"; // "/code-review"