Table of Contents

Property IsFullyLoaded

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

IsFullyLoaded

Gets a value indicating whether this skill has been fully loaded, including instructions and resources.

public bool IsFullyLoaded { get; }

Property Value

bool

Examples

Checking if lazy-loaded content has been accessed:

var skill = AgentSkill.Load("./skills/code-review");
Console.WriteLine(skill.IsFullyLoaded); // False (lazy loading)

_ = skill.Instructions; // Triggers instruction loading
_ = skill.Resources;    // Triggers resource discovery
Console.WriteLine(skill.IsFullyLoaded); // True