Property Version
Version
Gets the version of this skill, if specified.
public string Version { get; }
Property Value
Examples
Checking skill version for compatibility:
var skill = AgentSkill.Load("./skills/code-review");
if (!string.IsNullOrEmpty(skill.Version))
{
Console.WriteLine($"Version: {skill.Version}"); // e.g., "1.2.0"
}