Table of Contents

Method ReloadSkill

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

ReloadSkill(string)

Manually triggers a reload of a specific skill.

public bool ReloadSkill(string skillPath)

Parameters

skillPath string

The path to the skill directory.

Returns

bool

true if the skill was reloaded successfully; otherwise, false.

Examples

Manually triggering a skill reload:

var watcher = new SkillWatcher(registry, "./skills");
if (watcher.ReloadSkill("./skills/code-review"))
{
    Console.WriteLine("Skill reloaded successfully");
}