@google/gemini-cli-core 0.34.0-preview.3 → 0.35.0-nightly.20260314.3038fdce2

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 (355) hide show
  1. package/dist/docs/changelogs/index.md +19 -0
  2. package/dist/docs/changelogs/latest.md +217 -191
  3. package/dist/docs/changelogs/preview.md +447 -184
  4. package/dist/docs/cli/model-routing.md +18 -1
  5. package/dist/docs/cli/model-steering.md +79 -0
  6. package/dist/docs/cli/plan-mode.md +99 -14
  7. package/dist/docs/cli/settings.md +14 -12
  8. package/dist/docs/cli/telemetry.md +45 -0
  9. package/dist/docs/cli/tutorials/plan-mode-steering.md +89 -0
  10. package/dist/docs/core/index.md +2 -0
  11. package/dist/docs/core/local-model-routing.md +193 -0
  12. package/dist/docs/reference/configuration.md +27 -3
  13. package/dist/docs/reference/keyboard-shortcuts.md +168 -90
  14. package/dist/docs/reference/policy-engine.md +30 -6
  15. package/dist/docs/resources/troubleshooting.md +15 -0
  16. package/dist/docs/sidebar.json +10 -0
  17. package/dist/docs/tools/shell.md +8 -0
  18. package/dist/google-gemini-cli-core-0.35.0-nightly.20260311.657f19c1f.tgz +0 -0
  19. package/dist/src/agents/a2a-client-manager.d.ts +11 -4
  20. package/dist/src/agents/a2a-client-manager.js +61 -34
  21. package/dist/src/agents/a2a-client-manager.js.map +1 -1
  22. package/dist/src/agents/a2a-client-manager.test.js +178 -115
  23. package/dist/src/agents/a2a-client-manager.test.js.map +1 -1
  24. package/dist/src/agents/a2aUtils.d.ts +4 -28
  25. package/dist/src/agents/a2aUtils.js +20 -181
  26. package/dist/src/agents/a2aUtils.js.map +1 -1
  27. package/dist/src/agents/a2aUtils.test.js +19 -106
  28. package/dist/src/agents/a2aUtils.test.js.map +1 -1
  29. package/dist/src/agents/agent-scheduler.d.ts +2 -0
  30. package/dist/src/agents/agent-scheduler.js +3 -2
  31. package/dist/src/agents/agent-scheduler.js.map +1 -1
  32. package/dist/src/agents/agent-scheduler.test.js +12 -3
  33. package/dist/src/agents/agent-scheduler.test.js.map +1 -1
  34. package/dist/src/agents/agentLoader.d.ts +2 -2
  35. package/dist/src/agents/agentLoader.js +15 -0
  36. package/dist/src/agents/agentLoader.js.map +1 -1
  37. package/dist/src/agents/auth-provider/factory.d.ts +2 -0
  38. package/dist/src/agents/auth-provider/factory.js +6 -3
  39. package/dist/src/agents/auth-provider/factory.js.map +1 -1
  40. package/dist/src/agents/auth-provider/google-credentials-provider.d.ts +26 -0
  41. package/dist/src/agents/auth-provider/google-credentials-provider.js +117 -0
  42. package/dist/src/agents/auth-provider/google-credentials-provider.js.map +1 -0
  43. package/dist/src/agents/auth-provider/google-credentials-provider.test.d.ts +6 -0
  44. package/dist/src/agents/auth-provider/google-credentials-provider.test.js +126 -0
  45. package/dist/src/agents/auth-provider/google-credentials-provider.test.js.map +1 -0
  46. package/dist/src/agents/browser/browserAgentFactory.js +11 -2
  47. package/dist/src/agents/browser/browserAgentFactory.js.map +1 -1
  48. package/dist/src/agents/browser/browserAgentInvocation.d.ts +4 -3
  49. package/dist/src/agents/browser/browserAgentInvocation.js +10 -4
  50. package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
  51. package/dist/src/agents/browser/browserAgentInvocation.test.js +1 -0
  52. package/dist/src/agents/browser/browserAgentInvocation.test.js.map +1 -1
  53. package/dist/src/agents/browser/browserManager.d.ts +10 -0
  54. package/dist/src/agents/browser/browserManager.js +53 -8
  55. package/dist/src/agents/browser/browserManager.js.map +1 -1
  56. package/dist/src/agents/browser/inputBlocker.d.ts +51 -0
  57. package/dist/src/agents/browser/inputBlocker.js +234 -0
  58. package/dist/src/agents/browser/inputBlocker.js.map +1 -0
  59. package/dist/src/agents/browser/inputBlocker.test.d.ts +6 -0
  60. package/dist/src/agents/browser/inputBlocker.test.js +82 -0
  61. package/dist/src/agents/browser/inputBlocker.test.js.map +1 -0
  62. package/dist/src/agents/browser/mcpToolWrapper.d.ts +3 -2
  63. package/dist/src/agents/browser/mcpToolWrapper.js +49 -8
  64. package/dist/src/agents/browser/mcpToolWrapper.js.map +1 -1
  65. package/dist/src/agents/browser/mcpToolWrapper.test.js +51 -0
  66. package/dist/src/agents/browser/mcpToolWrapper.test.js.map +1 -1
  67. package/dist/src/agents/local-executor.d.ts +5 -4
  68. package/dist/src/agents/local-executor.js +30 -25
  69. package/dist/src/agents/local-executor.js.map +1 -1
  70. package/dist/src/agents/local-executor.test.js +269 -3
  71. package/dist/src/agents/local-executor.test.js.map +1 -1
  72. package/dist/src/agents/local-invocation.d.ts +4 -4
  73. package/dist/src/agents/local-invocation.js +12 -9
  74. package/dist/src/agents/local-invocation.js.map +1 -1
  75. package/dist/src/agents/local-invocation.test.js +19 -3
  76. package/dist/src/agents/local-invocation.test.js.map +1 -1
  77. package/dist/src/agents/registry.js +3 -2
  78. package/dist/src/agents/registry.js.map +1 -1
  79. package/dist/src/agents/registry.test.js +1 -0
  80. package/dist/src/agents/registry.test.js.map +1 -1
  81. package/dist/src/agents/remote-invocation.d.ts +0 -9
  82. package/dist/src/agents/remote-invocation.js +1 -28
  83. package/dist/src/agents/remote-invocation.js.map +1 -1
  84. package/dist/src/agents/remote-invocation.test.js +1 -0
  85. package/dist/src/agents/remote-invocation.test.js.map +1 -1
  86. package/dist/src/agents/subagent-tool-wrapper.d.ts +5 -4
  87. package/dist/src/agents/subagent-tool-wrapper.js +9 -5
  88. package/dist/src/agents/subagent-tool-wrapper.js.map +1 -1
  89. package/dist/src/agents/subagent-tool-wrapper.test.js +15 -1
  90. package/dist/src/agents/subagent-tool-wrapper.test.js.map +1 -1
  91. package/dist/src/agents/subagent-tool.d.ts +3 -3
  92. package/dist/src/agents/subagent-tool.js +16 -12
  93. package/dist/src/agents/subagent-tool.js.map +1 -1
  94. package/dist/src/agents/subagent-tool.test.js +13 -3
  95. package/dist/src/agents/subagent-tool.test.js.map +1 -1
  96. package/dist/src/code_assist/oauth2.js +0 -1
  97. package/dist/src/code_assist/oauth2.js.map +1 -1
  98. package/dist/src/code_assist/server.js +2 -2
  99. package/dist/src/code_assist/server.js.map +1 -1
  100. package/dist/src/code_assist/server.test.js +5 -1
  101. package/dist/src/code_assist/server.test.js.map +1 -1
  102. package/dist/src/code_assist/telemetry.d.ts +2 -2
  103. package/dist/src/code_assist/telemetry.js +5 -3
  104. package/dist/src/code_assist/telemetry.js.map +1 -1
  105. package/dist/src/code_assist/telemetry.test.js +14 -12
  106. package/dist/src/code_assist/telemetry.test.js.map +1 -1
  107. package/dist/src/code_assist/types.d.ts +14 -12
  108. package/dist/src/code_assist/types.js.map +1 -1
  109. package/dist/src/config/agent-loop-context.d.ts +3 -0
  110. package/dist/src/config/config.d.ts +75 -2
  111. package/dist/src/config/config.js +78 -11
  112. package/dist/src/config/config.js.map +1 -1
  113. package/dist/src/config/config.test.js +170 -10
  114. package/dist/src/config/config.test.js.map +1 -1
  115. package/dist/src/config/models.d.ts +14 -0
  116. package/dist/src/config/models.js +37 -0
  117. package/dist/src/config/models.js.map +1 -1
  118. package/dist/src/config/models.test.js +51 -1
  119. package/dist/src/config/models.test.js.map +1 -1
  120. package/dist/src/config/storage.d.ts +1 -0
  121. package/dist/src/config/storage.js +3 -0
  122. package/dist/src/config/storage.js.map +1 -1
  123. package/dist/src/core/baseLlmClient.js +19 -3
  124. package/dist/src/core/baseLlmClient.js.map +1 -1
  125. package/dist/src/core/baseLlmClient.test.js +2 -0
  126. package/dist/src/core/baseLlmClient.test.js.map +1 -1
  127. package/dist/src/core/client.d.ts +4 -3
  128. package/dist/src/core/client.js +42 -17
  129. package/dist/src/core/client.js.map +1 -1
  130. package/dist/src/core/client.test.js +8 -0
  131. package/dist/src/core/client.test.js.map +1 -1
  132. package/dist/src/core/contentGenerator.d.ts +1 -0
  133. package/dist/src/core/contentGenerator.js +35 -3
  134. package/dist/src/core/contentGenerator.js.map +1 -1
  135. package/dist/src/core/contentGenerator.test.js +137 -2
  136. package/dist/src/core/contentGenerator.test.js.map +1 -1
  137. package/dist/src/core/coreToolHookTriggers.d.ts +2 -3
  138. package/dist/src/core/coreToolHookTriggers.js +5 -11
  139. package/dist/src/core/coreToolHookTriggers.js.map +1 -1
  140. package/dist/src/core/coreToolHookTriggers.test.js +24 -0
  141. package/dist/src/core/coreToolHookTriggers.test.js.map +1 -1
  142. package/dist/src/core/coreToolScheduler.js +1 -1
  143. package/dist/src/core/coreToolScheduler.js.map +1 -1
  144. package/dist/src/core/geminiChat.js +31 -21
  145. package/dist/src/core/geminiChat.js.map +1 -1
  146. package/dist/src/core/geminiChat.test.js +6 -4
  147. package/dist/src/core/geminiChat.test.js.map +1 -1
  148. package/dist/src/core/geminiChat_network_retry.test.js +21 -11
  149. package/dist/src/core/geminiChat_network_retry.test.js.map +1 -1
  150. package/dist/src/fallback/handler.js +0 -4
  151. package/dist/src/fallback/handler.js.map +1 -1
  152. package/dist/src/fallback/handler.test.js +0 -6
  153. package/dist/src/fallback/handler.test.js.map +1 -1
  154. package/dist/src/generated/git-commit.d.ts +2 -2
  155. package/dist/src/generated/git-commit.js +2 -2
  156. package/dist/src/generated/git-commit.js.map +1 -1
  157. package/dist/src/ide/detect-ide.d.ts +8 -0
  158. package/dist/src/ide/detect-ide.js +12 -1
  159. package/dist/src/ide/detect-ide.js.map +1 -1
  160. package/dist/src/ide/detect-ide.test.js +12 -0
  161. package/dist/src/ide/detect-ide.test.js.map +1 -1
  162. package/dist/src/ide/ide-installer.js +20 -8
  163. package/dist/src/ide/ide-installer.js.map +1 -1
  164. package/dist/src/ide/ide-installer.test.js +60 -4
  165. package/dist/src/ide/ide-installer.test.js.map +1 -1
  166. package/dist/src/mcp/oauth-provider.js +0 -2
  167. package/dist/src/mcp/oauth-provider.js.map +1 -1
  168. package/dist/src/mcp/oauth-token-storage.test.js +6 -10
  169. package/dist/src/mcp/oauth-token-storage.test.js.map +1 -1
  170. package/dist/src/mcp/oauth-utils.js +0 -2
  171. package/dist/src/mcp/oauth-utils.js.map +1 -1
  172. package/dist/src/mcp/token-storage/file-token-storage.d.ts +24 -0
  173. package/dist/src/mcp/token-storage/file-token-storage.js +152 -0
  174. package/dist/src/mcp/token-storage/file-token-storage.js.map +1 -0
  175. package/dist/src/mcp/token-storage/file-token-storage.test.d.ts +6 -0
  176. package/dist/src/mcp/token-storage/file-token-storage.test.js +276 -0
  177. package/dist/src/mcp/token-storage/file-token-storage.test.js.map +1 -0
  178. package/dist/src/mcp/token-storage/hybrid-token-storage.js +21 -9
  179. package/dist/src/mcp/token-storage/hybrid-token-storage.js.map +1 -1
  180. package/dist/src/mcp/token-storage/hybrid-token-storage.test.js +59 -10
  181. package/dist/src/mcp/token-storage/hybrid-token-storage.test.js.map +1 -1
  182. package/dist/src/mcp/token-storage/index.d.ts +1 -1
  183. package/dist/src/mcp/token-storage/index.js +1 -1
  184. package/dist/src/mcp/token-storage/index.js.map +1 -1
  185. package/dist/src/mcp/token-storage/keychain-token-storage.d.ts +0 -1
  186. package/dist/src/mcp/token-storage/keychain-token-storage.js +0 -3
  187. package/dist/src/mcp/token-storage/keychain-token-storage.js.map +1 -1
  188. package/dist/src/policy/config.d.ts +14 -2
  189. package/dist/src/policy/config.js +94 -49
  190. package/dist/src/policy/config.js.map +1 -1
  191. package/dist/src/policy/config.test.js +208 -488
  192. package/dist/src/policy/config.test.js.map +1 -1
  193. package/dist/src/policy/policies/plan.toml +1 -1
  194. package/dist/src/policy/stable-stringify.js +15 -5
  195. package/dist/src/policy/stable-stringify.js.map +1 -1
  196. package/dist/src/policy/types.d.ts +1 -0
  197. package/dist/src/policy/types.js.map +1 -1
  198. package/dist/src/policy/utils.d.ts +17 -0
  199. package/dist/src/policy/utils.js +27 -7
  200. package/dist/src/policy/utils.js.map +1 -1
  201. package/dist/src/prompts/snippets.js +2 -1
  202. package/dist/src/prompts/snippets.js.map +1 -1
  203. package/dist/src/prompts/utils.test.d.ts +6 -0
  204. package/dist/src/prompts/utils.test.js +225 -0
  205. package/dist/src/prompts/utils.test.js.map +1 -0
  206. package/dist/src/routing/modelRouterService.js +2 -2
  207. package/dist/src/routing/modelRouterService.js.map +1 -1
  208. package/dist/src/routing/modelRouterService.test.js +4 -3
  209. package/dist/src/routing/modelRouterService.test.js.map +1 -1
  210. package/dist/src/routing/strategies/numericalClassifierStrategy.js +6 -40
  211. package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -1
  212. package/dist/src/routing/strategies/numericalClassifierStrategy.test.js +29 -64
  213. package/dist/src/routing/strategies/numericalClassifierStrategy.test.js.map +1 -1
  214. package/dist/src/scheduler/policy.d.ts +3 -7
  215. package/dist/src/scheduler/policy.js +4 -3
  216. package/dist/src/scheduler/policy.js.map +1 -1
  217. package/dist/src/scheduler/policy.test.js +51 -31
  218. package/dist/src/scheduler/policy.test.js.map +1 -1
  219. package/dist/src/scheduler/scheduler.d.ts +4 -2
  220. package/dist/src/scheduler/scheduler.js +19 -16
  221. package/dist/src/scheduler/scheduler.js.map +1 -1
  222. package/dist/src/scheduler/scheduler.test.js +33 -10
  223. package/dist/src/scheduler/scheduler.test.js.map +1 -1
  224. package/dist/src/scheduler/scheduler_parallel.test.js +40 -2
  225. package/dist/src/scheduler/scheduler_parallel.test.js.map +1 -1
  226. package/dist/src/scheduler/scheduler_waiting_callback.test.js +1 -1
  227. package/dist/src/scheduler/scheduler_waiting_callback.test.js.map +1 -1
  228. package/dist/src/scheduler/tool-executor.d.ts +3 -3
  229. package/dist/src/scheduler/tool-executor.js +15 -21
  230. package/dist/src/scheduler/tool-executor.js.map +1 -1
  231. package/dist/src/scheduler/tool-executor.test.js +43 -8
  232. package/dist/src/scheduler/tool-executor.test.js.map +1 -1
  233. package/dist/src/services/chatRecordingService.js +2 -1
  234. package/dist/src/services/chatRecordingService.js.map +1 -1
  235. package/dist/src/services/chatRecordingService.test.js +21 -0
  236. package/dist/src/services/chatRecordingService.test.js.map +1 -1
  237. package/dist/src/services/executionLifecycleService.d.ts +83 -0
  238. package/dist/src/services/executionLifecycleService.js +271 -0
  239. package/dist/src/services/executionLifecycleService.js.map +1 -0
  240. package/dist/src/services/executionLifecycleService.test.d.ts +6 -0
  241. package/dist/src/services/executionLifecycleService.test.js +227 -0
  242. package/dist/src/services/executionLifecycleService.test.js.map +1 -0
  243. package/dist/src/services/keychainService.d.ts +0 -5
  244. package/dist/src/services/keychainService.js +13 -30
  245. package/dist/src/services/keychainService.js.map +1 -1
  246. package/dist/src/services/keychainService.test.js +22 -52
  247. package/dist/src/services/keychainService.test.js.map +1 -1
  248. package/dist/src/services/sandboxManager.d.ts +54 -0
  249. package/dist/src/services/sandboxManager.js +30 -0
  250. package/dist/src/services/sandboxManager.js.map +1 -0
  251. package/dist/src/services/sandboxManager.test.d.ts +6 -0
  252. package/dist/src/services/sandboxManager.test.js +95 -0
  253. package/dist/src/services/sandboxManager.test.js.map +1 -0
  254. package/dist/src/services/shellExecutionService.d.ts +4 -52
  255. package/dist/src/services/shellExecutionService.js +437 -498
  256. package/dist/src/services/shellExecutionService.js.map +1 -1
  257. package/dist/src/services/shellExecutionService.test.js +10 -21
  258. package/dist/src/services/shellExecutionService.test.js.map +1 -1
  259. package/dist/src/telemetry/clearcut-logger/clearcut-logger.d.ts +13 -2
  260. package/dist/src/telemetry/clearcut-logger/clearcut-logger.js +91 -1
  261. package/dist/src/telemetry/clearcut-logger/clearcut-logger.js.map +1 -1
  262. package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js +77 -0
  263. package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js.map +1 -1
  264. package/dist/src/telemetry/clearcut-logger/event-metadata-key.d.ts +10 -1
  265. package/dist/src/telemetry/clearcut-logger/event-metadata-key.js +25 -1
  266. package/dist/src/telemetry/clearcut-logger/event-metadata-key.js.map +1 -1
  267. package/dist/src/telemetry/index.d.ts +3 -3
  268. package/dist/src/telemetry/index.js +3 -3
  269. package/dist/src/telemetry/index.js.map +1 -1
  270. package/dist/src/telemetry/loggers.d.ts +2 -1
  271. package/dist/src/telemetry/loggers.js +32 -1
  272. package/dist/src/telemetry/loggers.js.map +1 -1
  273. package/dist/src/telemetry/loggers.test.js +37 -2
  274. package/dist/src/telemetry/loggers.test.js.map +1 -1
  275. package/dist/src/telemetry/metrics.d.ts +13 -0
  276. package/dist/src/telemetry/metrics.js +17 -0
  277. package/dist/src/telemetry/metrics.js.map +1 -1
  278. package/dist/src/telemetry/startupProfiler.js +4 -4
  279. package/dist/src/telemetry/startupProfiler.js.map +1 -1
  280. package/dist/src/telemetry/startupProfiler.test.js +19 -0
  281. package/dist/src/telemetry/startupProfiler.test.js.map +1 -1
  282. package/dist/src/telemetry/telemetry-utils.test.js +3 -3
  283. package/dist/src/telemetry/types.d.ts +16 -2
  284. package/dist/src/telemetry/types.js +34 -0
  285. package/dist/src/telemetry/types.js.map +1 -1
  286. package/dist/src/telemetry/uiTelemetry.d.ts +7 -0
  287. package/dist/src/telemetry/uiTelemetry.js +78 -0
  288. package/dist/src/telemetry/uiTelemetry.js.map +1 -1
  289. package/dist/src/telemetry/uiTelemetry.test.js +101 -0
  290. package/dist/src/telemetry/uiTelemetry.test.js.map +1 -1
  291. package/dist/src/tools/exit-plan-mode.js +10 -2
  292. package/dist/src/tools/exit-plan-mode.js.map +1 -1
  293. package/dist/src/tools/exit-plan-mode.test.js +15 -0
  294. package/dist/src/tools/exit-plan-mode.test.js.map +1 -1
  295. package/dist/src/tools/ls.js +2 -2
  296. package/dist/src/tools/ls.js.map +1 -1
  297. package/dist/src/tools/mcp-client.js +0 -1
  298. package/dist/src/tools/mcp-client.js.map +1 -1
  299. package/dist/src/tools/mcp-client.test.js +4 -0
  300. package/dist/src/tools/mcp-client.test.js.map +1 -1
  301. package/dist/src/tools/mcp-tool.test.js +10 -1
  302. package/dist/src/tools/mcp-tool.test.js.map +1 -1
  303. package/dist/src/tools/read-many-files.js +2 -4
  304. package/dist/src/tools/read-many-files.js.map +1 -1
  305. package/dist/src/tools/shell.d.ts +1 -1
  306. package/dist/src/tools/shell.js +3 -3
  307. package/dist/src/tools/shell.js.map +1 -1
  308. package/dist/src/tools/tool-registry.test.js +4 -0
  309. package/dist/src/tools/tool-registry.test.js.map +1 -1
  310. package/dist/src/tools/tools.d.ts +34 -1
  311. package/dist/src/tools/tools.js +47 -1
  312. package/dist/src/tools/tools.js.map +1 -1
  313. package/dist/src/tools/web-fetch.d.ts +5 -0
  314. package/dist/src/tools/web-fetch.js +177 -100
  315. package/dist/src/tools/web-fetch.js.map +1 -1
  316. package/dist/src/tools/web-fetch.test.js +130 -26
  317. package/dist/src/tools/web-fetch.test.js.map +1 -1
  318. package/dist/src/tools/web-search.test.js +2 -0
  319. package/dist/src/tools/web-search.test.js.map +1 -1
  320. package/dist/src/utils/fetch.d.ts +0 -29
  321. package/dist/src/utils/fetch.js +10 -123
  322. package/dist/src/utils/fetch.js.map +1 -1
  323. package/dist/src/utils/fetch.test.js +1 -103
  324. package/dist/src/utils/fetch.test.js.map +1 -1
  325. package/dist/src/utils/language-detection.js +96 -89
  326. package/dist/src/utils/language-detection.js.map +1 -1
  327. package/dist/src/utils/language-detection.test.d.ts +6 -0
  328. package/dist/src/utils/language-detection.test.js +39 -0
  329. package/dist/src/utils/language-detection.test.js.map +1 -0
  330. package/dist/src/utils/oauth-flow.js +0 -2
  331. package/dist/src/utils/oauth-flow.js.map +1 -1
  332. package/dist/src/utils/paths.js +5 -2
  333. package/dist/src/utils/paths.js.map +1 -1
  334. package/dist/src/utils/paths.test.js +11 -0
  335. package/dist/src/utils/paths.test.js.map +1 -1
  336. package/dist/src/utils/process-utils.js +18 -4
  337. package/dist/src/utils/process-utils.js.map +1 -1
  338. package/dist/src/utils/process-utils.test.js +32 -10
  339. package/dist/src/utils/process-utils.test.js.map +1 -1
  340. package/dist/src/utils/retry.d.ts +7 -0
  341. package/dist/src/utils/retry.js +40 -3
  342. package/dist/src/utils/retry.js.map +1 -1
  343. package/dist/src/utils/retry.test.js +13 -0
  344. package/dist/src/utils/retry.test.js.map +1 -1
  345. package/dist/src/utils/summarizer.test.js +5 -0
  346. package/dist/src/utils/summarizer.test.js.map +1 -1
  347. package/dist/src/utils/surface.d.ts +18 -0
  348. package/dist/src/utils/surface.js +46 -0
  349. package/dist/src/utils/surface.js.map +1 -0
  350. package/dist/tsconfig.tsbuildinfo +1 -1
  351. package/package.json +1 -1
  352. package/dist/google-gemini-cli-core-0.34.0-preview.2.tgz +0 -0
  353. package/dist/src/services/fileKeychain.d.ts +0 -24
  354. package/dist/src/services/fileKeychain.js +0 -123
  355. package/dist/src/services/fileKeychain.js.map +0 -1
@@ -18,6 +18,25 @@ on GitHub.
18
18
  | [Preview](preview.md) | Experimental features ready for early feedback. |
19
19
  | [Stable](latest.md) | Stable, recommended for general use. |
20
20
 
21
+ ## Announcements: v0.33.0 - 2026-03-11
22
+
23
+ - **Agent Architecture Enhancements:** Introduced HTTP authentication for A2A
24
+ remote agents and authenticated A2A agent card discovery
25
+ ([#20510](https://github.com/google-gemini/gemini-cli/pull/20510) by
26
+ @SandyTao520, [#20622](https://github.com/google-gemini/gemini-cli/pull/20622)
27
+ by @SandyTao520).
28
+ - **Plan Mode Updates:** Expanded Plan Mode with built-in research subagents,
29
+ annotation support for feedback, and a new `copy` subcommand
30
+ ([#20972](https://github.com/google-gemini/gemini-cli/pull/20972) by @Adib234,
31
+ [#20988](https://github.com/google-gemini/gemini-cli/pull/20988) by
32
+ @ruomengz).
33
+ - **CLI UX & Admin Controls:** Redesigned the header to be compact with an ASCII
34
+ icon, inverted context window display to show usage, and enabled a 30-day
35
+ default retention for chat history
36
+ ([#18713](https://github.com/google-gemini/gemini-cli/pull/18713) by
37
+ @keithguerin, [#20853](https://github.com/google-gemini/gemini-cli/pull/20853)
38
+ by @skeshive).
39
+
21
40
  ## Announcements: v0.32.0 - 2026-03-03
22
41
 
23
42
  - **Generalist Agent:** The generalist agent is now enabled to improve task
@@ -1,6 +1,6 @@
1
- # Latest stable release: v0.32.1
1
+ # Latest stable release: v0.33.1
2
2
 
3
- Released: March 4, 2026
3
+ Released: March 12, 2026
4
4
 
5
5
  For most users, our latest stable release is the recommended release. Install
6
6
  the latest stable version with:
@@ -11,198 +11,224 @@ npm install -g @google/gemini-cli
11
11
 
12
12
  ## Highlights
13
13
 
14
- - **Plan Mode Enhancements**: Significant updates to Plan Mode, including the
15
- ability to open and modify plans in an external editor, adaptations for
16
- complex tasks with multi-select options, and integration tests for plan mode.
17
- - **Agent and Steering Improvements**: The generalist agent has been enabled to
18
- enhance task delegation, model steering is now supported directly within the
19
- workspace, and contiguous parallel admission is enabled for `Kind.Agent`
20
- tools.
21
- - **Interactive Shell**: Interactive shell autocompletion has been introduced,
22
- significantly enhancing the user experience.
23
- - **Core Stability and Performance**: Extensions are now loaded in parallel,
24
- fetch timeouts have been increased, robust A2A streaming reassembly was
25
- implemented, and orphaned processes when terminal closes have been prevented.
26
- - **Billing and Quota Handling**: Implemented G1 AI credits overage flow with
27
- billing telemetry and added support for quota error fallbacks across all
28
- authentication types.
14
+ - **Agent Architecture Enhancements:** Introduced HTTP authentication support
15
+ for A2A remote agents, authenticated A2A agent card discovery, and directly
16
+ indicated auth-required states.
17
+ - **Plan Mode Updates:** Expanded Plan Mode capabilities with built-in research
18
+ subagents, annotation support for feedback during iteration, and a new `copy`
19
+ subcommand.
20
+ - **CLI UX Improvements:** Redesigned the header to be compact with an ASCII
21
+ icon, inverted the context window display to show usage, and allowed sub-agent
22
+ confirmation requests in the UI while preventing background flicker.
23
+ - **ACP & MCP Integrations:** Implemented slash command handling in ACP for
24
+ `/memory`, `/init`, `/extensions`, and `/restore`, added an MCPOAuthProvider,
25
+ and introduced a `set models` interface for ACP.
26
+ - **Admin & Core Stability:** Enabled a 30-day default retention for chat
27
+ history, added tool name validation in TOML policy files, and improved tool
28
+ parameter extraction.
29
29
 
30
30
  ## What's Changed
31
31
 
32
- - fix(patch): cherry-pick 0659ad1 to release/v0.32.0-pr-21042 to patch version
33
- v0.32.0 and create version 0.32.1 by @gemini-cli-robot in
34
- [#21048](https://github.com/google-gemini/gemini-cli/pull/21048)
35
- - feat(plan): add integration tests for plan mode by @Adib234 in
36
- [#20214](https://github.com/google-gemini/gemini-cli/pull/20214)
37
- - fix(acp): update auth handshake to spec by @skeshive in
38
- [#19725](https://github.com/google-gemini/gemini-cli/pull/19725)
39
- - feat(core): implement robust A2A streaming reassembly and fix task continuity
40
- by @adamfweidman in
41
- [#20091](https://github.com/google-gemini/gemini-cli/pull/20091)
42
- - feat(cli): load extensions in parallel by @scidomino in
43
- [#20229](https://github.com/google-gemini/gemini-cli/pull/20229)
44
- - Plumb the maxAttempts setting through Config args by @kevinjwang1 in
45
- [#20239](https://github.com/google-gemini/gemini-cli/pull/20239)
46
- - fix(cli): skip 404 errors in setup-github file downloads by @h30s in
47
- [#20287](https://github.com/google-gemini/gemini-cli/pull/20287)
48
- - fix(cli): expose model.name setting in settings dialog for persistence by
49
- @achaljhawar in
50
- [#19605](https://github.com/google-gemini/gemini-cli/pull/19605)
51
- - docs: remove legacy cmd examples in favor of powershell by @scidomino in
52
- [#20323](https://github.com/google-gemini/gemini-cli/pull/20323)
53
- - feat(core): Enable model steering in workspace. by @joshualitt in
54
- [#20343](https://github.com/google-gemini/gemini-cli/pull/20343)
55
- - fix: remove trailing comma in issue triage workflow settings json by @Nixxx19
56
- in [#20265](https://github.com/google-gemini/gemini-cli/pull/20265)
57
- - feat(core): implement task tracker foundation and service by @anj-s in
58
- [#19464](https://github.com/google-gemini/gemini-cli/pull/19464)
59
- - test: support tests that include color information by @jacob314 in
60
- [#20220](https://github.com/google-gemini/gemini-cli/pull/20220)
61
- - feat(core): introduce Kind.Agent for sub-agent classification by @abhipatel12
62
- in [#20369](https://github.com/google-gemini/gemini-cli/pull/20369)
63
- - Changelog for v0.30.0 by @gemini-cli-robot in
64
- [#20252](https://github.com/google-gemini/gemini-cli/pull/20252)
65
- - Update changelog workflow to reject nightly builds by @g-samroberts in
66
- [#20248](https://github.com/google-gemini/gemini-cli/pull/20248)
67
- - Changelog for v0.31.0-preview.0 by @gemini-cli-robot in
68
- [#20249](https://github.com/google-gemini/gemini-cli/pull/20249)
69
- - feat(cli): hide workspace policy update dialog and auto-accept by default by
70
- @Abhijit-2592 in
71
- [#20351](https://github.com/google-gemini/gemini-cli/pull/20351)
72
- - feat(core): rename grep_search include parameter to include_pattern by
32
+ - fix(patch): cherry-pick 8432bce to release/v0.33.0-pr-22069 to patch version
33
+ v0.33.0 and create version 0.33.1 by @gemini-cli-robot in
34
+ [#22206](https://github.com/google-gemini/gemini-cli/pull/22206)
35
+ - Docs: Update model docs to remove Preview Features. by @jkcinouye in
36
+ [#20084](https://github.com/google-gemini/gemini-cli/pull/20084)
37
+ - docs: fix typo in installation documentation by @AdityaSharma-Git3207 in
38
+ [#20153](https://github.com/google-gemini/gemini-cli/pull/20153)
39
+ - docs: add Windows PowerShell equivalents for environments and scripting by
40
+ @scidomino in [#20333](https://github.com/google-gemini/gemini-cli/pull/20333)
41
+ - fix(core): parse raw ASCII buffer strings in Gaxios errors by @sehoon38 in
42
+ [#20626](https://github.com/google-gemini/gemini-cli/pull/20626)
43
+ - chore(release): bump version to 0.33.0-nightly.20260227.ba149afa0 by @galz10
44
+ in [#20637](https://github.com/google-gemini/gemini-cli/pull/20637)
45
+ - fix(github): use robot PAT for automated PRs to pass CLA check by @galz10 in
46
+ [#20641](https://github.com/google-gemini/gemini-cli/pull/20641)
47
+ - chore/release: bump version to 0.33.0-nightly.20260228.1ca5c05d0 by
48
+ @gemini-cli-robot in
49
+ [#20644](https://github.com/google-gemini/gemini-cli/pull/20644)
50
+ - Changelog for v0.31.0 by @gemini-cli-robot in
51
+ [#20634](https://github.com/google-gemini/gemini-cli/pull/20634)
52
+ - fix: use full paths for ACP diff payloads by @JagjeevanAK in
53
+ [#19539](https://github.com/google-gemini/gemini-cli/pull/19539)
54
+ - Changelog for v0.32.0-preview.0 by @gemini-cli-robot in
55
+ [#20627](https://github.com/google-gemini/gemini-cli/pull/20627)
56
+ - fix: acp/zed race condition between MCP initialisation and prompt by
57
+ @kartikangiras in
58
+ [#20205](https://github.com/google-gemini/gemini-cli/pull/20205)
59
+ - fix(cli): reset themeManager between tests to ensure isolation by
60
+ @NTaylorMullen in
61
+ [#20598](https://github.com/google-gemini/gemini-cli/pull/20598)
62
+ - refactor(core): Extract tool parameter names as constants by @SandyTao520 in
63
+ [#20460](https://github.com/google-gemini/gemini-cli/pull/20460)
64
+ - fix(cli): resolve autoThemeSwitching when background hasn't changed but theme
65
+ mismatches by @sehoon38 in
66
+ [#20706](https://github.com/google-gemini/gemini-cli/pull/20706)
67
+ - feat(skills): add github-issue-creator skill by @sehoon38 in
68
+ [#20709](https://github.com/google-gemini/gemini-cli/pull/20709)
69
+ - fix(cli): allow sub-agent confirmation requests in UI while preventing
70
+ background flicker by @abhipatel12 in
71
+ [#20722](https://github.com/google-gemini/gemini-cli/pull/20722)
72
+ - Merge User and Agent Card Descriptions #20849 by @adamfweidman in
73
+ [#20850](https://github.com/google-gemini/gemini-cli/pull/20850)
74
+ - fix(core): reduce LLM-based loop detection false positives by @SandyTao520 in
75
+ [#20701](https://github.com/google-gemini/gemini-cli/pull/20701)
76
+ - fix(plan): deflake plan mode integration tests by @Adib234 in
77
+ [#20477](https://github.com/google-gemini/gemini-cli/pull/20477)
78
+ - Add /unassign support by @scidomino in
79
+ [#20864](https://github.com/google-gemini/gemini-cli/pull/20864)
80
+ - feat(core): implement HTTP authentication support for A2A remote agents by
73
81
  @SandyTao520 in
74
- [#20328](https://github.com/google-gemini/gemini-cli/pull/20328)
75
- - feat(plan): support opening and modifying plan in external editor by @Adib234
76
- in [#20348](https://github.com/google-gemini/gemini-cli/pull/20348)
77
- - feat(cli): implement interactive shell autocompletion by @mrpmohiburrahman in
78
- [#20082](https://github.com/google-gemini/gemini-cli/pull/20082)
79
- - fix(core): allow /memory add to work in plan mode by @Jefftree in
80
- [#20353](https://github.com/google-gemini/gemini-cli/pull/20353)
81
- - feat(core): add HTTP 499 to retryable errors and map to RetryableQuotaError by
82
- @bdmorgan in [#20432](https://github.com/google-gemini/gemini-cli/pull/20432)
83
- - feat(core): Enable generalist agent by @joshualitt in
84
- [#19665](https://github.com/google-gemini/gemini-cli/pull/19665)
85
- - Updated tests in TableRenderer.test.tsx to use SVG snapshots by @devr0306 in
86
- [#20450](https://github.com/google-gemini/gemini-cli/pull/20450)
87
- - Refactor Github Action per b/485167538 by @google-admin in
88
- [#19443](https://github.com/google-gemini/gemini-cli/pull/19443)
89
- - fix(github): resolve actionlint and yamllint regressions from #19443 by @jerop
90
- in [#20467](https://github.com/google-gemini/gemini-cli/pull/20467)
91
- - fix: action var usage by @galz10 in
92
- [#20492](https://github.com/google-gemini/gemini-cli/pull/20492)
93
- - feat(core): improve A2A content extraction by @adamfweidman in
94
- [#20487](https://github.com/google-gemini/gemini-cli/pull/20487)
95
- - fix(cli): support quota error fallbacks for all authentication types by
96
- @sehoon38 in [#20475](https://github.com/google-gemini/gemini-cli/pull/20475)
97
- - fix(core): flush transcript for pure tool-call responses to ensure BeforeTool
98
- hooks see complete state by @krishdef7 in
99
- [#20419](https://github.com/google-gemini/gemini-cli/pull/20419)
100
- - feat(plan): adapt planning workflow based on complexity of task by @jerop in
101
- [#20465](https://github.com/google-gemini/gemini-cli/pull/20465)
102
- - fix: prevent orphaned processes from consuming 100% CPU when terminal closes
103
- by @yuvrajangadsingh in
104
- [#16965](https://github.com/google-gemini/gemini-cli/pull/16965)
105
- - feat(core): increase fetch timeout and fix [object Object] error
106
- stringification by @bdmorgan in
107
- [#20441](https://github.com/google-gemini/gemini-cli/pull/20441)
108
- - [Gemma x Gemini CLI] Add an Experimental Gemma Router that uses a LiteRT-LM
109
- shim into the Composite Model Classifier Strategy by @sidwan02 in
110
- [#17231](https://github.com/google-gemini/gemini-cli/pull/17231)
111
- - docs(plan): update documentation regarding supporting editing of plan files
112
- during plan approval by @Adib234 in
113
- [#20452](https://github.com/google-gemini/gemini-cli/pull/20452)
114
- - test(cli): fix flaky ToolResultDisplay overflow test by @jwhelangoog in
115
- [#20518](https://github.com/google-gemini/gemini-cli/pull/20518)
116
- - ui(cli): reduce length of Ctrl+O hint by @jwhelangoog in
117
- [#20490](https://github.com/google-gemini/gemini-cli/pull/20490)
118
- - fix(ui): correct styled table width calculations by @devr0306 in
119
- [#20042](https://github.com/google-gemini/gemini-cli/pull/20042)
120
- - Avoid overaggressive unescaping by @scidomino in
121
- [#20520](https://github.com/google-gemini/gemini-cli/pull/20520)
122
- - feat(telemetry) Instrument traces with more attributes and make them available
123
- to OTEL users by @heaventourist in
124
- [#20237](https://github.com/google-gemini/gemini-cli/pull/20237)
125
- - Add support for policy engine in extensions by @chrstnb in
126
- [#20049](https://github.com/google-gemini/gemini-cli/pull/20049)
127
- - Docs: Update to Terms of Service & FAQ by @jkcinouye in
128
- [#20488](https://github.com/google-gemini/gemini-cli/pull/20488)
129
- - Fix bottom border rendering for search and add a regression test. by @jacob314
130
- in [#20517](https://github.com/google-gemini/gemini-cli/pull/20517)
131
- - fix(core): apply retry logic to CodeAssistServer for all users by @bdmorgan in
132
- [#20507](https://github.com/google-gemini/gemini-cli/pull/20507)
133
- - Fix extension MCP server env var loading by @chrstnb in
134
- [#20374](https://github.com/google-gemini/gemini-cli/pull/20374)
135
- - feat(ui): add 'ctrl+o' hint to truncated content message by @jerop in
136
- [#20529](https://github.com/google-gemini/gemini-cli/pull/20529)
137
- - Fix flicker showing message to press ctrl-O again to collapse. by @jacob314 in
138
- [#20414](https://github.com/google-gemini/gemini-cli/pull/20414)
139
- - fix(cli): hide shortcuts hint while model is thinking or the user has typed a
140
- prompt + add debounce to avoid flicker by @jacob314 in
141
- [#19389](https://github.com/google-gemini/gemini-cli/pull/19389)
142
- - feat(plan): update planning workflow to encourage multi-select with
143
- descriptions of options by @Adib234 in
144
- [#20491](https://github.com/google-gemini/gemini-cli/pull/20491)
145
- - refactor(core,cli): useAlternateBuffer read from config by @psinha40898 in
146
- [#20346](https://github.com/google-gemini/gemini-cli/pull/20346)
147
- - fix(cli): ensure dialogs stay scrolled to bottom in alternate buffer mode by
148
- @jacob314 in [#20527](https://github.com/google-gemini/gemini-cli/pull/20527)
149
- - fix(core): revert auto-save of policies to user space by @Abhijit-2592 in
150
- [#20531](https://github.com/google-gemini/gemini-cli/pull/20531)
151
- - Demote unreliable test. by @gundermanc in
152
- [#20571](https://github.com/google-gemini/gemini-cli/pull/20571)
153
- - fix(core): handle optional response fields from code assist API by @sehoon38
154
- in [#20345](https://github.com/google-gemini/gemini-cli/pull/20345)
155
- - fix(cli): keep thought summary when loading phrases are off by @LyalinDotCom
156
- in [#20497](https://github.com/google-gemini/gemini-cli/pull/20497)
157
- - feat(cli): add temporary flag to disable workspace policies by @Abhijit-2592
158
- in [#20523](https://github.com/google-gemini/gemini-cli/pull/20523)
159
- - Disable expensive and scheduled workflows on personal forks by @dewitt in
160
- [#20449](https://github.com/google-gemini/gemini-cli/pull/20449)
161
- - Moved markdown parsing logic to a separate util file by @devr0306 in
162
- [#20526](https://github.com/google-gemini/gemini-cli/pull/20526)
163
- - fix(plan): prevent agent from using ask_user for shell command confirmation by
164
- @Adib234 in [#20504](https://github.com/google-gemini/gemini-cli/pull/20504)
165
- - fix(core): disable retries for code assist streaming requests by @sehoon38 in
166
- [#20561](https://github.com/google-gemini/gemini-cli/pull/20561)
167
- - feat(billing): implement G1 AI credits overage flow with billing telemetry by
168
- @gsquared94 in
169
- [#18590](https://github.com/google-gemini/gemini-cli/pull/18590)
170
- - feat: better error messages by @gsquared94 in
171
- [#20577](https://github.com/google-gemini/gemini-cli/pull/20577)
172
- - fix(ui): persist expansion in AskUser dialog when navigating options by @jerop
173
- in [#20559](https://github.com/google-gemini/gemini-cli/pull/20559)
174
- - fix(cli): prevent sub-agent tool calls from leaking into UI by @abhipatel12 in
175
- [#20580](https://github.com/google-gemini/gemini-cli/pull/20580)
176
- - fix(cli): Shell autocomplete polish by @jacob314 in
177
- [#20411](https://github.com/google-gemini/gemini-cli/pull/20411)
178
- - Changelog for v0.31.0-preview.1 by @gemini-cli-robot in
179
- [#20590](https://github.com/google-gemini/gemini-cli/pull/20590)
180
- - Add slash command for promoting behavioral evals to CI blocking by @gundermanc
181
- in [#20575](https://github.com/google-gemini/gemini-cli/pull/20575)
182
- - Changelog for v0.30.1 by @gemini-cli-robot in
183
- [#20589](https://github.com/google-gemini/gemini-cli/pull/20589)
184
- - Add low/full CLI error verbosity mode for cleaner UI by @LyalinDotCom in
185
- [#20399](https://github.com/google-gemini/gemini-cli/pull/20399)
186
- - Disable Gemini PR reviews on draft PRs. by @gundermanc in
187
- [#20362](https://github.com/google-gemini/gemini-cli/pull/20362)
188
- - Docs: FAQ update by @jkcinouye in
189
- [#20585](https://github.com/google-gemini/gemini-cli/pull/20585)
190
- - fix(core): reduce intrusive MCP errors and deduplicate diagnostics by
191
- @spencer426 in
192
- [#20232](https://github.com/google-gemini/gemini-cli/pull/20232)
193
- - docs: fix spelling typos in installation guide by @campox747 in
194
- [#20579](https://github.com/google-gemini/gemini-cli/pull/20579)
195
- - Promote stable tests to CI blocking. by @gundermanc in
196
- [#20581](https://github.com/google-gemini/gemini-cli/pull/20581)
197
- - feat(core): enable contiguous parallel admission for Kind.Agent tools by
198
- @abhipatel12 in
199
- [#20583](https://github.com/google-gemini/gemini-cli/pull/20583)
200
- - Enforce import/no-duplicates as error by @Nixxx19 in
201
- [#19797](https://github.com/google-gemini/gemini-cli/pull/19797)
202
- - fix: merge duplicate imports in sdk and test-utils packages (1/4) by @Nixxx19
203
- in [#19777](https://github.com/google-gemini/gemini-cli/pull/19777)
204
- - fix: merge duplicate imports in a2a-server package (2/4) by @Nixxx19 in
205
- [#19781](https://github.com/google-gemini/gemini-cli/pull/19781)
82
+ [#20510](https://github.com/google-gemini/gemini-cli/pull/20510)
83
+ - feat(core): centralize read_file limits and update gemini-3 description by
84
+ @aishaneeshah in
85
+ [#20619](https://github.com/google-gemini/gemini-cli/pull/20619)
86
+ - Do not block CI on evals by @gundermanc in
87
+ [#20870](https://github.com/google-gemini/gemini-cli/pull/20870)
88
+ - document node limitation for shift+tab by @scidomino in
89
+ [#20877](https://github.com/google-gemini/gemini-cli/pull/20877)
90
+ - Add install as an option when extension is selected. by @DavidAPierce in
91
+ [#20358](https://github.com/google-gemini/gemini-cli/pull/20358)
92
+ - Update CODEOWNERS for README.md reviewers by @g-samroberts in
93
+ [#20860](https://github.com/google-gemini/gemini-cli/pull/20860)
94
+ - feat(core): truncate large MCP tool output by @SandyTao520 in
95
+ [#19365](https://github.com/google-gemini/gemini-cli/pull/19365)
96
+ - Subagent activity UX. by @gundermanc in
97
+ [#17570](https://github.com/google-gemini/gemini-cli/pull/17570)
98
+ - style(cli) : Dialog pattern for /hooks Command by @AbdulTawabJuly in
99
+ [#17930](https://github.com/google-gemini/gemini-cli/pull/17930)
100
+ - feat: redesign header to be compact with ASCII icon by @keithguerin in
101
+ [#18713](https://github.com/google-gemini/gemini-cli/pull/18713)
102
+ - fix(core): ensure subagents use qualified MCP tool names by @abhipatel12 in
103
+ [#20801](https://github.com/google-gemini/gemini-cli/pull/20801)
104
+ - feat(core): support authenticated A2A agent card discovery by @SandyTao520 in
105
+ [#20622](https://github.com/google-gemini/gemini-cli/pull/20622)
106
+ - refactor(cli): fully remove React anti patterns, improve type safety and fix
107
+ UX oversights in SettingsDialog.tsx by @psinha40898 in
108
+ [#18963](https://github.com/google-gemini/gemini-cli/pull/18963)
109
+ - Adding MCPOAuthProvider implementing the MCPSDK OAuthClientProvider by
110
+ @Nayana-Parameswarappa in
111
+ [#20121](https://github.com/google-gemini/gemini-cli/pull/20121)
112
+ - feat(core): add tool name validation in TOML policy files by @allenhutchison
113
+ in [#19281](https://github.com/google-gemini/gemini-cli/pull/19281)
114
+ - docs: fix broken markdown links in main README.md by @Hamdanbinhashim in
115
+ [#20300](https://github.com/google-gemini/gemini-cli/pull/20300)
116
+ - refactor(core): replace manual syncPlanModeTools with declarative policy rules
117
+ by @jerop in [#20596](https://github.com/google-gemini/gemini-cli/pull/20596)
118
+ - fix(core): increase default headers timeout to 5 minutes by @gundermanc in
119
+ [#20890](https://github.com/google-gemini/gemini-cli/pull/20890)
120
+ - feat(admin): enable 30 day default retention for chat history & remove warning
121
+ by @skeshive in
122
+ [#20853](https://github.com/google-gemini/gemini-cli/pull/20853)
123
+ - feat(plan): support annotating plans with feedback for iteration by @Adib234
124
+ in [#20876](https://github.com/google-gemini/gemini-cli/pull/20876)
125
+ - Add some dos and don'ts to behavioral evals README. by @gundermanc in
126
+ [#20629](https://github.com/google-gemini/gemini-cli/pull/20629)
127
+ - fix(core): skip telemetry logging for AbortError exceptions by @yunaseoul in
128
+ [#19477](https://github.com/google-gemini/gemini-cli/pull/19477)
129
+ - fix(core): restrict "System: Please continue" invalid stream retry to Gemini 2
130
+ models by @SandyTao520 in
131
+ [#20897](https://github.com/google-gemini/gemini-cli/pull/20897)
132
+ - ci(evals): only run evals in CI if prompts or tools changed by @gundermanc in
133
+ [#20898](https://github.com/google-gemini/gemini-cli/pull/20898)
134
+ - Build binary by @aswinashok44 in
135
+ [#18933](https://github.com/google-gemini/gemini-cli/pull/18933)
136
+ - Code review fixes as a pr by @jacob314 in
137
+ [#20612](https://github.com/google-gemini/gemini-cli/pull/20612)
138
+ - fix(ci): handle empty APP_ID in stale PR closer by @bdmorgan in
139
+ [#20919](https://github.com/google-gemini/gemini-cli/pull/20919)
140
+ - feat(cli): invert context window display to show usage by @keithguerin in
141
+ [#20071](https://github.com/google-gemini/gemini-cli/pull/20071)
142
+ - fix(plan): clean up session directories and plans on deletion by @jerop in
143
+ [#20914](https://github.com/google-gemini/gemini-cli/pull/20914)
144
+ - fix(core): enforce optionality for API response fields in code_assist by
145
+ @sehoon38 in [#20714](https://github.com/google-gemini/gemini-cli/pull/20714)
146
+ - feat(extensions): add support for plan directory in extension manifest by
147
+ @mahimashanware in
148
+ [#20354](https://github.com/google-gemini/gemini-cli/pull/20354)
149
+ - feat(plan): enable built-in research subagents in plan mode by @Adib234 in
150
+ [#20972](https://github.com/google-gemini/gemini-cli/pull/20972)
151
+ - feat(agents): directly indicate auth required state by @adamfweidman in
152
+ [#20986](https://github.com/google-gemini/gemini-cli/pull/20986)
153
+ - fix(cli): wait for background auto-update before relaunching by @scidomino in
154
+ [#20904](https://github.com/google-gemini/gemini-cli/pull/20904)
155
+ - fix: pre-load @scripts/copy_files.js references from external editor prompts
156
+ by @kartikangiras in
157
+ [#20963](https://github.com/google-gemini/gemini-cli/pull/20963)
158
+ - feat(evals): add behavioral evals for ask_user tool by @Adib234 in
159
+ [#20620](https://github.com/google-gemini/gemini-cli/pull/20620)
160
+ - refactor common settings logic for skills,agents by @ishaanxgupta in
161
+ [#17490](https://github.com/google-gemini/gemini-cli/pull/17490)
162
+ - Update docs-writer skill with new resource by @g-samroberts in
163
+ [#20917](https://github.com/google-gemini/gemini-cli/pull/20917)
164
+ - fix(cli): pin clipboardy to ~5.2.x by @scidomino in
165
+ [#21009](https://github.com/google-gemini/gemini-cli/pull/21009)
166
+ - feat: Implement slash command handling in ACP for
167
+ `/memory`,`/init`,`/extensions` and `/restore` by @sripasg in
168
+ [#20528](https://github.com/google-gemini/gemini-cli/pull/20528)
169
+ - Docs/add hooks reference by @AadithyaAle in
170
+ [#20961](https://github.com/google-gemini/gemini-cli/pull/20961)
171
+ - feat(plan): add copy subcommand to plan (#20491) by @ruomengz in
172
+ [#20988](https://github.com/google-gemini/gemini-cli/pull/20988)
173
+ - fix(core): sanitize and length-check MCP tool qualified names by @abhipatel12
174
+ in [#20987](https://github.com/google-gemini/gemini-cli/pull/20987)
175
+ - Format the quota/limit style guide. by @g-samroberts in
176
+ [#21017](https://github.com/google-gemini/gemini-cli/pull/21017)
177
+ - fix(core): send shell output to model on cancel by @devr0306 in
178
+ [#20501](https://github.com/google-gemini/gemini-cli/pull/20501)
179
+ - remove hardcoded tiername when missing tier by @sehoon38 in
180
+ [#21022](https://github.com/google-gemini/gemini-cli/pull/21022)
181
+ - feat(acp): add set models interface by @skeshive in
182
+ [#20991](https://github.com/google-gemini/gemini-cli/pull/20991)
183
+ - fix(patch): cherry-pick 0659ad1 to release/v0.33.0-preview.0-pr-21042 to patch
184
+ version v0.33.0-preview.0 and create version 0.33.0-preview.1 by
185
+ @gemini-cli-robot in
186
+ [#21047](https://github.com/google-gemini/gemini-cli/pull/21047)
187
+ - fix(patch): cherry-pick 173376b to release/v0.33.0-preview.1-pr-21157 to patch
188
+ version v0.33.0-preview.1 and create version 0.33.0-preview.2 by
189
+ @gemini-cli-robot in
190
+ [#21300](https://github.com/google-gemini/gemini-cli/pull/21300)
191
+ - fix(patch): cherry-pick 0135b03 to release/v0.33.0-preview.2-pr-21171
192
+ [CONFLICTS] by @gemini-cli-robot in
193
+ [#21336](https://github.com/google-gemini/gemini-cli/pull/21336)
194
+ - fix(patch): cherry-pick 7ec477d to release/v0.33.0-preview.3-pr-21305 to patch
195
+ version v0.33.0-preview.3 and create version 0.33.0-preview.4 by
196
+ @gemini-cli-robot in
197
+ [#21349](https://github.com/google-gemini/gemini-cli/pull/21349)
198
+ - fix(patch): cherry-pick 931e668 to release/v0.33.0-preview.4-pr-21425
199
+ [CONFLICTS] by @gemini-cli-robot in
200
+ [#21478](https://github.com/google-gemini/gemini-cli/pull/21478)
201
+ - fix(patch): cherry-pick 7837194 to release/v0.33.0-preview.5-pr-21487 to patch
202
+ version v0.33.0-preview.5 and create version 0.33.0-preview.6 by
203
+ @gemini-cli-robot in
204
+ [#21720](https://github.com/google-gemini/gemini-cli/pull/21720)
205
+ - fix(patch): cherry-pick 4f4431e to release/v0.33.0-preview.7-pr-21750 to patch
206
+ version v0.33.0-preview.7 and create version 0.33.0-preview.8 by
207
+ @gemini-cli-robot in
208
+ [#21782](https://github.com/google-gemini/gemini-cli/pull/21782)
209
+ - fix(patch): cherry-pick 9a74271 to release/v0.33.0-preview.8-pr-21236
210
+ [CONFLICTS] by @gemini-cli-robot in
211
+ [#21788](https://github.com/google-gemini/gemini-cli/pull/21788)
212
+ - fix(patch): cherry-pick 936f624 to release/v0.33.0-preview.9-pr-21702 to patch
213
+ version v0.33.0-preview.9 and create version 0.33.0-preview.10 by
214
+ @gemini-cli-robot in
215
+ [#21800](https://github.com/google-gemini/gemini-cli/pull/21800)
216
+ - fix(patch): cherry-pick 35ee2a8 to release/v0.33.0-preview.10-pr-21713 by
217
+ @gemini-cli-robot in
218
+ [#21859](https://github.com/google-gemini/gemini-cli/pull/21859)
219
+ - fix(patch): cherry-pick 5dd2dab to release/v0.33.0-preview.11-pr-21871 by
220
+ @gemini-cli-robot in
221
+ [#21876](https://github.com/google-gemini/gemini-cli/pull/21876)
222
+ - fix(patch): cherry-pick e5615f4 to release/v0.33.0-preview.12-pr-21037 to
223
+ patch version v0.33.0-preview.12 and create version 0.33.0-preview.13 by
224
+ @gemini-cli-robot in
225
+ [#21922](https://github.com/google-gemini/gemini-cli/pull/21922)
226
+ - fix(patch): cherry-pick 1b69637 to release/v0.33.0-preview.13-pr-21467
227
+ [CONFLICTS] by @gemini-cli-robot in
228
+ [#21930](https://github.com/google-gemini/gemini-cli/pull/21930)
229
+ - fix(patch): cherry-pick 3ff68a9 to release/v0.33.0-preview.14-pr-21884
230
+ [CONFLICTS] by @gemini-cli-robot in
231
+ [#21952](https://github.com/google-gemini/gemini-cli/pull/21952)
206
232
 
207
233
  **Full Changelog**:
208
- https://github.com/google-gemini/gemini-cli/compare/v0.31.0...v0.32.1
234
+ https://github.com/google-gemini/gemini-cli/compare/v0.32.1...v0.33.1