Property IsFullyLoaded
IsFullyLoaded
Gets a value indicating whether this skill has been fully loaded, including instructions and resources.
public bool IsFullyLoaded { get; }
Property Value
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