Compare commits

..

11 Commits

Author SHA1 Message Date
Christine Betts 7a101acf5c update file 2026-01-30 16:26:41 -05:00
Christine Betts 982568ee85 trying again 2026-01-30 16:23:40 -05:00
Christine Betts 353aa77d9d trying again 2026-01-30 16:17:54 -05:00
Christine Betts 22c5d04543 trying again 2026-01-30 16:15:39 -05:00
Christine Betts 4c5532b05d trying again 2026-01-30 16:10:50 -05:00
Christine Betts c41e7e8860 trying again 2026-01-30 16:05:37 -05:00
Christine Betts 75b139c687 trying again 2026-01-30 16:02:09 -05:00
Christine Betts 9673a857ef take 3 2026-01-30 15:51:48 -05:00
Christine Betts ba4bf8daba updated 2026-01-30 15:36:46 -05:00
Christine Betts 980bea6e4a second try 2026-01-30 15:27:17 -05:00
Christine Betts 46fad8531f add borken link for testing 2026-01-30 15:23:54 -05:00
3 changed files with 2 additions and 12 deletions
+2 -2
View File
@@ -108,5 +108,5 @@ gemini skills disable my-expertise --scope workspace
## Creating your own skills
To create your own skills, see the
[Create Agent Skills](./guides/creating-skills.md) guide.
To create your own skills, see the [Create Agent Skills](./creating-skills.md)
guide.
-9
View File
@@ -338,10 +338,6 @@ export class LoadedSettings {
}
setValue(scope: LoadableSettingScope, key: string, value: unknown): void {
coreEvents.emitFeedback(
'info',
'saving: ' + key + ', ' + value + ', scope: ' + scope,
);
const settingsFile = this.forScope(scope);
setNestedProperty(settingsFile.settings, key, value);
setNestedProperty(settingsFile.originalSettings, key, value);
@@ -731,10 +727,6 @@ export function migrateDeprecatedSettings(
}
if (modified) {
coreEvents.emitFeedback(
'info',
'setting new general for scope:' + scope,
);
loadedSettings.setValue(scope, 'general', newGeneral);
anyModified = true;
}
@@ -855,7 +847,6 @@ export function saveSettings(settingsFile: SettingsFile): void {
settingsToSave as Record<string, unknown>,
);
} catch (error) {
coreEvents.emitFeedback('error', 'here' + error, error);
coreEvents.emitFeedback(
'error',
'There was an error saving your latest settings changes.',
-1
View File
@@ -371,7 +371,6 @@ export async function main() {
process.env['CLOUD_SHELL'] === 'true' ||
process.env['GEMINI_CLI_USE_COMPUTE_ADC'] === 'true'
) {
coreEvents.emitFeedback('info', 'saving compute_adc');
settings.setValue(
SettingScope.User,
'security.auth.selectedType',