Support for Built-in Agent Skills (#16045)

This commit is contained in:
N. Taylor Mullen
2026-01-09 22:26:58 -08:00
committed by GitHub
parent b54e688c75
commit 461c277bf2
17 changed files with 755 additions and 451 deletions
+2
View File
@@ -25,6 +25,8 @@ export interface SkillDefinition {
body: string;
/** Whether the skill is currently disabled. */
disabled?: boolean;
/** Whether the skill is a built-in skill. */
isBuiltin?: boolean;
}
const FRONTMATTER_REGEX = /^---\r?\n([\s\S]*?)\r?\n---\r?\n([\s\S]*)/;