@google/gemini-cli-core 0.24.0-preview.0 → 0.25.0-nightly.20260112.15891721a
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/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/model-routing.md +1 -1
- package/dist/docs/cli/model.md +1 -1
- package/dist/docs/cli/settings.md +67 -53
- package/dist/docs/core/policy-engine.md +3 -2
- package/dist/docs/extensions/index.md +57 -7
- package/dist/docs/get-started/configuration.md +13 -7
- 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/troubleshooting.md +9 -3
- package/dist/google-gemini-cli-core-0.25.0-nightly.20260107.59a18e710.tgz +0 -0
- 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/agentLoader.d.ts +68 -0
- package/dist/src/agents/{toml-loader.js → agentLoader.js} +83 -78
- package/dist/src/agents/agentLoader.js.map +1 -0
- package/dist/src/agents/agentLoader.test.js +283 -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/{introspection-agent.js → cli-help-agent.js} +17 -11
- 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/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 +52 -10
- package/dist/src/agents/delegate-to-agent-tool.test.js.map +1 -1
- package/dist/src/agents/local-executor.js +35 -1
- package/dist/src/agents/local-executor.js.map +1 -1
- package/dist/src/agents/local-executor.test.js +53 -0
- package/dist/src/agents/local-executor.test.js.map +1 -1
- package/dist/src/agents/registry.d.ts +10 -0
- package/dist/src/agents/registry.js +61 -26
- package/dist/src/agents/registry.js.map +1 -1
- package/dist/src/agents/registry.test.js +66 -11
- package/dist/src/agents/registry.test.js.map +1 -1
- package/dist/src/agents/remote-invocation.js +4 -2
- 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/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/config/config.d.ts +26 -6
- package/dist/src/config/config.js +79 -37
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +13 -3
- 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 +27 -8
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/client.test.js +98 -42
- 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 +54 -60
- package/dist/src/core/coreToolScheduler.js.map +1 -1
- package/dist/src/core/coreToolScheduler.test.js +30 -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 +74 -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/generated/git-commit.js.map +1 -1
- 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 +36 -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 +8 -1
- package/dist/src/index.js +10 -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/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/policies/yolo.toml +1 -0
- 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/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 +29 -1
- package/dist/src/services/modelConfigService.js +116 -69
- 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 +2 -2
- 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 +9 -0
- package/dist/src/skills/skillManager.js +24 -5
- package/dist/src/skills/skillManager.js.map +1 -1
- package/dist/src/skills/skillManager.test.js +36 -0
- package/dist/src/skills/skillManager.test.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.d.ts +4 -1
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.js +12 -8
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js +43 -4
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js.map +1 -1
- package/dist/src/telemetry/loggers.test.js +1 -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/edit.js +2 -0
- package/dist/src/tools/edit.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 +2 -0
- package/dist/src/tools/write-file.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/editor.d.ts +2 -2
- package/dist/src/utils/editor.js +19 -2
- 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 +7 -1
- package/dist/src/utils/events.js +7 -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/userAccountManager.test.js +5 -5
- package/dist/src/utils/userAccountManager.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/dist/docs/cli/configuration.md +0 -780
- package/dist/docs/get-started/deployment.md +0 -143
- 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
package/README.md
CHANGED
|
@@ -18,6 +18,28 @@ on GitHub.
|
|
|
18
18
|
| [Preview](preview.md) | Experimental features ready for early feedback. |
|
|
19
19
|
| [Stable](latest.md) | Stable, recommended for general use. |
|
|
20
20
|
|
|
21
|
+
## Announcements: v0.22.0 - 2025-12-22
|
|
22
|
+
|
|
23
|
+
- 🎉**Free Tier + Gemini 3:** Free tier users now all have access to Gemini 3
|
|
24
|
+
Pro & Flash. Enable in `/settings` by toggling "Preview Features" to `true`.
|
|
25
|
+
- 🎉**Gemini CLI + Colab:** Gemini CLI is now pre-installed. Can be used
|
|
26
|
+
headlessly in notebook cells or interactively in the built-in terminal
|
|
27
|
+
([pic](https://imgur.com/a/G0Tn7vi))
|
|
28
|
+
- 🎉**Gemini CLI Extensions:**
|
|
29
|
+
- **Conductor:** Planning++, Gemini works with you to build out a detailed
|
|
30
|
+
plan, pull in extra details as needed, ultimately to give the LLM guardrails
|
|
31
|
+
with artifacts. Measure twice, implement once!
|
|
32
|
+
|
|
33
|
+
`gemini extensions install https://github.com/gemini-cli-extensions/conductor`
|
|
34
|
+
|
|
35
|
+
Blog:
|
|
36
|
+
[https://developers.googleblog.com/conductor-introducing-context-driven-development-for-gemini-cli/](https://developers.googleblog.com/conductor-introducing-context-driven-development-for-gemini-cli/)
|
|
37
|
+
|
|
38
|
+
- **Endor Labs:** Perform code analysis, vulnerability scanning, and
|
|
39
|
+
dependency checks using natural language.
|
|
40
|
+
|
|
41
|
+
`gemini extensions install https://github.com/endorlabs/gemini-extension`
|
|
42
|
+
|
|
21
43
|
## Announcements: v0.21.0 - 2025-12-15
|
|
22
44
|
|
|
23
45
|
- **⚡️⚡️⚡️ Gemini 3 Flash + Gemini CLI:** Better, faster and cheaper than 2.5
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Latest stable release: v0.
|
|
1
|
+
# Latest stable release: v0.22.0 - v0.22.5
|
|
2
2
|
|
|
3
|
-
Released: December
|
|
3
|
+
Released: December 30, 2025
|
|
4
4
|
|
|
5
5
|
For most users, our latest stable release is the recommended release. Install
|
|
6
6
|
the latest stable version with:
|
|
@@ -11,215 +11,143 @@ npm install -g @google/gemini-cli
|
|
|
11
11
|
|
|
12
12
|
## Highlights
|
|
13
13
|
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
[
|
|
14
|
+
- **Comprehensive quota visibility:** View usage statistics for all available
|
|
15
|
+
models in the `/stats` command, even those not yet used in your current
|
|
16
|
+
session. ([pic](https://imgur.com/a/cKyDtYh),
|
|
17
|
+
[pr](https://github.com/google-gemini/gemini-cli/pull/14764) by
|
|
18
|
+
[@sehoon38](https://github.com/sehoon38))
|
|
19
|
+
- **Polished CLI statistics:** We’ve cleaned up the `/stats` view to prioritize
|
|
20
|
+
actionable quota information while providing a detailed token and
|
|
21
|
+
cache-efficiency breakdown in `/stats model`
|
|
22
|
+
([login with Google](https://imgur.com/a/w9xKthm),
|
|
23
|
+
[api key](https://imgur.com/a/FjQPHOY),
|
|
24
|
+
[model stats](https://imgur.com/a/VfWzVgw),
|
|
25
|
+
[pr](https://github.com/google-gemini/gemini-cli/pull/14961) by
|
|
26
|
+
[@jacob314](https://github.com/jacob314))
|
|
27
|
+
- **Multi-file drag & drop:** Multi-file drag & drop is now supported and
|
|
28
|
+
properly translated to be prefixed with `@`.
|
|
29
|
+
([pr](https://github.com/google-gemini/gemini-cli/pull/14832) by
|
|
30
|
+
[@jackwotherspoon](https://github.com/jackwotherspoon))
|
|
18
31
|
|
|
19
32
|
## What's Changed
|
|
20
33
|
|
|
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
|
-
@
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
-
|
|
50
|
-
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
-
|
|
54
|
-
|
|
55
|
-
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
61
|
-
- feat:
|
|
62
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
63
|
-
-
|
|
64
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
65
|
-
-
|
|
66
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
67
|
-
-
|
|
68
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
69
|
-
-
|
|
70
|
-
|
|
71
|
-
- fix(
|
|
72
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
73
|
-
-
|
|
74
|
-
|
|
75
|
-
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
79
|
-
-
|
|
80
|
-
|
|
81
|
-
-
|
|
82
|
-
|
|
83
|
-
-
|
|
84
|
-
|
|
85
|
-
-
|
|
86
|
-
|
|
87
|
-
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
-
|
|
98
|
-
|
|
99
|
-
-
|
|
100
|
-
|
|
101
|
-
-
|
|
102
|
-
|
|
103
|
-
-
|
|
104
|
-
|
|
105
|
-
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
115
|
-
-
|
|
116
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
117
|
-
-
|
|
118
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
119
|
-
-
|
|
120
|
-
@
|
|
121
|
-
-
|
|
122
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
123
|
-
-
|
|
124
|
-
|
|
125
|
-
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
-
|
|
133
|
-
|
|
134
|
-
-
|
|
135
|
-
|
|
136
|
-
-
|
|
137
|
-
https://github.com/google-gemini/gemini-cli/pull/
|
|
138
|
-
- expose previewFeatures flag in a2a by @sehoon38 in
|
|
139
|
-
https://github.com/google-gemini/gemini-cli/pull/14550
|
|
140
|
-
- Fix emoji width in debug console. by @jacob314 in
|
|
141
|
-
https://github.com/google-gemini/gemini-cli/pull/14593
|
|
142
|
-
- Fully detach autoupgrade process by @scidomino in
|
|
143
|
-
https://github.com/google-gemini/gemini-cli/pull/14595
|
|
144
|
-
- Docs: Update Gemini 3 on Gemini CLI documentation by @jkcinouye in
|
|
145
|
-
https://github.com/google-gemini/gemini-cli/pull/14601
|
|
146
|
-
- Disallow floating promises. by @gundermanc in
|
|
147
|
-
https://github.com/google-gemini/gemini-cli/pull/14605
|
|
148
|
-
- chore/release: bump version to 0.21.0-nightly.20251207.025e450ac by
|
|
149
|
-
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14662
|
|
150
|
-
- feat(modelAvailabilityService): integrate model availability service into
|
|
151
|
-
backend logic by @adamfweidman in
|
|
152
|
-
https://github.com/google-gemini/gemini-cli/pull/14470
|
|
153
|
-
- Add prompt_id propagation in a2a-server task by @koxkox111 in
|
|
154
|
-
https://github.com/google-gemini/gemini-cli/pull/14581
|
|
155
|
-
- Fix: Prevent freezing in non-interactive Gemini CLI when debug mode is enabled
|
|
156
|
-
by @parthasaradhie in https://github.com/google-gemini/gemini-cli/pull/14580
|
|
157
|
-
- fix(audio): improve reading of audio files by @jackwotherspoon in
|
|
158
|
-
https://github.com/google-gemini/gemini-cli/pull/14658
|
|
159
|
-
- Update automated triage workflow to stop assigning priority labels by
|
|
160
|
-
@skeshive in https://github.com/google-gemini/gemini-cli/pull/14717
|
|
161
|
-
- set failed status when chained e2e fails by @scidomino in
|
|
162
|
-
https://github.com/google-gemini/gemini-cli/pull/14725
|
|
163
|
-
- feat(github action) Triage and Label Pull Requests by Size and Comple… by
|
|
164
|
-
@DaanVersavel in https://github.com/google-gemini/gemini-cli/pull/5571
|
|
165
|
-
- refactor(telemetry): Improve previous PR that allows telemetry to use the CLI
|
|
166
|
-
auth and add testing by @mboshernitsan in
|
|
167
|
-
https://github.com/google-gemini/gemini-cli/pull/14589
|
|
168
|
-
- Always set status in chained_e2e workflow by @scidomino in
|
|
169
|
-
https://github.com/google-gemini/gemini-cli/pull/14730
|
|
170
|
-
- feat: Add OTEL log event `gemini_cli.startup_stats` for startup stats. by
|
|
171
|
-
@kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/14734
|
|
172
|
-
- feat: auto-execute on slash command completion functions by @jackwotherspoon
|
|
173
|
-
in https://github.com/google-gemini/gemini-cli/pull/14584
|
|
174
|
-
- Docs: Proper release notes by @jkcinouye in
|
|
175
|
-
https://github.com/google-gemini/gemini-cli/pull/14405
|
|
176
|
-
- Add support for user-scoped extension settings by @chrstnb in
|
|
177
|
-
https://github.com/google-gemini/gemini-cli/pull/13748
|
|
178
|
-
- refactor(core): Improve environment variable handling in shell execution by
|
|
179
|
-
@galz10 in https://github.com/google-gemini/gemini-cli/pull/14742
|
|
180
|
-
- Remove old E2E Workflows by @scidomino in
|
|
181
|
-
https://github.com/google-gemini/gemini-cli/pull/14749
|
|
182
|
-
- fix: handle missing local extension config and skip hooks when disabled by
|
|
183
|
-
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14744
|
|
184
|
-
- chore/release: bump version to 0.21.0-nightly.20251209.ec9a8c7a7 by
|
|
185
|
-
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14751
|
|
186
|
-
- feat: Add support for MCP Resources by @MrLesk in
|
|
187
|
-
https://github.com/google-gemini/gemini-cli/pull/13178
|
|
188
|
-
- Always set pending status in E2E tests by @scidomino in
|
|
189
|
-
https://github.com/google-gemini/gemini-cli/pull/14756
|
|
190
|
-
- fix(lint): upgrade pip and use public pypi for yamllint by @allenhutchison in
|
|
191
|
-
https://github.com/google-gemini/gemini-cli/pull/14746
|
|
192
|
-
- fix: use Gemini API supported image formats for clipboard by @jackwotherspoon
|
|
193
|
-
in https://github.com/google-gemini/gemini-cli/pull/14762
|
|
194
|
-
- feat(a2a): Introduce restore command for a2a server by @cocosheng-g in
|
|
195
|
-
https://github.com/google-gemini/gemini-cli/pull/13015
|
|
196
|
-
- allow final:true to be returned on a2a server edit calls. by @DavidAPierce in
|
|
197
|
-
https://github.com/google-gemini/gemini-cli/pull/14747
|
|
198
|
-
- (fix) Automated pr labeller by @DaanVersavel in
|
|
199
|
-
https://github.com/google-gemini/gemini-cli/pull/14788
|
|
200
|
-
- Update CODEOWNERS by @kklashtorny1 in
|
|
201
|
-
https://github.com/google-gemini/gemini-cli/pull/14830
|
|
202
|
-
- Docs: Fix errors preventing site rebuild. by @jkcinouye in
|
|
203
|
-
https://github.com/google-gemini/gemini-cli/pull/14842
|
|
204
|
-
- chore(deps): bump express from 5.1.0 to 5.2.0 by @dependabot[bot] in
|
|
205
|
-
https://github.com/google-gemini/gemini-cli/pull/14325
|
|
206
|
-
- fix(patch): cherry-pick 3f5f030 to release/v0.21.0-preview.0-pr-14843 to patch
|
|
207
|
-
version v0.21.0-preview.0 and create version 0.21.0-preview.1 by
|
|
208
|
-
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14851
|
|
209
|
-
- fix(patch): cherry-pick ee6556c to release/v0.21.0-preview.1-pr-14691 to patch
|
|
210
|
-
version v0.21.0-preview.1 and create version 0.21.0-preview.2 by
|
|
211
|
-
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14908
|
|
212
|
-
- fix(patch): cherry-pick 54de675 to release/v0.21.0-preview.2-pr-14961 by
|
|
213
|
-
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14968
|
|
214
|
-
- fix(patch): cherry-pick 12cbe32 to release/v0.21.0-preview.3-pr-15000 to patch
|
|
215
|
-
version v0.21.0-preview.3 and create version 0.21.0-preview.4 by
|
|
216
|
-
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15003
|
|
217
|
-
- fix(patch): cherry-pick edbe548 to release/v0.21.0-preview.4-pr-15007 to patch
|
|
218
|
-
version v0.21.0-preview.4 and create version 0.21.0-preview.5 by
|
|
219
|
-
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15015
|
|
220
|
-
- fix(patch): cherry-pick 2995af6 to release/v0.21.0-preview.5-pr-15131 to patch
|
|
221
|
-
version v0.21.0-preview.5 and create version 0.21.0-preview.6 by
|
|
222
|
-
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15153
|
|
34
|
+
- feat(ide): fallback to GEMINI_CLI_IDE_AUTH_TOKEN env var by @skeshive in
|
|
35
|
+
https://github.com/google-gemini/gemini-cli/pull/14843
|
|
36
|
+
- feat: display quota stats for unused models in /stats by @sehoon38 in
|
|
37
|
+
https://github.com/google-gemini/gemini-cli/pull/14764
|
|
38
|
+
- feat: ensure codebase investigator uses preview model when main agent does by
|
|
39
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14412
|
|
40
|
+
- chore: add closing reason to stale bug workflow by @galz10 in
|
|
41
|
+
https://github.com/google-gemini/gemini-cli/pull/14861
|
|
42
|
+
- Send the model and CLI version with the user agent by @gundermanc in
|
|
43
|
+
https://github.com/google-gemini/gemini-cli/pull/14865
|
|
44
|
+
- refactor(sessions): move session summary generation to startup by
|
|
45
|
+
@jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14691
|
|
46
|
+
- Limit search depth in path corrector by @scidomino in
|
|
47
|
+
https://github.com/google-gemini/gemini-cli/pull/14869
|
|
48
|
+
- Fix: Correct typo in code comment by @kuishou68 in
|
|
49
|
+
https://github.com/google-gemini/gemini-cli/pull/14671
|
|
50
|
+
- feat(core): Plumbing for late resolution of model configs. by @joshualitt in
|
|
51
|
+
https://github.com/google-gemini/gemini-cli/pull/14597
|
|
52
|
+
- feat: attempt more error parsing by @adamfweidman in
|
|
53
|
+
https://github.com/google-gemini/gemini-cli/pull/14899
|
|
54
|
+
- Add missing await. by @gundermanc in
|
|
55
|
+
https://github.com/google-gemini/gemini-cli/pull/14910
|
|
56
|
+
- feat(core): Add support for transcript_path in hooks for git-ai/Gemini
|
|
57
|
+
extension by @svarlamov in
|
|
58
|
+
https://github.com/google-gemini/gemini-cli/pull/14663
|
|
59
|
+
- refactor: implement DelegateToAgentTool with discriminated union by
|
|
60
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14769
|
|
61
|
+
- feat: reset availabilityService on /auth by @adamfweidman in
|
|
62
|
+
https://github.com/google-gemini/gemini-cli/pull/14911
|
|
63
|
+
- chore/release: bump version to 0.21.0-nightly.20251211.8c83e1ea9 by
|
|
64
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14924
|
|
65
|
+
- Fix: Correctly detect MCP tool errors by @kevin-ramdass in
|
|
66
|
+
https://github.com/google-gemini/gemini-cli/pull/14937
|
|
67
|
+
- increase labeler timeout by @scidomino in
|
|
68
|
+
https://github.com/google-gemini/gemini-cli/pull/14922
|
|
69
|
+
- tool(cli): tweak the frontend tool to be aware of more core files from the cli
|
|
70
|
+
by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14962
|
|
71
|
+
- feat(cli): polish cached token stats and simplify stats display when quota is
|
|
72
|
+
present. by @jacob314 in
|
|
73
|
+
https://github.com/google-gemini/gemini-cli/pull/14961
|
|
74
|
+
- feat(settings-validation): add validation for settings schema by @lifefloating
|
|
75
|
+
in https://github.com/google-gemini/gemini-cli/pull/12929
|
|
76
|
+
- fix(ide): Update IDE extension to write auth token in env var by @skeshive in
|
|
77
|
+
https://github.com/google-gemini/gemini-cli/pull/14999
|
|
78
|
+
- Revert "chore(deps): bump express from 5.1.0 to 5.2.0" by @skeshive in
|
|
79
|
+
https://github.com/google-gemini/gemini-cli/pull/14998
|
|
80
|
+
- feat(a2a): Introduce /init command for a2a server by @cocosheng-g in
|
|
81
|
+
https://github.com/google-gemini/gemini-cli/pull/13419
|
|
82
|
+
- feat: support multi-file drag and drop of images by @jackwotherspoon in
|
|
83
|
+
https://github.com/google-gemini/gemini-cli/pull/14832
|
|
84
|
+
- fix(policy): allow codebase_investigator by default in read-only policy by
|
|
85
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15000
|
|
86
|
+
- refactor(ide ext): Update port file name + switch to 1-based index for
|
|
87
|
+
characters + remove truncation text by @skeshive in
|
|
88
|
+
https://github.com/google-gemini/gemini-cli/pull/10501
|
|
89
|
+
- fix(vscode-ide-companion): correct license generation for workspace
|
|
90
|
+
dependencies by @skeshive in
|
|
91
|
+
https://github.com/google-gemini/gemini-cli/pull/15004
|
|
92
|
+
- fix: temp fix for subagent invocation until subagent delegation is merged to
|
|
93
|
+
stable by @abhipatel12 in
|
|
94
|
+
https://github.com/google-gemini/gemini-cli/pull/15007
|
|
95
|
+
- test: update ide detection tests to make them more robust when run in an ide
|
|
96
|
+
by @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/15008
|
|
97
|
+
- Remove flex from stats display. See snapshots for diffs. by @jacob314 in
|
|
98
|
+
https://github.com/google-gemini/gemini-cli/pull/14983
|
|
99
|
+
- Add license field into package.json by @jb-perez in
|
|
100
|
+
https://github.com/google-gemini/gemini-cli/pull/14473
|
|
101
|
+
- feat: Persistent "Always Allow" policies with granular shell & MCP support by
|
|
102
|
+
@allenhutchison in https://github.com/google-gemini/gemini-cli/pull/14737
|
|
103
|
+
- chore/release: bump version to 0.21.0-nightly.20251212.54de67536 by
|
|
104
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14969
|
|
105
|
+
- fix(core): commandPrefix word boundary and compound command safety by
|
|
106
|
+
@allenhutchison in https://github.com/google-gemini/gemini-cli/pull/15006
|
|
107
|
+
- chore(docs): add 'Maintainers only' label info to CONTRIBUTING.md by @jacob314
|
|
108
|
+
in https://github.com/google-gemini/gemini-cli/pull/14914
|
|
109
|
+
- Refresh hooks when refreshing extensions. by @scidomino in
|
|
110
|
+
https://github.com/google-gemini/gemini-cli/pull/14918
|
|
111
|
+
- Add clarity to error messages by @gsehgal in
|
|
112
|
+
https://github.com/google-gemini/gemini-cli/pull/14879
|
|
113
|
+
- chore : remove a redundant tip by @JayadityaGit in
|
|
114
|
+
https://github.com/google-gemini/gemini-cli/pull/14947
|
|
115
|
+
- chore/release: bump version to 0.21.0-nightly.20251213.977248e09 by
|
|
116
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15029
|
|
117
|
+
- Disallow redundant typecasts. by @gundermanc in
|
|
118
|
+
https://github.com/google-gemini/gemini-cli/pull/15030
|
|
119
|
+
- fix(auth): prioritize GEMINI_API_KEY env var and skip unnecessary key… by
|
|
120
|
+
@galz10 in https://github.com/google-gemini/gemini-cli/pull/14745
|
|
121
|
+
- fix: use zod for safety check result validation by @allenhutchison in
|
|
122
|
+
https://github.com/google-gemini/gemini-cli/pull/15026
|
|
123
|
+
- update(telemetry): add hashed_extension_name to field to extension events by
|
|
124
|
+
@kiranani in https://github.com/google-gemini/gemini-cli/pull/15025
|
|
125
|
+
- fix: similar to policy-engine, throw error in case of requiring tool execution
|
|
126
|
+
confirmation for non-interactive mode by @MayV in
|
|
127
|
+
https://github.com/google-gemini/gemini-cli/pull/14702
|
|
128
|
+
- Clean up processes in integration tests by @scidomino in
|
|
129
|
+
https://github.com/google-gemini/gemini-cli/pull/15102
|
|
130
|
+
- docs: update policy engine getting started and defaults by @NTaylorMullen in
|
|
131
|
+
https://github.com/google-gemini/gemini-cli/pull/15105
|
|
132
|
+
- Fix tool output fragmentation by encapsulating content in functionResponse by
|
|
133
|
+
@abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/13082
|
|
134
|
+
- Simplify method signature. by @scidomino in
|
|
135
|
+
https://github.com/google-gemini/gemini-cli/pull/15114
|
|
136
|
+
- Show raw input token counts in json output. by @jacob314 in
|
|
137
|
+
https://github.com/google-gemini/gemini-cli/pull/15021
|
|
138
|
+
- fix: Mark A2A requests as interactive by @MayV in
|
|
139
|
+
https://github.com/google-gemini/gemini-cli/pull/15108
|
|
140
|
+
- use previewFeatures to determine which pro model to use for A2A by @sehoon38
|
|
141
|
+
in https://github.com/google-gemini/gemini-cli/pull/15131
|
|
142
|
+
- refactor(cli): fix settings merging so that settings using the new json format
|
|
143
|
+
take priority over ones using the old format by @jacob314 in
|
|
144
|
+
https://github.com/google-gemini/gemini-cli/pull/15116
|
|
145
|
+
- fix(patch): cherry-pick a6d1245 to release/v0.22.0-preview.1-pr-15214 to patch
|
|
146
|
+
version v0.22.0-preview.1 and create version 0.22.0-preview.2 by
|
|
147
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15226
|
|
148
|
+
- fix(patch): cherry-pick 9e6914d to release/v0.22.0-preview.2-pr-15288 to patch
|
|
149
|
+
version v0.22.0-preview.2 and create version 0.22.0-preview.3 by
|
|
150
|
+
@gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15294
|
|
223
151
|
|
|
224
152
|
**Full Changelog**:
|
|
225
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
153
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.21.3...v0.22.0
|