Table of Contents

Property Description

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

Description

Gets a description of what this skill does and when to use it.

This is the primary signal agents use to determine when to invoke the skill. Keep it action-oriented and specific about activation triggers.

public string Description { get; }

Property Value

string

Examples

Using the description to display skill capabilities to users:

var skill = AgentSkill.Load("./skills/code-review");
Console.WriteLine(skill.Description);
// Output: "Reviews code for bugs, security issues, and best practices"