Table of Contents

Property Version

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

Version

Gets the version of this skill, if specified.

public string Version { get; }

Property Value

string

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"
}