enable cli_help agent by default (#16100)

This commit is contained in:
Tommaso Sciortino
2026-01-07 15:43:12 -08:00
committed by GitHub
parent 51d3f44d51
commit 1aa35c8796
7 changed files with 12 additions and 10 deletions
+3 -4
View File
@@ -209,6 +209,7 @@ describe('AgentRegistry', () => {
const disabledConfig = makeFakeConfig({
enableAgents: false,
codebaseInvestigatorSettings: { enabled: false },
cliHelpAgentSettings: { enabled: false },
});
const disabledRegistry = new TestableAgentRegistry(disabledConfig);
@@ -220,10 +221,8 @@ describe('AgentRegistry', () => {
).not.toHaveBeenCalled();
});
it('should register CLI help agent if enabled', async () => {
const config = makeFakeConfig({
cliHelpAgentSettings: { enabled: true },
});
it('should register CLI help agent by default', async () => {
const config = makeFakeConfig();
const registry = new TestableAgentRegistry(config);
await registry.initialize();