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
@@ -357,6 +357,17 @@ describe('SettingsSchema', () => {
);
});
it('should have skills setting enabled by default', () => {
const setting = getSettingsSchema().skills.properties.enabled;
expect(setting).toBeDefined();
expect(setting.type).toBe('boolean');
expect(setting.category).toBe('Advanced');
expect(setting.default).toBe(true);
expect(setting.requiresRestart).toBe(true);
expect(setting.showInDialog).toBe(true);
expect(setting.description).toBe('Enable Agent Skills.');
});
it('should have plan setting in schema', () => {
const setting = getSettingsSchema().experimental.properties.plan;
expect(setting).toBeDefined();