Table of Contents

Property Instructions

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

Instructions

Gets or sets the skill's instructions.

This is the full Markdown content from the body of the SKILL.md file.

public string Instructions { get; set; }

Property Value

string

Examples

Using the instructions:

var context = activator.Activate("code-review");
string prompt = $"Follow these instructions:\n{context.Instructions}";