Table of Contents

Property AllowedTools

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

AllowedTools

Gets or sets the pre-approved tools for this skill.

Tools listed here may be granted access without per-use approval when the skill is active.

public IReadOnlyList<string> AllowedTools { get; set; }

Property Value

IReadOnlyList<string>

Examples

Listing allowed tools:

var context = activator.Activate("web-scraper");
Console.WriteLine($"Allowed tools: {string.Join(", ", context.AllowedTools)}");