Table of Contents

Property RelativePath

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

RelativePath

Gets the path of this resource relative to the skill root directory.

Example: scripts/validate.py or references/API.md

public string RelativePath { get; }

Property Value

string

Examples

Accessing the relative path:

var skill = AgentSkill.Load("./skills/code-review");
foreach (var resource in skill.Resources)
{
    Console.WriteLine(resource.RelativePath);
    // Output: "scripts/validate.py"
}