feat(agent): enable agent skills by default (#16736)

This commit is contained in:
N. Taylor Mullen
2026-01-16 15:10:55 -08:00
committed by GitHub
parent 1681ae1842
commit 272570cc18
7 changed files with 216 additions and 9 deletions
+11
View File
@@ -109,6 +109,7 @@ export interface SettingDefinition {
key?: string;
properties?: SettingsSchema;
showInDialog?: boolean;
ignoreInDocs?: boolean;
mergeStrategy?: MergeStrategy;
/** Enum type options */
options?: readonly SettingEnumOption[];
@@ -1597,6 +1598,16 @@ const SETTINGS_SCHEMA = {
description: 'Settings for agent skills.',
showInDialog: false,
properties: {
enabled: {
type: 'boolean',
label: 'Enable Agent Skills',
category: 'Advanced',
requiresRestart: true,
default: true,
description: 'Enable Agent Skills.',
showInDialog: true,
ignoreInDocs: true,
},
disabled: {
type: 'array',
label: 'Disabled Skills',