Property BasePath
BasePath
Gets the absolute path to the skill directory.
public string BasePath { get; }
Property Value
Examples
Using the base path to access additional skill files:
var skill = AgentSkill.Load("./skills/code-review");
Console.WriteLine(skill.BasePath);
// Output: "C:\Projects\myapp\skills\code-review"