@google/gemini-cli-core 0.26.0-preview.4 → 0.27.0-nightly.20260126.cb772a5b7

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 (325) hide show
  1. package/README.md +18 -1
  2. package/dist/docs/changelogs/index.md +87 -0
  3. package/dist/docs/changelogs/latest.md +355 -150
  4. package/dist/docs/changelogs/preview.md +318 -210
  5. package/dist/docs/cli/commands.md +0 -6
  6. package/dist/docs/cli/keyboard-shortcuts.md +32 -31
  7. package/dist/docs/cli/settings.md +16 -18
  8. package/dist/docs/cli/system-prompt.md +32 -0
  9. package/dist/docs/cli/uninstall.md +18 -0
  10. package/dist/docs/extensions/index.md +1 -1
  11. package/dist/docs/get-started/configuration.md +9 -34
  12. package/dist/docs/hooks/best-practices.md +219 -398
  13. package/dist/docs/hooks/index.md +111 -656
  14. package/dist/docs/hooks/reference.md +280 -136
  15. package/dist/docs/hooks/writing-hooks.md +202 -796
  16. package/dist/docs/sidebar.json +1 -5
  17. package/dist/docs/tools/mcp-server.md +24 -1
  18. package/dist/google-gemini-cli-core-0.27.0-nightly.20260121.97aac696f.tgz +0 -0
  19. package/dist/src/agents/agentLoader.js +10 -10
  20. package/dist/src/agents/agentLoader.js.map +1 -1
  21. package/dist/src/agents/agentLoader.test.js +16 -19
  22. package/dist/src/agents/agentLoader.test.js.map +1 -1
  23. package/dist/src/agents/cli-help-agent.js +8 -5
  24. package/dist/src/agents/cli-help-agent.js.map +1 -1
  25. package/dist/src/agents/cli-help-agent.test.js +4 -2
  26. package/dist/src/agents/cli-help-agent.test.js.map +1 -1
  27. package/dist/src/agents/codebase-investigator.d.ts +2 -1
  28. package/dist/src/agents/codebase-investigator.js +62 -41
  29. package/dist/src/agents/codebase-investigator.js.map +1 -1
  30. package/dist/src/agents/codebase-investigator.test.js +15 -8
  31. package/dist/src/agents/codebase-investigator.test.js.map +1 -1
  32. package/dist/src/agents/generalist-agent.js +9 -11
  33. package/dist/src/agents/generalist-agent.js.map +1 -1
  34. package/dist/src/agents/generalist-agent.test.js +3 -3
  35. package/dist/src/agents/generalist-agent.test.js.map +1 -1
  36. package/dist/src/agents/local-executor.js +25 -9
  37. package/dist/src/agents/local-executor.js.map +1 -1
  38. package/dist/src/agents/local-executor.test.js +74 -7
  39. package/dist/src/agents/local-executor.test.js.map +1 -1
  40. package/dist/src/agents/local-invocation.test.js +7 -3
  41. package/dist/src/agents/local-invocation.test.js.map +1 -1
  42. package/dist/src/agents/registry.d.ts +8 -5
  43. package/dist/src/agents/registry.js +31 -75
  44. package/dist/src/agents/registry.js.map +1 -1
  45. package/dist/src/agents/registry.test.js +93 -30
  46. package/dist/src/agents/registry.test.js.map +1 -1
  47. package/dist/src/agents/remote-invocation.js +2 -1
  48. package/dist/src/agents/remote-invocation.js.map +1 -1
  49. package/dist/src/agents/remote-invocation.test.js +15 -3
  50. package/dist/src/agents/remote-invocation.test.js.map +1 -1
  51. package/dist/src/agents/subagent-tool-wrapper.js +1 -3
  52. package/dist/src/agents/subagent-tool-wrapper.js.map +1 -1
  53. package/dist/src/agents/subagent-tool-wrapper.test.js +10 -25
  54. package/dist/src/agents/subagent-tool-wrapper.test.js.map +1 -1
  55. package/dist/src/agents/subagent-tool.d.ts +15 -0
  56. package/dist/src/agents/subagent-tool.js +61 -0
  57. package/dist/src/agents/subagent-tool.js.map +1 -0
  58. package/dist/src/agents/types.d.ts +6 -9
  59. package/dist/src/agents/types.js +4 -0
  60. package/dist/src/agents/types.js.map +1 -1
  61. package/dist/src/code_assist/codeAssist.js +1 -1
  62. package/dist/src/code_assist/codeAssist.js.map +1 -1
  63. package/dist/src/code_assist/codeAssist.test.js +2 -2
  64. package/dist/src/code_assist/codeAssist.test.js.map +1 -1
  65. package/dist/src/code_assist/experiments/experiments.test.js +1 -0
  66. package/dist/src/code_assist/experiments/experiments.test.js.map +1 -1
  67. package/dist/src/code_assist/experiments/experiments_local.test.js +11 -6
  68. package/dist/src/code_assist/experiments/experiments_local.test.js.map +1 -1
  69. package/dist/src/code_assist/experiments/flagNames.d.ts +2 -0
  70. package/dist/src/code_assist/experiments/flagNames.js +2 -0
  71. package/dist/src/code_assist/experiments/flagNames.js.map +1 -1
  72. package/dist/src/code_assist/oauth2.js +3 -3
  73. package/dist/src/code_assist/oauth2.test.js +1 -1
  74. package/dist/src/code_assist/server.d.ts +2 -1
  75. package/dist/src/code_assist/server.js +3 -1
  76. package/dist/src/code_assist/server.js.map +1 -1
  77. package/dist/src/code_assist/setup.d.ts +1 -0
  78. package/dist/src/code_assist/setup.js +5 -1
  79. package/dist/src/code_assist/setup.js.map +1 -1
  80. package/dist/src/code_assist/setup.test.js +10 -4
  81. package/dist/src/code_assist/setup.test.js.map +1 -1
  82. package/dist/src/config/config.d.ts +25 -18
  83. package/dist/src/config/config.js +70 -40
  84. package/dist/src/config/config.js.map +1 -1
  85. package/dist/src/config/config.test.js +48 -21
  86. package/dist/src/config/config.test.js.map +1 -1
  87. package/dist/src/confirmation-bus/message-bus.js +2 -32
  88. package/dist/src/confirmation-bus/message-bus.js.map +1 -1
  89. package/dist/src/confirmation-bus/types.d.ts +35 -21
  90. package/dist/src/confirmation-bus/types.js +8 -3
  91. package/dist/src/confirmation-bus/types.js.map +1 -1
  92. package/dist/src/core/client.js +25 -7
  93. package/dist/src/core/client.js.map +1 -1
  94. package/dist/src/core/client.test.js +52 -6
  95. package/dist/src/core/client.test.js.map +1 -1
  96. package/dist/src/core/contentGenerator.d.ts +1 -0
  97. package/dist/src/core/contentGenerator.js.map +1 -1
  98. package/dist/src/core/coreToolHookTriggers.d.ts +2 -38
  99. package/dist/src/core/coreToolHookTriggers.js +12 -159
  100. package/dist/src/core/coreToolHookTriggers.js.map +1 -1
  101. package/dist/src/core/coreToolHookTriggers.test.js +62 -94
  102. package/dist/src/core/coreToolHookTriggers.test.js.map +1 -1
  103. package/dist/src/core/coreToolScheduler.js +3 -5
  104. package/dist/src/core/coreToolScheduler.js.map +1 -1
  105. package/dist/src/core/coreToolScheduler.test.js +3 -0
  106. package/dist/src/core/coreToolScheduler.test.js.map +1 -1
  107. package/dist/src/core/fakeContentGenerator.d.ts +1 -0
  108. package/dist/src/core/fakeContentGenerator.js +1 -0
  109. package/dist/src/core/fakeContentGenerator.js.map +1 -1
  110. package/dist/src/core/geminiChat.js +1 -0
  111. package/dist/src/core/geminiChat.js.map +1 -1
  112. package/dist/src/core/geminiChat.test.js +21 -0
  113. package/dist/src/core/geminiChat.test.js.map +1 -1
  114. package/dist/src/core/geminiChat_network_retry.test.js +17 -12
  115. package/dist/src/core/geminiChat_network_retry.test.js.map +1 -1
  116. package/dist/src/core/loggingContentGenerator.d.ts +3 -0
  117. package/dist/src/core/loggingContentGenerator.js +6 -0
  118. package/dist/src/core/loggingContentGenerator.js.map +1 -1
  119. package/dist/src/core/loggingContentGenerator.test.js +11 -0
  120. package/dist/src/core/loggingContentGenerator.test.js.map +1 -1
  121. package/dist/src/core/prompts-substitution.test.js +101 -0
  122. package/dist/src/core/prompts-substitution.test.js.map +1 -0
  123. package/dist/src/core/prompts.js +115 -31
  124. package/dist/src/core/prompts.js.map +1 -1
  125. package/dist/src/core/prompts.test.js +32 -0
  126. package/dist/src/core/prompts.test.js.map +1 -1
  127. package/dist/src/core/recordingContentGenerator.d.ts +2 -1
  128. package/dist/src/core/recordingContentGenerator.js +6 -1
  129. package/dist/src/core/recordingContentGenerator.js.map +1 -1
  130. package/dist/src/core/turn.d.ts +2 -0
  131. package/dist/src/core/turn.js.map +1 -1
  132. package/dist/src/generated/git-commit.d.ts +2 -2
  133. package/dist/src/generated/git-commit.js +2 -2
  134. package/dist/src/generated/git-commit.js.map +1 -1
  135. package/dist/src/hooks/hookAggregator.js +13 -3
  136. package/dist/src/hooks/hookAggregator.js.map +1 -1
  137. package/dist/src/hooks/hookEventHandler.d.ts +1 -13
  138. package/dist/src/hooks/hookEventHandler.js +1 -289
  139. package/dist/src/hooks/hookEventHandler.js.map +1 -1
  140. package/dist/src/hooks/hookEventHandler.test.js +1 -4
  141. package/dist/src/hooks/hookEventHandler.test.js.map +1 -1
  142. package/dist/src/hooks/hookSystem.d.ts +47 -3
  143. package/dist/src/hooks/hookSystem.js +90 -6
  144. package/dist/src/hooks/hookSystem.js.map +1 -1
  145. package/dist/src/hooks/hookSystem.test.js +19 -8
  146. package/dist/src/hooks/hookSystem.test.js.map +1 -1
  147. package/dist/src/hooks/types.d.ts +23 -1
  148. package/dist/src/hooks/types.js +28 -2
  149. package/dist/src/hooks/types.js.map +1 -1
  150. package/dist/src/hooks/types.test.js +9 -1
  151. package/dist/src/hooks/types.test.js.map +1 -1
  152. package/dist/src/ide/detect-ide.d.ts +41 -0
  153. package/dist/src/ide/detect-ide.js +47 -3
  154. package/dist/src/ide/detect-ide.js.map +1 -1
  155. package/dist/src/ide/detect-ide.test.js +46 -0
  156. package/dist/src/ide/detect-ide.test.js.map +1 -1
  157. package/dist/src/ide/ide-client.d.ts +1 -0
  158. package/dist/src/ide/ide-client.js +36 -9
  159. package/dist/src/ide/ide-client.js.map +1 -1
  160. package/dist/src/ide/ide-client.test.js +154 -6
  161. package/dist/src/ide/ide-client.test.js.map +1 -1
  162. package/dist/src/index.d.ts +2 -0
  163. package/dist/src/index.js +2 -0
  164. package/dist/src/index.js.map +1 -1
  165. package/dist/src/mcp/oauth-provider.d.ts +1 -2
  166. package/dist/src/mcp/oauth-provider.js +4 -8
  167. package/dist/src/mcp/oauth-provider.js.map +1 -1
  168. package/dist/src/mcp/oauth-provider.test.js +32 -0
  169. package/dist/src/mcp/oauth-provider.test.js.map +1 -1
  170. package/dist/src/mcp/oauth-utils.d.ts +13 -4
  171. package/dist/src/mcp/oauth-utils.js +23 -19
  172. package/dist/src/mcp/oauth-utils.js.map +1 -1
  173. package/dist/src/mcp/oauth-utils.test.js +13 -8
  174. package/dist/src/mcp/oauth-utils.test.js.map +1 -1
  175. package/dist/src/policy/policy-engine.d.ts +1 -8
  176. package/dist/src/policy/policy-engine.js +1 -75
  177. package/dist/src/policy/policy-engine.js.map +1 -1
  178. package/dist/src/policy/policy-engine.test.js +0 -222
  179. package/dist/src/policy/policy-engine.test.js.map +1 -1
  180. package/dist/src/routing/modelRouterService.js +18 -8
  181. package/dist/src/routing/modelRouterService.js.map +1 -1
  182. package/dist/src/routing/modelRouterService.test.js +14 -6
  183. package/dist/src/routing/modelRouterService.test.js.map +1 -1
  184. package/dist/src/routing/strategies/classifierStrategy.js +4 -7
  185. package/dist/src/routing/strategies/classifierStrategy.js.map +1 -1
  186. package/dist/src/routing/strategies/classifierStrategy.test.js +10 -4
  187. package/dist/src/routing/strategies/classifierStrategy.test.js.map +1 -1
  188. package/dist/src/routing/strategies/numericalClassifierStrategy.d.ts +13 -0
  189. package/dist/src/routing/strategies/numericalClassifierStrategy.js +178 -0
  190. package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -0
  191. package/dist/src/routing/strategies/numericalClassifierStrategy.test.js +347 -0
  192. package/dist/src/routing/strategies/numericalClassifierStrategy.test.js.map +1 -0
  193. package/dist/src/scheduler/confirmation.js +2 -3
  194. package/dist/src/scheduler/confirmation.js.map +1 -1
  195. package/dist/src/scheduler/confirmation.test.js +8 -8
  196. package/dist/src/scheduler/confirmation.test.js.map +1 -1
  197. package/dist/src/scheduler/scheduler.test.js +0 -3
  198. package/dist/src/scheduler/scheduler.test.js.map +1 -1
  199. package/dist/src/scheduler/state-manager.js +4 -0
  200. package/dist/src/scheduler/state-manager.js.map +1 -1
  201. package/dist/src/scheduler/state-manager.test.js +11 -0
  202. package/dist/src/scheduler/state-manager.test.js.map +1 -1
  203. package/dist/src/scheduler/tool-executor.js +2 -4
  204. package/dist/src/scheduler/tool-executor.js.map +1 -1
  205. package/dist/src/scheduler/tool-executor.test.js +1 -1
  206. package/dist/src/scheduler/tool-executor.test.js.map +1 -1
  207. package/dist/src/services/chatRecordingService.d.ts +1 -1
  208. package/dist/src/services/chatRecordingService.js +23 -1
  209. package/dist/src/services/chatRecordingService.js.map +1 -1
  210. package/dist/src/services/chatRecordingService.test.js +111 -0
  211. package/dist/src/services/chatRecordingService.test.js.map +1 -1
  212. package/dist/src/services/sessionSummaryService.test.js +1 -1
  213. package/dist/src/services/sessionSummaryService.test.js.map +1 -1
  214. package/dist/src/telemetry/metrics.js +15 -4
  215. package/dist/src/telemetry/metrics.js.map +1 -1
  216. package/dist/src/telemetry/metrics.test.js +7 -0
  217. package/dist/src/telemetry/metrics.test.js.map +1 -1
  218. package/dist/src/telemetry/types.d.ts +3 -1
  219. package/dist/src/telemetry/types.js +19 -4
  220. package/dist/src/telemetry/types.js.map +1 -1
  221. package/dist/src/test-utils/mock-message-bus.d.ts +1 -19
  222. package/dist/src/test-utils/mock-message-bus.js +1 -65
  223. package/dist/src/test-utils/mock-message-bus.js.map +1 -1
  224. package/dist/src/tools/ask-user.d.ts +20 -0
  225. package/dist/src/tools/ask-user.js +142 -0
  226. package/dist/src/tools/ask-user.js.map +1 -0
  227. package/dist/src/{core/geminiChatHookTriggers.test.d.ts → tools/ask-user.test.d.ts} +1 -1
  228. package/dist/src/tools/ask-user.test.js +187 -0
  229. package/dist/src/tools/ask-user.test.js.map +1 -0
  230. package/dist/src/tools/confirmation-policy.test.js +1 -1
  231. package/dist/src/tools/confirmation-policy.test.js.map +1 -1
  232. package/dist/src/tools/diffOptions.d.ts +1 -1
  233. package/dist/src/tools/diffOptions.js +7 -3
  234. package/dist/src/tools/diffOptions.js.map +1 -1
  235. package/dist/src/tools/diffOptions.test.js +17 -0
  236. package/dist/src/tools/diffOptions.test.js.map +1 -1
  237. package/dist/src/tools/edit.js +1 -1
  238. package/dist/src/tools/edit.js.map +1 -1
  239. package/dist/src/tools/edit.test.js +11 -3
  240. package/dist/src/tools/edit.test.js.map +1 -1
  241. package/dist/src/tools/mcp-client-manager.d.ts +13 -4
  242. package/dist/src/tools/mcp-client-manager.js +53 -21
  243. package/dist/src/tools/mcp-client-manager.js.map +1 -1
  244. package/dist/src/tools/mcp-client-manager.test.js +1 -0
  245. package/dist/src/tools/mcp-client-manager.test.js.map +1 -1
  246. package/dist/src/tools/mcp-client.test.js +1 -2
  247. package/dist/src/tools/mcp-client.test.js.map +1 -1
  248. package/dist/src/tools/modifiable-tool.test.js +3 -3
  249. package/dist/src/tools/modifiable-tool.test.js.map +1 -1
  250. package/dist/src/tools/read-many-files.js +3 -2
  251. package/dist/src/tools/read-many-files.js.map +1 -1
  252. package/dist/src/tools/ripGrep.js +7 -2
  253. package/dist/src/tools/ripGrep.js.map +1 -1
  254. package/dist/src/tools/ripGrep.test.js +2 -2
  255. package/dist/src/tools/ripGrep.test.js.map +1 -1
  256. package/dist/src/tools/tool-names.d.ts +8 -2
  257. package/dist/src/tools/tool-names.js +14 -2
  258. package/dist/src/tools/tool-names.js.map +1 -1
  259. package/dist/src/tools/tools.d.ts +1 -0
  260. package/dist/src/tools/tools.js +2 -1
  261. package/dist/src/tools/tools.js.map +1 -1
  262. package/dist/src/tools/write-file.test.js +7 -7
  263. package/dist/src/tools/write-file.test.js.map +1 -1
  264. package/dist/src/utils/constants.d.ts +7 -0
  265. package/dist/src/utils/constants.js +8 -0
  266. package/dist/src/utils/constants.js.map +1 -0
  267. package/dist/src/utils/editCorrector.js +1 -1
  268. package/dist/src/utils/editCorrector.js.map +1 -1
  269. package/dist/src/utils/editor.js +4 -1
  270. package/dist/src/utils/editor.js.map +1 -1
  271. package/dist/src/utils/editor.test.js +6 -4
  272. package/dist/src/utils/editor.test.js.map +1 -1
  273. package/dist/src/utils/events.d.ts +2 -0
  274. package/dist/src/utils/events.js +1 -0
  275. package/dist/src/utils/events.js.map +1 -1
  276. package/dist/src/utils/extensionLoader.js +1 -0
  277. package/dist/src/utils/extensionLoader.js.map +1 -1
  278. package/dist/src/utils/extensionLoader.test.js +11 -0
  279. package/dist/src/utils/extensionLoader.test.js.map +1 -1
  280. package/dist/src/utils/googleQuotaErrors.d.ts +3 -3
  281. package/dist/src/utils/googleQuotaErrors.js +6 -17
  282. package/dist/src/utils/googleQuotaErrors.js.map +1 -1
  283. package/dist/src/utils/googleQuotaErrors.test.js +4 -22
  284. package/dist/src/utils/googleQuotaErrors.test.js.map +1 -1
  285. package/dist/src/utils/llm-edit-fixer.js +4 -7
  286. package/dist/src/utils/llm-edit-fixer.js.map +1 -1
  287. package/dist/src/utils/llm-edit-fixer.test.js +2 -2
  288. package/dist/src/utils/llm-edit-fixer.test.js.map +1 -1
  289. package/dist/src/utils/memoryImportProcessor.js +7 -24
  290. package/dist/src/utils/memoryImportProcessor.js.map +1 -1
  291. package/dist/src/utils/promptIdContext.d.ts +6 -0
  292. package/dist/src/utils/promptIdContext.js +15 -0
  293. package/dist/src/utils/promptIdContext.js.map +1 -1
  294. package/dist/src/utils/schemaValidator.d.ts +6 -0
  295. package/dist/src/utils/schemaValidator.js +12 -1
  296. package/dist/src/utils/schemaValidator.js.map +1 -1
  297. package/dist/src/utils/workspaceContext.d.ts +15 -0
  298. package/dist/src/utils/workspaceContext.js +32 -11
  299. package/dist/src/utils/workspaceContext.js.map +1 -1
  300. package/dist/src/utils/workspaceContext.test.js +55 -0
  301. package/dist/src/utils/workspaceContext.test.js.map +1 -1
  302. package/dist/tsconfig.tsbuildinfo +1 -1
  303. package/package.json +2 -3
  304. package/dist/docs/changelogs/releases.md +0 -1543
  305. package/dist/google-gemini-cli-core-0.26.0-preview.3.tgz +0 -0
  306. package/dist/src/agents/delegate-to-agent-tool.d.ts +0 -19
  307. package/dist/src/agents/delegate-to-agent-tool.js +0 -178
  308. package/dist/src/agents/delegate-to-agent-tool.js.map +0 -1
  309. package/dist/src/agents/delegate-to-agent-tool.test.js +0 -213
  310. package/dist/src/agents/delegate-to-agent-tool.test.js.map +0 -1
  311. package/dist/src/agents/schema-utils.d.ts +0 -39
  312. package/dist/src/agents/schema-utils.js +0 -57
  313. package/dist/src/agents/schema-utils.js.map +0 -1
  314. package/dist/src/agents/schema-utils.test.js +0 -144
  315. package/dist/src/agents/schema-utils.test.js.map +0 -1
  316. package/dist/src/core/clientHookTriggers.d.ts +0 -36
  317. package/dist/src/core/clientHookTriggers.js +0 -76
  318. package/dist/src/core/clientHookTriggers.js.map +0 -1
  319. package/dist/src/core/geminiChatHookTriggers.d.ts +0 -68
  320. package/dist/src/core/geminiChatHookTriggers.js +0 -158
  321. package/dist/src/core/geminiChatHookTriggers.js.map +0 -1
  322. package/dist/src/core/geminiChatHookTriggers.test.js +0 -153
  323. package/dist/src/core/geminiChatHookTriggers.test.js.map +0 -1
  324. /package/dist/src/{agents/delegate-to-agent-tool.test.d.ts → core/prompts-substitution.test.d.ts} +0 -0
  325. /package/dist/src/{agents/schema-utils.test.d.ts → routing/strategies/numericalClassifierStrategy.test.d.ts} +0 -0
@@ -1,1543 +0,0 @@
1
- # Gemini CLI changelog
2
-
3
- Gemini CLI has three major release channels: nightly, preview, and stable. For
4
- most users, we recommend the stable release.
5
-
6
- On this page, you can find information regarding the current releases and
7
- highlights from each release.
8
-
9
- For the full changelog, including nightly releases, refer to
10
- [Releases - google-gemini/gemini-cli](https://github.com/google-gemini/gemini-cli/releases)
11
- on GitHub.
12
-
13
- ## Current releases
14
-
15
- | Release channel | Notes |
16
- | :---------------------------------------- | :---------------------------------------------- |
17
- | Nightly | Nightly release with the most recent changes. |
18
- | [Preview](#release-v0240-preview-preview) | Experimental features ready for early feedback. |
19
- | [Latest](#release-v0230-latest) | Stable, recommended for general use. |
20
-
21
- ## Release v0.24.0-preview (Preview)
22
-
23
- ### Highlights
24
-
25
- - 🎉 **Experimental Agent Skills Support in Preview:** Gemini CLI now supports
26
- [Agent Skills](https://agentskills.io/home) in our preview builds. This is an
27
- early preview where we’re looking for feedback!
28
- - Install Preview: `npm install -g @google/gemini-cli@preview`
29
- - Enable in `/settings`
30
- - Docs:
31
- [https://geminicli.com/docs/cli/skills/](https://geminicli.com/docs/cli/skills/)
32
-
33
- ### What's changed
34
-
35
- - chore(core): refactor model resolution and cleanup fallback logic by
36
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15228
37
- - Add Folder Trust Support To Hooks by @sehoon38 in
38
- https://github.com/google-gemini/gemini-cli/pull/15325
39
- - Record timestamp with code assist metrics. by @gundermanc in
40
- https://github.com/google-gemini/gemini-cli/pull/15439
41
- - feat(policy): implement dynamic mode-aware policy evaluation by @abhipatel12
42
- in https://github.com/google-gemini/gemini-cli/pull/15307
43
- - fix(core): use debugLogger.debug for startup profiler logs by @NTaylorMullen
44
- in https://github.com/google-gemini/gemini-cli/pull/15443
45
- - feat(ui): Add security warning and improve layout for Hooks list by
46
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15440
47
- - fix #15369, prevent crash on unhandled EIO error in readStdin cleanup by
48
- @ElecTwix in https://github.com/google-gemini/gemini-cli/pull/15410
49
- - chore: improve error messages for --resume by @jackwotherspoon in
50
- https://github.com/google-gemini/gemini-cli/pull/15360
51
- - chore: remove clipboard file by @jackwotherspoon in
52
- https://github.com/google-gemini/gemini-cli/pull/15447
53
- - Implemented unified secrets sanitization and env. redaction options by
54
- @gundermanc in https://github.com/google-gemini/gemini-cli/pull/15348
55
- - feat: automatic `/model` persistence across Gemini CLI sessions by @niyasrad
56
- in https://github.com/google-gemini/gemini-cli/pull/13199
57
- - refactor(core): remove deprecated permission aliases from BeforeToolHookOutput
58
- by @StoyanD in https://github.com/google-gemini/gemini-cli/pull/14855
59
- - fix: add missing `type` field to MCPServerConfig by @jackwotherspoon in
60
- https://github.com/google-gemini/gemini-cli/pull/15465
61
- - Make schema validation errors non-fatal by @jacob314 in
62
- https://github.com/google-gemini/gemini-cli/pull/15487
63
- - chore: limit MCP resources display to 10 by default by @jackwotherspoon in
64
- https://github.com/google-gemini/gemini-cli/pull/15489
65
- - Add experimental in-CLI extension install and uninstall subcommands by
66
- @chrstnb in https://github.com/google-gemini/gemini-cli/pull/15178
67
- - feat: Add A2A Client Manager and tests by @adamfweidman in
68
- https://github.com/google-gemini/gemini-cli/pull/15485
69
- - feat: terse transformations of image paths in text buffer by @psinha40898 in
70
- https://github.com/google-gemini/gemini-cli/pull/4924
71
- - Security: Project-level hook warnings by @sehoon38 in
72
- https://github.com/google-gemini/gemini-cli/pull/15470
73
- - Added modifyOtherKeys protocol support for tmux by @ved015 in
74
- https://github.com/google-gemini/gemini-cli/pull/15524
75
- - chore(core): fix comment typo by @Mapleeeeeeeeeee in
76
- https://github.com/google-gemini/gemini-cli/pull/15558
77
- - feat: Show snowfall animation for holiday theme by @sehoon38 in
78
- https://github.com/google-gemini/gemini-cli/pull/15494
79
- - do not persist the fallback model by @sehoon38 in
80
- https://github.com/google-gemini/gemini-cli/pull/15483
81
- - Resolve unhandled promise rejection in ide-client.ts by @Adib234 in
82
- https://github.com/google-gemini/gemini-cli/pull/15587
83
- - fix(core): handle checkIsRepo failure in GitService.initialize by
84
- @Mapleeeeeeeeeee in https://github.com/google-gemini/gemini-cli/pull/15574
85
- - fix(cli): add enableShellOutputEfficiency to settings schema by
86
- @Mapleeeeeeeeeee in https://github.com/google-gemini/gemini-cli/pull/15560
87
- - Manual nightly version bump to 0.24.0-nightly.20251226.546baf993 by @galz10 in
88
- https://github.com/google-gemini/gemini-cli/pull/15594
89
- - refactor(core): extract static concerns from CoreToolScheduler by @abhipatel12
90
- in https://github.com/google-gemini/gemini-cli/pull/15589
91
- - fix(core): enable granular shell command allowlisting in policy engine by
92
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15601
93
- - chore/release: bump version to 0.24.0-nightly.20251227.37be16243 by
94
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15612
95
- - refactor: deprecate legacy confirmation settings and enforce Policy Engine by
96
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15626
97
- - Migrate console to coreEvents.emitFeedback or debugLogger by @Adib234 in
98
- https://github.com/google-gemini/gemini-cli/pull/15219
99
- - Exponential back-off retries for retryable error without a specified … by
100
- @sehoon38 in https://github.com/google-gemini/gemini-cli/pull/15684
101
- - feat(agents): add support for remote agents and multi-agent TOML files by
102
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15437
103
- - Update wittyPhrases.ts by @segyges in
104
- https://github.com/google-gemini/gemini-cli/pull/15697
105
- - refactor(auth): Refactor non-interactive mode auth validation & refresh by
106
- @skeshive in https://github.com/google-gemini/gemini-cli/pull/15679
107
- - Revert "Update wittyPhrases.ts (#15697)" by @abhipatel12 in
108
- https://github.com/google-gemini/gemini-cli/pull/15719
109
- - fix(hooks): deduplicate agent hooks and add cross-platform integration tests
110
- by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15701
111
- - Implement support for tool input modification by @gundermanc in
112
- https://github.com/google-gemini/gemini-cli/pull/15492
113
- - Add instructions to the extensions update info notification by @chrstnb in
114
- https://github.com/google-gemini/gemini-cli/pull/14907
115
- - Add extension settings info to /extensions list by @chrstnb in
116
- https://github.com/google-gemini/gemini-cli/pull/14905
117
- - Agent Skills: Implement Core Skill Infrastructure & Tiered Discovery by
118
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15698
119
- - chore: remove cot style comments by @abhipatel12 in
120
- https://github.com/google-gemini/gemini-cli/pull/15735
121
- - feat(agents): Add remote agents to agent registry by @sehoon38 in
122
- https://github.com/google-gemini/gemini-cli/pull/15711
123
- - feat(hooks): implement STOP_EXECUTION and enhance hook decision handling by
124
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15685
125
- - Fix build issues caused by year-specific linter rule by @gundermanc in
126
- https://github.com/google-gemini/gemini-cli/pull/15780
127
- - fix(core): handle unhandled promise rejection in mcp-client-manager by
128
- @kamja44 in https://github.com/google-gemini/gemini-cli/pull/14701
129
- - log fallback mode by @sehoon38 in
130
- https://github.com/google-gemini/gemini-cli/pull/15817
131
- - Agent Skills: Implement Autonomous Activation Tool & Context Injection by
132
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15725
133
- - fix(core): improve shell command with redirection detection by @galz10 in
134
- https://github.com/google-gemini/gemini-cli/pull/15683
135
- - Add security docs by @abhipatel12 in
136
- https://github.com/google-gemini/gemini-cli/pull/15739
137
- - feat: add folder suggestions to `/dir add` command by @jackwotherspoon in
138
- https://github.com/google-gemini/gemini-cli/pull/15724
139
- - Agent Skills: Implement Agent Integration and System Prompt Awareness by
140
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15728
141
- - chore: cleanup old smart edit settings by @abhipatel12 in
142
- https://github.com/google-gemini/gemini-cli/pull/15832
143
- - Agent Skills: Status Bar Integration for Skill Counts by @NTaylorMullen in
144
- https://github.com/google-gemini/gemini-cli/pull/15741
145
- - fix(core): mock powershell output in shell-utils test by @galz10 in
146
- https://github.com/google-gemini/gemini-cli/pull/15831
147
- - Agent Skills: Unify Representation & Centralize Loading by @NTaylorMullen in
148
- https://github.com/google-gemini/gemini-cli/pull/15833
149
- - Unify shell security policy and remove legacy logic by @abhipatel12 in
150
- https://github.com/google-gemini/gemini-cli/pull/15770
151
- - feat(core): restore MessageBus optionality for soft migration (Phase 1) by
152
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15774
153
- - feat(core): Standardize Tool and Agent Invocation constructors (Phase 2) by
154
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15775
155
- - feat(core,cli): enforce mandatory MessageBus injection (Phase 3 Hard
156
- Migration) by @abhipatel12 in
157
- https://github.com/google-gemini/gemini-cli/pull/15776
158
- - Agent Skills: Extension Support & Security Disclosure by @NTaylorMullen in
159
- https://github.com/google-gemini/gemini-cli/pull/15834
160
- - feat(hooks): implement granular stop and block behavior for agent hooks by
161
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15824
162
- - Agent Skills: Add gemini skills CLI management command by @NTaylorMullen in
163
- https://github.com/google-gemini/gemini-cli/pull/15837
164
- - refactor: consolidate EditTool and SmartEditTool by @abhipatel12 in
165
- https://github.com/google-gemini/gemini-cli/pull/15857
166
- - fix(cli): mock fs.readdir in consent tests for Windows compatibility by
167
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15904
168
- - refactor(core): Extract and integrate ToolExecutor by @abhipatel12 in
169
- https://github.com/google-gemini/gemini-cli/pull/15900
170
- - Fix terminal hang when user exits browser without logging in by @gundermanc in
171
- https://github.com/google-gemini/gemini-cli/pull/15748
172
- - fix: avoid SDK warning by not accessing .text getter in logging by @ved015 in
173
- https://github.com/google-gemini/gemini-cli/pull/15706
174
- - Make default settings apply by @devr0306 in
175
- https://github.com/google-gemini/gemini-cli/pull/15354
176
- - chore: rename smart-edit to edit by @abhipatel12 in
177
- https://github.com/google-gemini/gemini-cli/pull/15923
178
- - Opt-in to persist model from /model by @sehoon38 in
179
- https://github.com/google-gemini/gemini-cli/pull/15820
180
- - fix: prevent /copy crash on Windows by skipping /dev/tty by @ManojINaik in
181
- https://github.com/google-gemini/gemini-cli/pull/15657
182
- - Support context injection via SessionStart hook. by @gundermanc in
183
- https://github.com/google-gemini/gemini-cli/pull/15746
184
- - Fix order of preflight by @scidomino in
185
- https://github.com/google-gemini/gemini-cli/pull/15941
186
- - Fix failing unit tests by @gundermanc in
187
- https://github.com/google-gemini/gemini-cli/pull/15940
188
- - fix(cli): resolve paste issue on Windows terminals. by @scidomino in
189
- https://github.com/google-gemini/gemini-cli/pull/15932
190
- - Agent Skills: Implement /skills reload by @NTaylorMullen in
191
- https://github.com/google-gemini/gemini-cli/pull/15865
192
- - Add setting to support OSC 52 paste by @scidomino in
193
- https://github.com/google-gemini/gemini-cli/pull/15336
194
- - remove manual string when displaying manual model in the footer by @sehoon38
195
- in https://github.com/google-gemini/gemini-cli/pull/15967
196
- - fix(core): use correct interactive check for system prompt by @ppergame in
197
- https://github.com/google-gemini/gemini-cli/pull/15020
198
- - Inform user of missing settings on extensions update by @chrstnb in
199
- https://github.com/google-gemini/gemini-cli/pull/15944
200
- - feat(policy): allow 'modes' in user and admin policies by @NTaylorMullen in
201
- https://github.com/google-gemini/gemini-cli/pull/15977
202
- - fix: default folder trust to untrusted for enhanced security by @galz10 in
203
- https://github.com/google-gemini/gemini-cli/pull/15943
204
- - Add description for each settings item in /settings by @sehoon38 in
205
- https://github.com/google-gemini/gemini-cli/pull/15936
206
- - Use GetOperation to poll for OnboardUser completion by @ishaanxgupta in
207
- https://github.com/google-gemini/gemini-cli/pull/15827
208
- - Agent Skills: Add skill directory to WorkspaceContext upon activation by
209
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15870
210
- - Fix settings command fallback by @chrstnb in
211
- https://github.com/google-gemini/gemini-cli/pull/15926
212
- - fix: writeTodo construction by @scidomino in
213
- https://github.com/google-gemini/gemini-cli/pull/16014
214
- - properly disable keyboard modes on exit by @scidomino in
215
- https://github.com/google-gemini/gemini-cli/pull/16006
216
- - Add workflow to label child issues for rollup by @bdmorgan in
217
- https://github.com/google-gemini/gemini-cli/pull/16002
218
- - feat(ui): add visual indicators for hook execution by @abhipatel12 in
219
- https://github.com/google-gemini/gemini-cli/pull/15408
220
- - fix: image token estimation by @jackwotherspoon in
221
- https://github.com/google-gemini/gemini-cli/pull/16004
222
- - feat(hooks): Add a hooks.enabled setting. by @joshualitt in
223
- https://github.com/google-gemini/gemini-cli/pull/15933
224
- - feat(admin): Introduce remote admin settings & implement
225
- secureModeEnabled/mcpEnabled by @skeshive in
226
- https://github.com/google-gemini/gemini-cli/pull/15935
227
- - Remove trailing whitespace in yaml. by @joshualitt in
228
- https://github.com/google-gemini/gemini-cli/pull/16036
229
- - feat(agents): add support for remote agents by @adamfweidman in
230
- https://github.com/google-gemini/gemini-cli/pull/16013
231
- - fix: limit scheduled issue triage queries to prevent argument list too long
232
- error by @jerop in https://github.com/google-gemini/gemini-cli/pull/16021
233
- - ci(github-actions): triage all new issues automatically by @jerop in
234
- https://github.com/google-gemini/gemini-cli/pull/16018
235
- - Fix test. by @gundermanc in
236
- https://github.com/google-gemini/gemini-cli/pull/16011
237
- - fix: hide broken skills object from settings dialog by @korade-krushna in
238
- https://github.com/google-gemini/gemini-cli/pull/15766
239
- - Agent Skills: Initial Documentation & Tutorial by @NTaylorMullen in
240
- https://github.com/google-gemini/gemini-cli/pull/15869
241
-
242
- **Full changelog**:
243
- https://github.com/google-gemini/gemini-cli/compare/v0.23.0-preview.6...v0.24.0-preview.0
244
-
245
- ## Release v0.23.0 (Latest)
246
-
247
- ### Highlights
248
-
249
- - **Gemini CLI wrapped:** Run `npx gemini-wrapped` to visualize your usage
250
- stats, top models, languages, and more!
251
- - **Windows clipboard image support:** Windows users can now paste images
252
- directly from their clipboard into the CLI using `Alt`+`V`.
253
- ([pr](https://github.com/google-gemini/gemini-cli/pull/13997) by
254
- [@sgeraldes](https://github.com/sgeraldes))
255
- - **Terminal background color detection:** Automatically optimizes your
256
- terminal's background color to select compatible themes and provide
257
- accessibility warnings.
258
- ([pr](https://github.com/google-gemini/gemini-cli/pull/15132) by
259
- [@jacob314](https://github.com/jacob314))
260
- - **Session logout:** Use the new `/logout` command to instantly clear
261
- credentials and reset your authentication state for seamless account
262
- switching. ([pr](https://github.com/google-gemini/gemini-cli/pull/13383) by
263
- [@CN-Scars](https://github.com/CN-Scars))
264
-
265
- ### What's changed
266
-
267
- - Code assist service metrics. by @gundermanc in
268
- https://github.com/google-gemini/gemini-cli/pull/15024
269
- - chore/release: bump version to 0.21.0-nightly.20251216.bb0c0d8ee by
270
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15121
271
- - Docs by @Roaimkhan in https://github.com/google-gemini/gemini-cli/pull/15103
272
- - Use official ACP SDK and support HTTP/SSE based MCP servers by @SteffenDE in
273
- https://github.com/google-gemini/gemini-cli/pull/13856
274
- - Remove foreground for themes other than shades of purple and holiday. by
275
- @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14606
276
- - chore: remove repo specific tips by @jackwotherspoon in
277
- https://github.com/google-gemini/gemini-cli/pull/15164
278
- - chore: remove user query from footer in debug mode by @jackwotherspoon in
279
- https://github.com/google-gemini/gemini-cli/pull/15169
280
- - Disallow unnecessary awaits. by @gundermanc in
281
- https://github.com/google-gemini/gemini-cli/pull/15172
282
- - Add one to the padding in settings dialog to avoid flicker. by @jacob314 in
283
- https://github.com/google-gemini/gemini-cli/pull/15173
284
- - feat(core): introduce remote agent infrastructure and rename local executor by
285
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15110
286
- - feat(cli): Add `/auth logout` command to clear credentials and auth state by
287
- @CN-Scars in https://github.com/google-gemini/gemini-cli/pull/13383
288
- - (fix) Automated pr labeller by @DaanVersavel in
289
- https://github.com/google-gemini/gemini-cli/pull/14885
290
- - feat: launch Gemini 3 Flash in Gemini CLI ⚡️⚡️⚡️ by @scidomino in
291
- https://github.com/google-gemini/gemini-cli/pull/15196
292
- - Refactor: Migrate console.error in ripGrep.ts to debugLogger by @Adib234 in
293
- https://github.com/google-gemini/gemini-cli/pull/15201
294
- - chore: update a2a-js to 0.3.7 by @adamfweidman in
295
- https://github.com/google-gemini/gemini-cli/pull/15197
296
- - chore(core): remove redundant isModelAvailabilityServiceEnabled toggle and
297
- clean up dead code by @adamfweidman in
298
- https://github.com/google-gemini/gemini-cli/pull/15207
299
- - feat(core): Late resolve `GenerateContentConfig`s and reduce mutation. by
300
- @joshualitt in https://github.com/google-gemini/gemini-cli/pull/14920
301
- - Respect previewFeatures value from the remote flag if undefined by @sehoon38
302
- in https://github.com/google-gemini/gemini-cli/pull/15214
303
- - feat(ui): add Windows clipboard image support and Alt+V paste workaround by
304
- @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15218
305
- - chore(core): remove legacy fallback flags and migrate loop detection by
306
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15213
307
- - fix(ui): Prevent eager slash command completion hiding sibling commands by
308
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15224
309
- - Docs: Update Changelog for Dec 17, 2025 by @jkcinouye in
310
- https://github.com/google-gemini/gemini-cli/pull/15204
311
- - Code Assist backend telemetry for user accept/reject of suggestions by
312
- @gundermanc in https://github.com/google-gemini/gemini-cli/pull/15206
313
- - fix(cli): correct initial history length handling for chat commands by
314
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15223
315
- - chore/release: bump version to 0.21.0-nightly.20251218.739c02bd6 by
316
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15231
317
- - Change detailed model stats to use a new shared Table class to resolve
318
- robustness issues. by @jacob314 in
319
- https://github.com/google-gemini/gemini-cli/pull/15208
320
- - feat: add agent toml parser by @abhipatel12 in
321
- https://github.com/google-gemini/gemini-cli/pull/15112
322
- - Add core tool that adds all context from the core package. by @jacob314 in
323
- https://github.com/google-gemini/gemini-cli/pull/15238
324
- - (docs): Add reference section to hooks documentation by @abhipatel12 in
325
- https://github.com/google-gemini/gemini-cli/pull/15159
326
- - feat(hooks): add support for friendly names and descriptions by @abhipatel12
327
- in https://github.com/google-gemini/gemini-cli/pull/15174
328
- - feat: Detect background color by @jacob314 in
329
- https://github.com/google-gemini/gemini-cli/pull/15132
330
- - add 3.0 to allowed sensitive keywords by @scidomino in
331
- https://github.com/google-gemini/gemini-cli/pull/15276
332
- - feat: Pass additional environment variables to shell execution by @galz10 in
333
- https://github.com/google-gemini/gemini-cli/pull/15160
334
- - Remove unused code by @scidomino in
335
- https://github.com/google-gemini/gemini-cli/pull/15290
336
- - Handle all 429 as retryableQuotaError by @sehoon38 in
337
- https://github.com/google-gemini/gemini-cli/pull/15288
338
- - Remove unnecessary dependencies by @scidomino in
339
- https://github.com/google-gemini/gemini-cli/pull/15291
340
- - fix: prevent infinite loop in prompt completion on error by @galz10 in
341
- https://github.com/google-gemini/gemini-cli/pull/14548
342
- - fix(ui): show command suggestions even on perfect match and sort them by
343
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15287
344
- - feat(hooks): reduce log verbosity and improve error reporting in UI by
345
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15297
346
- - feat: simplify tool confirmation labels for better UX by @NTaylorMullen in
347
- https://github.com/google-gemini/gemini-cli/pull/15296
348
- - chore/release: bump version to 0.21.0-nightly.20251219.70696e364 by
349
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15301
350
- - feat(core): Implement JIT context memory loading and UI sync by @SandyTao520
351
- in https://github.com/google-gemini/gemini-cli/pull/14469
352
- - feat(ui): Put "Allow for all future sessions" behind a setting off by default.
353
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15322
354
- - fix(cli):change the placeholder of input during the shell mode by
355
- @JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/15135
356
- - Validate OAuth resource parameter matches MCP server URL by @galz10 in
357
- https://github.com/google-gemini/gemini-cli/pull/15289
358
- - docs(cli): add System Prompt Override (GEMINI_SYSTEM_MD) by @ashmod in
359
- https://github.com/google-gemini/gemini-cli/pull/9515
360
- - more robust command parsing logs by @scidomino in
361
- https://github.com/google-gemini/gemini-cli/pull/15339
362
- - Introspection agent demo by @scidomino in
363
- https://github.com/google-gemini/gemini-cli/pull/15232
364
- - fix(core): sanitize hook command expansion and prevent injection by
365
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15343
366
- - fix(folder trust): add validation for trusted folder level by @adamfweidman in
367
- https://github.com/google-gemini/gemini-cli/pull/12215
368
- - fix(cli): fix right border overflow in trust dialogs by @galz10 in
369
- https://github.com/google-gemini/gemini-cli/pull/15350
370
- - fix(policy): fix bug where accepting-edits continued after it was turned off
371
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15351
372
- - fix: prevent infinite relaunch loop when --resume fails (#14941) by @Ying-xi
373
- in https://github.com/google-gemini/gemini-cli/pull/14951
374
- - chore/release: bump version to 0.21.0-nightly.20251220.41a1a3eed by
375
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15352
376
- - feat(telemetry): add clearcut logging for hooks by @abhipatel12 in
377
- https://github.com/google-gemini/gemini-cli/pull/15405
378
- - fix(core): Add `.geminiignore` support to SearchText tool by @xyrolle in
379
- https://github.com/google-gemini/gemini-cli/pull/13763
380
- - fix(patch): cherry-pick 0843d9a to release/v0.23.0-preview.0-pr-15443 to patch
381
- version v0.23.0-preview.0 and create version 0.23.0-preview.1 by
382
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15445
383
- - fix(patch): cherry-pick 9cdb267 to release/v0.23.0-preview.1-pr-15494 to patch
384
- version v0.23.0-preview.1 and create version 0.23.0-preview.2 by
385
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15592
386
- - fix(patch): cherry-pick 37be162 to release/v0.23.0-preview.2-pr-15601 to patch
387
- version v0.23.0-preview.2 and create version 0.23.0-preview.3 by
388
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15603
389
- - fix(patch): cherry-pick 07e597d to release/v0.23.0-preview.3-pr-15684
390
- [CONFLICTS] by @gemini-cli-robot in
391
- https://github.com/google-gemini/gemini-cli/pull/15734
392
- - fix(patch): cherry-pick c31f053 to release/v0.23.0-preview.4-pr-16004 to patch
393
- version v0.23.0-preview.4 and create version 0.23.0-preview.5 by
394
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/16027
395
- - fix(patch): cherry-pick 788bb04 to release/v0.23.0-preview.5-pr-15817
396
- [CONFLICTS] by @gemini-cli-robot in
397
- https://github.com/google-gemini/gemini-cli/pull/16038
398
-
399
- **Full changelog**:
400
- https://github.com/google-gemini/gemini-cli/compare/v0.22.5...v0.23.0
401
-
402
- ## Release v0.23.0-preview
403
-
404
- ### What's changed
405
-
406
- - Code assist service metrics. by @gundermanc in
407
- https://github.com/google-gemini/gemini-cli/pull/15024
408
- - chore/release: bump version to 0.21.0-nightly.20251216.bb0c0d8ee by
409
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15121
410
- - Docs by @Roaimkhan in https://github.com/google-gemini/gemini-cli/pull/15103
411
- - Use official ACP SDK and support HTTP/SSE based MCP servers by @SteffenDE in
412
- https://github.com/google-gemini/gemini-cli/pull/13856
413
- - Remove foreground for themes other than shades of purple and holiday. by
414
- @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14606
415
- - chore: remove repo specific tips by @jackwotherspoon in
416
- https://github.com/google-gemini/gemini-cli/pull/15164
417
- - chore: remove user query from footer in debug mode by @jackwotherspoon in
418
- https://github.com/google-gemini/gemini-cli/pull/15169
419
- - Disallow unnecessary awaits. by @gundermanc in
420
- https://github.com/google-gemini/gemini-cli/pull/15172
421
- - Add one to the padding in settings dialog to avoid flicker. by @jacob314 in
422
- https://github.com/google-gemini/gemini-cli/pull/15173
423
- - feat(core): introduce remote agent infrastructure and rename local executor by
424
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15110
425
- - feat(cli): Add `/auth logout` command to clear credentials and auth state by
426
- @CN-Scars in https://github.com/google-gemini/gemini-cli/pull/13383
427
- - (fix) Automated pr labeler by @DaanVersavel in
428
- https://github.com/google-gemini/gemini-cli/pull/14885
429
- - feat: launch Gemini 3 Flash in Gemini CLI ⚡️⚡️⚡️ by @scidomino in
430
- https://github.com/google-gemini/gemini-cli/pull/15196
431
- - Refactor: Migrate console.error in ripGrep.ts to debugLogger by @Adib234 in
432
- https://github.com/google-gemini/gemini-cli/pull/15201
433
- - chore: update a2a-js to 0.3.7 by @adamfweidman in
434
- https://github.com/google-gemini/gemini-cli/pull/15197
435
- - chore(core): remove redundant isModelAvailabilityServiceEnabled toggle and
436
- clean up dead code by @adamfweidman in
437
- https://github.com/google-gemini/gemini-cli/pull/15207
438
- - feat(core): Late resolve `GenerateContentConfig`s and reduce mutation. by
439
- @joshualitt in https://github.com/google-gemini/gemini-cli/pull/14920
440
- - Respect previewFeatures value from the remote flag if undefined by @sehoon38
441
- in https://github.com/google-gemini/gemini-cli/pull/15214
442
- - feat(ui): add Windows clipboard image support and Alt+V paste workaround by
443
- @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15218
444
- - chore(core): remove legacy fallback flags and migrate loop detection by
445
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15213
446
- - fix(ui): Prevent eager slash command completion hiding sibling commands by
447
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15224
448
- - Docs: Update Changelog for Dec 17, 2025 by @jkcinouye in
449
- https://github.com/google-gemini/gemini-cli/pull/15204
450
- - Code Assist backend telemetry for user accept/reject of suggestions by
451
- @gundermanc in https://github.com/google-gemini/gemini-cli/pull/15206
452
- - fix(cli): correct initial history length handling for chat commands by
453
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15223
454
- - chore/release: bump version to 0.21.0-nightly.20251218.739c02bd6 by
455
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15231
456
- - Change detailed model stats to use a new shared Table class to resolve
457
- robustness issues. by @jacob314 in
458
- https://github.com/google-gemini/gemini-cli/pull/15208
459
- - feat: add agent toml parser by @abhipatel12 in
460
- https://github.com/google-gemini/gemini-cli/pull/15112
461
- - Add core tool that adds all context from the core package. by @jacob314 in
462
- https://github.com/google-gemini/gemini-cli/pull/15238
463
- - (docs): Add reference section to hooks documentation by @abhipatel12 in
464
- https://github.com/google-gemini/gemini-cli/pull/15159
465
- - feat(hooks): add support for friendly names and descriptions by @abhipatel12
466
- in https://github.com/google-gemini/gemini-cli/pull/15174
467
- - feat: Detect background color by @jacob314 in
468
- https://github.com/google-gemini/gemini-cli/pull/15132
469
- - add 3.0 to allowed sensitive keywords by @scidomino in
470
- https://github.com/google-gemini/gemini-cli/pull/15276
471
- - feat: Pass additional environment variables to shell execution by @galz10 in
472
- https://github.com/google-gemini/gemini-cli/pull/15160
473
- - Remove unused code by @scidomino in
474
- https://github.com/google-gemini/gemini-cli/pull/15290
475
- - Handle all 429 as retryableQuotaError by @sehoon38 in
476
- https://github.com/google-gemini/gemini-cli/pull/15288
477
- - Remove unnecessary dependencies by @scidomino in
478
- https://github.com/google-gemini/gemini-cli/pull/15291
479
- - fix: prevent infinite loop in prompt completion on error by @galz10 in
480
- https://github.com/google-gemini/gemini-cli/pull/14548
481
- - fix(ui): show command suggestions even on perfect match and sort them by
482
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15287
483
- - feat(hooks): reduce log verbosity and improve error reporting in UI by
484
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15297
485
- - feat: simplify tool confirmation labels for better UX by @NTaylorMullen in
486
- https://github.com/google-gemini/gemini-cli/pull/15296
487
- - chore/release: bump version to 0.21.0-nightly.20251219.70696e364 by
488
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15301
489
- - feat(core): Implement JIT context memory loading and UI sync by @SandyTao520
490
- in https://github.com/google-gemini/gemini-cli/pull/14469
491
- - feat(ui): Put "Allow for all future sessions" behind a setting off by default.
492
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15322
493
- - fix(cli):change the placeholder of input during the shell mode by
494
- @JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/15135
495
- - Validate OAuth resource parameter matches MCP server URL by @galz10 in
496
- https://github.com/google-gemini/gemini-cli/pull/15289
497
- - docs(cli): add System Prompt Override (GEMINI_SYSTEM_MD) by @ashmod in
498
- https://github.com/google-gemini/gemini-cli/pull/9515
499
- - more robust command parsing logs by @scidomino in
500
- https://github.com/google-gemini/gemini-cli/pull/15339
501
- - Introspection agent demo by @scidomino in
502
- https://github.com/google-gemini/gemini-cli/pull/15232
503
- - fix(core): sanitize hook command expansion and prevent injection by
504
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15343
505
- - fix(folder trust): add validation for trusted folder level by @adamfweidman in
506
- https://github.com/google-gemini/gemini-cli/pull/12215
507
- - fix(cli): fix right border overflow in trust dialogs by @galz10 in
508
- https://github.com/google-gemini/gemini-cli/pull/15350
509
- - fix(policy): fix bug where accepting-edits continued after it was turned off
510
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15351
511
- - fix: prevent infinite relaunch loop when --resume fails (#14941) by @Ying-xi
512
- in https://github.com/google-gemini/gemini-cli/pull/14951
513
- - chore/release: bump version to 0.21.0-nightly.20251220.41a1a3eed by
514
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15352
515
- - feat(telemetry): add clearcut logging for hooks by @abhipatel12 in
516
- https://github.com/google-gemini/gemini-cli/pull/15405
517
- - fix(core): Add `.geminiignore` support to SearchText tool by @xyrolle in
518
- https://github.com/google-gemini/gemini-cli/pull/13763
519
-
520
- **Full changelog**:
521
- https://github.com/google-gemini/gemini-cli/compare/v0.22.0-preview.3...v0.23.0-preview.0
522
-
523
- ## Release v0.22.0
524
-
525
- ### Highlights
526
-
527
- - **Comprehensive quota visibility:** View usage statistics for all available
528
- models in the `/stats` command, even those not yet used in your current
529
- session. ([pic](https://imgur.com/a/cKyDtYh),
530
- [pr](https://github.com/google-gemini/gemini-cli/pull/14764) by
531
- [@sehoon38](https://github.com/sehoon38))
532
- - **Polished CLI statistics:** We’ve cleaned up the `/stats` view to prioritize
533
- actionable quota information while providing a detailed token and
534
- cache-efficiency breakdown in `/stats model`
535
- ([login with Google](https://imgur.com/a/w9xKthm),
536
- [api key](https://imgur.com/a/FjQPHOY),
537
- [model stats](https://imgur.com/a/VfWzVgw),
538
- [pr](https://github.com/google-gemini/gemini-cli/pull/14961) by
539
- [@jacob314](https://github.com/jacob314))
540
- - **Multi-file drag & drop:** Multi-file drag & drop is now supported and
541
- properly translated to be prefixed with `@`.
542
- ([pr](https://github.com/google-gemini/gemini-cli/pull/14832) by
543
- [@jackwotherspoon](https://github.com/jackwotherspoon))
544
-
545
- ### What's changed
546
-
547
- - feat(ide): fallback to GEMINI_CLI_IDE_AUTH_TOKEN env var by @skeshive in
548
- https://github.com/google-gemini/gemini-cli/pull/14843
549
- - feat: display quota stats for unused models in /stats by @sehoon38 in
550
- https://github.com/google-gemini/gemini-cli/pull/14764
551
- - feat: ensure codebase investigator uses preview model when main agent does by
552
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14412
553
- - chore: add closing reason to stale bug workflow by @galz10 in
554
- https://github.com/google-gemini/gemini-cli/pull/14861
555
- - Send the model and CLI version with the user agent by @gundermanc in
556
- https://github.com/google-gemini/gemini-cli/pull/14865
557
- - refactor(sessions): move session summary generation to startup by
558
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14691
559
- - Limit search depth in path corrector by @scidomino in
560
- https://github.com/google-gemini/gemini-cli/pull/14869
561
- - Fix: Correct typo in code comment by @kuishou68 in
562
- https://github.com/google-gemini/gemini-cli/pull/14671
563
- - feat(core): Plumbing for late resolution of model configs. by @joshualitt in
564
- https://github.com/google-gemini/gemini-cli/pull/14597
565
- - feat: attempt more error parsing by @adamfweidman in
566
- https://github.com/google-gemini/gemini-cli/pull/14899
567
- - Add missing await. by @gundermanc in
568
- https://github.com/google-gemini/gemini-cli/pull/14910
569
- - feat(core): Add support for transcript_path in hooks for git-ai/Gemini
570
- extension by @svarlamov in
571
- https://github.com/google-gemini/gemini-cli/pull/14663
572
- - refactor: implement DelegateToAgentTool with discriminated union by
573
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14769
574
- - feat: reset availabilityService on /auth by @adamfweidman in
575
- https://github.com/google-gemini/gemini-cli/pull/14911
576
- - chore/release: bump version to 0.21.0-nightly.20251211.8c83e1ea9 by
577
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14924
578
- - Fix: Correctly detect MCP tool errors by @kevin-ramdass in
579
- https://github.com/google-gemini/gemini-cli/pull/14937
580
- - increase labeler timeout by @scidomino in
581
- https://github.com/google-gemini/gemini-cli/pull/14922
582
- - tool(cli): tweak the frontend tool to be aware of more core files from the cli
583
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14962
584
- - feat(cli): polish cached token stats and simplify stats display when quota is
585
- present. by @jacob314 in
586
- https://github.com/google-gemini/gemini-cli/pull/14961
587
- - feat(settings-validation): add validation for settings schema by @lifefloating
588
- in https://github.com/google-gemini/gemini-cli/pull/12929
589
- - fix(ide): Update IDE extension to write auth token in env var by @skeshive in
590
- https://github.com/google-gemini/gemini-cli/pull/14999
591
- - Revert "chore(deps): bump express from 5.1.0 to 5.2.0" by @skeshive in
592
- https://github.com/google-gemini/gemini-cli/pull/14998
593
- - feat(a2a): Introduce /init command for a2a server by @cocosheng-g in
594
- https://github.com/google-gemini/gemini-cli/pull/13419
595
- - feat: support multi-file drag and drop of images by @jackwotherspoon in
596
- https://github.com/google-gemini/gemini-cli/pull/14832
597
- - fix(policy): allow codebase_investigator by default in read-only policy by
598
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15000
599
- - refactor(ide ext): Update port file name + switch to 1-based index for
600
- characters + remove truncation text by @skeshive in
601
- https://github.com/google-gemini/gemini-cli/pull/10501
602
- - fix(vscode-ide-companion): correct license generation for workspace
603
- dependencies by @skeshive in
604
- https://github.com/google-gemini/gemini-cli/pull/15004
605
- - fix: temp fix for subagent invocation until subagent delegation is merged to
606
- stable by @abhipatel12 in
607
- https://github.com/google-gemini/gemini-cli/pull/15007
608
- - test: update ide detection tests to make them more robust when run in an ide
609
- by @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/15008
610
- - Remove flex from stats display. See snapshots for diffs. by @jacob314 in
611
- https://github.com/google-gemini/gemini-cli/pull/14983
612
- - Add license field into package.json by @jb-perez in
613
- https://github.com/google-gemini/gemini-cli/pull/14473
614
- - feat: Persistent "Always Allow" policies with granular shell & MCP support by
615
- @allenhutchison in https://github.com/google-gemini/gemini-cli/pull/14737
616
- - chore/release: bump version to 0.21.0-nightly.20251212.54de67536 by
617
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14969
618
- - fix(core): commandPrefix word boundary and compound command safety by
619
- @allenhutchison in https://github.com/google-gemini/gemini-cli/pull/15006
620
- - chore(docs): add 'Maintainers only' label info to CONTRIBUTING.md by @jacob314
621
- in https://github.com/google-gemini/gemini-cli/pull/14914
622
- - Refresh hooks when refreshing extensions. by @scidomino in
623
- https://github.com/google-gemini/gemini-cli/pull/14918
624
- - Add clarity to error messages by @gsehgal in
625
- https://github.com/google-gemini/gemini-cli/pull/14879
626
- - chore : remove a redundant tip by @JayadityaGit in
627
- https://github.com/google-gemini/gemini-cli/pull/14947
628
- - chore/release: bump version to 0.21.0-nightly.20251213.977248e09 by
629
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15029
630
- - Disallow redundant typecasts. by @gundermanc in
631
- https://github.com/google-gemini/gemini-cli/pull/15030
632
- - fix(auth): prioritize GEMINI_API_KEY env var and skip unnecessary key… by
633
- @galz10 in https://github.com/google-gemini/gemini-cli/pull/14745
634
- - fix: use zod for safety check result validation by @allenhutchison in
635
- https://github.com/google-gemini/gemini-cli/pull/15026
636
- - update(telemetry): add hashed_extension_name to field to extension events by
637
- @kiranani in https://github.com/google-gemini/gemini-cli/pull/15025
638
- - fix: similar to policy-engine, throw error in case of requiring tool execution
639
- confirmation for non-interactive mode by @MayV in
640
- https://github.com/google-gemini/gemini-cli/pull/14702
641
- - Clean up processes in integration tests by @scidomino in
642
- https://github.com/google-gemini/gemini-cli/pull/15102
643
- - docs: update policy engine getting started and defaults by @NTaylorMullen in
644
- https://github.com/google-gemini/gemini-cli/pull/15105
645
- - Fix tool output fragmentation by encapsulating content in functionResponse by
646
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/13082
647
- - Simplify method signature. by @scidomino in
648
- https://github.com/google-gemini/gemini-cli/pull/15114
649
- - Show raw input token counts in json output. by @jacob314 in
650
- https://github.com/google-gemini/gemini-cli/pull/15021
651
- - fix: Mark A2A requests as interactive by @MayV in
652
- https://github.com/google-gemini/gemini-cli/pull/15108
653
- - use previewFeatures to determine which pro model to use for A2A by @sehoon38
654
- in https://github.com/google-gemini/gemini-cli/pull/15131
655
- - refactor(cli): fix settings merging so that settings using the new json format
656
- take priority over ones using the old format by @jacob314 in
657
- https://github.com/google-gemini/gemini-cli/pull/15116
658
- - fix(patch): cherry-pick a6d1245 to release/v0.22.0-preview.1-pr-15214 to patch
659
- version v0.22.0-preview.1 and create version 0.22.0-preview.2 by
660
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15226
661
- - fix(patch): cherry-pick 9e6914d to release/v0.22.0-preview.2-pr-15288 to patch
662
- version v0.22.0-preview.2 and create version 0.22.0-preview.3 by
663
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15294
664
-
665
- **Full changelog**:
666
- https://github.com/google-gemini/gemini-cli/compare/v0.21.3...v0.22.0
667
-
668
- ## Release v0.21.0
669
-
670
- ### Highlights
671
-
672
- - **⚡️⚡️⚡️ Gemini 3 Flash + Gemini CLI:** If you are a paid user, you can now
673
- enable Gemini 3 Pro and Gemini 3 Flash. Go to `/settings` and set **Preview
674
- Features** to `true` to enable Gemini 3. For more information:
675
- [Gemini 3 Flash is now available in Gemini CLI](https://developers.googleblog.com/gemini-3-flash-is-now-available-in-gemini-cli/).
676
-
677
- ### What's changed
678
-
679
- - refactor(stdio): always patch stdout and use createWorkingStdio for clean
680
- output by @allenhutchison in
681
- https://github.com/google-gemini/gemini-cli/pull/14159
682
- - chore(release): bump version to 0.21.0-nightly.20251202.2d935b379 by
683
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14409
684
- - implement fuzzy search inside settings by @sehoon38 in
685
- https://github.com/google-gemini/gemini-cli/pull/13864
686
- - feat: enable message bus integration by default by @allenhutchison in
687
- https://github.com/google-gemini/gemini-cli/pull/14329
688
- - docs: Recommend using --debug intead of --verbose for CLI debugging by @bbiggs
689
- in https://github.com/google-gemini/gemini-cli/pull/14334
690
- - feat: consolidate remote MCP servers to use `url` in config by
691
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/13762
692
- - Restrict integration tests tools by @scidomino in
693
- https://github.com/google-gemini/gemini-cli/pull/14403
694
- - track github repository names in telemetry events by @IamRiddhi in
695
- https://github.com/google-gemini/gemini-cli/pull/13670
696
- - Allow telemetry exporters to GCP to utilize user's login credentials, if
697
- requested by @mboshernitsan in
698
- https://github.com/google-gemini/gemini-cli/pull/13778
699
- - refactor(editor): use const assertion for editor types with single source of
700
- truth by @amsminn in https://github.com/google-gemini/gemini-cli/pull/8604
701
- - fix(security): Fix npm audit vulnerabilities in glob and body-parser by
702
- @afarber in https://github.com/google-gemini/gemini-cli/pull/14090
703
- - Add new enterprise instructions by @chrstnb in
704
- https://github.com/google-gemini/gemini-cli/pull/8641
705
- - feat(hooks): Hook Session Lifecycle & Compression Integration by @Edilmo in
706
- https://github.com/google-gemini/gemini-cli/pull/14151
707
- - Avoid triggering refreshStatic unless there really is a banner to display. by
708
- @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14328
709
- - feat(hooks): Hooks Commands Panel, Enable/Disable, and Migrate by @Edilmo in
710
- https://github.com/google-gemini/gemini-cli/pull/14225
711
- - fix: Bundle default policies for npx distribution by @allenhutchison in
712
- https://github.com/google-gemini/gemini-cli/pull/14457
713
- - feat(hooks): Hook System Documentation by @Edilmo in
714
- https://github.com/google-gemini/gemini-cli/pull/14307
715
- - Fix tests by @scidomino in
716
- https://github.com/google-gemini/gemini-cli/pull/14458
717
- - feat: add scheduled workflow to close stale issues by @galz10 in
718
- https://github.com/google-gemini/gemini-cli/pull/14404
719
- - feat: Support Extension Hooks with Security Warning by @abhipatel12 in
720
- https://github.com/google-gemini/gemini-cli/pull/14460
721
- - feat: Add enableAgents experimental flag by @adamfweidman in
722
- https://github.com/google-gemini/gemini-cli/pull/14371
723
- - docs: fix typo 'socus' to 'focus' in todos.md by @Viktor286 in
724
- https://github.com/google-gemini/gemini-cli/pull/14374
725
- - Markdown export: move the emoji to the end of the line by @mhansen in
726
- https://github.com/google-gemini/gemini-cli/pull/12278
727
- - fix(acp): prevent unnecessary credential cache clearing on re-authent… by
728
- @h-michael in https://github.com/google-gemini/gemini-cli/pull/9410
729
- - fix(cli): Fix word navigation for CJK characters by @SandyTao520 in
730
- https://github.com/google-gemini/gemini-cli/pull/14475
731
- - Remove example extension by @chrstnb in
732
- https://github.com/google-gemini/gemini-cli/pull/14376
733
- - Add commands for listing and updating per-extension settings by @chrstnb in
734
- https://github.com/google-gemini/gemini-cli/pull/12664
735
- - chore(tests): remove obsolete test for hierarchical memory by @pareshjoshij in
736
- https://github.com/google-gemini/gemini-cli/pull/13122
737
- - feat(cli): support /copy in remote sessions using OSC52 by @ismellpillows in
738
- https://github.com/google-gemini/gemini-cli/pull/13471
739
- - Update setting search UX by @Adib234 in
740
- https://github.com/google-gemini/gemini-cli/pull/14451
741
- - Fix(cli): Improve Homebrew update instruction to specify gemini-cli by
742
- @DaanVersavel in https://github.com/google-gemini/gemini-cli/pull/14502
743
- - do not toggle the setting item when entering space by @sehoon38 in
744
- https://github.com/google-gemini/gemini-cli/pull/14489
745
- - fix: improve retry logic for fetch errors and network codes by @megha1188 in
746
- https://github.com/google-gemini/gemini-cli/pull/14439
747
- - remove unused isSearching field by @sehoon38 in
748
- https://github.com/google-gemini/gemini-cli/pull/14509
749
- - feat(mcp): add `--type` alias for `--transport` flag in gemini mcp add by
750
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14503
751
- - feat(cli): Move key restore logic to core by @cocosheng-g in
752
- https://github.com/google-gemini/gemini-cli/pull/13013
753
- - feat: add auto-execute on Enter behavior to argumentless MCP prompts by
754
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14510
755
- - fix(shell): cursor visibility when using interactive mode by @aswinashok44 in
756
- https://github.com/google-gemini/gemini-cli/pull/14095
757
- - Adding session id as part of json o/p by @MJjainam in
758
- https://github.com/google-gemini/gemini-cli/pull/14504
759
- - fix(extensions): resolve GitHub API 415 error for source tarballs by
760
- @jpoehnelt in https://github.com/google-gemini/gemini-cli/pull/13319
761
- - fix(client): Correctly latch hasFailedCompressionAttempt flag by @pareshjoshij
762
- in https://github.com/google-gemini/gemini-cli/pull/13002
763
- - Disable flaky extension reloading test on linux by @chrstnb in
764
- https://github.com/google-gemini/gemini-cli/pull/14528
765
- - Add support for MCP dynamic tool update by `notifications/tools/list_changed`
766
- by @Adib234 in https://github.com/google-gemini/gemini-cli/pull/14375
767
- - Fix privacy screen for legacy tier users by @scidomino in
768
- https://github.com/google-gemini/gemini-cli/pull/14522
769
- - feat: Exclude maintainer labeled issues from stale issue closer by @galz10 in
770
- https://github.com/google-gemini/gemini-cli/pull/14532
771
- - Grant chained workflows proper permission. by @scidomino in
772
- https://github.com/google-gemini/gemini-cli/pull/14534
773
- - Make trigger_e2e manually fireable. by @scidomino in
774
- https://github.com/google-gemini/gemini-cli/pull/14547
775
- - Write e2e status to local repo not forked repo by @scidomino in
776
- https://github.com/google-gemini/gemini-cli/pull/14549
777
- - Fixes [API Error: Cannot read properties of undefined (reading 'error')] by
778
- @silviojr in https://github.com/google-gemini/gemini-cli/pull/14553
779
- - Trigger chained e2e tests on all pull requests by @scidomino in
780
- https://github.com/google-gemini/gemini-cli/pull/14551
781
- - Fix bug in the shellExecutionService resulting in both truncation and 3X bloat
782
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14545
783
- - Fix issue where we were passing the model content reflecting terminal line
784
- wrapping. by @jacob314 in
785
- https://github.com/google-gemini/gemini-cli/pull/14566
786
- - chore/release: bump version to 0.21.0-nightly.20251204.3da4fd5f7 by
787
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14476
788
- - feat(sessions): use 1-line generated session summary to describe sessions by
789
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14467
790
- - Use Robot PAT for chained e2e merge queue skipper by @scidomino in
791
- https://github.com/google-gemini/gemini-cli/pull/14585
792
- - fix(core): improve API response error handling and retry logic by @mattKorwel
793
- in https://github.com/google-gemini/gemini-cli/pull/14563
794
- - Docs: Model routing clarification by @jkcinouye in
795
- https://github.com/google-gemini/gemini-cli/pull/14373
796
- - expose previewFeatures flag in a2a by @sehoon38 in
797
- https://github.com/google-gemini/gemini-cli/pull/14550
798
- - Fix emoji width in debug console. by @jacob314 in
799
- https://github.com/google-gemini/gemini-cli/pull/14593
800
- - Fully detach autoupgrade process by @scidomino in
801
- https://github.com/google-gemini/gemini-cli/pull/14595
802
- - Docs: Update Gemini 3 on Gemini CLI documentation by @jkcinouye in
803
- https://github.com/google-gemini/gemini-cli/pull/14601
804
- - Disallow floating promises. by @gundermanc in
805
- https://github.com/google-gemini/gemini-cli/pull/14605
806
- - chore/release: bump version to 0.21.0-nightly.20251207.025e450ac by
807
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14662
808
- - feat(modelAvailabilityService): integrate model availability service into
809
- backend logic by @adamfweidman in
810
- https://github.com/google-gemini/gemini-cli/pull/14470
811
- - Add prompt_id propagation in a2a-server task by @koxkox111 in
812
- https://github.com/google-gemini/gemini-cli/pull/14581
813
- - Fix: Prevent freezing in non-interactive Gemini CLI when debug mode is enabled
814
- by @parthasaradhie in https://github.com/google-gemini/gemini-cli/pull/14580
815
- - fix(audio): improve reading of audio files by @jackwotherspoon in
816
- https://github.com/google-gemini/gemini-cli/pull/14658
817
- - Update automated triage workflow to stop assigning priority labels by
818
- @skeshive in https://github.com/google-gemini/gemini-cli/pull/14717
819
- - set failed status when chained e2e fails by @scidomino in
820
- https://github.com/google-gemini/gemini-cli/pull/14725
821
- - feat(github action) Triage and Label Pull Requests by Size and Comple… by
822
- @DaanVersavel in https://github.com/google-gemini/gemini-cli/pull/5571
823
- - refactor(telemetry): Improve previous PR that allows telemetry to use the CLI
824
- auth and add testing by @mboshernitsan in
825
- https://github.com/google-gemini/gemini-cli/pull/14589
826
- - Always set status in chained_e2e workflow by @scidomino in
827
- https://github.com/google-gemini/gemini-cli/pull/14730
828
- - feat: Add OTEL log event `gemini_cli.startup_stats` for startup stats. by
829
- @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/14734
830
- - feat: auto-execute on slash command completion functions by @jackwotherspoon
831
- in https://github.com/google-gemini/gemini-cli/pull/14584
832
- - Docs: Proper release notes by @jkcinouye in
833
- https://github.com/google-gemini/gemini-cli/pull/14405
834
- - Add support for user-scoped extension settings by @chrstnb in
835
- https://github.com/google-gemini/gemini-cli/pull/13748
836
- - refactor(core): Improve environment variable handling in shell execution by
837
- @galz10 in https://github.com/google-gemini/gemini-cli/pull/14742
838
- - Remove old E2E Workflows by @scidomino in
839
- https://github.com/google-gemini/gemini-cli/pull/14749
840
- - fix: handle missing local extension config and skip hooks when disabled by
841
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14744
842
- - chore/release: bump version to 0.21.0-nightly.20251209.ec9a8c7a7 by
843
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14751
844
- - feat: Add support for MCP Resources by @MrLesk in
845
- https://github.com/google-gemini/gemini-cli/pull/13178
846
- - Always set pending status in E2E tests by @scidomino in
847
- https://github.com/google-gemini/gemini-cli/pull/14756
848
- - fix(lint): upgrade pip and use public pypi for yamllint by @allenhutchison in
849
- https://github.com/google-gemini/gemini-cli/pull/14746
850
- - fix: use Gemini API supported image formats for clipboard by @jackwotherspoon
851
- in https://github.com/google-gemini/gemini-cli/pull/14762
852
- - feat(a2a): Introduce restore command for a2a server by @cocosheng-g in
853
- https://github.com/google-gemini/gemini-cli/pull/13015
854
- - allow final:true to be returned on a2a server edit calls. by @DavidAPierce in
855
- https://github.com/google-gemini/gemini-cli/pull/14747
856
- - (fix) Automated pr labeler by @DaanVersavel in
857
- https://github.com/google-gemini/gemini-cli/pull/14788
858
- - Update CODEOWNERS by @kklashtorny1 in
859
- https://github.com/google-gemini/gemini-cli/pull/14830
860
- - Docs: Fix errors preventing site rebuild. by @jkcinouye in
861
- https://github.com/google-gemini/gemini-cli/pull/14842
862
- - chore(deps): bump express from 5.1.0 to 5.2.0 by @dependabot[bot] in
863
- https://github.com/google-gemini/gemini-cli/pull/14325
864
- - fix(patch): cherry-pick 3f5f030 to release/v0.21.0-preview.0-pr-14843 to patch
865
- version v0.21.0-preview.0 and create version 0.21.0-preview.1 by
866
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14851
867
- - fix(patch): cherry-pick ee6556c to release/v0.21.0-preview.1-pr-14691 to patch
868
- version v0.21.0-preview.1 and create version 0.21.0-preview.2 by
869
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14908
870
- - fix(patch): cherry-pick 54de675 to release/v0.21.0-preview.2-pr-14961 by
871
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14968
872
- - fix(patch): cherry-pick 12cbe32 to release/v0.21.0-preview.3-pr-15000 to patch
873
- version v0.21.0-preview.3 and create version 0.21.0-preview.4 by
874
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15003
875
- - fix(patch): cherry-pick edbe548 to release/v0.21.0-preview.4-pr-15007 to patch
876
- version v0.21.0-preview.4 and create version 0.21.0-preview.5 by
877
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15015
878
- - fix(patch): cherry-pick 2995af6 to release/v0.21.0-preview.5-pr-15131 to patch
879
- version v0.21.0-preview.5 and create version 0.21.0-preview.6 by
880
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15153
881
-
882
- **Full changelog**:
883
- https://github.com/google-gemini/gemini-cli/compare/v0.20.2...v0.21.0
884
-
885
- ## Release v0.22.0-preview-0
886
-
887
- ### What's changed
888
-
889
- - feat(ide): fallback to GEMINI_CLI_IDE_AUTH_TOKEN env var by @skeshive in
890
- https://github.com/google-gemini/gemini-cli/pull/14843
891
- - feat: display quota stats for unused models in /stats by @sehoon38 in
892
- https://github.com/google-gemini/gemini-cli/pull/14764
893
- - feat: ensure codebase investigator uses preview model when main agent does by
894
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14412
895
- - chore: add closing reason to stale bug workflow by @galz10 in
896
- https://github.com/google-gemini/gemini-cli/pull/14861
897
- - Send the model and CLI version with the user agent by @gundermanc in
898
- https://github.com/google-gemini/gemini-cli/pull/14865
899
- - refactor(sessions): move session summary generation to startup by
900
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14691
901
- - Limit search depth in path corrector by @scidomino in
902
- https://github.com/google-gemini/gemini-cli/pull/14869
903
- - Fix: Correct typo in code comment by @kuishou68 in
904
- https://github.com/google-gemini/gemini-cli/pull/14671
905
- - feat(core): Plumbing for late resolution of model configs. by @joshualitt in
906
- https://github.com/google-gemini/gemini-cli/pull/14597
907
- - feat: attempt more error parsing by @adamfweidman in
908
- https://github.com/google-gemini/gemini-cli/pull/14899
909
- - Add missing await. by @gundermanc in
910
- https://github.com/google-gemini/gemini-cli/pull/14910
911
- - feat(core): Add support for transcript_path in hooks for git-ai/Gemini
912
- extension by @svarlamov in
913
- https://github.com/google-gemini/gemini-cli/pull/14663
914
- - refactor: implement DelegateToAgentTool with discriminated union by
915
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14769
916
- - feat: reset availabilityService on /auth by @adamfweidman in
917
- https://github.com/google-gemini/gemini-cli/pull/14911
918
- - chore/release: bump version to 0.21.0-nightly.20251211.8c83e1ea9 by
919
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14924
920
- - Fix: Correctly detect MCP tool errors by @kevin-ramdass in
921
- https://github.com/google-gemini/gemini-cli/pull/14937
922
- - increase labeler timeout by @scidomino in
923
- https://github.com/google-gemini/gemini-cli/pull/14922
924
- - tool(cli): tweak the frontend tool to be aware of more core files from the cli
925
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14962
926
- - feat(cli): polish cached token stats and simplify stats display when quota is
927
- present. by @jacob314 in
928
- https://github.com/google-gemini/gemini-cli/pull/14961
929
- - feat(settings-validation): add validation for settings schema by @lifefloating
930
- in https://github.com/google-gemini/gemini-cli/pull/12929
931
- - fix(ide): Update IDE extension to write auth token in env var by @skeshive in
932
- https://github.com/google-gemini/gemini-cli/pull/14999
933
- - Revert "chore(deps): bump express from 5.1.0 to 5.2.0" by @skeshive in
934
- https://github.com/google-gemini/gemini-cli/pull/14998
935
- - feat(a2a): Introduce /init command for a2a server by @cocosheng-g in
936
- https://github.com/google-gemini/gemini-cli/pull/13419
937
- - feat: support multi-file drag and drop of images by @jackwotherspoon in
938
- https://github.com/google-gemini/gemini-cli/pull/14832
939
- - fix(policy): allow codebase_investigator by default in read-only policy by
940
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15000
941
- - refactor(ide ext): Update port file name + switch to 1-based index for
942
- characters + remove truncation text by @skeshive in
943
- https://github.com/google-gemini/gemini-cli/pull/10501
944
- - fix(vscode-ide-companion): correct license generation for workspace
945
- dependencies by @skeshive in
946
- https://github.com/google-gemini/gemini-cli/pull/15004
947
- - fix: temp fix for subagent invocation until subagent delegation is merged to
948
- stable by @abhipatel12 in
949
- https://github.com/google-gemini/gemini-cli/pull/15007
950
- - test: update ide detection tests to make them more robust when run in an ide
951
- by @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/15008
952
- - Remove flex from stats display. See snapshots for diffs. by @jacob314 in
953
- https://github.com/google-gemini/gemini-cli/pull/14983
954
- - Add license field into package.json by @jb-perez in
955
- https://github.com/google-gemini/gemini-cli/pull/14473
956
- - feat: Persistent "Always Allow" policies with granular shell & MCP support by
957
- @allenhutchison in https://github.com/google-gemini/gemini-cli/pull/14737
958
- - chore/release: bump version to 0.21.0-nightly.20251212.54de67536 by
959
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14969
960
- - fix(core): commandPrefix word boundary and compound command safety by
961
- @allenhutchison in https://github.com/google-gemini/gemini-cli/pull/15006
962
- - chore(docs): add 'Maintainers only' label info to CONTRIBUTING.md by @jacob314
963
- in https://github.com/google-gemini/gemini-cli/pull/14914
964
- - Refresh hooks when refreshing extensions. by @scidomino in
965
- https://github.com/google-gemini/gemini-cli/pull/14918
966
- - Add clarity to error messages by @gsehgal in
967
- https://github.com/google-gemini/gemini-cli/pull/14879
968
- - chore : remove a redundant tip by @JayadityaGit in
969
- https://github.com/google-gemini/gemini-cli/pull/14947
970
- - chore/release: bump version to 0.21.0-nightly.20251213.977248e09 by
971
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15029
972
- - Disallow redundant typecasts. by @gundermanc in
973
- https://github.com/google-gemini/gemini-cli/pull/15030
974
- - fix(auth): prioritize GEMINI_API_KEY env var and skip unnecessary key… by
975
- @galz10 in https://github.com/google-gemini/gemini-cli/pull/14745
976
- - fix: use zod for safety check result validation by @allenhutchison in
977
- https://github.com/google-gemini/gemini-cli/pull/15026
978
- - update(telemetry): add hashed_extension_name to field to extension events by
979
- @kiranani in https://github.com/google-gemini/gemini-cli/pull/15025
980
- - fix: similar to policy-engine, throw error in case of requiring tool execution
981
- confirmation for non-interactive mode by @MayV in
982
- https://github.com/google-gemini/gemini-cli/pull/14702
983
- - Clean up processes in integration tests by @scidomino in
984
- https://github.com/google-gemini/gemini-cli/pull/15102
985
- - docs: update policy engine getting started and defaults by @NTaylorMullen in
986
- https://github.com/google-gemini/gemini-cli/pull/15105
987
- - Fix tool output fragmentation by encapsulating content in functionResponse by
988
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/13082
989
- - Simplify method signature. by @scidomino in
990
- https://github.com/google-gemini/gemini-cli/pull/15114
991
- - Show raw input token counts in json output. by @jacob314 in
992
- https://github.com/google-gemini/gemini-cli/pull/15021
993
- - fix: Mark A2A requests as interactive by @MayV in
994
- https://github.com/google-gemini/gemini-cli/pull/15108
995
- - use previewFeatures to determine which pro model to use for A2A by @sehoon38
996
- in https://github.com/google-gemini/gemini-cli/pull/15131
997
- - refactor(cli): fix settings merging so that settings using the new json format
998
- take priority over ones using the old format by @jacob314 in
999
- https://github.com/google-gemini/gemini-cli/pull/15116
1000
-
1001
- **Full changelog**:
1002
- https://github.com/google-gemini/gemini-cli/compare/v0.21.0-preview.6...v0.22.0-preview.0
1003
-
1004
- ## Release v0.20.0
1005
-
1006
- ### What's changed
1007
-
1008
- - Update error codes when process exiting the gemini cli by @megha1188 in
1009
- https://github.com/google-gemini/gemini-cli/pull/13728
1010
- - chore(release): bump version to 0.20.0-nightly.20251126.d2a6cff4d by
1011
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13835
1012
- - feat(core): Improve request token calculation accuracy by @SandyTao520 in
1013
- https://github.com/google-gemini/gemini-cli/pull/13824
1014
- - Changes in system instruction to adapt to gemini 3.0 to ensure that the CLI
1015
- explains its actions before calling tools by @silviojr in
1016
- https://github.com/google-gemini/gemini-cli/pull/13810
1017
- - feat(hooks): Hook Tool Execution Integration by @Edilmo in
1018
- https://github.com/google-gemini/gemini-cli/pull/9108
1019
- - Add support for MCP server instructions behind config option by @chrstnb in
1020
- https://github.com/google-gemini/gemini-cli/pull/13432
1021
- - Update System Instructions for interactive vs non-interactive mode. by
1022
- @aishaneeshah in https://github.com/google-gemini/gemini-cli/pull/12315
1023
- - Add consent flag to Link command by @kevinjwang1 in
1024
- https://github.com/google-gemini/gemini-cli/pull/13832
1025
- - feat(mcp): Inject GoogleCredentialProvider headers in McpClient by
1026
- @sai-sunder-s in https://github.com/google-gemini/gemini-cli/pull/13783
1027
- - feat(core): implement towards policy-driven model fallback mechanism by
1028
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/13781
1029
- - feat(core): Add configurable inactivity timeout for shell commands by @galz10
1030
- in https://github.com/google-gemini/gemini-cli/pull/13531
1031
- - fix(auth): improve API key authentication flow by @galz10 in
1032
- https://github.com/google-gemini/gemini-cli/pull/13829
1033
- - feat(hooks): Hook LLM Request/Response Integration by @Edilmo in
1034
- https://github.com/google-gemini/gemini-cli/pull/9110
1035
- - feat(ui): Show waiting MCP servers in ConfigInitDisplay by @werdnum in
1036
- https://github.com/google-gemini/gemini-cli/pull/13721
1037
- - Add usage limit remaining in /stats by @sehoon38 in
1038
- https://github.com/google-gemini/gemini-cli/pull/13843
1039
- - feat(shell): Standardize pager to 'cat' for shell execution by model by
1040
- @galz10 in https://github.com/google-gemini/gemini-cli/pull/13878
1041
- - chore/release: bump version to 0.20.0-nightly.20251127.5bed97064 by
1042
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13877
1043
- - Revert to default LICENSE (Revert #13449) by @scidomino in
1044
- https://github.com/google-gemini/gemini-cli/pull/13876
1045
- - update(telemetry): OTel API response event with finish reasons by @kiranani in
1046
- https://github.com/google-gemini/gemini-cli/pull/13849
1047
- - feat(hooks): Hooks Comprehensive Integration Testing by @Edilmo in
1048
- https://github.com/google-gemini/gemini-cli/pull/9112
1049
- - chore: fix session browser test and skip hook system tests by @jackwotherspoon
1050
- in https://github.com/google-gemini/gemini-cli/pull/14099
1051
- - feat(telemetry): Add Semantic logging for to ApiRequestEvents by @kiranani in
1052
- https://github.com/google-gemini/gemini-cli/pull/13912
1053
- - test: Add verification for $schema property in settings schema by
1054
- @maryamariyan in https://github.com/google-gemini/gemini-cli/pull/13497
1055
- - Fixes `/clear` command to preserve input history for up-arrow navigation while
1056
- still clearing the context window and screen by @korade-krushna in
1057
- https://github.com/google-gemini/gemini-cli/pull/14182
1058
- - fix(core): handle EPIPE error in hook runner when writing to stdin by
1059
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/14231
1060
- - fix: Exclude web-fetch tool from executing in default non-interactive mode to
1061
- avoid CLI hang. by @MayV in
1062
- https://github.com/google-gemini/gemini-cli/pull/14244
1063
- - Always use MCP server instructions by @chrstnb in
1064
- https://github.com/google-gemini/gemini-cli/pull/14297
1065
- - feat: auto-execute simple slash commands on Enter by @jackwotherspoon in
1066
- https://github.com/google-gemini/gemini-cli/pull/13985
1067
- - chore/release: bump version to 0.20.0-nightly.20251201.2fe609cb6 by
1068
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14304
1069
- - feat: Add startup profiler to measure and record application initialization
1070
- phases. by @kevin-ramdass in
1071
- https://github.com/google-gemini/gemini-cli/pull/13638
1072
- - bug(core): Avoid stateful tool use in `executor`. by @joshualitt in
1073
- https://github.com/google-gemini/gemini-cli/pull/14305
1074
- - feat(themes): add built-in holiday theme 🎁 by @jackwotherspoon in
1075
- https://github.com/google-gemini/gemini-cli/pull/14301
1076
- - Updated ToC on docs intro; updated title casing to match Google style by
1077
- @pcoet in https://github.com/google-gemini/gemini-cli/pull/13717
1078
- - feat(a2a): Urgent fix - Process modelInfo agent message by @cocosheng-g in
1079
- https://github.com/google-gemini/gemini-cli/pull/14315
1080
- - feat(core): enhance availability routing with wrapped fallback and
1081
- single-model policies by @adamfweidman in
1082
- https://github.com/google-gemini/gemini-cli/pull/13874
1083
- - chore(logging): log the problematic event for #12122 by @briandealwis in
1084
- https://github.com/google-gemini/gemini-cli/pull/14092
1085
- - fix: remove invalid type key in bug_report.yml by @fancive in
1086
- https://github.com/google-gemini/gemini-cli/pull/13576
1087
- - update screenshot by @Transient-Onlooker in
1088
- https://github.com/google-gemini/gemini-cli/pull/13976
1089
- - docs: Fix grammar error in Release Cadence (Nightly section) by @JuanCS-Dev in
1090
- https://github.com/google-gemini/gemini-cli/pull/13866
1091
- - fix(async): prevent missed async errors from bypassing catch handlers by
1092
- @amsminn in https://github.com/google-gemini/gemini-cli/pull/13714
1093
- - fix(zed-integration): remove extra field from acp auth request by
1094
- @marcocondrache in https://github.com/google-gemini/gemini-cli/pull/13646
1095
- - feat(cli): Documentation for model configs. by @joshualitt in
1096
- https://github.com/google-gemini/gemini-cli/pull/12967
1097
- - fix(ui): misaligned markdown table rendering by @dumbbellcode in
1098
- https://github.com/google-gemini/gemini-cli/pull/8336
1099
- - docs: Update 4 files by @g-samroberts in
1100
- https://github.com/google-gemini/gemini-cli/pull/13628
1101
- - fix: Conditionally add set -eEuo pipefail in setup-github command by @Smetalo
1102
- in https://github.com/google-gemini/gemini-cli/pull/8550
1103
- - fix(cli): fix issue updating a component while rendering a different component
1104
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14319
1105
- - Increase flakey test timeout by @chrstnb in
1106
- https://github.com/google-gemini/gemini-cli/pull/14377
1107
- - Remove references to deleted kind/bug label by @scidomino in
1108
- https://github.com/google-gemini/gemini-cli/pull/14383
1109
- - Don't fail test if we can't cleanup by @scidomino in
1110
- https://github.com/google-gemini/gemini-cli/pull/14389
1111
- - feat(core): Implement JIT context manager and setting by @SandyTao520 in
1112
- https://github.com/google-gemini/gemini-cli/pull/14324
1113
- - Use polling for extensions-reload integration test by @chrstnb in
1114
- https://github.com/google-gemini/gemini-cli/pull/14391
1115
- - Add docs directive to GEMINI.md by @g-samroberts in
1116
- https://github.com/google-gemini/gemini-cli/pull/14327
1117
- - Hide sessions that don't have user messages by @bl-ue in
1118
- https://github.com/google-gemini/gemini-cli/pull/13994
1119
- - chore(ci): mark GitHub release as pre-release if not on "latest" npm channel
1120
- by @ljxfstorm in https://github.com/google-gemini/gemini-cli/pull/7386
1121
- - fix(patch): cherry-pick d284fa6 to release/v0.20.0-preview.0-pr-14545
1122
- [CONFLICTS] by @gemini-cli-robot in
1123
- https://github.com/google-gemini/gemini-cli/pull/14559
1124
- - fix(patch): cherry-pick 828afe1 to release/v0.20.0-preview.1-pr-14159 to patch
1125
- version v0.20.0-preview.1 and create version 0.20.0-preview.2 by
1126
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14733
1127
- - fix(patch): cherry-pick 171103a to release/v0.20.0-preview.2-pr-14742 to patch
1128
- version v0.20.0-preview.2 and create version 0.20.0-preview.5 by
1129
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14752
1130
-
1131
- **Full changelog**:
1132
- https://github.com/google-gemini/gemini-cli/compare/v0.19.4...v0.20.0
1133
-
1134
- ## Release v0.19.0
1135
-
1136
- ## Highlights
1137
-
1138
- - **Zed integration:** Users can now leverage Gemini 3 within the Zed
1139
- integration after enabling "Preview Features" in their CLI’s `/settings`.
1140
- - **Interactive shell:**
1141
- - **Click-to-Focus:** Go to `/settings` and enable **Use Alternate Buffer**
1142
- When "Use Alternate Buffer" setting is enabled users can click within the
1143
- embedded shell output to focus it for input.
1144
- - **Loading phrase:** Clearly indicates when the interactive shell is awaiting
1145
- user input. ([vid](https://imgur.com/a/kjK8bUK)
1146
- [pr](https://github.com/google-gemini/gemini-cli/pull/12535) by
1147
- [@jackwotherspoon](https://github.com/jackwotherspoon))
1148
-
1149
- ### What's changed
1150
-
1151
- - Use lenient MCP output schema validator by @cornmander in
1152
- https://github.com/google-gemini/gemini-cli/pull/13521
1153
- - Update persistence state to track counts of messages instead of times banner
1154
- has been displayed by @Adib234 in
1155
- https://github.com/google-gemini/gemini-cli/pull/13428
1156
- - update docs for http proxy by @scidomino in
1157
- https://github.com/google-gemini/gemini-cli/pull/13538
1158
- - move stdio by @jacob314 in
1159
- https://github.com/google-gemini/gemini-cli/pull/13528
1160
- - chore(release): bump version to 0.19.0-nightly.20251120.8e531dc02 by
1161
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13540
1162
- - Skip pre-commit hooks for shadow repo (#13331) by @vishvananda in
1163
- https://github.com/google-gemini/gemini-cli/pull/13488
1164
- - fix(ui): Correct mouse click cursor positioning for wide characters by
1165
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/13537
1166
- - fix(core): correct bash @P prompt transformation detection by @pyrytakala in
1167
- https://github.com/google-gemini/gemini-cli/pull/13544
1168
- - Optimize and improve test coverage for cli/src/config by @megha1188 in
1169
- https://github.com/google-gemini/gemini-cli/pull/13485
1170
- - Improve code coverage for cli/src/ui/privacy package by @megha1188 in
1171
- https://github.com/google-gemini/gemini-cli/pull/13493
1172
- - docs: fix typos in source code and documentation by @fancive in
1173
- https://github.com/google-gemini/gemini-cli/pull/13577
1174
- - Improved code coverage for cli/src/zed-integration by @megha1188 in
1175
- https://github.com/google-gemini/gemini-cli/pull/13570
1176
- - feat(ui): build interactive session browser component by @bl-ue in
1177
- https://github.com/google-gemini/gemini-cli/pull/13351
1178
- - Fix multiple bugs with auth flow including using the implemented but unused
1179
- restart support. by @jacob314 in
1180
- https://github.com/google-gemini/gemini-cli/pull/13565
1181
- - feat(core): add modelAvailabilityService for managing and tracking model
1182
- health by @adamfweidman in
1183
- https://github.com/google-gemini/gemini-cli/pull/13426
1184
- - docs: fix grammar typo "a MCP" to "an MCP" by @noahacgn in
1185
- https://github.com/google-gemini/gemini-cli/pull/13595
1186
- - feat: custom loading phrase when interactive shell requires input by
1187
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/12535
1188
- - docs: Update uninstall command to reflect multiple extension support by
1189
- @JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/13582
1190
- - bug(core): Ensure we use thinking budget on fallback to 2.5 by @joshualitt in
1191
- https://github.com/google-gemini/gemini-cli/pull/13596
1192
- - Remove useModelRouter experimental flag by @Adib234 in
1193
- https://github.com/google-gemini/gemini-cli/pull/13593
1194
- - feat(docs): Ensure multiline JS objects are rendered properly. by @joshualitt
1195
- in https://github.com/google-gemini/gemini-cli/pull/13535
1196
- - Fix exp id logging by @owenofbrien in
1197
- https://github.com/google-gemini/gemini-cli/pull/13430
1198
- - Moved client id logging into createBasicLogEvent by @owenofbrien in
1199
- https://github.com/google-gemini/gemini-cli/pull/13607
1200
- - Restore bracketed paste mode after external editor exit by @scidomino in
1201
- https://github.com/google-gemini/gemini-cli/pull/13606
1202
- - feat(core): Add support for custom aliases for model configs. by @joshualitt
1203
- in https://github.com/google-gemini/gemini-cli/pull/13546
1204
- - feat(core): Add `BaseLlmClient.generateContent`. by @joshualitt in
1205
- https://github.com/google-gemini/gemini-cli/pull/13591
1206
- - Turn off alternate buffer mode by default. by @jacob314 in
1207
- https://github.com/google-gemini/gemini-cli/pull/13623
1208
- - fix(cli): Prevent stdout/stderr patching for extension commands by @chrstnb in
1209
- https://github.com/google-gemini/gemini-cli/pull/13600
1210
- - Improve test coverage for cli/src/ui/components by @megha1188 in
1211
- https://github.com/google-gemini/gemini-cli/pull/13598
1212
- - Update ink version to 6.4.6 by @jacob314 in
1213
- https://github.com/google-gemini/gemini-cli/pull/13631
1214
- - chore/release: bump version to 0.19.0-nightly.20251122.42c2e1b21 by
1215
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13637
1216
- - chore/release: bump version to 0.19.0-nightly.20251123.dadd606c0 by
1217
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13675
1218
- - chore/release: bump version to 0.19.0-nightly.20251124.e177314a4 by
1219
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13713
1220
- - fix(core): Fix context window overflow warning for PDF files by @kkitase in
1221
- https://github.com/google-gemini/gemini-cli/pull/13548
1222
- - feat :rephrasing the extension logging messages to run the explore command
1223
- when there are no extensions installed by @JayadityaGit in
1224
- https://github.com/google-gemini/gemini-cli/pull/13740
1225
- - Improve code coverage for cli package by @megha1188 in
1226
- https://github.com/google-gemini/gemini-cli/pull/13724
1227
- - Add session subtask in /stats command by @Adib234 in
1228
- https://github.com/google-gemini/gemini-cli/pull/13750
1229
- - feat(core): Migrate chatCompressionService to model configs. by @joshualitt in
1230
- https://github.com/google-gemini/gemini-cli/pull/12863
1231
- - feat(hooks): Hook Telemetry Infrastructure by @Edilmo in
1232
- https://github.com/google-gemini/gemini-cli/pull/9082
1233
- - fix: (some minor improvements to configs and getPackageJson return behavior)
1234
- by @grMLEqomlkkU5Eeinz4brIrOVCUCkJuN in
1235
- https://github.com/google-gemini/gemini-cli/pull/12510
1236
- - feat(hooks): Hook Event Handling by @Edilmo in
1237
- https://github.com/google-gemini/gemini-cli/pull/9097
1238
- - feat(hooks): Hook Agent Lifecycle Integration by @Edilmo in
1239
- https://github.com/google-gemini/gemini-cli/pull/9105
1240
- - feat(core): Land bool for alternate system prompt. by @joshualitt in
1241
- https://github.com/google-gemini/gemini-cli/pull/13764
1242
- - bug(core): Add default chat compression config. by @joshualitt in
1243
- https://github.com/google-gemini/gemini-cli/pull/13766
1244
- - feat(model-availability): introduce ModelPolicy and PolicyCatalog by
1245
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/13751
1246
- - feat(hooks): Hook System Orchestration by @Edilmo in
1247
- https://github.com/google-gemini/gemini-cli/pull/9102
1248
- - feat(config): add isModelAvailabilityServiceEnabled setting by @adamfweidman
1249
- in https://github.com/google-gemini/gemini-cli/pull/13777
1250
- - chore/release: bump version to 0.19.0-nightly.20251125.f6d97d448 by
1251
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13782
1252
- - chore: remove console.error by @adamfweidman in
1253
- https://github.com/google-gemini/gemini-cli/pull/13779
1254
- - fix: Add $schema property to settings.schema.json by @sacrosanctic in
1255
- https://github.com/google-gemini/gemini-cli/pull/12763
1256
- - fix(cli): allow non-GitHub SCP-styled URLs for extension installation by @m0ps
1257
- in https://github.com/google-gemini/gemini-cli/pull/13800
1258
- - fix(resume): allow passing a prompt via stdin while resuming using --resume by
1259
- @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13520
1260
- - feat(sessions): add /resume slash command to open the session browser by
1261
- @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13621
1262
- - docs(sessions): add documentation for chat recording and session management by
1263
- @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13667
1264
- - Fix TypeError: "URL.parse is not a function" for Node.js < v22 by @macarronesc
1265
- in https://github.com/google-gemini/gemini-cli/pull/13698
1266
- - fallback to flash for TerminalQuota errors by @sehoon38 in
1267
- https://github.com/google-gemini/gemini-cli/pull/13791
1268
- - Update Code Wiki README badge by @PatoBeltran in
1269
- https://github.com/google-gemini/gemini-cli/pull/13768
1270
- - Add Databricks auth support and custom header option to gemini cli by
1271
- @AarushiShah in https://github.com/google-gemini/gemini-cli/pull/11893
1272
- - Update dependency for modelcontextprotocol/sdk to 1.23.0 by @bbiggs in
1273
- https://github.com/google-gemini/gemini-cli/pull/13827
1274
- - fix(patch): cherry-pick 576fda1 to release/v0.19.0-preview.0-pr-14099
1275
- [CONFLICTS] by @gemini-cli-robot in
1276
- https://github.com/google-gemini/gemini-cli/pull/14402
1277
-
1278
- **Full changelog**:
1279
- https://github.com/google-gemini/gemini-cli/compare/v0.18.4...v0.19.0
1280
-
1281
- ## Release v0.19.0-preview.0
1282
-
1283
- ### What's changed
1284
-
1285
- - Use lenient MCP output schema validator by @cornmander in
1286
- https://github.com/google-gemini/gemini-cli/pull/13521
1287
- - Update persistence state to track counts of messages instead of times banner
1288
- has been displayed by @Adib234 in
1289
- https://github.com/google-gemini/gemini-cli/pull/13428
1290
- - update docs for http proxy by @scidomino in
1291
- https://github.com/google-gemini/gemini-cli/pull/13538
1292
- - move stdio by @jacob314 in
1293
- https://github.com/google-gemini/gemini-cli/pull/13528
1294
- - chore(release): bump version to 0.19.0-nightly.20251120.8e531dc02 by
1295
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13540
1296
- - Skip pre-commit hooks for shadow repo (#13331) by @vishvananda in
1297
- https://github.com/google-gemini/gemini-cli/pull/13488
1298
- - fix(ui): Correct mouse click cursor positioning for wide characters by
1299
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/13537
1300
- - fix(core): correct bash @P prompt transformation detection by @pyrytakala in
1301
- https://github.com/google-gemini/gemini-cli/pull/13544
1302
- - Optimize and improve test coverage for cli/src/config by @megha1188 in
1303
- https://github.com/google-gemini/gemini-cli/pull/13485
1304
- - Improve code coverage for cli/src/ui/privacy package by @megha1188 in
1305
- https://github.com/google-gemini/gemini-cli/pull/13493
1306
- - docs: fix typos in source code and documentation by @fancive in
1307
- https://github.com/google-gemini/gemini-cli/pull/13577
1308
- - Improved code coverage for cli/src/zed-integration by @megha1188 in
1309
- https://github.com/google-gemini/gemini-cli/pull/13570
1310
- - feat(ui): build interactive session browser component by @bl-ue in
1311
- https://github.com/google-gemini/gemini-cli/pull/13351
1312
- - Fix multiple bugs with auth flow including using the implemented but unused
1313
- restart support. by @jacob314 in
1314
- https://github.com/google-gemini/gemini-cli/pull/13565
1315
- - feat(core): add modelAvailabilityService for managing and tracking model
1316
- health by @adamfweidman in
1317
- https://github.com/google-gemini/gemini-cli/pull/13426
1318
- - docs: fix grammar typo "a MCP" to "an MCP" by @noahacgn in
1319
- https://github.com/google-gemini/gemini-cli/pull/13595
1320
- - feat: custom loading phrase when interactive shell requires input by
1321
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/12535
1322
- - docs: Update uninstall command to reflect multiple extension support by
1323
- @JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/13582
1324
- - bug(core): Ensure we use thinking budget on fallback to 2.5 by @joshualitt in
1325
- https://github.com/google-gemini/gemini-cli/pull/13596
1326
- - Remove useModelRouter experimental flag by @Adib234 in
1327
- https://github.com/google-gemini/gemini-cli/pull/13593
1328
- - feat(docs): Ensure multiline JS objects are rendered properly. by @joshualitt
1329
- in https://github.com/google-gemini/gemini-cli/pull/13535
1330
- - Fix exp id logging by @owenofbrien in
1331
- https://github.com/google-gemini/gemini-cli/pull/13430
1332
- - Moved client id logging into createBasicLogEvent by @owenofbrien in
1333
- https://github.com/google-gemini/gemini-cli/pull/13607
1334
- - Restore bracketed paste mode after external editor exit by @scidomino in
1335
- https://github.com/google-gemini/gemini-cli/pull/13606
1336
- - feat(core): Add support for custom aliases for model configs. by @joshualitt
1337
- in https://github.com/google-gemini/gemini-cli/pull/13546
1338
- - feat(core): Add `BaseLlmClient.generateContent`. by @joshualitt in
1339
- https://github.com/google-gemini/gemini-cli/pull/13591
1340
- - Turn off alternate buffer mode by default. by @jacob314 in
1341
- https://github.com/google-gemini/gemini-cli/pull/13623
1342
- - fix(cli): Prevent stdout/stderr patching for extension commands by @chrstnb in
1343
- https://github.com/google-gemini/gemini-cli/pull/13600
1344
- - Improve test coverage for cli/src/ui/components by @megha1188 in
1345
- https://github.com/google-gemini/gemini-cli/pull/13598
1346
- - Update ink version to 6.4.6 by @jacob314 in
1347
- https://github.com/google-gemini/gemini-cli/pull/13631
1348
- - chore/release: bump version to 0.19.0-nightly.20251122.42c2e1b21 by
1349
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13637
1350
- - chore/release: bump version to 0.19.0-nightly.20251123.dadd606c0 by
1351
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13675
1352
- - chore/release: bump version to 0.19.0-nightly.20251124.e177314a4 by
1353
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13713
1354
- - fix(core): Fix context window overflow warning for PDF files by @kkitase in
1355
- https://github.com/google-gemini/gemini-cli/pull/13548
1356
- - feat :rephrasing the extension logging messages to run the explore command
1357
- when there are no extensions installed by @JayadityaGit in
1358
- https://github.com/google-gemini/gemini-cli/pull/13740
1359
- - Improve code coverage for cli package by @megha1188 in
1360
- https://github.com/google-gemini/gemini-cli/pull/13724
1361
- - Add session subtask in /stats command by @Adib234 in
1362
- https://github.com/google-gemini/gemini-cli/pull/13750
1363
- - feat(core): Migrate chatCompressionService to model configs. by @joshualitt in
1364
- https://github.com/google-gemini/gemini-cli/pull/12863
1365
- - feat(hooks): Hook Telemetry Infrastructure by @Edilmo in
1366
- https://github.com/google-gemini/gemini-cli/pull/9082
1367
- - fix: (some minor improvements to configs and getPackageJson return behavior)
1368
- by @grMLEqomlkkU5Eeinz4brIrOVCUCkJuN in
1369
- https://github.com/google-gemini/gemini-cli/pull/12510
1370
- - feat(hooks): Hook Event Handling by @Edilmo in
1371
- https://github.com/google-gemini/gemini-cli/pull/9097
1372
- - feat(hooks): Hook Agent Lifecycle Integration by @Edilmo in
1373
- https://github.com/google-gemini/gemini-cli/pull/9105
1374
- - feat(core): Land bool for alternate system prompt. by @joshualitt in
1375
- https://github.com/google-gemini/gemini-cli/pull/13764
1376
- - bug(core): Add default chat compression config. by @joshualitt in
1377
- https://github.com/google-gemini/gemini-cli/pull/13766
1378
- - feat(model-availability): introduce ModelPolicy and PolicyCatalog by
1379
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/13751
1380
- - feat(hooks): Hook System Orchestration by @Edilmo in
1381
- https://github.com/google-gemini/gemini-cli/pull/9102
1382
- - feat(config): add isModelAvailabilityServiceEnabled setting by @adamfweidman
1383
- in https://github.com/google-gemini/gemini-cli/pull/13777
1384
- - chore/release: bump version to 0.19.0-nightly.20251125.f6d97d448 by
1385
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13782
1386
- - chore: remove console.error by @adamfweidman in
1387
- https://github.com/google-gemini/gemini-cli/pull/13779
1388
- - fix: Add $schema property to settings.schema.json by @sacrosanctic in
1389
- https://github.com/google-gemini/gemini-cli/pull/12763
1390
- - fix(cli): allow non-GitHub SCP-styled URLs for extension installation by @m0ps
1391
- in https://github.com/google-gemini/gemini-cli/pull/13800
1392
- - fix(resume): allow passing a prompt via stdin while resuming using --resume by
1393
- @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13520
1394
- - feat(sessions): add /resume slash command to open the session browser by
1395
- @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13621
1396
- - docs(sessions): add documentation for chat recording and session management by
1397
- @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13667
1398
- - Fix TypeError: "URL.parse is not a function" for Node.js < v22 by @macarronesc
1399
- in https://github.com/google-gemini/gemini-cli/pull/13698
1400
- - fallback to flash for TerminalQuota errors by @sehoon38 in
1401
- https://github.com/google-gemini/gemini-cli/pull/13791
1402
- - Update Code Wiki README badge by @PatoBeltran in
1403
- https://github.com/google-gemini/gemini-cli/pull/13768
1404
- - Add Databricks auth support and custom header option to gemini cli by
1405
- @AarushiShah in https://github.com/google-gemini/gemini-cli/pull/11893
1406
- - Update dependency for modelcontextprotocol/sdk to 1.23.0 by @bbiggs in
1407
- https://github.com/google-gemini/gemini-cli/pull/13827
1408
-
1409
- **Full changelog**:
1410
- https://github.com/google-gemini/gemini-cli/compare/v0.18.0-preview.4...v0.19.0-preview.0
1411
-
1412
- ## Release v0.18.0
1413
-
1414
- ### Highlights
1415
-
1416
- - **Experimental permission improvements**: We're experimenting with a new
1417
- policy engine in Gemini CLI, letting users and administrators create
1418
- fine-grained policies for tool calls. This setting is currently behind a flag.
1419
- See our [policy engine documentation](../core/policy-engine.md) to learn how
1420
- to use this feature.
1421
- - **Gemini 3 support rolled out for some users**: Some users can now enable
1422
- Gemini 3 by using the `/settings` flag and toggling **Preview Features**. See
1423
- our [Gemini 3 on Gemini CLI documentation](../get-started/gemini-3.md) to find
1424
- out more about using Gemini 3.
1425
- - **Updated UI rollback:** We've temporarily rolled back a previous UI update,
1426
- which enabled embedded scrolling and mouse support. This can be re-enabled by
1427
- using the `/settings` command and setting **Use Alternate Screen Buffer** to
1428
- `true`.
1429
- - **Display your model in your chat history**: You can now go use `/settings`
1430
- and turn on **Show Model in Chat** to display the model in your chat history.
1431
- - **Uninstall multiple extensions**: You can uninstall multiple extensions with
1432
- a single command: `gemini extensions uninstall`.
1433
-
1434
- ![Uninstalling Gemini extensions with a single command](https://i.imgur.com/pi7nEBI.png)
1435
-
1436
- ### What's changed
1437
-
1438
- - Remove obsolete reference to "help wanted" label in CONTRIBUTING.md by
1439
- @aswinashok44 in https://github.com/google-gemini/gemini-cli/pull/13291
1440
- - chore(release): v0.18.0-nightly.20251118.86828bb56 by @skeshive in
1441
- https://github.com/google-gemini/gemini-cli/pull/13309
1442
- - Docs: Access clarification. by @jkcinouye in
1443
- https://github.com/google-gemini/gemini-cli/pull/13304
1444
- - Fix links in Gemini 3 Pro documentation by @gmackall in
1445
- https://github.com/google-gemini/gemini-cli/pull/13312
1446
- - Improve keyboard code parsing by @scidomino in
1447
- https://github.com/google-gemini/gemini-cli/pull/13307
1448
- - fix(core): Ensure `read_many_files` tool is available to zed. by @joshualitt
1449
- in https://github.com/google-gemini/gemini-cli/pull/13338
1450
- - Support 3-parameter modifyOtherKeys sequences by @scidomino in
1451
- https://github.com/google-gemini/gemini-cli/pull/13342
1452
- - Improve pty resize error handling for Windows by @galz10 in
1453
- https://github.com/google-gemini/gemini-cli/pull/13353
1454
- - fix(ui): Clear input prompt on Escape key press by @SandyTao520 in
1455
- https://github.com/google-gemini/gemini-cli/pull/13335
1456
- - bug(ui) showLineNumbers had the wrong default value. by @jacob314 in
1457
- https://github.com/google-gemini/gemini-cli/pull/13356
1458
- - fix(cli): fix crash on startup in NO_COLOR mode (#13343) due to ungua… by
1459
- @avilladsen in https://github.com/google-gemini/gemini-cli/pull/13352
1460
- - fix: allow MCP prompts with spaces in name by @jackwotherspoon in
1461
- https://github.com/google-gemini/gemini-cli/pull/12910
1462
- - Refactor createTransport to duplicate less code by @davidmcwherter in
1463
- https://github.com/google-gemini/gemini-cli/pull/13010
1464
- - Followup from #10719 by @bl-ue in
1465
- https://github.com/google-gemini/gemini-cli/pull/13243
1466
- - Capturing github action workflow name if present and send it to clearcut by
1467
- @MJjainam in https://github.com/google-gemini/gemini-cli/pull/13132
1468
- - feat(sessions): record interactive-only errors and warnings to chat recording
1469
- JSON files by @bl-ue in https://github.com/google-gemini/gemini-cli/pull/13300
1470
- - fix(zed-integration): Correctly handle cancellation errors by @benbrandt in
1471
- https://github.com/google-gemini/gemini-cli/pull/13399
1472
- - docs: Add Code Wiki link to README by @holtskinner in
1473
- https://github.com/google-gemini/gemini-cli/pull/13289
1474
- - Restore keyboard mode when exiting the editor by @scidomino in
1475
- https://github.com/google-gemini/gemini-cli/pull/13350
1476
- - feat(core, cli): Bump genai version to 1.30.0 by @joshualitt in
1477
- https://github.com/google-gemini/gemini-cli/pull/13435
1478
- - [cli-ui] Keep header ASCII art colored on non-gradient terminals (#13373) by
1479
- @bniladridas in https://github.com/google-gemini/gemini-cli/pull/13374
1480
- - Fix Copyright line in LICENSE by @scidomino in
1481
- https://github.com/google-gemini/gemini-cli/pull/13449
1482
- - Fix typo in write_todos methodology instructions by @Smetalo in
1483
- https://github.com/google-gemini/gemini-cli/pull/13411
1484
- - feat: update thinking mode support to exclude gemini-2.0 models and simplify
1485
- logic. by @kevin-ramdass in
1486
- https://github.com/google-gemini/gemini-cli/pull/13454
1487
- - remove unneeded log by @scidomino in
1488
- https://github.com/google-gemini/gemini-cli/pull/13456
1489
- - feat: add click-to-focus support for interactive shell by @galz10 in
1490
- https://github.com/google-gemini/gemini-cli/pull/13341
1491
- - Add User email detail to about box by @ptone in
1492
- https://github.com/google-gemini/gemini-cli/pull/13459
1493
- - feat(core): Wire up chat code path for model configs. by @joshualitt in
1494
- https://github.com/google-gemini/gemini-cli/pull/12850
1495
- - chore/release: bump version to 0.18.0-nightly.20251120.2231497b1 by
1496
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13476
1497
- - feat(core): Fix bug with incorrect model overriding. by @joshualitt in
1498
- https://github.com/google-gemini/gemini-cli/pull/13477
1499
- - Use synchronous writes when detecting keyboard modes by @scidomino in
1500
- https://github.com/google-gemini/gemini-cli/pull/13478
1501
- - fix(cli): prevent race condition when restoring prompt after context overflow
1502
- by @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/13473
1503
- - Revert "feat(core): Fix bug with incorrect model overriding." by @adamfweidman
1504
- in https://github.com/google-gemini/gemini-cli/pull/13483
1505
- - Fix: Update system instruction when GEMINI.md memory is loaded or refreshed by
1506
- @lifefloating in https://github.com/google-gemini/gemini-cli/pull/12136
1507
- - fix(zed-integration): Ensure that the zed integration is classified as
1508
- interactive by @benbrandt in
1509
- https://github.com/google-gemini/gemini-cli/pull/13394
1510
- - Copy commands as part of setup-github by @gsehgal in
1511
- https://github.com/google-gemini/gemini-cli/pull/13464
1512
- - Update banner design by @Adib234 in
1513
- https://github.com/google-gemini/gemini-cli/pull/13420
1514
- - Protect stdout and stderr so JavaScript code can't accidentally write to
1515
- stdout corrupting ink rendering by @jacob314 in
1516
- https://github.com/google-gemini/gemini-cli/pull/13247
1517
- - Enable switching preview features on/off without restart by @Adib234 in
1518
- https://github.com/google-gemini/gemini-cli/pull/13515
1519
- - feat(core): Use thinking level for Gemini 3 by @joshualitt in
1520
- https://github.com/google-gemini/gemini-cli/pull/13445
1521
- - Change default compress threshold to 0.5 for api key users by @scidomino in
1522
- https://github.com/google-gemini/gemini-cli/pull/13517
1523
- - remove duplicated mouse code by @scidomino in
1524
- https://github.com/google-gemini/gemini-cli/pull/13525
1525
- - feat(zed-integration): Use default model routing for Zed integration by
1526
- @benbrandt in https://github.com/google-gemini/gemini-cli/pull/13398
1527
- - feat(core): Incorporate Gemini 3 into model config hierarchy. by @joshualitt
1528
- in https://github.com/google-gemini/gemini-cli/pull/13447
1529
- - fix(patch): cherry-pick 5e218a5 to release/v0.18.0-preview.0-pr-13623 to patch
1530
- version v0.18.0-preview.0 and create version 0.18.0-preview.1 by
1531
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13626
1532
- - fix(patch): cherry-pick d351f07 to release/v0.18.0-preview.1-pr-12535 to patch
1533
- version v0.18.0-preview.1 and create version 0.18.0-preview.2 by
1534
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13813
1535
- - fix(patch): cherry-pick 3e50be1 to release/v0.18.0-preview.2-pr-13428 to patch
1536
- version v0.18.0-preview.2 and create version 0.18.0-preview.3 by
1537
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13821
1538
- - fix(patch): cherry-pick d8a3d08 to release/v0.18.0-preview.3-pr-13791 to patch
1539
- version v0.18.0-preview.3 and create version 0.18.0-preview.4 by
1540
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13826
1541
-
1542
- **Full changelog**:
1543
- https://github.com/google-gemini/gemini-cli/compare/v0.17.1...v0.18.0