1
0

feat: Introduce Summary and Professional skills, replacing the old style mode and text structuring configuration options.

This commit is contained in:
2026-02-27 01:28:00 +01:00
parent 482fe84eb1
commit 9a207bc39a
7 changed files with 58 additions and 42 deletions

View File

@@ -5,7 +5,9 @@ public static class SkillRegistry
public static readonly ISkill[] AllSkills = new ISkill[]
{
new TerminalSkill(),
new TranslateSkill()
new TranslateSkill(),
new ProfessionalSkill(),
new SummarySkill()
};
public static ISkill? DetectSkill(string transcript, IEnumerable<string> activeSkillNames)