Table of Contents

Property BasePath

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

BasePath

Gets the absolute path to the skill directory.

public string BasePath { get; }

Property Value

string

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"