Table of Contents

Method Start

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

Start()

Starts monitoring for file changes.

public void Start()

Examples

Starting the watcher:

using var watcher = new SkillWatcher(registry, "./skills");
watcher.Start();
Console.WriteLine("Watching for changes... Press Enter to stop.");
Console.ReadLine();