Table of Contents

Property Count

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

Count

Gets the number of skills currently registered.

public int Count { get; }

Property Value

int

Examples

Checking how many skills are loaded:

var registry = new SkillRegistry();
registry.LoadFromDirectory("./skills");
Console.WriteLine($"Loaded {registry.Count} skills");