Table of Contents

Property WatchedDirectories

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

WatchedDirectories

Gets the directories being watched.

public IReadOnlyList<string> WatchedDirectories { get; }

Property Value

IReadOnlyList<string>

Examples

Listing watched directories:

var watcher = new SkillWatcher(registry, "./skills", "./plugins");
foreach (var dir in watcher.WatchedDirectories)
{
    Console.WriteLine($"Watching: {dir}");
}