feat: add agent toml parser (#15112)

This commit is contained in:
Abhi
2025-12-17 22:46:55 -05:00
committed by GitHub
parent bc168bbae4
commit 2b426c1d91
16 changed files with 918 additions and 93 deletions
@@ -352,7 +352,9 @@ describe('SettingsSchema', () => {
expect(setting.default).toBe(false);
expect(setting.requiresRestart).toBe(true);
expect(setting.showInDialog).toBe(false);
expect(setting.description).toBe('Enable local and remote subagents.');
expect(setting.description).toBe(
'Enable local and remote subagents. Warning: Experimental feature, uses YOLO mode for subagents',
);
});
});
+2 -1
View File
@@ -1301,7 +1301,8 @@ const SETTINGS_SCHEMA = {
category: 'Experimental',
requiresRestart: true,
default: false,
description: 'Enable local and remote subagents.',
description:
'Enable local and remote subagents. Warning: Experimental feature, uses YOLO mode for subagents',
showInDialog: false,
},
extensionManagement: {