@google/gemini-cli-core 0.24.0-preview.3 → 0.25.0-preview.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/docs/assets/monitoring-dashboard-logs.png +0 -0
- package/dist/docs/assets/monitoring-dashboard-metrics.png +0 -0
- package/dist/docs/assets/monitoring-dashboard-overview.png +0 -0
- package/dist/docs/changelogs/index.md +22 -0
- package/dist/docs/changelogs/latest.md +137 -209
- package/dist/docs/changelogs/preview.md +116 -114
- package/dist/docs/changelogs/releases.md +273 -7
- package/dist/docs/cli/commands.md +3 -0
- package/dist/docs/cli/keyboard-shortcuts.md +34 -41
- package/dist/docs/cli/model-routing.md +1 -1
- package/dist/docs/cli/model.md +1 -1
- package/dist/docs/cli/settings.md +69 -53
- package/dist/docs/cli/skills.md +35 -3
- package/dist/docs/cli/telemetry.md +20 -0
- package/dist/docs/core/memport.md +2 -0
- package/dist/docs/core/policy-engine.md +3 -2
- package/dist/docs/extensions/index.md +57 -7
- package/dist/docs/get-started/configuration.md +39 -9
- package/dist/docs/get-started/gemini-3.md +2 -17
- package/dist/docs/hooks/best-practices.md +1 -1
- package/dist/docs/hooks/index.md +47 -11
- package/dist/docs/hooks/reference.md +19 -9
- package/dist/docs/hooks/writing-hooks.md +19 -1
- package/dist/docs/releases.md +1 -1
- package/dist/docs/tools/shell.md +1 -1
- package/dist/docs/troubleshooting.md +9 -3
- package/dist/src/agents/a2a-client-manager.d.ts +4 -0
- package/dist/src/agents/a2a-client-manager.js +22 -22
- package/dist/src/agents/a2a-client-manager.js.map +1 -1
- package/dist/src/agents/a2a-client-manager.test.js +44 -0
- package/dist/src/agents/a2a-client-manager.test.js.map +1 -1
- package/dist/src/agents/a2aUtils.d.ts +3 -2
- package/dist/src/agents/a2aUtils.js +28 -26
- package/dist/src/agents/a2aUtils.js.map +1 -1
- package/dist/src/agents/a2aUtils.test.js +9 -9
- package/dist/src/agents/a2aUtils.test.js.map +1 -1
- package/dist/src/agents/agentLoader.d.ts +68 -0
- package/dist/src/agents/{toml-loader.js → agentLoader.js} +86 -79
- package/dist/src/agents/agentLoader.js.map +1 -0
- package/dist/src/agents/agentLoader.test.js +307 -0
- package/dist/src/agents/agentLoader.test.js.map +1 -0
- package/dist/src/agents/{introspection-agent.d.ts → cli-help-agent.d.ts} +3 -2
- package/dist/src/agents/cli-help-agent.js +85 -0
- package/dist/src/agents/cli-help-agent.js.map +1 -0
- package/dist/src/agents/{introspection-agent.test.js → cli-help-agent.test.js} +25 -7
- package/dist/src/agents/cli-help-agent.test.js.map +1 -0
- package/dist/src/agents/codebase-investigator.js +10 -5
- package/dist/src/agents/codebase-investigator.js.map +1 -1
- package/dist/src/agents/delegate-to-agent-tool.js +17 -10
- package/dist/src/agents/delegate-to-agent-tool.js.map +1 -1
- package/dist/src/agents/delegate-to-agent-tool.test.js +60 -12
- package/dist/src/agents/delegate-to-agent-tool.test.js.map +1 -1
- package/dist/src/agents/local-executor.js +42 -8
- package/dist/src/agents/local-executor.js.map +1 -1
- package/dist/src/agents/local-executor.test.js +70 -11
- package/dist/src/agents/local-executor.test.js.map +1 -1
- package/dist/src/agents/local-invocation.test.js +8 -2
- package/dist/src/agents/local-invocation.test.js.map +1 -1
- package/dist/src/agents/registry.d.ts +12 -0
- package/dist/src/agents/registry.js +111 -42
- package/dist/src/agents/registry.js.map +1 -1
- package/dist/src/agents/registry.test.js +228 -15
- package/dist/src/agents/registry.test.js.map +1 -1
- package/dist/src/agents/remote-invocation.js +10 -13
- package/dist/src/agents/remote-invocation.js.map +1 -1
- package/dist/src/agents/remote-invocation.test.js +1 -1
- package/dist/src/agents/remote-invocation.test.js.map +1 -1
- package/dist/src/agents/subagent-tool-wrapper.test.js +8 -2
- package/dist/src/agents/subagent-tool-wrapper.test.js.map +1 -1
- package/dist/src/agents/types.d.ts +3 -11
- package/dist/src/agents/types.js.map +1 -1
- package/dist/src/availability/fallbackIntegration.test.js +58 -0
- package/dist/src/availability/fallbackIntegration.test.js.map +1 -0
- package/dist/src/code_assist/experiments/experiments.d.ts +1 -1
- package/dist/src/code_assist/experiments/experiments.js +21 -0
- package/dist/src/code_assist/experiments/experiments.js.map +1 -1
- package/dist/src/code_assist/experiments/experiments_local.test.d.ts +6 -0
- package/dist/src/code_assist/experiments/experiments_local.test.js +110 -0
- package/dist/src/code_assist/experiments/experiments_local.test.js.map +1 -0
- package/dist/src/code_assist/oauth-credential-storage.js +3 -4
- package/dist/src/code_assist/oauth-credential-storage.js.map +1 -1
- package/dist/src/code_assist/oauth2.js.map +1 -1
- package/dist/src/code_assist/oauth2.test.js +44 -19
- package/dist/src/code_assist/oauth2.test.js.map +1 -1
- package/dist/src/code_assist/telemetry.js +2 -1
- package/dist/src/code_assist/telemetry.js.map +1 -1
- package/dist/src/code_assist/telemetry.test.js +2 -1
- package/dist/src/code_assist/telemetry.test.js.map +1 -1
- package/dist/src/code_assist/types.d.ts +7 -0
- package/dist/src/code_assist/types.js +7 -0
- package/dist/src/code_assist/types.js.map +1 -1
- package/dist/src/commands/memory.d.ts +11 -0
- package/dist/src/commands/memory.js +80 -0
- package/dist/src/commands/memory.js.map +1 -0
- package/dist/src/commands/memory.test.d.ts +6 -0
- package/dist/src/commands/memory.test.js +155 -0
- package/dist/src/commands/memory.test.js.map +1 -0
- package/dist/src/config/config.d.ts +50 -7
- package/dist/src/config/config.js +113 -48
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +34 -4
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/models.d.ts +7 -0
- package/dist/src/config/models.js +11 -0
- package/dist/src/config/models.js.map +1 -1
- package/dist/src/config/models.test.js +17 -1
- package/dist/src/config/models.test.js.map +1 -1
- package/dist/src/config/storage.d.ts +1 -0
- package/dist/src/config/storage.js +5 -2
- package/dist/src/config/storage.js.map +1 -1
- package/dist/src/core/client.js +25 -8
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/client.test.js +45 -31
- package/dist/src/core/client.test.js.map +1 -1
- package/dist/src/core/coreToolHookTriggers.d.ts +8 -4
- package/dist/src/core/coreToolHookTriggers.js +43 -5
- package/dist/src/core/coreToolHookTriggers.js.map +1 -1
- package/dist/src/core/coreToolScheduler.d.ts +1 -8
- package/dist/src/core/coreToolScheduler.js +58 -60
- package/dist/src/core/coreToolScheduler.js.map +1 -1
- package/dist/src/core/coreToolScheduler.test.js +215 -8
- package/dist/src/core/coreToolScheduler.test.js.map +1 -1
- package/dist/src/core/geminiChat.d.ts +26 -1
- package/dist/src/core/geminiChat.js +91 -8
- package/dist/src/core/geminiChat.js.map +1 -1
- package/dist/src/core/geminiChat.test.js +109 -0
- package/dist/src/core/geminiChat.test.js.map +1 -1
- package/dist/src/core/geminiChatHookTriggers.d.ts +8 -4
- package/dist/src/core/geminiChatHookTriggers.js +31 -9
- package/dist/src/core/geminiChatHookTriggers.js.map +1 -1
- package/dist/src/core/geminiChatHookTriggers.test.d.ts +6 -0
- package/dist/src/core/geminiChatHookTriggers.test.js +153 -0
- package/dist/src/core/geminiChatHookTriggers.test.js.map +1 -0
- package/dist/src/core/loggingContentGenerator.js +5 -0
- package/dist/src/core/loggingContentGenerator.js.map +1 -1
- package/dist/src/core/loggingContentGenerator.test.js +30 -0
- package/dist/src/core/loggingContentGenerator.test.js.map +1 -1
- package/dist/src/core/nonInteractiveToolExecutor.test.js +4 -2
- package/dist/src/core/nonInteractiveToolExecutor.test.js.map +1 -1
- package/dist/src/core/prompts.js +8 -8
- package/dist/src/core/prompts.js.map +1 -1
- package/dist/src/core/prompts.test.js +4 -2
- package/dist/src/core/prompts.test.js.map +1 -1
- package/dist/src/core/tokenLimits.js +6 -12
- package/dist/src/core/tokenLimits.js.map +1 -1
- package/dist/src/core/tokenLimits.test.js +8 -4
- package/dist/src/core/tokenLimits.test.js.map +1 -1
- package/dist/src/core/turn.d.ts +2 -0
- package/dist/src/core/turn.js +14 -0
- package/dist/src/core/turn.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/hooks/hookEventHandler.d.ts +3 -3
- package/dist/src/hooks/hookEventHandler.js +27 -8
- package/dist/src/hooks/hookEventHandler.js.map +1 -1
- package/dist/src/hooks/hookEventHandler.test.js +145 -0
- package/dist/src/hooks/hookEventHandler.test.js.map +1 -1
- package/dist/src/hooks/hookSystem.d.ts +12 -0
- package/dist/src/hooks/hookSystem.js +38 -0
- package/dist/src/hooks/hookSystem.js.map +1 -1
- package/dist/src/hooks/hookTranslator.js +2 -1
- package/dist/src/hooks/hookTranslator.js.map +1 -1
- package/dist/src/hooks/index.d.ts +0 -1
- package/dist/src/hooks/index.js +0 -2
- package/dist/src/hooks/index.js.map +1 -1
- package/dist/src/hooks/types.d.ts +21 -0
- package/dist/src/hooks/types.js +0 -15
- package/dist/src/hooks/types.js.map +1 -1
- package/dist/src/hooks/types.test.js +4 -28
- package/dist/src/hooks/types.test.js.map +1 -1
- package/dist/src/ide/detect-ide.d.ts +4 -0
- package/dist/src/ide/detect-ide.js +7 -2
- package/dist/src/ide/detect-ide.js.map +1 -1
- package/dist/src/ide/detect-ide.test.js +10 -0
- package/dist/src/ide/detect-ide.test.js.map +1 -1
- package/dist/src/ide/ide-installer.js +2 -2
- package/dist/src/ide/ide-installer.js.map +1 -1
- package/dist/src/ide/ide-installer.test.js +11 -2
- package/dist/src/ide/ide-installer.test.js.map +1 -1
- package/dist/src/index.d.ts +10 -1
- package/dist/src/index.js +12 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/mcp/token-storage/file-token-storage.js +2 -2
- package/dist/src/mcp/token-storage/file-token-storage.js.map +1 -1
- package/dist/src/policy/config.test.js +3 -2
- package/dist/src/policy/config.test.js.map +1 -1
- package/dist/src/policy/persistence.test.js +1 -1
- package/dist/src/policy/persistence.test.js.map +1 -1
- package/dist/src/policy/policies/agent.toml +1 -1
- package/dist/src/policy/policy-engine.js +80 -20
- package/dist/src/policy/policy-engine.js.map +1 -1
- package/dist/src/policy/policy-engine.test.js +17 -0
- package/dist/src/policy/policy-engine.test.js.map +1 -1
- package/dist/src/policy/policy-updater.test.js +3 -3
- package/dist/src/policy/policy-updater.test.js.map +1 -1
- package/dist/src/policy/shell-safety.test.js +371 -8
- package/dist/src/policy/shell-safety.test.js.map +1 -1
- package/dist/src/policy/types.d.ts +4 -0
- package/dist/src/policy/utils.js +4 -1
- package/dist/src/policy/utils.js.map +1 -1
- package/dist/src/policy/utils.test.js +34 -6
- package/dist/src/policy/utils.test.js.map +1 -1
- package/dist/src/routing/routingStrategy.d.ts +2 -0
- package/dist/src/routing/strategies/classifierStrategy.js +1 -1
- package/dist/src/routing/strategies/classifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/classifierStrategy.test.js +16 -0
- package/dist/src/routing/strategies/classifierStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.d.ts +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.js +2 -2
- package/dist/src/routing/strategies/fallbackStrategy.js.map +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.test.js +13 -0
- package/dist/src/routing/strategies/fallbackStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/overrideStrategy.d.ts +1 -1
- package/dist/src/routing/strategies/overrideStrategy.js +5 -5
- package/dist/src/routing/strategies/overrideStrategy.js.map +1 -1
- package/dist/src/routing/strategies/overrideStrategy.test.js +14 -0
- package/dist/src/routing/strategies/overrideStrategy.test.js.map +1 -1
- package/dist/src/scheduler/tool-executor.js +2 -2
- package/dist/src/scheduler/tool-executor.js.map +1 -1
- package/dist/src/scheduler/tool-modifier.d.ts +23 -0
- package/dist/src/scheduler/tool-modifier.js +50 -0
- package/dist/src/scheduler/tool-modifier.js.map +1 -0
- package/dist/src/scheduler/tool-modifier.test.d.ts +6 -0
- package/dist/src/scheduler/tool-modifier.test.js +159 -0
- package/dist/src/scheduler/tool-modifier.test.js.map +1 -0
- package/dist/src/services/chatCompressionService.js +3 -10
- package/dist/src/services/chatCompressionService.js.map +1 -1
- package/dist/src/services/chatCompressionService.test.js +1 -0
- package/dist/src/services/chatCompressionService.test.js.map +1 -1
- package/dist/src/services/chatRecordingService.d.ts +7 -1
- package/dist/src/services/chatRecordingService.js +20 -2
- package/dist/src/services/chatRecordingService.js.map +1 -1
- package/dist/src/services/chatRecordingService.test.js +43 -0
- package/dist/src/services/chatRecordingService.test.js.map +1 -1
- package/dist/src/services/environmentSanitization.js +4 -3
- package/dist/src/services/environmentSanitization.js.map +1 -1
- package/dist/src/services/gitService.test.js +10 -2
- package/dist/src/services/gitService.test.js.map +1 -1
- package/dist/src/services/modelConfig.integration.test.js +2 -2
- package/dist/src/services/modelConfig.integration.test.js.map +1 -1
- package/dist/src/services/modelConfigService.d.ts +38 -4
- package/dist/src/services/modelConfigService.js +135 -76
- package/dist/src/services/modelConfigService.js.map +1 -1
- package/dist/src/services/modelConfigService.test.js +116 -0
- package/dist/src/services/modelConfigService.test.js.map +1 -1
- package/dist/src/services/shellExecutionService.js +1 -1
- package/dist/src/services/shellExecutionService.js.map +1 -1
- package/dist/src/services/shellExecutionService.test.js +43 -2
- package/dist/src/services/shellExecutionService.test.js.map +1 -1
- package/dist/src/skills/skillLoader.d.ts +3 -0
- package/dist/src/skills/skillLoader.js +3 -3
- package/dist/src/skills/skillLoader.js.map +1 -1
- package/dist/src/skills/skillLoader.test.js +4 -2
- package/dist/src/skills/skillLoader.test.js.map +1 -1
- package/dist/src/skills/skillManager.d.ts +18 -0
- package/dist/src/skills/skillManager.js +43 -5
- package/dist/src/skills/skillManager.js.map +1 -1
- package/dist/src/skills/skillManager.test.js +83 -1
- package/dist/src/skills/skillManager.test.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.d.ts +9 -2
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.js +60 -9
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js +105 -6
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/event-metadata-key.d.ts +5 -1
- package/dist/src/telemetry/clearcut-logger/event-metadata-key.js +8 -0
- package/dist/src/telemetry/clearcut-logger/event-metadata-key.js.map +1 -1
- package/dist/src/telemetry/loggers.js +1 -1
- package/dist/src/telemetry/loggers.js.map +1 -1
- package/dist/src/telemetry/loggers.test.js +8 -0
- package/dist/src/telemetry/loggers.test.js.map +1 -1
- package/dist/src/telemetry/types.js +4 -2
- package/dist/src/telemetry/types.js.map +1 -1
- package/dist/src/tools/activate-skill.js +23 -10
- package/dist/src/tools/activate-skill.js.map +1 -1
- package/dist/src/tools/activate-skill.test.js +24 -6
- package/dist/src/tools/activate-skill.test.js.map +1 -1
- package/dist/src/tools/confirmation-policy.test.js +1 -0
- package/dist/src/tools/confirmation-policy.test.js.map +1 -1
- package/dist/src/tools/edit.js +12 -0
- package/dist/src/tools/edit.js.map +1 -1
- package/dist/src/tools/edit.test.js +34 -0
- package/dist/src/tools/edit.test.js.map +1 -1
- package/dist/src/tools/get-internal-docs.js +11 -18
- package/dist/src/tools/get-internal-docs.js.map +1 -1
- package/dist/src/tools/mcp-tool.d.ts +18 -3
- package/dist/src/tools/mcp-tool.js +1 -1
- package/dist/src/tools/mcp-tool.js.map +1 -1
- package/dist/src/tools/tool-error.d.ts +4 -0
- package/dist/src/tools/tool-error.js +4 -0
- package/dist/src/tools/tool-error.js.map +1 -1
- package/dist/src/tools/tools.d.ts +2 -0
- package/dist/src/tools/tools.js.map +1 -1
- package/dist/src/tools/write-file.js +4 -2
- package/dist/src/tools/write-file.js.map +1 -1
- package/dist/src/tools/write-file.test.js +45 -6
- package/dist/src/tools/write-file.test.js.map +1 -1
- package/dist/src/utils/apiConversionUtils.d.ts +12 -0
- package/dist/src/utils/apiConversionUtils.js +46 -0
- package/dist/src/utils/apiConversionUtils.js.map +1 -0
- package/dist/src/utils/apiConversionUtils.test.d.ts +6 -0
- package/dist/src/utils/apiConversionUtils.test.js +150 -0
- package/dist/src/utils/apiConversionUtils.test.js.map +1 -0
- package/dist/src/utils/editCorrector.d.ts +3 -3
- package/dist/src/utils/editCorrector.js +21 -5
- package/dist/src/utils/editCorrector.js.map +1 -1
- package/dist/src/utils/editCorrector.test.js +20 -20
- package/dist/src/utils/editCorrector.test.js.map +1 -1
- package/dist/src/utils/editor.d.ts +3 -2
- package/dist/src/utils/editor.js +26 -6
- package/dist/src/utils/editor.js.map +1 -1
- package/dist/src/utils/editor.test.js +27 -4
- package/dist/src/utils/editor.test.js.map +1 -1
- package/dist/src/utils/events.d.ts +23 -1
- package/dist/src/utils/events.js +14 -0
- package/dist/src/utils/events.js.map +1 -1
- package/dist/src/utils/fileDiffUtils.d.ts +18 -0
- package/dist/src/utils/fileDiffUtils.js +37 -0
- package/dist/src/utils/fileDiffUtils.js.map +1 -0
- package/dist/src/utils/fileDiffUtils.test.d.ts +6 -0
- package/dist/src/utils/fileDiffUtils.test.js +84 -0
- package/dist/src/utils/fileDiffUtils.test.js.map +1 -0
- package/dist/src/utils/gitIgnoreParser.js +9 -10
- package/dist/src/utils/gitIgnoreParser.js.map +1 -1
- package/dist/src/utils/installationManager.test.js +11 -3
- package/dist/src/utils/installationManager.test.js.map +1 -1
- package/dist/src/utils/memoryDiscovery.js +1 -2
- package/dist/src/utils/memoryDiscovery.js.map +1 -1
- package/dist/src/utils/memoryDiscovery.test.js +9 -0
- package/dist/src/utils/memoryDiscovery.test.js.map +1 -1
- package/dist/src/utils/paths.d.ts +10 -0
- package/dist/src/utils/paths.js +20 -1
- package/dist/src/utils/paths.js.map +1 -1
- package/dist/src/utils/retry.d.ts +1 -0
- package/dist/src/utils/retry.js +14 -2
- package/dist/src/utils/retry.js.map +1 -1
- package/dist/src/utils/retry.test.js +11 -11
- package/dist/src/utils/retry.test.js.map +1 -1
- package/dist/src/utils/userAccountManager.test.js +5 -5
- package/dist/src/utils/userAccountManager.test.js.map +1 -1
- package/dist/src/utils/workspaceContext.test.js +1 -1
- package/dist/src/utils/workspaceContext.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -2
- package/dist/docs/cli/configuration.md +0 -780
- package/dist/docs/get-started/deployment.md +0 -143
- package/dist/google-gemini-cli-core-0.24.0-preview.2.tgz +0 -0
- package/dist/src/agents/introspection-agent.js +0 -72
- package/dist/src/agents/introspection-agent.js.map +0 -1
- package/dist/src/agents/introspection-agent.test.js.map +0 -1
- package/dist/src/agents/toml-loader.d.ts +0 -74
- package/dist/src/agents/toml-loader.js.map +0 -1
- package/dist/src/agents/toml-loader.test.js +0 -309
- package/dist/src/agents/toml-loader.test.js.map +0 -1
- package/dist/src/core/sessionHookTriggers.d.ts +0 -29
- package/dist/src/core/sessionHookTriggers.js +0 -75
- package/dist/src/core/sessionHookTriggers.js.map +0 -1
- package/dist/src/utils/shell-permissions.d.ts +0 -52
- package/dist/src/utils/shell-permissions.js +0 -188
- package/dist/src/utils/shell-permissions.js.map +0 -1
- package/dist/src/utils/shell-permissions.test.js +0 -369
- package/dist/src/utils/shell-permissions.test.js.map +0 -1
- /package/dist/src/agents/{introspection-agent.test.d.ts → agentLoader.test.d.ts} +0 -0
- /package/dist/src/agents/{toml-loader.test.d.ts → cli-help-agent.test.d.ts} +0 -0
- /package/dist/src/{utils/shell-permissions.test.d.ts → availability/fallbackIntegration.test.d.ts} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Preview release: Release v0.
|
|
1
|
+
# Preview release: Release v0.23.0-preview.0
|
|
2
2
|
|
|
3
|
-
Released: December
|
|
3
|
+
Released: December 22, 2025
|
|
4
4
|
|
|
5
5
|
Our preview release includes the latest, new, and experimental features. This
|
|
6
6
|
release may not be as stable as our [latest weekly release](latest.md).
|
|
@@ -13,117 +13,119 @@ npm install -g @google/gemini-cli@preview
|
|
|
13
13
|
|
|
14
14
|
## What's Changed
|
|
15
15
|
|
|
16
|
-
-
|
|
17
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
18
|
-
-
|
|
19
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
20
|
-
-
|
|
21
|
-
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
-
|
|
27
|
-
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
-
|
|
39
|
-
|
|
40
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
-
|
|
44
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
45
|
-
- chore
|
|
46
|
-
@
|
|
47
|
-
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
-
|
|
54
|
-
|
|
55
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
56
|
-
-
|
|
57
|
-
in https://github.com/google-gemini/gemini-cli/pull/
|
|
58
|
-
-
|
|
59
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
60
|
-
-
|
|
61
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
62
|
-
-
|
|
63
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
64
|
-
-
|
|
65
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
66
|
-
-
|
|
67
|
-
@
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
71
|
-
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
-
|
|
75
|
-
|
|
76
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
77
|
-
-
|
|
78
|
-
|
|
79
|
-
-
|
|
80
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
81
|
-
-
|
|
82
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
83
|
-
-
|
|
84
|
-
|
|
85
|
-
-
|
|
86
|
-
|
|
87
|
-
-
|
|
88
|
-
|
|
89
|
-
-
|
|
90
|
-
|
|
91
|
-
-
|
|
92
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
93
|
-
-
|
|
94
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
95
|
-
-
|
|
96
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
97
|
-
- chore/release: bump version to 0.21.0-nightly.
|
|
98
|
-
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/
|
|
99
|
-
-
|
|
100
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
101
|
-
-
|
|
102
|
-
@
|
|
103
|
-
- fix:
|
|
104
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
105
|
-
-
|
|
106
|
-
|
|
107
|
-
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
-
|
|
111
|
-
|
|
112
|
-
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
-
|
|
117
|
-
|
|
118
|
-
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
-
|
|
123
|
-
|
|
124
|
-
-
|
|
125
|
-
|
|
126
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
16
|
+
- Code assist service metrics. by @gundermanc in
|
|
17
|
+
https://github.com/google-gemini/gemini-cli/pull/15024
|
|
18
|
+
- chore/release: bump version to 0.21.0-nightly.20251216.bb0c0d8ee by
|
|
19
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15121
|
|
20
|
+
- Docs by @Roaimkhan in https://github.com/google-gemini/gemini-cli/pull/15103
|
|
21
|
+
- Use official ACP SDK and support HTTP/SSE based MCP servers by @SteffenDE in
|
|
22
|
+
https://github.com/google-gemini/gemini-cli/pull/13856
|
|
23
|
+
- Remove foreground for themes other than shades of purple and holiday. by
|
|
24
|
+
@jacob314 in https://github.com/google-gemini/gemini-cli/pull/14606
|
|
25
|
+
- chore: remove repo specific tips by @jackwotherspoon in
|
|
26
|
+
https://github.com/google-gemini/gemini-cli/pull/15164
|
|
27
|
+
- chore: remove user query from footer in debug mode by @jackwotherspoon in
|
|
28
|
+
https://github.com/google-gemini/gemini-cli/pull/15169
|
|
29
|
+
- Disallow unnecessary awaits. by @gundermanc in
|
|
30
|
+
https://github.com/google-gemini/gemini-cli/pull/15172
|
|
31
|
+
- Add one to the padding in settings dialog to avoid flicker. by @jacob314 in
|
|
32
|
+
https://github.com/google-gemini/gemini-cli/pull/15173
|
|
33
|
+
- feat(core): introduce remote agent infrastructure and rename local executor by
|
|
34
|
+
@adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15110
|
|
35
|
+
- feat(cli): Add `/auth logout` command to clear credentials and auth state by
|
|
36
|
+
@CN-Scars in https://github.com/google-gemini/gemini-cli/pull/13383
|
|
37
|
+
- (fix) Automated pr labeler by @DaanVersavel in
|
|
38
|
+
https://github.com/google-gemini/gemini-cli/pull/14885
|
|
39
|
+
- feat: launch Gemini 3 Flash in Gemini CLI ⚡️⚡️⚡️ by @scidomino in
|
|
40
|
+
https://github.com/google-gemini/gemini-cli/pull/15196
|
|
41
|
+
- Refactor: Migrate console.error in ripGrep.ts to debugLogger by @Adib234 in
|
|
42
|
+
https://github.com/google-gemini/gemini-cli/pull/15201
|
|
43
|
+
- chore: update a2a-js to 0.3.7 by @adamfweidman in
|
|
44
|
+
https://github.com/google-gemini/gemini-cli/pull/15197
|
|
45
|
+
- chore(core): remove redundant isModelAvailabilityServiceEnabled toggle and
|
|
46
|
+
clean up dead code by @adamfweidman in
|
|
47
|
+
https://github.com/google-gemini/gemini-cli/pull/15207
|
|
48
|
+
- feat(core): Late resolve `GenerateContentConfig`s and reduce mutation. by
|
|
49
|
+
@joshualitt in https://github.com/google-gemini/gemini-cli/pull/14920
|
|
50
|
+
- Respect previewFeatures value from the remote flag if undefined by @sehoon38
|
|
51
|
+
in https://github.com/google-gemini/gemini-cli/pull/15214
|
|
52
|
+
- feat(ui): add Windows clipboard image support and Alt+V paste workaround by
|
|
53
|
+
@jacob314 in https://github.com/google-gemini/gemini-cli/pull/15218
|
|
54
|
+
- chore(core): remove legacy fallback flags and migrate loop detection by
|
|
55
|
+
@adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15213
|
|
56
|
+
- fix(ui): Prevent eager slash command completion hiding sibling commands by
|
|
57
|
+
@SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15224
|
|
58
|
+
- Docs: Update Changelog for Dec 17, 2025 by @jkcinouye in
|
|
59
|
+
https://github.com/google-gemini/gemini-cli/pull/15204
|
|
60
|
+
- Code Assist backend telemetry for user accept/reject of suggestions by
|
|
61
|
+
@gundermanc in https://github.com/google-gemini/gemini-cli/pull/15206
|
|
62
|
+
- fix(cli): correct initial history length handling for chat commands by
|
|
63
|
+
@SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15223
|
|
64
|
+
- chore/release: bump version to 0.21.0-nightly.20251218.739c02bd6 by
|
|
65
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15231
|
|
66
|
+
- Change detailed model stats to use a new shared Table class to resolve
|
|
67
|
+
robustness issues. by @jacob314 in
|
|
68
|
+
https://github.com/google-gemini/gemini-cli/pull/15208
|
|
69
|
+
- feat: add agent toml parser by @abhipatel12 in
|
|
70
|
+
https://github.com/google-gemini/gemini-cli/pull/15112
|
|
71
|
+
- Add core tool that adds all context from the core package. by @jacob314 in
|
|
72
|
+
https://github.com/google-gemini/gemini-cli/pull/15238
|
|
73
|
+
- (docs): Add reference section to hooks documentation by @abhipatel12 in
|
|
74
|
+
https://github.com/google-gemini/gemini-cli/pull/15159
|
|
75
|
+
- feat(hooks): add support for friendly names and descriptions by @abhipatel12
|
|
76
|
+
in https://github.com/google-gemini/gemini-cli/pull/15174
|
|
77
|
+
- feat: Detect background color by @jacob314 in
|
|
78
|
+
https://github.com/google-gemini/gemini-cli/pull/15132
|
|
79
|
+
- add 3.0 to allowed sensitive keywords by @scidomino in
|
|
80
|
+
https://github.com/google-gemini/gemini-cli/pull/15276
|
|
81
|
+
- feat: Pass additional environment variables to shell execution by @galz10 in
|
|
82
|
+
https://github.com/google-gemini/gemini-cli/pull/15160
|
|
83
|
+
- Remove unused code by @scidomino in
|
|
84
|
+
https://github.com/google-gemini/gemini-cli/pull/15290
|
|
85
|
+
- Handle all 429 as retryableQuotaError by @sehoon38 in
|
|
86
|
+
https://github.com/google-gemini/gemini-cli/pull/15288
|
|
87
|
+
- Remove unnecessary dependencies by @scidomino in
|
|
88
|
+
https://github.com/google-gemini/gemini-cli/pull/15291
|
|
89
|
+
- fix: prevent infinite loop in prompt completion on error by @galz10 in
|
|
90
|
+
https://github.com/google-gemini/gemini-cli/pull/14548
|
|
91
|
+
- fix(ui): show command suggestions even on perfect match and sort them by
|
|
92
|
+
@SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15287
|
|
93
|
+
- feat(hooks): reduce log verbosity and improve error reporting in UI by
|
|
94
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15297
|
|
95
|
+
- feat: simplify tool confirmation labels for better UX by @NTaylorMullen in
|
|
96
|
+
https://github.com/google-gemini/gemini-cli/pull/15296
|
|
97
|
+
- chore/release: bump version to 0.21.0-nightly.20251219.70696e364 by
|
|
98
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15301
|
|
99
|
+
- feat(core): Implement JIT context memory loading and UI sync by @SandyTao520
|
|
100
|
+
in https://github.com/google-gemini/gemini-cli/pull/14469
|
|
101
|
+
- feat(ui): Put "Allow for all future sessions" behind a setting off by default.
|
|
102
|
+
by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15322
|
|
103
|
+
- fix(cli):change the placeholder of input during the shell mode by
|
|
104
|
+
@JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/15135
|
|
105
|
+
- Validate OAuth resource parameter matches MCP server URL by @galz10 in
|
|
106
|
+
https://github.com/google-gemini/gemini-cli/pull/15289
|
|
107
|
+
- docs(cli): add System Prompt Override (GEMINI_SYSTEM_MD) by @ashmod in
|
|
108
|
+
https://github.com/google-gemini/gemini-cli/pull/9515
|
|
109
|
+
- more robust command parsing logs by @scidomino in
|
|
110
|
+
https://github.com/google-gemini/gemini-cli/pull/15339
|
|
111
|
+
- Introspection agent demo by @scidomino in
|
|
112
|
+
https://github.com/google-gemini/gemini-cli/pull/15232
|
|
113
|
+
- fix(core): sanitize hook command expansion and prevent injection by
|
|
114
|
+
@SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15343
|
|
115
|
+
- fix(folder trust): add validation for trusted folder level by @adamfweidman in
|
|
116
|
+
https://github.com/google-gemini/gemini-cli/pull/12215
|
|
117
|
+
- fix(cli): fix right border overflow in trust dialogs by @galz10 in
|
|
118
|
+
https://github.com/google-gemini/gemini-cli/pull/15350
|
|
119
|
+
- fix(policy): fix bug where accepting-edits continued after it was turned off
|
|
120
|
+
by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15351
|
|
121
|
+
- fix: prevent infinite relaunch loop when --resume fails (#14941) by @Ying-xi
|
|
122
|
+
in https://github.com/google-gemini/gemini-cli/pull/14951
|
|
123
|
+
- chore/release: bump version to 0.21.0-nightly.20251220.41a1a3eed by
|
|
124
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15352
|
|
125
|
+
- feat(telemetry): add clearcut logging for hooks by @abhipatel12 in
|
|
126
|
+
https://github.com/google-gemini/gemini-cli/pull/15405
|
|
127
|
+
- fix(core): Add `.geminiignore` support to SearchText tool by @xyrolle in
|
|
128
|
+
https://github.com/google-gemini/gemini-cli/pull/13763
|
|
127
129
|
|
|
128
130
|
**Full Changelog**:
|
|
129
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
131
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.22.0-preview.3...v0.23.0-preview.0
|
|
@@ -12,13 +12,279 @@ on GitHub.
|
|
|
12
12
|
|
|
13
13
|
## Current Releases
|
|
14
14
|
|
|
15
|
-
| Release channel
|
|
16
|
-
|
|
|
17
|
-
| Nightly
|
|
18
|
-
| [Preview](#release-
|
|
19
|
-
| [Latest](#release-
|
|
15
|
+
| Release channel | Notes |
|
|
16
|
+
| :---------------------------------------- | :---------------------------------------------- |
|
|
17
|
+
| Nightly | Nightly release with the most recent changes. |
|
|
18
|
+
| [Preview](#release-v0230-preview-preview) | Experimental features ready for early feedback. |
|
|
19
|
+
| [Latest](#release-v0220---v0225-latest) | Stable, recommended for general use. |
|
|
20
20
|
|
|
21
|
-
## Release v0.
|
|
21
|
+
## Release v0.23.0-preview (Preview)
|
|
22
|
+
|
|
23
|
+
## What's Changed
|
|
24
|
+
|
|
25
|
+
- Code assist service metrics. by @gundermanc in
|
|
26
|
+
https://github.com/google-gemini/gemini-cli/pull/15024
|
|
27
|
+
- chore/release: bump version to 0.21.0-nightly.20251216.bb0c0d8ee by
|
|
28
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15121
|
|
29
|
+
- Docs by @Roaimkhan in https://github.com/google-gemini/gemini-cli/pull/15103
|
|
30
|
+
- Use official ACP SDK and support HTTP/SSE based MCP servers by @SteffenDE in
|
|
31
|
+
https://github.com/google-gemini/gemini-cli/pull/13856
|
|
32
|
+
- Remove foreground for themes other than shades of purple and holiday. by
|
|
33
|
+
@jacob314 in https://github.com/google-gemini/gemini-cli/pull/14606
|
|
34
|
+
- chore: remove repo specific tips by @jackwotherspoon in
|
|
35
|
+
https://github.com/google-gemini/gemini-cli/pull/15164
|
|
36
|
+
- chore: remove user query from footer in debug mode by @jackwotherspoon in
|
|
37
|
+
https://github.com/google-gemini/gemini-cli/pull/15169
|
|
38
|
+
- Disallow unnecessary awaits. by @gundermanc in
|
|
39
|
+
https://github.com/google-gemini/gemini-cli/pull/15172
|
|
40
|
+
- Add one to the padding in settings dialog to avoid flicker. by @jacob314 in
|
|
41
|
+
https://github.com/google-gemini/gemini-cli/pull/15173
|
|
42
|
+
- feat(core): introduce remote agent infrastructure and rename local executor by
|
|
43
|
+
@adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15110
|
|
44
|
+
- feat(cli): Add `/auth logout` command to clear credentials and auth state by
|
|
45
|
+
@CN-Scars in https://github.com/google-gemini/gemini-cli/pull/13383
|
|
46
|
+
- (fix) Automated pr labeler by @DaanVersavel in
|
|
47
|
+
https://github.com/google-gemini/gemini-cli/pull/14885
|
|
48
|
+
- feat: launch Gemini 3 Flash in Gemini CLI ⚡️⚡️⚡️ by @scidomino in
|
|
49
|
+
https://github.com/google-gemini/gemini-cli/pull/15196
|
|
50
|
+
- Refactor: Migrate console.error in ripGrep.ts to debugLogger by @Adib234 in
|
|
51
|
+
https://github.com/google-gemini/gemini-cli/pull/15201
|
|
52
|
+
- chore: update a2a-js to 0.3.7 by @adamfweidman in
|
|
53
|
+
https://github.com/google-gemini/gemini-cli/pull/15197
|
|
54
|
+
- chore(core): remove redundant isModelAvailabilityServiceEnabled toggle and
|
|
55
|
+
clean up dead code by @adamfweidman in
|
|
56
|
+
https://github.com/google-gemini/gemini-cli/pull/15207
|
|
57
|
+
- feat(core): Late resolve `GenerateContentConfig`s and reduce mutation. by
|
|
58
|
+
@joshualitt in https://github.com/google-gemini/gemini-cli/pull/14920
|
|
59
|
+
- Respect previewFeatures value from the remote flag if undefined by @sehoon38
|
|
60
|
+
in https://github.com/google-gemini/gemini-cli/pull/15214
|
|
61
|
+
- feat(ui): add Windows clipboard image support and Alt+V paste workaround by
|
|
62
|
+
@jacob314 in https://github.com/google-gemini/gemini-cli/pull/15218
|
|
63
|
+
- chore(core): remove legacy fallback flags and migrate loop detection by
|
|
64
|
+
@adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15213
|
|
65
|
+
- fix(ui): Prevent eager slash command completion hiding sibling commands by
|
|
66
|
+
@SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15224
|
|
67
|
+
- Docs: Update Changelog for Dec 17, 2025 by @jkcinouye in
|
|
68
|
+
https://github.com/google-gemini/gemini-cli/pull/15204
|
|
69
|
+
- Code Assist backend telemetry for user accept/reject of suggestions by
|
|
70
|
+
@gundermanc in https://github.com/google-gemini/gemini-cli/pull/15206
|
|
71
|
+
- fix(cli): correct initial history length handling for chat commands by
|
|
72
|
+
@SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15223
|
|
73
|
+
- chore/release: bump version to 0.21.0-nightly.20251218.739c02bd6 by
|
|
74
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15231
|
|
75
|
+
- Change detailed model stats to use a new shared Table class to resolve
|
|
76
|
+
robustness issues. by @jacob314 in
|
|
77
|
+
https://github.com/google-gemini/gemini-cli/pull/15208
|
|
78
|
+
- feat: add agent toml parser by @abhipatel12 in
|
|
79
|
+
https://github.com/google-gemini/gemini-cli/pull/15112
|
|
80
|
+
- Add core tool that adds all context from the core package. by @jacob314 in
|
|
81
|
+
https://github.com/google-gemini/gemini-cli/pull/15238
|
|
82
|
+
- (docs): Add reference section to hooks documentation by @abhipatel12 in
|
|
83
|
+
https://github.com/google-gemini/gemini-cli/pull/15159
|
|
84
|
+
- feat(hooks): add support for friendly names and descriptions by @abhipatel12
|
|
85
|
+
in https://github.com/google-gemini/gemini-cli/pull/15174
|
|
86
|
+
- feat: Detect background color by @jacob314 in
|
|
87
|
+
https://github.com/google-gemini/gemini-cli/pull/15132
|
|
88
|
+
- add 3.0 to allowed sensitive keywords by @scidomino in
|
|
89
|
+
https://github.com/google-gemini/gemini-cli/pull/15276
|
|
90
|
+
- feat: Pass additional environment variables to shell execution by @galz10 in
|
|
91
|
+
https://github.com/google-gemini/gemini-cli/pull/15160
|
|
92
|
+
- Remove unused code by @scidomino in
|
|
93
|
+
https://github.com/google-gemini/gemini-cli/pull/15290
|
|
94
|
+
- Handle all 429 as retryableQuotaError by @sehoon38 in
|
|
95
|
+
https://github.com/google-gemini/gemini-cli/pull/15288
|
|
96
|
+
- Remove unnecessary dependencies by @scidomino in
|
|
97
|
+
https://github.com/google-gemini/gemini-cli/pull/15291
|
|
98
|
+
- fix: prevent infinite loop in prompt completion on error by @galz10 in
|
|
99
|
+
https://github.com/google-gemini/gemini-cli/pull/14548
|
|
100
|
+
- fix(ui): show command suggestions even on perfect match and sort them by
|
|
101
|
+
@SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15287
|
|
102
|
+
- feat(hooks): reduce log verbosity and improve error reporting in UI by
|
|
103
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15297
|
|
104
|
+
- feat: simplify tool confirmation labels for better UX by @NTaylorMullen in
|
|
105
|
+
https://github.com/google-gemini/gemini-cli/pull/15296
|
|
106
|
+
- chore/release: bump version to 0.21.0-nightly.20251219.70696e364 by
|
|
107
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15301
|
|
108
|
+
- feat(core): Implement JIT context memory loading and UI sync by @SandyTao520
|
|
109
|
+
in https://github.com/google-gemini/gemini-cli/pull/14469
|
|
110
|
+
- feat(ui): Put "Allow for all future sessions" behind a setting off by default.
|
|
111
|
+
by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15322
|
|
112
|
+
- fix(cli):change the placeholder of input during the shell mode by
|
|
113
|
+
@JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/15135
|
|
114
|
+
- Validate OAuth resource parameter matches MCP server URL by @galz10 in
|
|
115
|
+
https://github.com/google-gemini/gemini-cli/pull/15289
|
|
116
|
+
- docs(cli): add System Prompt Override (GEMINI_SYSTEM_MD) by @ashmod in
|
|
117
|
+
https://github.com/google-gemini/gemini-cli/pull/9515
|
|
118
|
+
- more robust command parsing logs by @scidomino in
|
|
119
|
+
https://github.com/google-gemini/gemini-cli/pull/15339
|
|
120
|
+
- Introspection agent demo by @scidomino in
|
|
121
|
+
https://github.com/google-gemini/gemini-cli/pull/15232
|
|
122
|
+
- fix(core): sanitize hook command expansion and prevent injection by
|
|
123
|
+
@SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15343
|
|
124
|
+
- fix(folder trust): add validation for trusted folder level by @adamfweidman in
|
|
125
|
+
https://github.com/google-gemini/gemini-cli/pull/12215
|
|
126
|
+
- fix(cli): fix right border overflow in trust dialogs by @galz10 in
|
|
127
|
+
https://github.com/google-gemini/gemini-cli/pull/15350
|
|
128
|
+
- fix(policy): fix bug where accepting-edits continued after it was turned off
|
|
129
|
+
by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15351
|
|
130
|
+
- fix: prevent infinite relaunch loop when --resume fails (#14941) by @Ying-xi
|
|
131
|
+
in https://github.com/google-gemini/gemini-cli/pull/14951
|
|
132
|
+
- chore/release: bump version to 0.21.0-nightly.20251220.41a1a3eed by
|
|
133
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15352
|
|
134
|
+
- feat(telemetry): add clearcut logging for hooks by @abhipatel12 in
|
|
135
|
+
https://github.com/google-gemini/gemini-cli/pull/15405
|
|
136
|
+
- fix(core): Add `.geminiignore` support to SearchText tool by @xyrolle in
|
|
137
|
+
https://github.com/google-gemini/gemini-cli/pull/13763
|
|
138
|
+
|
|
139
|
+
**Full Changelog**:
|
|
140
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.22.0-preview.3...v0.23.0-preview.0
|
|
141
|
+
|
|
142
|
+
## Release v0.22.0 - v0.22.5 (Latest)
|
|
143
|
+
|
|
144
|
+
### Highlights
|
|
145
|
+
|
|
146
|
+
- **Comprehensive quota visibility:** View usage statistics for all available
|
|
147
|
+
models in the `/stats` command, even those not yet used in your current
|
|
148
|
+
session. ([pic](https://imgur.com/a/cKyDtYh),
|
|
149
|
+
[pr](https://github.com/google-gemini/gemini-cli/pull/14764) by
|
|
150
|
+
[@sehoon38](https://github.com/sehoon38))
|
|
151
|
+
- **Polished CLI statistics:** We’ve cleaned up the `/stats` view to prioritize
|
|
152
|
+
actionable quota information while providing a detailed token and
|
|
153
|
+
cache-efficiency breakdown in `/stats model`
|
|
154
|
+
([login with Google](https://imgur.com/a/w9xKthm),
|
|
155
|
+
[api key](https://imgur.com/a/FjQPHOY),
|
|
156
|
+
[model stats](https://imgur.com/a/VfWzVgw),
|
|
157
|
+
[pr](https://github.com/google-gemini/gemini-cli/pull/14961) by
|
|
158
|
+
[@jacob314](https://github.com/jacob314))
|
|
159
|
+
- **Multi-file drag & drop:** Multi-file drag & drop is now supported and
|
|
160
|
+
properly translated to be prefixed with `@`.
|
|
161
|
+
([pr](https://github.com/google-gemini/gemini-cli/pull/14832) by
|
|
162
|
+
[@jackwotherspoon](https://github.com/jackwotherspoon))
|
|
163
|
+
|
|
164
|
+
### What's Changed
|
|
165
|
+
|
|
166
|
+
- feat(ide): fallback to GEMINI_CLI_IDE_AUTH_TOKEN env var by @skeshive in
|
|
167
|
+
https://github.com/google-gemini/gemini-cli/pull/14843
|
|
168
|
+
- feat: display quota stats for unused models in /stats by @sehoon38 in
|
|
169
|
+
https://github.com/google-gemini/gemini-cli/pull/14764
|
|
170
|
+
- feat: ensure codebase investigator uses preview model when main agent does by
|
|
171
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14412
|
|
172
|
+
- chore: add closing reason to stale bug workflow by @galz10 in
|
|
173
|
+
https://github.com/google-gemini/gemini-cli/pull/14861
|
|
174
|
+
- Send the model and CLI version with the user agent by @gundermanc in
|
|
175
|
+
https://github.com/google-gemini/gemini-cli/pull/14865
|
|
176
|
+
- refactor(sessions): move session summary generation to startup by
|
|
177
|
+
@jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14691
|
|
178
|
+
- Limit search depth in path corrector by @scidomino in
|
|
179
|
+
https://github.com/google-gemini/gemini-cli/pull/14869
|
|
180
|
+
- Fix: Correct typo in code comment by @kuishou68 in
|
|
181
|
+
https://github.com/google-gemini/gemini-cli/pull/14671
|
|
182
|
+
- feat(core): Plumbing for late resolution of model configs. by @joshualitt in
|
|
183
|
+
https://github.com/google-gemini/gemini-cli/pull/14597
|
|
184
|
+
- feat: attempt more error parsing by @adamfweidman in
|
|
185
|
+
https://github.com/google-gemini/gemini-cli/pull/14899
|
|
186
|
+
- Add missing await. by @gundermanc in
|
|
187
|
+
https://github.com/google-gemini/gemini-cli/pull/14910
|
|
188
|
+
- feat(core): Add support for transcript_path in hooks for git-ai/Gemini
|
|
189
|
+
extension by @svarlamov in
|
|
190
|
+
https://github.com/google-gemini/gemini-cli/pull/14663
|
|
191
|
+
- refactor: implement DelegateToAgentTool with discriminated union by
|
|
192
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14769
|
|
193
|
+
- feat: reset availabilityService on /auth by @adamfweidman in
|
|
194
|
+
https://github.com/google-gemini/gemini-cli/pull/14911
|
|
195
|
+
- chore/release: bump version to 0.21.0-nightly.20251211.8c83e1ea9 by
|
|
196
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14924
|
|
197
|
+
- Fix: Correctly detect MCP tool errors by @kevin-ramdass in
|
|
198
|
+
https://github.com/google-gemini/gemini-cli/pull/14937
|
|
199
|
+
- increase labeler timeout by @scidomino in
|
|
200
|
+
https://github.com/google-gemini/gemini-cli/pull/14922
|
|
201
|
+
- tool(cli): tweak the frontend tool to be aware of more core files from the cli
|
|
202
|
+
by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14962
|
|
203
|
+
- feat(cli): polish cached token stats and simplify stats display when quota is
|
|
204
|
+
present. by @jacob314 in
|
|
205
|
+
https://github.com/google-gemini/gemini-cli/pull/14961
|
|
206
|
+
- feat(settings-validation): add validation for settings schema by @lifefloating
|
|
207
|
+
in https://github.com/google-gemini/gemini-cli/pull/12929
|
|
208
|
+
- fix(ide): Update IDE extension to write auth token in env var by @skeshive in
|
|
209
|
+
https://github.com/google-gemini/gemini-cli/pull/14999
|
|
210
|
+
- Revert "chore(deps): bump express from 5.1.0 to 5.2.0" by @skeshive in
|
|
211
|
+
https://github.com/google-gemini/gemini-cli/pull/14998
|
|
212
|
+
- feat(a2a): Introduce /init command for a2a server by @cocosheng-g in
|
|
213
|
+
https://github.com/google-gemini/gemini-cli/pull/13419
|
|
214
|
+
- feat: support multi-file drag and drop of images by @jackwotherspoon in
|
|
215
|
+
https://github.com/google-gemini/gemini-cli/pull/14832
|
|
216
|
+
- fix(policy): allow codebase_investigator by default in read-only policy by
|
|
217
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15000
|
|
218
|
+
- refactor(ide ext): Update port file name + switch to 1-based index for
|
|
219
|
+
characters + remove truncation text by @skeshive in
|
|
220
|
+
https://github.com/google-gemini/gemini-cli/pull/10501
|
|
221
|
+
- fix(vscode-ide-companion): correct license generation for workspace
|
|
222
|
+
dependencies by @skeshive in
|
|
223
|
+
https://github.com/google-gemini/gemini-cli/pull/15004
|
|
224
|
+
- fix: temp fix for subagent invocation until subagent delegation is merged to
|
|
225
|
+
stable by @abhipatel12 in
|
|
226
|
+
https://github.com/google-gemini/gemini-cli/pull/15007
|
|
227
|
+
- test: update ide detection tests to make them more robust when run in an ide
|
|
228
|
+
by @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/15008
|
|
229
|
+
- Remove flex from stats display. See snapshots for diffs. by @jacob314 in
|
|
230
|
+
https://github.com/google-gemini/gemini-cli/pull/14983
|
|
231
|
+
- Add license field into package.json by @jb-perez in
|
|
232
|
+
https://github.com/google-gemini/gemini-cli/pull/14473
|
|
233
|
+
- feat: Persistent "Always Allow" policies with granular shell & MCP support by
|
|
234
|
+
@allenhutchison in https://github.com/google-gemini/gemini-cli/pull/14737
|
|
235
|
+
- chore/release: bump version to 0.21.0-nightly.20251212.54de67536 by
|
|
236
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14969
|
|
237
|
+
- fix(core): commandPrefix word boundary and compound command safety by
|
|
238
|
+
@allenhutchison in https://github.com/google-gemini/gemini-cli/pull/15006
|
|
239
|
+
- chore(docs): add 'Maintainers only' label info to CONTRIBUTING.md by @jacob314
|
|
240
|
+
in https://github.com/google-gemini/gemini-cli/pull/14914
|
|
241
|
+
- Refresh hooks when refreshing extensions. by @scidomino in
|
|
242
|
+
https://github.com/google-gemini/gemini-cli/pull/14918
|
|
243
|
+
- Add clarity to error messages by @gsehgal in
|
|
244
|
+
https://github.com/google-gemini/gemini-cli/pull/14879
|
|
245
|
+
- chore : remove a redundant tip by @JayadityaGit in
|
|
246
|
+
https://github.com/google-gemini/gemini-cli/pull/14947
|
|
247
|
+
- chore/release: bump version to 0.21.0-nightly.20251213.977248e09 by
|
|
248
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15029
|
|
249
|
+
- Disallow redundant typecasts. by @gundermanc in
|
|
250
|
+
https://github.com/google-gemini/gemini-cli/pull/15030
|
|
251
|
+
- fix(auth): prioritize GEMINI_API_KEY env var and skip unnecessary key… by
|
|
252
|
+
@galz10 in https://github.com/google-gemini/gemini-cli/pull/14745
|
|
253
|
+
- fix: use zod for safety check result validation by @allenhutchison in
|
|
254
|
+
https://github.com/google-gemini/gemini-cli/pull/15026
|
|
255
|
+
- update(telemetry): add hashed_extension_name to field to extension events by
|
|
256
|
+
@kiranani in https://github.com/google-gemini/gemini-cli/pull/15025
|
|
257
|
+
- fix: similar to policy-engine, throw error in case of requiring tool execution
|
|
258
|
+
confirmation for non-interactive mode by @MayV in
|
|
259
|
+
https://github.com/google-gemini/gemini-cli/pull/14702
|
|
260
|
+
- Clean up processes in integration tests by @scidomino in
|
|
261
|
+
https://github.com/google-gemini/gemini-cli/pull/15102
|
|
262
|
+
- docs: update policy engine getting started and defaults by @NTaylorMullen in
|
|
263
|
+
https://github.com/google-gemini/gemini-cli/pull/15105
|
|
264
|
+
- Fix tool output fragmentation by encapsulating content in functionResponse by
|
|
265
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/13082
|
|
266
|
+
- Simplify method signature. by @scidomino in
|
|
267
|
+
https://github.com/google-gemini/gemini-cli/pull/15114
|
|
268
|
+
- Show raw input token counts in json output. by @jacob314 in
|
|
269
|
+
https://github.com/google-gemini/gemini-cli/pull/15021
|
|
270
|
+
- fix: Mark A2A requests as interactive by @MayV in
|
|
271
|
+
https://github.com/google-gemini/gemini-cli/pull/15108
|
|
272
|
+
- use previewFeatures to determine which pro model to use for A2A by @sehoon38
|
|
273
|
+
in https://github.com/google-gemini/gemini-cli/pull/15131
|
|
274
|
+
- refactor(cli): fix settings merging so that settings using the new json format
|
|
275
|
+
take priority over ones using the old format by @jacob314 in
|
|
276
|
+
https://github.com/google-gemini/gemini-cli/pull/15116
|
|
277
|
+
- fix(patch): cherry-pick a6d1245 to release/v0.22.0-preview.1-pr-15214 to patch
|
|
278
|
+
version v0.22.0-preview.1 and create version 0.22.0-preview.2 by
|
|
279
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15226
|
|
280
|
+
- fix(patch): cherry-pick 9e6914d to release/v0.22.0-preview.2-pr-15288 to patch
|
|
281
|
+
version v0.22.0-preview.2 and create version 0.22.0-preview.3 by
|
|
282
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15294
|
|
283
|
+
|
|
284
|
+
**Full Changelog**:
|
|
285
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.21.3...v0.22.0
|
|
286
|
+
|
|
287
|
+
## Release v0.21.0 - v0.21.1
|
|
22
288
|
|
|
23
289
|
### Highlights
|
|
24
290
|
|
|
@@ -206,7 +472,7 @@ on GitHub.
|
|
|
206
472
|
https://github.com/google-gemini/gemini-cli/pull/13015
|
|
207
473
|
- allow final:true to be returned on a2a server edit calls. by @DavidAPierce in
|
|
208
474
|
https://github.com/google-gemini/gemini-cli/pull/14747
|
|
209
|
-
- (fix) Automated pr
|
|
475
|
+
- (fix) Automated pr labeler by @DaanVersavel in
|
|
210
476
|
https://github.com/google-gemini/gemini-cli/pull/14788
|
|
211
477
|
- Update CODEOWNERS by @kklashtorny1 in
|
|
212
478
|
https://github.com/google-gemini/gemini-cli/pull/14830
|
|
@@ -73,6 +73,9 @@ Slash commands provide meta-level control over the CLI itself.
|
|
|
73
73
|
- **`/copy`**
|
|
74
74
|
- **Description:** Copies the last output produced by Gemini CLI to your
|
|
75
75
|
clipboard, for easy sharing or reuse.
|
|
76
|
+
- **Behavior:**
|
|
77
|
+
- Local sessions use system clipboard tools (pbcopy/xclip/clip).
|
|
78
|
+
- Remote sessions (SSH/WSL) use OSC 52 and require terminal support.
|
|
76
79
|
- **Note:** This command requires platform-specific clipboard tools to be
|
|
77
80
|
installed.
|
|
78
81
|
- On Linux, it requires `xclip` or `xsel`. You can typically install them
|