namespace Toak.Core.Skills; public interface ISkill { string Name { get; } string Description { get; } string[] Hotwords { get; } bool HandlesExecution { get; } string GetSystemPrompt(string rawTranscript); void Execute(string llmResult); }