Fix and rename introspection agent -> cli help agent (#16097)

This commit is contained in:
Tommaso Sciortino
2026-01-07 15:01:57 -08:00
committed by GitHub
parent bd77515fd9
commit d4b418ba01
11 changed files with 71 additions and 72 deletions

View File

@@ -731,8 +731,7 @@ export async function loadCliConfig(
},
codebaseInvestigatorSettings:
settings.experimental?.codebaseInvestigatorSettings,
introspectionAgentSettings:
settings.experimental?.introspectionAgentSettings,
cliHelpAgentSettings: settings.experimental?.cliHelpAgentSettings,
fakeResponses: argv.fakeResponses,
recordResponses: argv.recordResponses,
retryFetchErrors: settings.general?.retryFetchErrors,

View File

@@ -1453,22 +1453,22 @@ const SETTINGS_SCHEMA = {
'Use OSC 52 sequence for pasting instead of clipboardy (useful for remote sessions).',
showInDialog: true,
},
introspectionAgentSettings: {
cliHelpAgentSettings: {
type: 'object',
label: 'Introspection Agent Settings',
label: 'CLI Help Agent Settings',
category: 'Experimental',
requiresRestart: true,
default: {},
description: 'Configuration for Introspection Agent.',
description: 'Configuration for CLI Help Agent.',
showInDialog: false,
properties: {
enabled: {
type: 'boolean',
label: 'Enable Introspection Agent',
label: 'Enable CLI Help Agent',
category: 'Experimental',
requiresRestart: true,
default: false,
description: 'Enable the Introspection Agent.',
description: 'Enable the CLI Help Agent.',
showInDialog: true,
},
},