Property Instructions
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
Examples
Using the instructions:
var context = activator.Activate("code-review");
string prompt = $"Follow these instructions:\n{context.Instructions}";