@google/gemini-cli-core 0.32.0-preview.0 → 0.33.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.
Files changed (216) hide show
  1. package/README.md +11 -9
  2. package/dist/docs/CONTRIBUTING.md +7 -4
  3. package/dist/docs/changelogs/index.md +24 -2
  4. package/dist/docs/changelogs/latest.md +389 -310
  5. package/dist/docs/changelogs/preview.md +186 -394
  6. package/dist/docs/cli/cli-reference.md +12 -12
  7. package/dist/docs/cli/custom-commands.md +9 -0
  8. package/dist/docs/cli/enterprise.md +19 -0
  9. package/dist/docs/cli/model.md +5 -14
  10. package/dist/docs/cli/plan-mode.md +38 -7
  11. package/dist/docs/cli/sandbox.md +42 -2
  12. package/dist/docs/cli/session-management.md +16 -7
  13. package/dist/docs/cli/settings.md +10 -10
  14. package/dist/docs/cli/telemetry.md +29 -0
  15. package/dist/docs/cli/tutorials/automation.md +101 -5
  16. package/dist/docs/cli/tutorials/mcp-setup.md +8 -0
  17. package/dist/docs/cli/tutorials/skills-getting-started.md +8 -0
  18. package/dist/docs/extensions/reference.md +9 -1
  19. package/dist/docs/extensions/writing-extensions.md +16 -0
  20. package/dist/docs/get-started/authentication.md +86 -5
  21. package/dist/docs/get-started/installation.md +1 -1
  22. package/dist/docs/hooks/best-practices.md +33 -1
  23. package/dist/docs/hooks/writing-hooks.md +24 -0
  24. package/dist/docs/ide-integration/index.md +8 -0
  25. package/dist/docs/reference/commands.md +3 -0
  26. package/dist/docs/reference/configuration.md +19 -15
  27. package/dist/docs/reference/keyboard-shortcuts.md +10 -0
  28. package/dist/docs/reference/policy-engine.md +10 -0
  29. package/dist/docs/resources/faq.md +8 -0
  30. package/dist/docs/resources/troubleshooting.md +4 -1
  31. package/dist/docs/sidebar.json +8 -1
  32. package/dist/src/agents/a2aUtils.d.ts +2 -0
  33. package/dist/src/agents/a2aUtils.js +12 -0
  34. package/dist/src/agents/a2aUtils.js.map +1 -1
  35. package/dist/src/agents/a2aUtils.test.js +50 -1
  36. package/dist/src/agents/a2aUtils.test.js.map +1 -1
  37. package/dist/src/agents/agentLoader.d.ts +2 -1
  38. package/dist/src/agents/agentLoader.js +17 -4
  39. package/dist/src/agents/agentLoader.js.map +1 -1
  40. package/dist/src/agents/agentLoader.test.js +46 -0
  41. package/dist/src/agents/agentLoader.test.js.map +1 -1
  42. package/dist/src/agents/auth-provider/factory.js +6 -3
  43. package/dist/src/agents/auth-provider/factory.js.map +1 -1
  44. package/dist/src/agents/auth-provider/http-provider.d.ts +28 -0
  45. package/dist/src/agents/auth-provider/http-provider.js +73 -0
  46. package/dist/src/agents/auth-provider/http-provider.js.map +1 -0
  47. package/dist/src/agents/auth-provider/http-provider.test.d.ts +6 -0
  48. package/dist/src/agents/auth-provider/http-provider.test.js +112 -0
  49. package/dist/src/agents/auth-provider/http-provider.test.js.map +1 -0
  50. package/dist/src/agents/auth-provider/types.d.ts +5 -0
  51. package/dist/src/agents/browser/browserAgentInvocation.d.ts +2 -3
  52. package/dist/src/agents/browser/browserAgentInvocation.js +1 -1
  53. package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
  54. package/dist/src/agents/local-executor.js +36 -7
  55. package/dist/src/agents/local-executor.js.map +1 -1
  56. package/dist/src/agents/local-executor.test.js +18 -13
  57. package/dist/src/agents/local-executor.test.js.map +1 -1
  58. package/dist/src/agents/local-invocation.d.ts +3 -4
  59. package/dist/src/agents/local-invocation.js +164 -11
  60. package/dist/src/agents/local-invocation.js.map +1 -1
  61. package/dist/src/agents/local-invocation.test.js +49 -29
  62. package/dist/src/agents/local-invocation.test.js.map +1 -1
  63. package/dist/src/agents/registry.js +66 -12
  64. package/dist/src/agents/registry.js.map +1 -1
  65. package/dist/src/agents/registry.test.js +220 -0
  66. package/dist/src/agents/registry.test.js.map +1 -1
  67. package/dist/src/agents/remote-invocation.d.ts +2 -1
  68. package/dist/src/agents/remote-invocation.js +20 -2
  69. package/dist/src/agents/remote-invocation.js.map +1 -1
  70. package/dist/src/agents/remote-invocation.test.js +62 -10
  71. package/dist/src/agents/remote-invocation.test.js.map +1 -1
  72. package/dist/src/agents/subagent-tool.js.map +1 -1
  73. package/dist/src/agents/subagent-tool.test.js +7 -0
  74. package/dist/src/agents/subagent-tool.test.js.map +1 -1
  75. package/dist/src/agents/types.d.ts +18 -0
  76. package/dist/src/agents/types.js +6 -0
  77. package/dist/src/agents/types.js.map +1 -1
  78. package/dist/src/code_assist/server.js.map +1 -1
  79. package/dist/src/config/config.d.ts +11 -4
  80. package/dist/src/config/config.js +23 -47
  81. package/dist/src/config/config.js.map +1 -1
  82. package/dist/src/config/config.test.js +29 -101
  83. package/dist/src/config/config.test.js.map +1 -1
  84. package/dist/src/core/client.js +5 -3
  85. package/dist/src/core/client.js.map +1 -1
  86. package/dist/src/core/client.test.js +47 -7
  87. package/dist/src/core/client.test.js.map +1 -1
  88. package/dist/src/core/coreToolHookTriggers.d.ts +3 -3
  89. package/dist/src/core/coreToolHookTriggers.js.map +1 -1
  90. package/dist/src/core/coreToolScheduler.js +38 -22
  91. package/dist/src/core/coreToolScheduler.js.map +1 -1
  92. package/dist/src/core/geminiChat.d.ts +2 -2
  93. package/dist/src/core/geminiChat.js +3 -0
  94. package/dist/src/core/geminiChat.js.map +1 -1
  95. package/dist/src/core/loggingContentGenerator.d.ts +1 -0
  96. package/dist/src/core/loggingContentGenerator.js +31 -1
  97. package/dist/src/core/loggingContentGenerator.js.map +1 -1
  98. package/dist/src/core/loggingContentGenerator.test.js +94 -0
  99. package/dist/src/core/loggingContentGenerator.test.js.map +1 -1
  100. package/dist/src/generated/git-commit.d.ts +2 -2
  101. package/dist/src/generated/git-commit.js +2 -2
  102. package/dist/src/hooks/hookRunner.js +30 -4
  103. package/dist/src/hooks/hookRunner.js.map +1 -1
  104. package/dist/src/index.d.ts +1 -0
  105. package/dist/src/index.js +1 -0
  106. package/dist/src/index.js.map +1 -1
  107. package/dist/src/mcp/mcp-oauth-provider.d.ts +43 -0
  108. package/dist/src/mcp/mcp-oauth-provider.js +67 -0
  109. package/dist/src/mcp/mcp-oauth-provider.js.map +1 -0
  110. package/dist/src/mcp/mcp-oauth-provider.test.d.ts +6 -0
  111. package/dist/src/mcp/mcp-oauth-provider.test.js +63 -0
  112. package/dist/src/mcp/mcp-oauth-provider.test.js.map +1 -0
  113. package/dist/src/policy/config.d.ts +1 -1
  114. package/dist/src/policy/config.js +4 -3
  115. package/dist/src/policy/config.js.map +1 -1
  116. package/dist/src/policy/policies/plan.toml +50 -13
  117. package/dist/src/policy/policies/read-only.toml +12 -11
  118. package/dist/src/policy/policies/write.toml +12 -11
  119. package/dist/src/policy/policies/yolo.toml +21 -11
  120. package/dist/src/policy/policy-engine.test.js +62 -2
  121. package/dist/src/policy/policy-engine.test.js.map +1 -1
  122. package/dist/src/policy/toml-loader.d.ts +19 -1
  123. package/dist/src/policy/toml-loader.js +127 -0
  124. package/dist/src/policy/toml-loader.js.map +1 -1
  125. package/dist/src/policy/toml-loader.test.js +218 -14
  126. package/dist/src/policy/toml-loader.test.js.map +1 -1
  127. package/dist/src/prompts/snippets.js +7 -7
  128. package/dist/src/prompts/snippets.js.map +1 -1
  129. package/dist/src/scheduler/scheduler.js +1 -1
  130. package/dist/src/scheduler/scheduler.js.map +1 -1
  131. package/dist/src/scheduler/scheduler.test.js +1 -1
  132. package/dist/src/scheduler/scheduler.test.js.map +1 -1
  133. package/dist/src/scheduler/state-manager.d.ts +1 -2
  134. package/dist/src/scheduler/state-manager.js +19 -10
  135. package/dist/src/scheduler/state-manager.js.map +1 -1
  136. package/dist/src/scheduler/tool-executor.d.ts +3 -2
  137. package/dist/src/scheduler/tool-executor.js +89 -32
  138. package/dist/src/scheduler/tool-executor.js.map +1 -1
  139. package/dist/src/scheduler/tool-executor.test.js +191 -0
  140. package/dist/src/scheduler/tool-executor.test.js.map +1 -1
  141. package/dist/src/scheduler/types.d.ts +3 -4
  142. package/dist/src/services/chatRecordingService.js +12 -0
  143. package/dist/src/services/chatRecordingService.js.map +1 -1
  144. package/dist/src/services/chatRecordingService.test.js +15 -4
  145. package/dist/src/services/chatRecordingService.test.js.map +1 -1
  146. package/dist/src/services/loopDetectionService.d.ts +2 -1
  147. package/dist/src/services/loopDetectionService.js +49 -11
  148. package/dist/src/services/loopDetectionService.js.map +1 -1
  149. package/dist/src/services/loopDetectionService.test.js +63 -22
  150. package/dist/src/services/loopDetectionService.test.js.map +1 -1
  151. package/dist/src/skills/builtin/skill-creator/scripts/package_skill.cjs +35 -10
  152. package/dist/src/tools/ask-user.d.ts +1 -0
  153. package/dist/src/tools/ask-user.js +2 -1
  154. package/dist/src/tools/ask-user.js.map +1 -1
  155. package/dist/src/tools/definitions/base-declarations.d.ts +51 -0
  156. package/dist/src/tools/definitions/base-declarations.js +75 -1
  157. package/dist/src/tools/definitions/base-declarations.js.map +1 -1
  158. package/dist/src/tools/definitions/coreTools.d.ts +1 -1
  159. package/dist/src/tools/definitions/coreTools.js +5 -1
  160. package/dist/src/tools/definitions/coreTools.js.map +1 -1
  161. package/dist/src/tools/definitions/dynamic-declaration-helpers.js +14 -12
  162. package/dist/src/tools/definitions/dynamic-declaration-helpers.js.map +1 -1
  163. package/dist/src/tools/definitions/model-family-sets/default-legacy.js +97 -81
  164. package/dist/src/tools/definitions/model-family-sets/default-legacy.js.map +1 -1
  165. package/dist/src/tools/definitions/model-family-sets/gemini-3.js +99 -82
  166. package/dist/src/tools/definitions/model-family-sets/gemini-3.js.map +1 -1
  167. package/dist/src/tools/enter-plan-mode.d.ts +1 -0
  168. package/dist/src/tools/enter-plan-mode.js +2 -1
  169. package/dist/src/tools/enter-plan-mode.js.map +1 -1
  170. package/dist/src/tools/exit-plan-mode.d.ts +1 -0
  171. package/dist/src/tools/exit-plan-mode.js +2 -1
  172. package/dist/src/tools/exit-plan-mode.js.map +1 -1
  173. package/dist/src/tools/mcp-client.d.ts +6 -0
  174. package/dist/src/tools/mcp-client.js +14 -0
  175. package/dist/src/tools/mcp-client.js.map +1 -1
  176. package/dist/src/tools/mcp-tool.js +20 -9
  177. package/dist/src/tools/mcp-tool.js.map +1 -1
  178. package/dist/src/tools/mcp-tool.test.js +48 -1
  179. package/dist/src/tools/mcp-tool.test.js.map +1 -1
  180. package/dist/src/tools/read-file.test.js +7 -0
  181. package/dist/src/tools/read-file.test.js.map +1 -1
  182. package/dist/src/tools/shell.d.ts +2 -3
  183. package/dist/src/tools/shell.js +10 -9
  184. package/dist/src/tools/shell.js.map +1 -1
  185. package/dist/src/tools/tool-names.d.ts +2 -2
  186. package/dist/src/tools/tool-names.js +14 -4
  187. package/dist/src/tools/tool-names.js.map +1 -1
  188. package/dist/src/tools/tool-names.test.js +2 -0
  189. package/dist/src/tools/tool-names.test.js.map +1 -1
  190. package/dist/src/tools/tool-registry.d.ts +3 -2
  191. package/dist/src/tools/tool-registry.js +41 -5
  192. package/dist/src/tools/tool-registry.js.map +1 -1
  193. package/dist/src/tools/tool-registry.test.js +42 -7
  194. package/dist/src/tools/tool-registry.test.js.map +1 -1
  195. package/dist/src/tools/tools.d.ts +6 -4
  196. package/dist/src/tools/tools.js.map +1 -1
  197. package/dist/src/utils/constants.d.ts +3 -0
  198. package/dist/src/utils/constants.js +3 -0
  199. package/dist/src/utils/constants.js.map +1 -1
  200. package/dist/src/utils/errors.d.ts +4 -0
  201. package/dist/src/utils/errors.js +6 -0
  202. package/dist/src/utils/errors.js.map +1 -1
  203. package/dist/src/utils/errors.test.js +20 -1
  204. package/dist/src/utils/errors.test.js.map +1 -1
  205. package/dist/src/utils/fetch.js +1 -1
  206. package/dist/src/utils/fetch.js.map +1 -1
  207. package/dist/src/utils/fileUtils.d.ts +0 -1
  208. package/dist/src/utils/fileUtils.js +5 -7
  209. package/dist/src/utils/fileUtils.js.map +1 -1
  210. package/dist/src/utils/tool-utils.d.ts +11 -4
  211. package/dist/src/utils/tool-utils.js +18 -5
  212. package/dist/src/utils/tool-utils.js.map +1 -1
  213. package/dist/src/utils/tool-utils.test.js +8 -0
  214. package/dist/src/utils/tool-utils.test.js.map +1 -1
  215. package/dist/tsconfig.tsbuildinfo +1 -1
  216. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- # Preview release: v0.31.0-preview.1
1
+ # Preview release: v0.32.0-preview.0
2
2
 
3
3
  Released: February 27, 2026
4
4
 
@@ -13,404 +13,196 @@ npm install -g @google/gemini-cli@preview
13
13
 
14
14
  ## Highlights
15
15
 
16
- - **Plan Mode Enhancements**: Numerous additions including automatic model
17
- switching, custom storage directory configuration, message injection upon
18
- manual exit, enforcement of read-only constraints, and centralized tool
19
- visibility in the policy engine.
20
- - **Policy Engine Updates**: Project-level policy support added, alongside MCP
21
- server wildcard support, tool annotation propagation and matching, and
22
- workspace-level "Always Allow" persistence.
23
- - **MCP Integration Improvements**: Better integration through support for MCP
24
- progress updates with input validation and throttling, environment variable
25
- expansion for servers, and full details expansion on tool approval.
26
- - **CLI & Core UX Enhancements**: Several UI and quality-of-life updates such as
27
- Alt+D for forward word deletion, macOS run-event notifications, enhanced
28
- folder trust configurations with security warnings, improved startup warnings,
29
- and a new experimental browser agent.
30
- - **Security & Stability**: Introduced the Conseca framework, deceptive URL and
31
- Unicode character detection, stricter access checks, rate limits on web fetch,
32
- and resolved multiple dependency vulnerabilities.
16
+ - **Plan Mode Enhancements**: Significant updates to Plan Mode, including
17
+ support for modifying plans in external editors, adaptive workflows based on
18
+ task complexity, and new integration tests.
19
+ - **Agent and Core Engine Updates**: Enabled the generalist agent, introduced
20
+ `Kind.Agent` for sub-agent classification, implemented task tracking
21
+ foundation, and improved Agent-to-Agent (A2A) streaming and content
22
+ extraction.
23
+ - **CLI & User Experience**: Introduced interactive shell autocompletion, added
24
+ a new verbosity mode for cleaner error reporting, enabled parallel loading of
25
+ extensions, and improved UI hints and shortcut handling.
26
+ - **Billing and Security**: Implemented G1 AI credits overage flow with enhanced
27
+ billing telemetry, updated the authentication handshake to specification, and
28
+ added support for a policy engine in extensions.
29
+ - **Stability and Bug Fixes**: Addressed numerous issues including 100% CPU
30
+ consumption by orphaned processes, enhanced retry logic for Code Assist,
31
+ reduced intrusive MCP errors, and merged duplicate imports across packages.
33
32
 
34
33
  ## What's Changed
35
34
 
36
- - fix(patch): cherry-pick 58df1c6 to release/v0.31.0-preview.0-pr-20374 to patch
37
- version v0.31.0-preview.0 and create version 0.31.0-preview.1 by
38
- @gemini-cli-robot in
39
- [#20568](https://github.com/google-gemini/gemini-cli/pull/20568)
40
- - Use ranged reads and limited searches and fuzzy editing improvements by
41
- @gundermanc in
42
- [#19240](https://github.com/google-gemini/gemini-cli/pull/19240)
43
- - Fix bottom border color by @jacob314 in
44
- [#19266](https://github.com/google-gemini/gemini-cli/pull/19266)
45
- - Release note generator fix by @g-samroberts in
46
- [#19363](https://github.com/google-gemini/gemini-cli/pull/19363)
47
- - test(evals): add behavioral tests for tool output masking by @NTaylorMullen in
48
- [#19172](https://github.com/google-gemini/gemini-cli/pull/19172)
49
- - docs: clarify preflight instructions in GEMINI.md by @NTaylorMullen in
50
- [#19377](https://github.com/google-gemini/gemini-cli/pull/19377)
51
- - feat(cli): add gemini --resume hint on exit by @Mag1ck in
52
- [#16285](https://github.com/google-gemini/gemini-cli/pull/16285)
53
- - fix: optimize height calculations for ask_user dialog by @jackwotherspoon in
54
- [#19017](https://github.com/google-gemini/gemini-cli/pull/19017)
55
- - feat(cli): add Alt+D for forward word deletion by @scidomino in
56
- [#19300](https://github.com/google-gemini/gemini-cli/pull/19300)
57
- - Disable failing eval test by @chrstnb in
58
- [#19455](https://github.com/google-gemini/gemini-cli/pull/19455)
59
- - fix(cli): support legacy onConfirm callback in ToolActionsContext by
60
- @SandyTao520 in
61
- [#19369](https://github.com/google-gemini/gemini-cli/pull/19369)
62
- - chore(deps): bump tar from 7.5.7 to 7.5.8 by dependabot[bot] in
63
- [#19367](https://github.com/google-gemini/gemini-cli/pull/19367)
64
- - fix(plan): allow safe fallback when experiment setting for plan is not enabled
65
- but approval mode at startup is plan by @Adib234 in
66
- [#19439](https://github.com/google-gemini/gemini-cli/pull/19439)
67
- - Add explicit color-convert dependency by @chrstnb in
68
- [#19460](https://github.com/google-gemini/gemini-cli/pull/19460)
69
- - feat(devtools): migrate devtools package into monorepo by @SandyTao520 in
70
- [#18936](https://github.com/google-gemini/gemini-cli/pull/18936)
71
- - fix(core): clarify plan mode constraints and exit mechanism by @jerop in
72
- [#19438](https://github.com/google-gemini/gemini-cli/pull/19438)
73
- - feat(cli): add macOS run-event notifications (interactive only) by
74
- @LyalinDotCom in
75
- [#19056](https://github.com/google-gemini/gemini-cli/pull/19056)
76
- - Changelog for v0.29.0 by @gemini-cli-robot in
77
- [#19361](https://github.com/google-gemini/gemini-cli/pull/19361)
78
- - fix(ui): preventing empty history items from being added by @devr0306 in
79
- [#19014](https://github.com/google-gemini/gemini-cli/pull/19014)
80
- - Changelog for v0.30.0-preview.0 by @gemini-cli-robot in
81
- [#19364](https://github.com/google-gemini/gemini-cli/pull/19364)
82
- - feat(core): add support for MCP progress updates by @NTaylorMullen in
83
- [#19046](https://github.com/google-gemini/gemini-cli/pull/19046)
84
- - fix(core): ensure directory exists before writing conversation file by
85
- @godwiniheuwa in
86
- [#18429](https://github.com/google-gemini/gemini-cli/pull/18429)
87
- - fix(ui): move margin from top to bottom in ToolGroupMessage by @imadraude in
88
- [#17198](https://github.com/google-gemini/gemini-cli/pull/17198)
89
- - fix(cli): treat unknown slash commands as regular input instead of showing
90
- error by @skyvanguard in
91
- [#17393](https://github.com/google-gemini/gemini-cli/pull/17393)
92
- - feat(core): experimental in-progress steering hints (2 of 2) by @joshualitt in
93
- [#19307](https://github.com/google-gemini/gemini-cli/pull/19307)
94
- - docs(plan): add documentation for plan mode command by @Adib234 in
95
- [#19467](https://github.com/google-gemini/gemini-cli/pull/19467)
96
- - fix(core): ripgrep fails when pattern looks like ripgrep flag by @syvb in
97
- [#18858](https://github.com/google-gemini/gemini-cli/pull/18858)
98
- - fix(cli): disable auto-completion on Shift+Tab to preserve mode cycling by
99
- @NTaylorMullen in
100
- [#19451](https://github.com/google-gemini/gemini-cli/pull/19451)
101
- - use issuer instead of authorization_endpoint for oauth discovery by
102
- @garrettsparks in
103
- [#17332](https://github.com/google-gemini/gemini-cli/pull/17332)
104
- - feat(cli): include `/dir add` directories in @ autocomplete suggestions by
105
- @jasmeetsb in [#19246](https://github.com/google-gemini/gemini-cli/pull/19246)
106
- - feat(admin): Admin settings should only apply if adminControlsApplicable =
107
- true and fetch errors should be fatal by @skeshive in
108
- [#19453](https://github.com/google-gemini/gemini-cli/pull/19453)
109
- - Format strict-development-rules command by @g-samroberts in
110
- [#19484](https://github.com/google-gemini/gemini-cli/pull/19484)
111
- - feat(core): centralize compatibility checks and add TrueColor detection by
112
- @spencer426 in
113
- [#19478](https://github.com/google-gemini/gemini-cli/pull/19478)
114
- - Remove unused files and update index and sidebar. by @g-samroberts in
115
- [#19479](https://github.com/google-gemini/gemini-cli/pull/19479)
116
- - Migrate core render util to use xterm.js as part of the rendering loop. by
117
- @jacob314 in [#19044](https://github.com/google-gemini/gemini-cli/pull/19044)
118
- - Changelog for v0.30.0-preview.1 by @gemini-cli-robot in
119
- [#19496](https://github.com/google-gemini/gemini-cli/pull/19496)
120
- - build: replace deprecated built-in punycode with userland package by @jacob314
121
- in [#19502](https://github.com/google-gemini/gemini-cli/pull/19502)
122
- - Speculative fixes to try to fix react error. by @jacob314 in
123
- [#19508](https://github.com/google-gemini/gemini-cli/pull/19508)
124
- - fix spacing by @jacob314 in
125
- [#19494](https://github.com/google-gemini/gemini-cli/pull/19494)
126
- - fix(core): ensure user rejections update tool outcome for telemetry by
127
- @abhiasap in [#18982](https://github.com/google-gemini/gemini-cli/pull/18982)
128
- - fix(acp): Initialize config (#18897) by @Mervap in
129
- [#18898](https://github.com/google-gemini/gemini-cli/pull/18898)
130
- - fix(core): add error logging for IDE fetch failures by @yuvrajangadsingh in
131
- [#17981](https://github.com/google-gemini/gemini-cli/pull/17981)
132
- - feat(acp): support set_mode interface (#18890) by @Mervap in
133
- [#18891](https://github.com/google-gemini/gemini-cli/pull/18891)
134
- - fix(core): robust workspace-based IDE connection discovery by @ehedlund in
135
- [#18443](https://github.com/google-gemini/gemini-cli/pull/18443)
136
- - Deflake windows tests. by @jacob314 in
137
- [#19511](https://github.com/google-gemini/gemini-cli/pull/19511)
138
- - Fix: Avoid tool confirmation timeout when no UI listeners are present by
139
- @pdHaku0 in [#17955](https://github.com/google-gemini/gemini-cli/pull/17955)
140
- - format md file by @scidomino in
141
- [#19474](https://github.com/google-gemini/gemini-cli/pull/19474)
142
- - feat(cli): add experimental.useOSC52Copy setting by @scidomino in
143
- [#19488](https://github.com/google-gemini/gemini-cli/pull/19488)
144
- - feat(cli): replace loading phrases boolean with enum setting by @LyalinDotCom
145
- in [#19347](https://github.com/google-gemini/gemini-cli/pull/19347)
146
- - Update skill to adjust for generated results. by @g-samroberts in
147
- [#19500](https://github.com/google-gemini/gemini-cli/pull/19500)
148
- - Fix message too large issue. by @gundermanc in
149
- [#19499](https://github.com/google-gemini/gemini-cli/pull/19499)
150
- - fix(core): prevent duplicate tool approval entries in auto-saved.toml by
35
+ - feat(plan): add integration tests for plan mode by @Adib234 in
36
+ [#20214](https://github.com/google-gemini/gemini-cli/pull/20214)
37
+ - fix(acp): update auth handshake to spec by @skeshive in
38
+ [#19725](https://github.com/google-gemini/gemini-cli/pull/19725)
39
+ - feat(core): implement robust A2A streaming reassembly and fix task continuity
40
+ by @adamfweidman in
41
+ [#20091](https://github.com/google-gemini/gemini-cli/pull/20091)
42
+ - feat(cli): load extensions in parallel by @scidomino in
43
+ [#20229](https://github.com/google-gemini/gemini-cli/pull/20229)
44
+ - Plumb the maxAttempts setting through Config args by @kevinjwang1 in
45
+ [#20239](https://github.com/google-gemini/gemini-cli/pull/20239)
46
+ - fix(cli): skip 404 errors in setup-github file downloads by @h30s in
47
+ [#20287](https://github.com/google-gemini/gemini-cli/pull/20287)
48
+ - fix(cli): expose model.name setting in settings dialog for persistence by
49
+ @achaljhawar in
50
+ [#19605](https://github.com/google-gemini/gemini-cli/pull/19605)
51
+ - docs: remove legacy cmd examples in favor of powershell by @scidomino in
52
+ [#20323](https://github.com/google-gemini/gemini-cli/pull/20323)
53
+ - feat(core): Enable model steering in workspace. by @joshualitt in
54
+ [#20343](https://github.com/google-gemini/gemini-cli/pull/20343)
55
+ - fix: remove trailing comma in issue triage workflow settings json by @Nixxx19
56
+ in [#20265](https://github.com/google-gemini/gemini-cli/pull/20265)
57
+ - feat(core): implement task tracker foundation and service by @anj-s in
58
+ [#19464](https://github.com/google-gemini/gemini-cli/pull/19464)
59
+ - test: support tests that include color information by @jacob314 in
60
+ [#20220](https://github.com/google-gemini/gemini-cli/pull/20220)
61
+ - feat(core): introduce Kind.Agent for sub-agent classification by @abhipatel12
62
+ in [#20369](https://github.com/google-gemini/gemini-cli/pull/20369)
63
+ - Changelog for v0.30.0 by @gemini-cli-robot in
64
+ [#20252](https://github.com/google-gemini/gemini-cli/pull/20252)
65
+ - Update changelog workflow to reject nightly builds by @g-samroberts in
66
+ [#20248](https://github.com/google-gemini/gemini-cli/pull/20248)
67
+ - Changelog for v0.31.0-preview.0 by @gemini-cli-robot in
68
+ [#20249](https://github.com/google-gemini/gemini-cli/pull/20249)
69
+ - feat(cli): hide workspace policy update dialog and auto-accept by default by
151
70
  @Abhijit-2592 in
152
- [#19487](https://github.com/google-gemini/gemini-cli/pull/19487)
153
- - fix(core): resolve crash in ClearcutLogger when os.cpus() is empty by @Adib234
154
- in [#19555](https://github.com/google-gemini/gemini-cli/pull/19555)
155
- - chore(core): improve encapsulation and remove unused exports by @adamfweidman
156
- in [#19556](https://github.com/google-gemini/gemini-cli/pull/19556)
157
- - Revert "Add generic searchable list to back settings and extensions (… by
158
- @chrstnb in [#19434](https://github.com/google-gemini/gemini-cli/pull/19434)
159
- - fix(core): improve error type extraction for telemetry by @yunaseoul in
160
- [#19565](https://github.com/google-gemini/gemini-cli/pull/19565)
161
- - fix: remove extra padding in Composer by @jackwotherspoon in
162
- [#19529](https://github.com/google-gemini/gemini-cli/pull/19529)
163
- - feat(plan): support configuring custom plans storage directory by @jerop in
164
- [#19577](https://github.com/google-gemini/gemini-cli/pull/19577)
165
- - Migrate files to resource or references folder. by @g-samroberts in
166
- [#19503](https://github.com/google-gemini/gemini-cli/pull/19503)
167
- - feat(policy): implement project-level policy support by @Abhijit-2592 in
168
- [#18682](https://github.com/google-gemini/gemini-cli/pull/18682)
169
- - feat(core): Implement parallel FC for read only tools. by @joshualitt in
170
- [#18791](https://github.com/google-gemini/gemini-cli/pull/18791)
171
- - chore(skills): adds pr-address-comments skill to work on PR feedback by
172
- @mbleigh in [#19576](https://github.com/google-gemini/gemini-cli/pull/19576)
173
- - refactor(sdk): introduce session-based architecture by @mbleigh in
174
- [#19180](https://github.com/google-gemini/gemini-cli/pull/19180)
175
- - fix(ci): add fallback JSON extraction to issue triage workflow by @bdmorgan in
176
- [#19593](https://github.com/google-gemini/gemini-cli/pull/19593)
177
- - feat(core): refine Edit and WriteFile tool schemas for Gemini 3 by
71
+ [#20351](https://github.com/google-gemini/gemini-cli/pull/20351)
72
+ - feat(core): rename grep_search include parameter to include_pattern by
178
73
  @SandyTao520 in
179
- [#19476](https://github.com/google-gemini/gemini-cli/pull/19476)
180
- - Changelog for v0.30.0-preview.3 by @gemini-cli-robot in
181
- [#19585](https://github.com/google-gemini/gemini-cli/pull/19585)
182
- - fix(plan): exclude EnterPlanMode tool from YOLO mode by @Adib234 in
183
- [#19570](https://github.com/google-gemini/gemini-cli/pull/19570)
184
- - chore: resolve build warnings and update dependencies by @mattKorwel in
185
- [#18880](https://github.com/google-gemini/gemini-cli/pull/18880)
186
- - feat(ui): add source indicators to slash commands by @ehedlund in
187
- [#18839](https://github.com/google-gemini/gemini-cli/pull/18839)
188
- - docs: refine Plan Mode documentation structure and workflow by @jerop in
189
- [#19644](https://github.com/google-gemini/gemini-cli/pull/19644)
190
- - Docs: Update release information regarding Gemini 3.1 by @jkcinouye in
191
- [#19568](https://github.com/google-gemini/gemini-cli/pull/19568)
192
- - fix(security): rate limit web_fetch tool to mitigate DDoS via prompt injection
193
- by @mattKorwel in
194
- [#19567](https://github.com/google-gemini/gemini-cli/pull/19567)
195
- - Add initial implementation of /extensions explore command by @chrstnb in
196
- [#19029](https://github.com/google-gemini/gemini-cli/pull/19029)
197
- - fix: use discoverOAuthFromWWWAuthenticate for reactive OAuth flow (#18760) by
198
- @maximus12793 in
199
- [#19038](https://github.com/google-gemini/gemini-cli/pull/19038)
200
- - Search updates by @alisa-alisa in
201
- [#19482](https://github.com/google-gemini/gemini-cli/pull/19482)
202
- - feat(cli): add support for numpad SS3 sequences by @scidomino in
203
- [#19659](https://github.com/google-gemini/gemini-cli/pull/19659)
204
- - feat(cli): enhance folder trust with configuration discovery and security
205
- warnings by @galz10 in
206
- [#19492](https://github.com/google-gemini/gemini-cli/pull/19492)
207
- - feat(ui): improve startup warnings UX with dismissal and show-count limits by
74
+ [#20328](https://github.com/google-gemini/gemini-cli/pull/20328)
75
+ - feat(plan): support opening and modifying plan in external editor by @Adib234
76
+ in [#20348](https://github.com/google-gemini/gemini-cli/pull/20348)
77
+ - feat(cli): implement interactive shell autocompletion by @mrpmohiburrahman in
78
+ [#20082](https://github.com/google-gemini/gemini-cli/pull/20082)
79
+ - fix(core): allow /memory add to work in plan mode by @Jefftree in
80
+ [#20353](https://github.com/google-gemini/gemini-cli/pull/20353)
81
+ - feat(core): add HTTP 499 to retryable errors and map to RetryableQuotaError by
82
+ @bdmorgan in [#20432](https://github.com/google-gemini/gemini-cli/pull/20432)
83
+ - feat(core): Enable generalist agent by @joshualitt in
84
+ [#19665](https://github.com/google-gemini/gemini-cli/pull/19665)
85
+ - Updated tests in TableRenderer.test.tsx to use SVG snapshots by @devr0306 in
86
+ [#20450](https://github.com/google-gemini/gemini-cli/pull/20450)
87
+ - Refactor Github Action per b/485167538 by @google-admin in
88
+ [#19443](https://github.com/google-gemini/gemini-cli/pull/19443)
89
+ - fix(github): resolve actionlint and yamllint regressions from #19443 by @jerop
90
+ in [#20467](https://github.com/google-gemini/gemini-cli/pull/20467)
91
+ - fix: action var usage by @galz10 in
92
+ [#20492](https://github.com/google-gemini/gemini-cli/pull/20492)
93
+ - feat(core): improve A2A content extraction by @adamfweidman in
94
+ [#20487](https://github.com/google-gemini/gemini-cli/pull/20487)
95
+ - fix(cli): support quota error fallbacks for all authentication types by
96
+ @sehoon38 in [#20475](https://github.com/google-gemini/gemini-cli/pull/20475)
97
+ - fix(core): flush transcript for pure tool-call responses to ensure BeforeTool
98
+ hooks see complete state by @krishdef7 in
99
+ [#20419](https://github.com/google-gemini/gemini-cli/pull/20419)
100
+ - feat(plan): adapt planning workflow based on complexity of task by @jerop in
101
+ [#20465](https://github.com/google-gemini/gemini-cli/pull/20465)
102
+ - fix: prevent orphaned processes from consuming 100% CPU when terminal closes
103
+ by @yuvrajangadsingh in
104
+ [#16965](https://github.com/google-gemini/gemini-cli/pull/16965)
105
+ - feat(core): increase fetch timeout and fix [object Object] error
106
+ stringification by @bdmorgan in
107
+ [#20441](https://github.com/google-gemini/gemini-cli/pull/20441)
108
+ - [Gemma x Gemini CLI] Add an Experimental Gemma Router that uses a LiteRT-LM
109
+ shim into the Composite Model Classifier Strategy by @sidwan02 in
110
+ [#17231](https://github.com/google-gemini/gemini-cli/pull/17231)
111
+ - docs(plan): update documentation regarding supporting editing of plan files
112
+ during plan approval by @Adib234 in
113
+ [#20452](https://github.com/google-gemini/gemini-cli/pull/20452)
114
+ - test(cli): fix flaky ToolResultDisplay overflow test by @jwhelangoog in
115
+ [#20518](https://github.com/google-gemini/gemini-cli/pull/20518)
116
+ - ui(cli): reduce length of Ctrl+O hint by @jwhelangoog in
117
+ [#20490](https://github.com/google-gemini/gemini-cli/pull/20490)
118
+ - fix(ui): correct styled table width calculations by @devr0306 in
119
+ [#20042](https://github.com/google-gemini/gemini-cli/pull/20042)
120
+ - Avoid overaggressive unescaping by @scidomino in
121
+ [#20520](https://github.com/google-gemini/gemini-cli/pull/20520)
122
+ - feat(telemetry) Instrument traces with more attributes and make them available
123
+ to OTEL users by @heaventourist in
124
+ [#20237](https://github.com/google-gemini/gemini-cli/pull/20237)
125
+ - Add support for policy engine in extensions by @chrstnb in
126
+ [#20049](https://github.com/google-gemini/gemini-cli/pull/20049)
127
+ - Docs: Update to Terms of Service & FAQ by @jkcinouye in
128
+ [#20488](https://github.com/google-gemini/gemini-cli/pull/20488)
129
+ - Fix bottom border rendering for search and add a regression test. by @jacob314
130
+ in [#20517](https://github.com/google-gemini/gemini-cli/pull/20517)
131
+ - fix(core): apply retry logic to CodeAssistServer for all users by @bdmorgan in
132
+ [#20507](https://github.com/google-gemini/gemini-cli/pull/20507)
133
+ - Fix extension MCP server env var loading by @chrstnb in
134
+ [#20374](https://github.com/google-gemini/gemini-cli/pull/20374)
135
+ - feat(ui): add 'ctrl+o' hint to truncated content message by @jerop in
136
+ [#20529](https://github.com/google-gemini/gemini-cli/pull/20529)
137
+ - Fix flicker showing message to press ctrl-O again to collapse. by @jacob314 in
138
+ [#20414](https://github.com/google-gemini/gemini-cli/pull/20414)
139
+ - fix(cli): hide shortcuts hint while model is thinking or the user has typed a
140
+ prompt + add debounce to avoid flicker by @jacob314 in
141
+ [#19389](https://github.com/google-gemini/gemini-cli/pull/19389)
142
+ - feat(plan): update planning workflow to encourage multi-select with
143
+ descriptions of options by @Adib234 in
144
+ [#20491](https://github.com/google-gemini/gemini-cli/pull/20491)
145
+ - refactor(core,cli): useAlternateBuffer read from config by @psinha40898 in
146
+ [#20346](https://github.com/google-gemini/gemini-cli/pull/20346)
147
+ - fix(cli): ensure dialogs stay scrolled to bottom in alternate buffer mode by
148
+ @jacob314 in [#20527](https://github.com/google-gemini/gemini-cli/pull/20527)
149
+ - fix(core): revert auto-save of policies to user space by @Abhijit-2592 in
150
+ [#20531](https://github.com/google-gemini/gemini-cli/pull/20531)
151
+ - Demote unreliable test. by @gundermanc in
152
+ [#20571](https://github.com/google-gemini/gemini-cli/pull/20571)
153
+ - fix(core): handle optional response fields from code assist API by @sehoon38
154
+ in [#20345](https://github.com/google-gemini/gemini-cli/pull/20345)
155
+ - fix(cli): keep thought summary when loading phrases are off by @LyalinDotCom
156
+ in [#20497](https://github.com/google-gemini/gemini-cli/pull/20497)
157
+ - feat(cli): add temporary flag to disable workspace policies by @Abhijit-2592
158
+ in [#20523](https://github.com/google-gemini/gemini-cli/pull/20523)
159
+ - Disable expensive and scheduled workflows on personal forks by @dewitt in
160
+ [#20449](https://github.com/google-gemini/gemini-cli/pull/20449)
161
+ - Moved markdown parsing logic to a separate util file by @devr0306 in
162
+ [#20526](https://github.com/google-gemini/gemini-cli/pull/20526)
163
+ - fix(plan): prevent agent from using ask_user for shell command confirmation by
164
+ @Adib234 in [#20504](https://github.com/google-gemini/gemini-cli/pull/20504)
165
+ - fix(core): disable retries for code assist streaming requests by @sehoon38 in
166
+ [#20561](https://github.com/google-gemini/gemini-cli/pull/20561)
167
+ - feat(billing): implement G1 AI credits overage flow with billing telemetry by
168
+ @gsquared94 in
169
+ [#18590](https://github.com/google-gemini/gemini-cli/pull/18590)
170
+ - feat: better error messages by @gsquared94 in
171
+ [#20577](https://github.com/google-gemini/gemini-cli/pull/20577)
172
+ - fix(ui): persist expansion in AskUser dialog when navigating options by @jerop
173
+ in [#20559](https://github.com/google-gemini/gemini-cli/pull/20559)
174
+ - fix(cli): prevent sub-agent tool calls from leaking into UI by @abhipatel12 in
175
+ [#20580](https://github.com/google-gemini/gemini-cli/pull/20580)
176
+ - fix(cli): Shell autocomplete polish by @jacob314 in
177
+ [#20411](https://github.com/google-gemini/gemini-cli/pull/20411)
178
+ - Changelog for v0.31.0-preview.1 by @gemini-cli-robot in
179
+ [#20590](https://github.com/google-gemini/gemini-cli/pull/20590)
180
+ - Add slash command for promoting behavioral evals to CI blocking by @gundermanc
181
+ in [#20575](https://github.com/google-gemini/gemini-cli/pull/20575)
182
+ - Changelog for v0.30.1 by @gemini-cli-robot in
183
+ [#20589](https://github.com/google-gemini/gemini-cli/pull/20589)
184
+ - Add low/full CLI error verbosity mode for cleaner UI by @LyalinDotCom in
185
+ [#20399](https://github.com/google-gemini/gemini-cli/pull/20399)
186
+ - Disable Gemini PR reviews on draft PRs. by @gundermanc in
187
+ [#20362](https://github.com/google-gemini/gemini-cli/pull/20362)
188
+ - Docs: FAQ update by @jkcinouye in
189
+ [#20585](https://github.com/google-gemini/gemini-cli/pull/20585)
190
+ - fix(core): reduce intrusive MCP errors and deduplicate diagnostics by
208
191
  @spencer426 in
209
- [#19584](https://github.com/google-gemini/gemini-cli/pull/19584)
210
- - feat(a2a): Add API key authentication provider by @adamfweidman in
211
- [#19548](https://github.com/google-gemini/gemini-cli/pull/19548)
212
- - Send accepted/removed lines with ACCEPT_FILE telemetry. by @gundermanc in
213
- [#19670](https://github.com/google-gemini/gemini-cli/pull/19670)
214
- - feat(models): support Gemini 3.1 Pro Preview and fixes by @sehoon38 in
215
- [#19676](https://github.com/google-gemini/gemini-cli/pull/19676)
216
- - feat(plan): enforce read-only constraints in Plan Mode by @mattKorwel in
217
- [#19433](https://github.com/google-gemini/gemini-cli/pull/19433)
218
- - fix(cli): allow perfect match @scripts/test-windows-paths.js completions to
219
- submit on Enter by @spencer426 in
220
- [#19562](https://github.com/google-gemini/gemini-cli/pull/19562)
221
- - fix(core): treat 503 Service Unavailable as retryable quota error by @sehoon38
222
- in [#19642](https://github.com/google-gemini/gemini-cli/pull/19642)
223
- - Update sidebar.json for to allow top nav tabs. by @g-samroberts in
224
- [#19595](https://github.com/google-gemini/gemini-cli/pull/19595)
225
- - security: strip deceptive Unicode characters from terminal output by @ehedlund
226
- in [#19026](https://github.com/google-gemini/gemini-cli/pull/19026)
227
- - Fixes 'input.on' is not a function error in Gemini CLI by @gundermanc in
228
- [#19691](https://github.com/google-gemini/gemini-cli/pull/19691)
229
- - Revert "feat(ui): add source indicators to slash commands" by @ehedlund in
230
- [#19695](https://github.com/google-gemini/gemini-cli/pull/19695)
231
- - security: implement deceptive URL detection and disclosure in tool
232
- confirmations by @ehedlund in
233
- [#19288](https://github.com/google-gemini/gemini-cli/pull/19288)
234
- - fix(core): restore auth consent in headless mode and add unit tests by
235
- @ehedlund in [#19689](https://github.com/google-gemini/gemini-cli/pull/19689)
236
- - Fix unsafe assertions in code_assist folder. by @gundermanc in
237
- [#19706](https://github.com/google-gemini/gemini-cli/pull/19706)
238
- - feat(cli): make JetBrains warning more specific by @jacob314 in
239
- [#19687](https://github.com/google-gemini/gemini-cli/pull/19687)
240
- - fix(cli): extensions dialog UX polish by @jacob314 in
241
- [#19685](https://github.com/google-gemini/gemini-cli/pull/19685)
242
- - fix(cli): use getDisplayString for manual model selection in dialog by
243
- @sehoon38 in [#19726](https://github.com/google-gemini/gemini-cli/pull/19726)
244
- - feat(policy): repurpose "Always Allow" persistence to workspace level by
245
- @Abhijit-2592 in
246
- [#19707](https://github.com/google-gemini/gemini-cli/pull/19707)
247
- - fix(cli): re-enable CLI banner by @sehoon38 in
248
- [#19741](https://github.com/google-gemini/gemini-cli/pull/19741)
249
- - Disallow and suppress unsafe assignment by @gundermanc in
250
- [#19736](https://github.com/google-gemini/gemini-cli/pull/19736)
251
- - feat(core): migrate read_file to 1-based start_line/end_line parameters by
252
- @adamfweidman in
253
- [#19526](https://github.com/google-gemini/gemini-cli/pull/19526)
254
- - feat(cli): improve CTRL+O experience for both standard and alternate screen
255
- buffer (ASB) modes by @jwhelangoog in
256
- [#19010](https://github.com/google-gemini/gemini-cli/pull/19010)
257
- - Utilize pipelining of grep_search -> read_file to eliminate turns by
258
- @gundermanc in
259
- [#19574](https://github.com/google-gemini/gemini-cli/pull/19574)
260
- - refactor(core): remove unsafe type assertions in error utils (Phase 1.1) by
261
- @mattKorwel in
262
- [#19750](https://github.com/google-gemini/gemini-cli/pull/19750)
263
- - Disallow unsafe returns. by @gundermanc in
264
- [#19767](https://github.com/google-gemini/gemini-cli/pull/19767)
265
- - fix(cli): filter subagent sessions from resume history by @abhipatel12 in
266
- [#19698](https://github.com/google-gemini/gemini-cli/pull/19698)
267
- - chore(lint): fix lint errors seen when running npm run lint by @abhipatel12 in
268
- [#19844](https://github.com/google-gemini/gemini-cli/pull/19844)
269
- - feat(core): remove unnecessary login verbiage from Code Assist auth by
270
- @NTaylorMullen in
271
- [#19861](https://github.com/google-gemini/gemini-cli/pull/19861)
272
- - fix(plan): time share by approval mode dashboard reporting negative time
273
- shares by @Adib234 in
274
- [#19847](https://github.com/google-gemini/gemini-cli/pull/19847)
275
- - fix(core): allow any preview model in quota access check by @bdmorgan in
276
- [#19867](https://github.com/google-gemini/gemini-cli/pull/19867)
277
- - fix(core): prevent omission placeholder deletions in replace/write_file by
278
- @nsalerni in [#19870](https://github.com/google-gemini/gemini-cli/pull/19870)
279
- - fix(core): add uniqueness guard to edit tool by @Shivangisharma4 in
280
- [#19890](https://github.com/google-gemini/gemini-cli/pull/19890)
281
- - refactor(config): remove enablePromptCompletion from settings by @sehoon38 in
282
- [#19974](https://github.com/google-gemini/gemini-cli/pull/19974)
283
- - refactor(core): move session conversion logic to core by @abhipatel12 in
284
- [#19972](https://github.com/google-gemini/gemini-cli/pull/19972)
285
- - Fix: Persist manual model selection on restart #19864 by @Nixxx19 in
286
- [#19891](https://github.com/google-gemini/gemini-cli/pull/19891)
287
- - fix(core): increase default retry attempts and add quota error backoff by
288
- @sehoon38 in [#19949](https://github.com/google-gemini/gemini-cli/pull/19949)
289
- - feat(core): add policy chain support for Gemini 3.1 by @sehoon38 in
290
- [#19991](https://github.com/google-gemini/gemini-cli/pull/19991)
291
- - Updates command reference and /stats command. by @g-samroberts in
292
- [#19794](https://github.com/google-gemini/gemini-cli/pull/19794)
293
- - Fix for silent failures in non-interactive mode by @owenofbrien in
294
- [#19905](https://github.com/google-gemini/gemini-cli/pull/19905)
295
- - fix(plan): allow plan mode writes on Windows and fix prompt paths by @Adib234
296
- in [#19658](https://github.com/google-gemini/gemini-cli/pull/19658)
297
- - fix(core): prevent OAuth server crash on unexpected requests by @reyyanxahmed
298
- in [#19668](https://github.com/google-gemini/gemini-cli/pull/19668)
299
- - feat: Map tool kinds to explicit ACP.ToolKind values and update test … by
300
- @sripasg in [#19547](https://github.com/google-gemini/gemini-cli/pull/19547)
301
- - chore: restrict gemini-automted-issue-triage to only allow echo by @galz10 in
302
- [#20047](https://github.com/google-gemini/gemini-cli/pull/20047)
303
- - Allow ask headers longer than 16 chars by @scidomino in
304
- [#20041](https://github.com/google-gemini/gemini-cli/pull/20041)
305
- - fix(core): prevent state corruption in McpClientManager during collis by @h30s
306
- in [#19782](https://github.com/google-gemini/gemini-cli/pull/19782)
307
- - fix(bundling): copy devtools package to bundle for runtime resolution by
308
- @SandyTao520 in
309
- [#19766](https://github.com/google-gemini/gemini-cli/pull/19766)
310
- - feat(policy): Support MCP Server Wildcards in Policy Engine by @jerop in
311
- [#20024](https://github.com/google-gemini/gemini-cli/pull/20024)
312
- - docs(CONTRIBUTING): update React DevTools version to 6 by @mmgok in
313
- [#20014](https://github.com/google-gemini/gemini-cli/pull/20014)
314
- - feat(core): optimize tool descriptions and schemas for Gemini 3 by
315
- @aishaneeshah in
316
- [#19643](https://github.com/google-gemini/gemini-cli/pull/19643)
317
- - feat(core): implement experimental direct web fetch by @mbleigh in
318
- [#19557](https://github.com/google-gemini/gemini-cli/pull/19557)
319
- - feat(core): replace expected_replacements with allow_multiple in replace tool
320
- by @SandyTao520 in
321
- [#20033](https://github.com/google-gemini/gemini-cli/pull/20033)
322
- - fix(sandbox): harden image packaging integrity checks by @aviralgarg05 in
323
- [#19552](https://github.com/google-gemini/gemini-cli/pull/19552)
324
- - fix(core): allow environment variable expansion and explicit overrides for MCP
325
- servers by @galz10 in
326
- [#18837](https://github.com/google-gemini/gemini-cli/pull/18837)
327
- - feat(policy): Implement Tool Annotation Matching in Policy Engine by @jerop in
328
- [#20029](https://github.com/google-gemini/gemini-cli/pull/20029)
329
- - fix(core): prevent utility calls from changing session active model by
330
- @adamfweidman in
331
- [#20035](https://github.com/google-gemini/gemini-cli/pull/20035)
332
- - fix(cli): skip workspace policy loading when in home directory by
333
- @Abhijit-2592 in
334
- [#20054](https://github.com/google-gemini/gemini-cli/pull/20054)
335
- - fix(scripts): Add Windows (win32/x64) support to lint.js by @ZafeerMahmood in
336
- [#16193](https://github.com/google-gemini/gemini-cli/pull/16193)
337
- - fix(a2a-server): Remove unsafe type assertions in agent by @Nixxx19 in
338
- [#19723](https://github.com/google-gemini/gemini-cli/pull/19723)
339
- - Fix: Handle corrupted token file gracefully when switching auth types (#19845)
340
- by @Nixxx19 in
341
- [#19850](https://github.com/google-gemini/gemini-cli/pull/19850)
342
- - fix critical dep vulnerability by @scidomino in
343
- [#20087](https://github.com/google-gemini/gemini-cli/pull/20087)
344
- - Add new setting to configure maxRetries by @kevinjwang1 in
345
- [#20064](https://github.com/google-gemini/gemini-cli/pull/20064)
346
- - Stabilize tests. by @gundermanc in
347
- [#20095](https://github.com/google-gemini/gemini-cli/pull/20095)
348
- - make windows tests mandatory by @scidomino in
349
- [#20096](https://github.com/google-gemini/gemini-cli/pull/20096)
350
- - Add 3.1 pro preview to behavioral evals. by @gundermanc in
351
- [#20088](https://github.com/google-gemini/gemini-cli/pull/20088)
352
- - feat:PR-rate-limit by @JagjeevanAK in
353
- [#19804](https://github.com/google-gemini/gemini-cli/pull/19804)
354
- - feat(cli): allow expanding full details of MCP tool on approval by @y-okt in
355
- [#19916](https://github.com/google-gemini/gemini-cli/pull/19916)
356
- - feat(security): Introduce Conseca framework by @shrishabh in
357
- [#13193](https://github.com/google-gemini/gemini-cli/pull/13193)
358
- - fix(cli): Remove unsafe type assertions in activityLogger #19713 by @Nixxx19
359
- in [#19745](https://github.com/google-gemini/gemini-cli/pull/19745)
360
- - feat: implement AfterTool tail tool calls by @googlestrobe in
361
- [#18486](https://github.com/google-gemini/gemini-cli/pull/18486)
362
- - ci(actions): fix PR rate limiter excluding maintainers by @scidomino in
363
- [#20117](https://github.com/google-gemini/gemini-cli/pull/20117)
364
- - Shortcuts: Move SectionHeader title below top line and refine styling by
365
- @keithguerin in
366
- [#18721](https://github.com/google-gemini/gemini-cli/pull/18721)
367
- - refactor(ui): Update and simplify use of gray colors in themes by @keithguerin
368
- in [#20141](https://github.com/google-gemini/gemini-cli/pull/20141)
369
- - fix punycode2 by @jacob314 in
370
- [#20154](https://github.com/google-gemini/gemini-cli/pull/20154)
371
- - feat(ide): add GEMINI_CLI_IDE_PID env var to override IDE process detection by
372
- @kiryltech in [#15842](https://github.com/google-gemini/gemini-cli/pull/15842)
373
- - feat(policy): Propagate Tool Annotations for MCP Servers by @jerop in
374
- [#20083](https://github.com/google-gemini/gemini-cli/pull/20083)
375
- - fix(a2a-server): pass allowedTools settings to core Config by @reyyanxahmed in
376
- [#19680](https://github.com/google-gemini/gemini-cli/pull/19680)
377
- - feat(mcp): add progress bar, throttling, and input validation for MCP tool
378
- progress by @jasmeetsb in
379
- [#19772](https://github.com/google-gemini/gemini-cli/pull/19772)
380
- - feat(policy): centralize plan mode tool visibility in policy engine by @jerop
381
- in [#20178](https://github.com/google-gemini/gemini-cli/pull/20178)
382
- - feat(browser): implement experimental browser agent by @gsquared94 in
383
- [#19284](https://github.com/google-gemini/gemini-cli/pull/19284)
384
- - feat(plan): summarize work after executing a plan by @jerop in
385
- [#19432](https://github.com/google-gemini/gemini-cli/pull/19432)
386
- - fix(core): create new McpClient on restart to apply updated config by @h30s in
387
- [#20126](https://github.com/google-gemini/gemini-cli/pull/20126)
388
- - Changelog for v0.30.0-preview.5 by @gemini-cli-robot in
389
- [#20107](https://github.com/google-gemini/gemini-cli/pull/20107)
390
- - Update packages. by @jacob314 in
391
- [#20152](https://github.com/google-gemini/gemini-cli/pull/20152)
392
- - Fix extension env dir loading issue by @chrstnb in
393
- [#20198](https://github.com/google-gemini/gemini-cli/pull/20198)
394
- - restrict /assign to help-wanted issues by @scidomino in
395
- [#20207](https://github.com/google-gemini/gemini-cli/pull/20207)
396
- - feat(plan): inject message when user manually exits Plan mode by @jerop in
397
- [#20203](https://github.com/google-gemini/gemini-cli/pull/20203)
398
- - feat(extensions): enforce folder trust for local extension install by @galz10
399
- in [#19703](https://github.com/google-gemini/gemini-cli/pull/19703)
400
- - feat(hooks): adds support for RuntimeHook functions. by @mbleigh in
401
- [#19598](https://github.com/google-gemini/gemini-cli/pull/19598)
402
- - Docs: Update UI links. by @jkcinouye in
403
- [#20224](https://github.com/google-gemini/gemini-cli/pull/20224)
404
- - feat: prompt users to run /terminal-setup with yes/no by @ishaanxgupta in
405
- [#16235](https://github.com/google-gemini/gemini-cli/pull/16235)
406
- - fix: additional high vulnerabilities (minimatch, cross-spawn) by @adamfweidman
407
- in [#20221](https://github.com/google-gemini/gemini-cli/pull/20221)
408
- - feat(telemetry): Add context breakdown to API response event by @SandyTao520
409
- in [#19699](https://github.com/google-gemini/gemini-cli/pull/19699)
410
- - Docs: Add nested sub-folders for related topics by @g-samroberts in
411
- [#20235](https://github.com/google-gemini/gemini-cli/pull/20235)
412
- - feat(plan): support automatic model switching for Plan Mode by @jerop in
413
- [#20240](https://github.com/google-gemini/gemini-cli/pull/20240)
192
+ [#20232](https://github.com/google-gemini/gemini-cli/pull/20232)
193
+ - docs: fix spelling typos in installation guide by @campox747 in
194
+ [#20579](https://github.com/google-gemini/gemini-cli/pull/20579)
195
+ - Promote stable tests to CI blocking. by @gundermanc in
196
+ [#20581](https://github.com/google-gemini/gemini-cli/pull/20581)
197
+ - feat(core): enable contiguous parallel admission for Kind.Agent tools by
198
+ @abhipatel12 in
199
+ [#20583](https://github.com/google-gemini/gemini-cli/pull/20583)
200
+ - Enforce import/no-duplicates as error by @Nixxx19 in
201
+ [#19797](https://github.com/google-gemini/gemini-cli/pull/19797)
202
+ - fix: merge duplicate imports in sdk and test-utils packages (1/4) by @Nixxx19
203
+ in [#19777](https://github.com/google-gemini/gemini-cli/pull/19777)
204
+ - fix: merge duplicate imports in a2a-server package (2/4) by @Nixxx19 in
205
+ [#19781](https://github.com/google-gemini/gemini-cli/pull/19781)
414
206
 
415
207
  **Full Changelog**:
416
- https://github.com/google-gemini/gemini-cli/compare/v0.30.0-preview.6...v0.31.0-preview.1
208
+ https://github.com/google-gemini/gemini-cli/compare/v0.31.0-preview.3...v0.32.0-preview.0