refactor: nest skills under tools.experimental

This commit is contained in:
Antarin Ghosal 2026-01-15 14:57:02 +05:30 committed by GitHub
parent 63406b4ba4
commit 8af43e3ac3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -981,15 +981,26 @@ const SETTINGS_SCHEMA = {
description: 'The number of lines to keep when truncating tool output.',
showInDialog: true,
},
experimentalSkills: {
type: 'boolean',
label: 'Experimental Skills',
experimental: {
type: 'object',
label: 'Experimental',
category: 'Tools',
requiresRestart: true,
default: false,
description:
'Enable experimental Agent Skills feature. When enabled, Qwen Code can use Skills from . qwen/skills/ and ~/. qwen/skills/.',
showInDialog: true,
default: {},
description: 'Experimental tool features.',
showInDialog: false,
properties: {
skills: {
type: 'boolean',
label: 'Skills',
category: 'Tools',
requiresRestart: true,
default: false,
description:
'Enable experimental Agent Skills feature. When enabled, Qwen Code can use Skills from . qwen/skills/ and ~/. qwen/skills/.',
showInDialog: true,
},
},
},
},
},