@google/gemini-cli-core 0.35.0-preview.2 → 0.36.0-nightly.20260321.fc03891a1

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 (366) hide show
  1. package/README.md +0 -1
  2. package/dist/docs/CONTRIBUTING.md +0 -15
  3. package/dist/docs/admin/enterprise-controls.md +61 -0
  4. package/dist/docs/changelogs/index.md +11 -0
  5. package/dist/docs/changelogs/latest.md +459 -209
  6. package/dist/docs/changelogs/preview.md +355 -454
  7. package/dist/docs/cli/checkpointing.md +3 -1
  8. package/dist/docs/cli/cli-reference.md +1 -0
  9. package/dist/docs/cli/custom-commands.md +7 -5
  10. package/dist/docs/cli/enterprise.md +15 -9
  11. package/dist/docs/cli/git-worktrees.md +107 -0
  12. package/dist/docs/cli/model-steering.md +4 -3
  13. package/dist/docs/cli/model.md +3 -1
  14. package/dist/docs/cli/notifications.md +4 -3
  15. package/dist/docs/cli/plan-mode.md +28 -8
  16. package/dist/docs/cli/sandbox.md +24 -4
  17. package/dist/docs/cli/session-management.md +6 -0
  18. package/dist/docs/cli/settings.md +14 -1
  19. package/dist/docs/cli/skills.md +4 -2
  20. package/dist/docs/cli/system-prompt.md +3 -1
  21. package/dist/docs/cli/telemetry.md +6 -3
  22. package/dist/docs/cli/themes.md +12 -8
  23. package/dist/docs/cli/tutorials/file-management.md +8 -6
  24. package/dist/docs/cli/tutorials/mcp-setup.md +5 -3
  25. package/dist/docs/cli/tutorials/memory-management.md +6 -6
  26. package/dist/docs/cli/tutorials/plan-mode-steering.md +4 -3
  27. package/dist/docs/cli/tutorials/shell-commands.md +3 -3
  28. package/dist/docs/core/remote-agents.md +8 -3
  29. package/dist/docs/core/subagents.md +21 -13
  30. package/dist/docs/extensions/reference.md +8 -3
  31. package/dist/docs/get-started/authentication.md +60 -50
  32. package/dist/docs/get-started/examples.md +3 -1
  33. package/dist/docs/get-started/gemini-3.md +11 -5
  34. package/dist/docs/hooks/index.md +3 -1
  35. package/dist/docs/hooks/writing-hooks.md +2 -2
  36. package/dist/docs/ide-integration/ide-companion-spec.md +5 -3
  37. package/dist/docs/ide-integration/index.md +8 -4
  38. package/dist/docs/issue-and-pr-automation.md +3 -1
  39. package/dist/docs/local-development.md +3 -1
  40. package/dist/docs/reference/commands.md +2 -2
  41. package/dist/docs/reference/configuration.md +410 -16
  42. package/dist/docs/reference/policy-engine.md +47 -19
  43. package/dist/docs/reference/tools.md +3 -1
  44. package/dist/docs/release-confidence.md +7 -3
  45. package/dist/docs/releases.md +11 -7
  46. package/dist/docs/resources/faq.md +13 -0
  47. package/dist/docs/resources/tos-privacy.md +4 -2
  48. package/dist/docs/resources/troubleshooting.md +3 -1
  49. package/dist/docs/sidebar.json +5 -0
  50. package/dist/docs/tools/mcp-server.md +17 -9
  51. package/dist/docs/tools/planning.md +3 -1
  52. package/dist/docs/tools/shell.md +4 -4
  53. package/dist/docs/tools/todos.md +2 -1
  54. package/dist/{google-gemini-cli-core-0.35.0-preview.1.tgz → google-gemini-cli-core-0.36.0-nightly.20260317.2f90b4653.tgz} +0 -0
  55. package/dist/src/agent/agent-session.d.ts +37 -0
  56. package/dist/src/agent/agent-session.js +168 -0
  57. package/dist/src/agent/agent-session.js.map +1 -0
  58. package/dist/src/agent/agent-session.test.d.ts +6 -0
  59. package/dist/src/agent/agent-session.test.js +217 -0
  60. package/dist/src/agent/agent-session.test.js.map +1 -0
  61. package/dist/src/agent/content-utils.d.ts +33 -0
  62. package/dist/src/agent/content-utils.js +135 -0
  63. package/dist/src/agent/content-utils.js.map +1 -0
  64. package/dist/src/agent/content-utils.test.d.ts +6 -0
  65. package/dist/src/agent/content-utils.test.js +223 -0
  66. package/dist/src/agent/content-utils.test.js.map +1 -0
  67. package/dist/src/agent/mock.d.ts +9 -12
  68. package/dist/src/agent/mock.js +88 -129
  69. package/dist/src/agent/mock.js.map +1 -1
  70. package/dist/src/agent/mock.test.js +114 -144
  71. package/dist/src/agent/mock.test.js.map +1 -1
  72. package/dist/src/agent/types.d.ts +21 -21
  73. package/dist/src/agents/a2a-client-manager.d.ts +2 -11
  74. package/dist/src/agents/a2a-client-manager.js +3 -19
  75. package/dist/src/agents/a2a-client-manager.js.map +1 -1
  76. package/dist/src/agents/a2a-client-manager.test.js +6 -10
  77. package/dist/src/agents/a2a-client-manager.test.js.map +1 -1
  78. package/dist/src/agents/agent-scheduler.d.ts +6 -0
  79. package/dist/src/agents/agent-scheduler.js +3 -2
  80. package/dist/src/agents/agent-scheduler.js.map +1 -1
  81. package/dist/src/agents/agent-scheduler.test.js +6 -0
  82. package/dist/src/agents/agent-scheduler.test.js.map +1 -1
  83. package/dist/src/agents/browser/browserAgentDefinition.js +10 -1
  84. package/dist/src/agents/browser/browserAgentDefinition.js.map +1 -1
  85. package/dist/src/agents/browser/browserAgentFactory.js +62 -1
  86. package/dist/src/agents/browser/browserAgentFactory.js.map +1 -1
  87. package/dist/src/agents/browser/browserAgentFactory.test.js +73 -0
  88. package/dist/src/agents/browser/browserAgentFactory.test.js.map +1 -1
  89. package/dist/src/agents/browser/browserAgentInvocation.js +2 -97
  90. package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
  91. package/dist/src/agents/browser/browserAgentInvocation.test.js +30 -0
  92. package/dist/src/agents/browser/browserAgentInvocation.test.js.map +1 -1
  93. package/dist/src/agents/browser/browserManager.js +11 -0
  94. package/dist/src/agents/browser/browserManager.js.map +1 -1
  95. package/dist/src/agents/browser/browserManager.test.js +37 -0
  96. package/dist/src/agents/browser/browserManager.test.js.map +1 -1
  97. package/dist/src/agents/browser/mcpToolWrapper.d.ts +4 -2
  98. package/dist/src/agents/browser/mcpToolWrapper.js +30 -8
  99. package/dist/src/agents/browser/mcpToolWrapper.js.map +1 -1
  100. package/dist/src/agents/browser/mcpToolWrapper.test.js +30 -0
  101. package/dist/src/agents/browser/mcpToolWrapper.test.js.map +1 -1
  102. package/dist/src/agents/browser/mcpToolWrapperConfirmation.test.js +3 -3
  103. package/dist/src/agents/codebase-investigator.js +3 -3
  104. package/dist/src/agents/codebase-investigator.js.map +1 -1
  105. package/dist/src/agents/local-executor.d.ts +3 -1
  106. package/dist/src/agents/local-executor.js +138 -39
  107. package/dist/src/agents/local-executor.js.map +1 -1
  108. package/dist/src/agents/local-executor.test.js +305 -12
  109. package/dist/src/agents/local-executor.test.js.map +1 -1
  110. package/dist/src/agents/local-invocation.js +43 -24
  111. package/dist/src/agents/local-invocation.js.map +1 -1
  112. package/dist/src/agents/local-invocation.test.js +89 -14
  113. package/dist/src/agents/local-invocation.test.js.map +1 -1
  114. package/dist/src/agents/memory-manager-agent.d.ts +25 -0
  115. package/dist/src/agents/memory-manager-agent.js +137 -0
  116. package/dist/src/agents/memory-manager-agent.js.map +1 -0
  117. package/dist/src/agents/memory-manager-agent.test.d.ts +6 -0
  118. package/dist/src/agents/memory-manager-agent.test.js +117 -0
  119. package/dist/src/agents/memory-manager-agent.test.js.map +1 -0
  120. package/dist/src/agents/registry.js +21 -3
  121. package/dist/src/agents/registry.js.map +1 -1
  122. package/dist/src/agents/registry.test.js +23 -24
  123. package/dist/src/agents/registry.test.js.map +1 -1
  124. package/dist/src/agents/remote-invocation.d.ts +3 -1
  125. package/dist/src/agents/remote-invocation.js +10 -5
  126. package/dist/src/agents/remote-invocation.js.map +1 -1
  127. package/dist/src/agents/remote-invocation.test.js +64 -41
  128. package/dist/src/agents/remote-invocation.test.js.map +1 -1
  129. package/dist/src/agents/subagent-tool-wrapper.js +1 -1
  130. package/dist/src/agents/subagent-tool-wrapper.js.map +1 -1
  131. package/dist/src/agents/types.d.ts +12 -0
  132. package/dist/src/agents/types.js +14 -0
  133. package/dist/src/agents/types.js.map +1 -1
  134. package/dist/src/availability/policyHelpers.js +41 -1
  135. package/dist/src/availability/policyHelpers.js.map +1 -1
  136. package/dist/src/availability/policyHelpers.test.js +47 -0
  137. package/dist/src/availability/policyHelpers.test.js.map +1 -1
  138. package/dist/src/code_assist/admin/admin_controls.js +11 -0
  139. package/dist/src/code_assist/admin/admin_controls.js.map +1 -1
  140. package/dist/src/code_assist/admin/admin_controls.test.js +68 -0
  141. package/dist/src/code_assist/admin/admin_controls.test.js.map +1 -1
  142. package/dist/src/code_assist/admin/mcpUtils.d.ts +16 -1
  143. package/dist/src/code_assist/admin/mcpUtils.js +43 -0
  144. package/dist/src/code_assist/admin/mcpUtils.js.map +1 -1
  145. package/dist/src/code_assist/admin/mcpUtils.test.js +130 -1
  146. package/dist/src/code_assist/admin/mcpUtils.test.js.map +1 -1
  147. package/dist/src/code_assist/types.d.ts +458 -0
  148. package/dist/src/code_assist/types.js +26 -0
  149. package/dist/src/code_assist/types.js.map +1 -1
  150. package/dist/src/config/agent-loop-context.d.ts +6 -0
  151. package/dist/src/config/config.d.ts +41 -10
  152. package/dist/src/config/config.js +96 -19
  153. package/dist/src/config/config.js.map +1 -1
  154. package/dist/src/config/config.test.js +29 -1
  155. package/dist/src/config/config.test.js.map +1 -1
  156. package/dist/src/config/defaultModelConfigs.js +265 -9
  157. package/dist/src/config/defaultModelConfigs.js.map +1 -1
  158. package/dist/src/config/models.d.ts +13 -2
  159. package/dist/src/config/models.js +31 -3
  160. package/dist/src/config/models.js.map +1 -1
  161. package/dist/src/config/models.test.js +52 -7
  162. package/dist/src/config/models.test.js.map +1 -1
  163. package/dist/src/config/path-validation.test.d.ts +6 -0
  164. package/dist/src/config/path-validation.test.js +59 -0
  165. package/dist/src/config/path-validation.test.js.map +1 -0
  166. package/dist/src/core/client.d.ts +1 -0
  167. package/dist/src/core/client.js +6 -1
  168. package/dist/src/core/client.js.map +1 -1
  169. package/dist/src/core/client.test.js +9 -1
  170. package/dist/src/core/client.test.js.map +1 -1
  171. package/dist/src/core/contentGenerator.js +36 -6
  172. package/dist/src/core/contentGenerator.js.map +1 -1
  173. package/dist/src/core/contentGenerator.test.js +97 -3
  174. package/dist/src/core/contentGenerator.test.js.map +1 -1
  175. package/dist/src/core/geminiChat.js +2 -2
  176. package/dist/src/core/geminiChat.js.map +1 -1
  177. package/dist/src/core/prompts.test.js +10 -0
  178. package/dist/src/core/prompts.test.js.map +1 -1
  179. package/dist/src/generated/git-commit.d.ts +2 -2
  180. package/dist/src/generated/git-commit.js +2 -2
  181. package/dist/src/generated/git-commit.js.map +1 -1
  182. package/dist/src/ide/ide-connection-utils.js +2 -7
  183. package/dist/src/ide/ide-connection-utils.js.map +1 -1
  184. package/dist/src/ide/ide-connection-utils.test.js +7 -0
  185. package/dist/src/ide/ide-connection-utils.test.js.map +1 -1
  186. package/dist/src/index.d.ts +4 -0
  187. package/dist/src/index.js +4 -0
  188. package/dist/src/index.js.map +1 -1
  189. package/dist/src/policy/config.js +2 -0
  190. package/dist/src/policy/config.js.map +1 -1
  191. package/dist/src/policy/config.test.js +15 -0
  192. package/dist/src/policy/config.test.js.map +1 -1
  193. package/dist/src/policy/memory-manager-policy.test.d.ts +6 -0
  194. package/dist/src/policy/memory-manager-policy.test.js +80 -0
  195. package/dist/src/policy/memory-manager-policy.test.js.map +1 -0
  196. package/dist/src/policy/policies/memory-manager.toml +10 -0
  197. package/dist/src/policy/policies/plan.toml +14 -0
  198. package/dist/src/policy/policies/yolo.toml +1 -0
  199. package/dist/src/policy/policy-engine.js +33 -6
  200. package/dist/src/policy/policy-engine.js.map +1 -1
  201. package/dist/src/policy/policy-engine.test.js +85 -3
  202. package/dist/src/policy/policy-engine.test.js.map +1 -1
  203. package/dist/src/policy/policy-updater.test.js +44 -0
  204. package/dist/src/policy/policy-updater.test.js.map +1 -1
  205. package/dist/src/policy/toml-loader.js +2 -0
  206. package/dist/src/policy/toml-loader.js.map +1 -1
  207. package/dist/src/policy/types.d.ts +11 -0
  208. package/dist/src/policy/types.js +5 -0
  209. package/dist/src/policy/types.js.map +1 -1
  210. package/dist/src/prompts/promptProvider.js +5 -3
  211. package/dist/src/prompts/promptProvider.js.map +1 -1
  212. package/dist/src/prompts/promptProvider.test.js +1 -0
  213. package/dist/src/prompts/promptProvider.test.js.map +1 -1
  214. package/dist/src/prompts/snippets-memory-manager.test.d.ts +6 -0
  215. package/dist/src/prompts/snippets-memory-manager.test.js +31 -0
  216. package/dist/src/prompts/snippets-memory-manager.test.js.map +1 -0
  217. package/dist/src/prompts/snippets.d.ts +2 -0
  218. package/dist/src/prompts/snippets.js +7 -3
  219. package/dist/src/prompts/snippets.js.map +1 -1
  220. package/dist/src/prompts/snippets.legacy.d.ts +5 -0
  221. package/dist/src/prompts/snippets.legacy.js +30 -2
  222. package/dist/src/prompts/snippets.legacy.js.map +1 -1
  223. package/dist/src/routing/strategies/classifierStrategy.js +1 -1
  224. package/dist/src/routing/strategies/classifierStrategy.js.map +1 -1
  225. package/dist/src/routing/strategies/defaultStrategy.js +1 -1
  226. package/dist/src/routing/strategies/defaultStrategy.js.map +1 -1
  227. package/dist/src/routing/strategies/fallbackStrategy.js +1 -1
  228. package/dist/src/routing/strategies/fallbackStrategy.js.map +1 -1
  229. package/dist/src/routing/strategies/numericalClassifierStrategy.js +1 -1
  230. package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -1
  231. package/dist/src/routing/strategies/overrideStrategy.js +1 -1
  232. package/dist/src/routing/strategies/overrideStrategy.js.map +1 -1
  233. package/dist/src/sandbox/macos/MacOsSandboxManager.d.ts +28 -0
  234. package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.d.ts +1 -0
  235. package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.js +160 -0
  236. package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.js.map +1 -0
  237. package/dist/src/sandbox/macos/MacOsSandboxManager.js +33 -0
  238. package/dist/src/sandbox/macos/MacOsSandboxManager.js.map +1 -0
  239. package/dist/src/sandbox/macos/MacOsSandboxManager.test.d.ts +1 -0
  240. package/dist/src/sandbox/macos/MacOsSandboxManager.test.js +87 -0
  241. package/dist/src/sandbox/macos/MacOsSandboxManager.test.js.map +1 -0
  242. package/dist/src/sandbox/macos/baseProfile.d.ts +20 -0
  243. package/dist/src/sandbox/macos/baseProfile.js +93 -0
  244. package/dist/src/sandbox/macos/baseProfile.js.map +1 -0
  245. package/dist/src/sandbox/macos/seatbeltArgsBuilder.d.ts +25 -0
  246. package/dist/src/sandbox/macos/seatbeltArgsBuilder.js +58 -0
  247. package/dist/src/sandbox/macos/seatbeltArgsBuilder.js.map +1 -0
  248. package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.d.ts +1 -0
  249. package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js +80 -0
  250. package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js.map +1 -0
  251. package/dist/src/scheduler/scheduler.js +2 -0
  252. package/dist/src/scheduler/scheduler.js.map +1 -1
  253. package/dist/src/services/contextManager.js +2 -3
  254. package/dist/src/services/contextManager.js.map +1 -1
  255. package/dist/src/services/contextManager.test.js +1 -1
  256. package/dist/src/services/contextManager.test.js.map +1 -1
  257. package/dist/src/services/modelConfigService.d.ts +36 -1
  258. package/dist/src/services/modelConfigService.js +66 -0
  259. package/dist/src/services/modelConfigService.js.map +1 -1
  260. package/dist/src/services/sandboxManager.d.ts +3 -4
  261. package/dist/src/services/sandboxManager.js +1 -14
  262. package/dist/src/services/sandboxManager.js.map +1 -1
  263. package/dist/src/services/sandboxManager.test.js +13 -16
  264. package/dist/src/services/sandboxManager.test.js.map +1 -1
  265. package/dist/src/services/sandboxManagerFactory.d.ts +11 -0
  266. package/dist/src/services/sandboxManagerFactory.js +31 -0
  267. package/dist/src/services/sandboxManagerFactory.js.map +1 -0
  268. package/dist/src/services/sandboxedFileSystemService.d.ts +17 -0
  269. package/dist/src/services/sandboxedFileSystemService.js +95 -0
  270. package/dist/src/services/sandboxedFileSystemService.js.map +1 -0
  271. package/dist/src/services/sandboxedFileSystemService.test.d.ts +6 -0
  272. package/dist/src/services/sandboxedFileSystemService.test.js +87 -0
  273. package/dist/src/services/sandboxedFileSystemService.test.js.map +1 -0
  274. package/dist/src/services/scripts/GeminiSandbox.cs +370 -0
  275. package/dist/src/services/shellExecutionService.d.ts +2 -0
  276. package/dist/src/services/shellExecutionService.js +79 -75
  277. package/dist/src/services/shellExecutionService.js.map +1 -1
  278. package/dist/src/services/trackerTypes.d.ts +1 -0
  279. package/dist/src/services/trackerTypes.js +1 -0
  280. package/dist/src/services/trackerTypes.js.map +1 -1
  281. package/dist/src/services/windowsSandboxManager.d.ts +27 -0
  282. package/dist/src/services/windowsSandboxManager.js +148 -0
  283. package/dist/src/services/windowsSandboxManager.js.map +1 -0
  284. package/dist/src/services/windowsSandboxManager.test.d.ts +6 -0
  285. package/dist/src/services/windowsSandboxManager.test.js +59 -0
  286. package/dist/src/services/windowsSandboxManager.test.js.map +1 -0
  287. package/dist/src/services/worktreeService.d.ts +33 -0
  288. package/dist/src/services/worktreeService.js +174 -0
  289. package/dist/src/services/worktreeService.js.map +1 -0
  290. package/dist/src/services/worktreeService.test.d.ts +6 -0
  291. package/dist/src/services/worktreeService.test.js +200 -0
  292. package/dist/src/services/worktreeService.test.js.map +1 -0
  293. package/dist/src/telemetry/clearcut-logger/clearcut-logger.js +4 -0
  294. package/dist/src/telemetry/clearcut-logger/clearcut-logger.js.map +1 -1
  295. package/dist/src/telemetry/clearcut-logger/event-metadata-key.d.ts +1 -0
  296. package/dist/src/telemetry/clearcut-logger/event-metadata-key.js +2 -0
  297. package/dist/src/telemetry/clearcut-logger/event-metadata-key.js.map +1 -1
  298. package/dist/src/telemetry/loggers.test.js +62 -40
  299. package/dist/src/telemetry/loggers.test.js.map +1 -1
  300. package/dist/src/telemetry/types.d.ts +1 -0
  301. package/dist/src/telemetry/types.js +3 -0
  302. package/dist/src/telemetry/types.js.map +1 -1
  303. package/dist/src/tools/definitions/model-family-sets/default-legacy.js +8 -1
  304. package/dist/src/tools/definitions/model-family-sets/default-legacy.js.map +1 -1
  305. package/dist/src/tools/definitions/model-family-sets/gemini-3.js +8 -1
  306. package/dist/src/tools/definitions/model-family-sets/gemini-3.js.map +1 -1
  307. package/dist/src/tools/exit-plan-mode.d.ts +6 -1
  308. package/dist/src/tools/exit-plan-mode.js +17 -6
  309. package/dist/src/tools/exit-plan-mode.js.map +1 -1
  310. package/dist/src/tools/exit-plan-mode.test.js +22 -1
  311. package/dist/src/tools/exit-plan-mode.test.js.map +1 -1
  312. package/dist/src/tools/mcp-client-manager.d.ts +22 -3
  313. package/dist/src/tools/mcp-client-manager.js +84 -32
  314. package/dist/src/tools/mcp-client-manager.js.map +1 -1
  315. package/dist/src/tools/mcp-client-manager.test.js +76 -56
  316. package/dist/src/tools/mcp-client-manager.test.js.map +1 -1
  317. package/dist/src/tools/mcp-client.d.ts +15 -6
  318. package/dist/src/tools/mcp-client.js +85 -71
  319. package/dist/src/tools/mcp-client.js.map +1 -1
  320. package/dist/src/tools/mcp-client.test.js +195 -88
  321. package/dist/src/tools/mcp-client.test.js.map +1 -1
  322. package/dist/src/tools/tool-registry.d.ts +2 -1
  323. package/dist/src/tools/tool-registry.js +12 -1
  324. package/dist/src/tools/tool-registry.js.map +1 -1
  325. package/dist/src/tools/tool-registry.test.js +15 -0
  326. package/dist/src/tools/tool-registry.test.js.map +1 -1
  327. package/dist/src/tools/tools.d.ts +1 -1
  328. package/dist/src/tools/tools.js.map +1 -1
  329. package/dist/src/tools/trackerTools.js +6 -1
  330. package/dist/src/tools/trackerTools.js.map +1 -1
  331. package/dist/src/tools/trackerTools.test.js +9 -1
  332. package/dist/src/tools/trackerTools.test.js.map +1 -1
  333. package/dist/src/tools/write-todos.js +1 -0
  334. package/dist/src/tools/write-todos.js.map +1 -1
  335. package/dist/src/tools/write-todos.test.js +4 -1
  336. package/dist/src/tools/write-todos.test.js.map +1 -1
  337. package/dist/src/utils/agent-sanitization-utils.d.ts +23 -0
  338. package/dist/src/utils/agent-sanitization-utils.js +123 -0
  339. package/dist/src/utils/agent-sanitization-utils.js.map +1 -0
  340. package/dist/src/utils/agent-sanitization-utils.test.d.ts +6 -0
  341. package/dist/src/utils/agent-sanitization-utils.test.js +83 -0
  342. package/dist/src/utils/agent-sanitization-utils.test.js.map +1 -0
  343. package/dist/src/utils/browserConsent.d.ts +17 -0
  344. package/dist/src/utils/browserConsent.js +78 -0
  345. package/dist/src/utils/browserConsent.js.map +1 -0
  346. package/dist/src/utils/browserConsent.test.d.ts +6 -0
  347. package/dist/src/utils/browserConsent.test.js +93 -0
  348. package/dist/src/utils/browserConsent.test.js.map +1 -0
  349. package/dist/src/utils/compatibility.d.ts +16 -0
  350. package/dist/src/utils/compatibility.js +58 -9
  351. package/dist/src/utils/compatibility.js.map +1 -1
  352. package/dist/src/utils/compatibility.test.js +127 -29
  353. package/dist/src/utils/compatibility.test.js.map +1 -1
  354. package/dist/src/utils/memoryDiscovery.d.ts +2 -2
  355. package/dist/src/utils/memoryDiscovery.js +5 -10
  356. package/dist/src/utils/memoryDiscovery.js.map +1 -1
  357. package/dist/src/utils/memoryDiscovery.test.js +37 -37
  358. package/dist/src/utils/memoryDiscovery.test.js.map +1 -1
  359. package/dist/src/utils/memoryImportProcessor.js +5 -5
  360. package/dist/src/utils/memoryImportProcessor.js.map +1 -1
  361. package/dist/src/utils/surface.js +4 -3
  362. package/dist/src/utils/surface.js.map +1 -1
  363. package/dist/src/utils/toolCallContext.d.ts +2 -0
  364. package/dist/src/utils/toolCallContext.js.map +1 -1
  365. package/dist/tsconfig.tsbuildinfo +1 -1
  366. package/package.json +2 -1
@@ -1,6 +1,6 @@
1
- # Preview release: v0.34.0-preview.3
1
+ # Preview release: v0.35.0-preview.2
2
2
 
3
- Released: March 13, 2026
3
+ Released: March 19, 2026
4
4
 
5
5
  Our preview release includes the latest, new, and experimental features. This
6
6
  release may not be as stable as our [latest weekly release](latest.md).
@@ -13,467 +13,368 @@ npm install -g @google/gemini-cli@preview
13
13
 
14
14
  ## Highlights
15
15
 
16
- - **Plan Mode Enabled by Default:** Plan Mode is now enabled out-of-the-box,
17
- providing a structured planning workflow and keeping approved plans during
18
- chat compression.
19
- - **Sandboxing Enhancements:** Added experimental LXC container sandbox support
20
- and native gVisor (`runsc`) sandboxing for improved security and isolation.
21
- - **Tracker Visualization and Tools:** Introduced CRUD tools and visualization
22
- for trackers, along with task tracker strategy improvements.
23
- - **Browser Agent Improvements:** Enhanced the browser agent with progress
24
- emission, a new automation overlay, and additional integration tests.
25
- - **CLI and UI Updates:** Standardized semantic focus colors, polished shell
26
- autocomplete rendering, unified keybinding infrastructure, and added custom
27
- footer configuration options.
16
+ - **Subagents & Architecture Enhancements**: Enabled subagents and laid the
17
+ foundation for subagent tool isolation. Added proxy routing support for remote
18
+ A2A subagents and integrated `SandboxManager` to sandbox all process-spawning
19
+ tools.
20
+ - **CLI & UI Improvements**: Introduced customizable keyboard shortcuts and
21
+ support for literal character keybindings. Added missing vim mode motions and
22
+ CJK input support. Enabled code splitting and deferred UI loading for improved
23
+ performance.
24
+ - **Context & Tools Optimization**: JIT context loading is now enabled by
25
+ default with deduplication for project memory. Introduced a model-driven
26
+ parallel tool scheduler and allowed safe tools to execute concurrently.
27
+ - **Security & Extensions**: Implemented cryptographic integrity verification
28
+ for extension updates and added a `disableAlwaysAllow` setting to prevent
29
+ auto-approvals for enhanced security.
30
+ - **Plan Mode & Web Fetch Updates**: Added an 'All the above' option for
31
+ multi-select AskUser questions in Plan Mode. Rolled out Stage 1 and Stage 2
32
+ security and consistency improvements for the `web_fetch` tool.
28
33
 
29
34
  ## What's Changed
30
35
 
31
- - fix(patch): cherry-pick 24adacd to release/v0.34.0-preview.2-pr-22332 to patch
32
- version v0.34.0-preview.2 and create version 0.34.0-preview.3 by
36
+ - fix(patch): cherry-pick 4e5dfd0 to release/v0.35.0-preview.1-pr-23074 to patch
37
+ version v0.35.0-preview.1 and create version 0.35.0-preview.2 by
33
38
  @gemini-cli-robot in
34
- [#22391](https://github.com/google-gemini/gemini-cli/pull/22391)
35
- - fix(patch): cherry-pick 8432bce to release/v0.34.0-preview.1-pr-22069 to patch
36
- version v0.34.0-preview.1 and create version 0.34.0-preview.2 by
39
+ [#23134](https://github.com/google-gemini/gemini-cli/pull/23134)
40
+ - feat(cli): customizable keyboard shortcuts by @scidomino in
41
+ [#21945](https://github.com/google-gemini/gemini-cli/pull/21945)
42
+ - feat(core): Thread `AgentLoopContext` through core. by @joshualitt in
43
+ [#21944](https://github.com/google-gemini/gemini-cli/pull/21944)
44
+ - chore(release): bump version to 0.35.0-nightly.20260311.657f19c1f by
37
45
  @gemini-cli-robot in
38
- [#22205](https://github.com/google-gemini/gemini-cli/pull/22205)
39
- - fix(patch): cherry-pick 45faf4d to release/v0.34.0-preview.0-pr-22148
40
- [CONFLICTS] by @gemini-cli-robot in
41
- [#22174](https://github.com/google-gemini/gemini-cli/pull/22174)
42
- - feat(cli): add chat resume footer on session quit by @lordshashank in
43
- [#20667](https://github.com/google-gemini/gemini-cli/pull/20667)
44
- - Support bold and other styles in svg snapshots by @jacob314 in
45
- [#20937](https://github.com/google-gemini/gemini-cli/pull/20937)
46
- - fix(core): increase A2A agent timeout to 30 minutes by @adamfweidman in
47
- [#21028](https://github.com/google-gemini/gemini-cli/pull/21028)
48
- - Cleanup old branches. by @jacob314 in
49
- [#19354](https://github.com/google-gemini/gemini-cli/pull/19354)
50
- - chore(release): bump version to 0.34.0-nightly.20260303.34f0c1538 by
51
- @gemini-cli-robot in
52
- [#21034](https://github.com/google-gemini/gemini-cli/pull/21034)
53
- - feat(ui): standardize semantic focus colors and enhance history visibility by
54
- @keithguerin in
55
- [#20745](https://github.com/google-gemini/gemini-cli/pull/20745)
56
- - fix: merge duplicate imports in packages/core (3/4) by @Nixxx19 in
57
- [#20928](https://github.com/google-gemini/gemini-cli/pull/20928)
58
- - Add extra safety checks for proto pollution by @jacob314 in
59
- [#20396](https://github.com/google-gemini/gemini-cli/pull/20396)
60
- - feat(core): Add tracker CRUD tools & visualization by @anj-s in
61
- [#19489](https://github.com/google-gemini/gemini-cli/pull/19489)
62
- - Revert "fix(ui): persist expansion in AskUser dialog when navigating options"
63
- by @jacob314 in
64
- [#21042](https://github.com/google-gemini/gemini-cli/pull/21042)
65
- - Changelog for v0.33.0-preview.0 by @gemini-cli-robot in
66
- [#21030](https://github.com/google-gemini/gemini-cli/pull/21030)
67
- - fix: model persistence for all scenarios by @sripasg in
68
- [#21051](https://github.com/google-gemini/gemini-cli/pull/21051)
69
- - chore/release: bump version to 0.34.0-nightly.20260304.28af4e127 by
70
- @gemini-cli-robot in
71
- [#21054](https://github.com/google-gemini/gemini-cli/pull/21054)
72
- - Consistently guard restarts against concurrent auto updates by @scidomino in
73
- [#21016](https://github.com/google-gemini/gemini-cli/pull/21016)
74
- - Defensive coding to reduce the risk of Maximum update depth errors by
75
- @jacob314 in [#20940](https://github.com/google-gemini/gemini-cli/pull/20940)
76
- - fix(cli): Polish shell autocomplete rendering to be a little more shell native
77
- feeling. by @jacob314 in
78
- [#20931](https://github.com/google-gemini/gemini-cli/pull/20931)
79
- - Docs: Update plan mode docs by @jkcinouye in
80
- [#19682](https://github.com/google-gemini/gemini-cli/pull/19682)
81
- - fix(mcp): Notifications/tools/list_changed support not working by @jacob314 in
82
- [#21050](https://github.com/google-gemini/gemini-cli/pull/21050)
83
- - fix(cli): register extension lifecycle events in DebugProfiler by
84
- @fayerman-source in
85
- [#20101](https://github.com/google-gemini/gemini-cli/pull/20101)
86
- - chore(dev): update vscode settings for typescriptreact by @rohit-4321 in
87
- [#19907](https://github.com/google-gemini/gemini-cli/pull/19907)
88
- - fix(cli): enable multi-arch docker builds for sandbox by @ru-aish in
89
- [#19821](https://github.com/google-gemini/gemini-cli/pull/19821)
90
- - Changelog for v0.32.0 by @gemini-cli-robot in
91
- [#21033](https://github.com/google-gemini/gemini-cli/pull/21033)
92
- - Changelog for v0.33.0-preview.1 by @gemini-cli-robot in
93
- [#21058](https://github.com/google-gemini/gemini-cli/pull/21058)
94
- - feat(core): improve @scripts/copy_files.js autocomplete to prioritize
95
- filenames by @sehoon38 in
96
- [#21064](https://github.com/google-gemini/gemini-cli/pull/21064)
97
- - feat(sandbox): add experimental LXC container sandbox support by @h30s in
98
- [#20735](https://github.com/google-gemini/gemini-cli/pull/20735)
99
- - feat(evals): add overall pass rate row to eval nightly summary table by
100
- @gundermanc in
101
- [#20905](https://github.com/google-gemini/gemini-cli/pull/20905)
102
- - feat(telemetry): include language in telemetry and fix accepted lines
103
- computation by @gundermanc in
104
- [#21126](https://github.com/google-gemini/gemini-cli/pull/21126)
105
- - Changelog for v0.32.1 by @gemini-cli-robot in
106
- [#21055](https://github.com/google-gemini/gemini-cli/pull/21055)
107
- - feat(core): add robustness tests, logging, and metrics for CodeAssistServer
108
- SSE parsing by @yunaseoul in
109
- [#21013](https://github.com/google-gemini/gemini-cli/pull/21013)
110
- - feat: add issue assignee workflow by @kartikangiras in
111
- [#21003](https://github.com/google-gemini/gemini-cli/pull/21003)
112
- - fix: improve error message when OAuth succeeds but project ID is required by
113
- @Nixxx19 in [#21070](https://github.com/google-gemini/gemini-cli/pull/21070)
114
- - feat(loop-reduction): implement iterative loop detection and model feedback by
115
- @aishaneeshah in
116
- [#20763](https://github.com/google-gemini/gemini-cli/pull/20763)
117
- - chore(github): require prompt approvers for agent prompt files by @gundermanc
118
- in [#20896](https://github.com/google-gemini/gemini-cli/pull/20896)
119
- - Docs: Create tools reference by @jkcinouye in
120
- [#19470](https://github.com/google-gemini/gemini-cli/pull/19470)
121
- - fix(core, a2a-server): prevent hang during OAuth in non-interactive sessions
122
- by @spencer426 in
123
- [#21045](https://github.com/google-gemini/gemini-cli/pull/21045)
124
- - chore(cli): enable deprecated settings removal by default by @yashodipmore in
125
- [#20682](https://github.com/google-gemini/gemini-cli/pull/20682)
126
- - feat(core): Disable fast ack helper for hints. by @joshualitt in
127
- [#21011](https://github.com/google-gemini/gemini-cli/pull/21011)
128
- - fix(ui): suppress redundant failure note when tool error note is shown by
129
- @NTaylorMullen in
130
- [#21078](https://github.com/google-gemini/gemini-cli/pull/21078)
131
- - docs: document planning workflows with Conductor example by @jerop in
132
- [#21166](https://github.com/google-gemini/gemini-cli/pull/21166)
133
- - feat(release): ship esbuild bundle in npm package by @genneth in
134
- [#19171](https://github.com/google-gemini/gemini-cli/pull/19171)
135
- - fix(extensions): preserve symlinks in extension source path while enforcing
136
- folder trust by @galz10 in
137
- [#20867](https://github.com/google-gemini/gemini-cli/pull/20867)
138
- - fix(cli): defer tool exclusions to policy engine in non-interactive mode by
139
- @EricRahm in [#20639](https://github.com/google-gemini/gemini-cli/pull/20639)
140
- - fix(ui): removed double padding on rendered content by @devr0306 in
141
- [#21029](https://github.com/google-gemini/gemini-cli/pull/21029)
142
- - fix(core): truncate excessively long lines in grep search output by
143
- @gundermanc in
144
- [#21147](https://github.com/google-gemini/gemini-cli/pull/21147)
145
- - feat: add custom footer configuration via `/footer` by @jackwotherspoon in
146
- [#19001](https://github.com/google-gemini/gemini-cli/pull/19001)
147
- - perf(core): fix OOM crash in long-running sessions by @WizardsForgeGames in
148
- [#19608](https://github.com/google-gemini/gemini-cli/pull/19608)
149
- - refactor(cli): categorize built-in themes into dark/ and light/ directories by
150
- @JayadityaGit in
151
- [#18634](https://github.com/google-gemini/gemini-cli/pull/18634)
152
- - fix(core): explicitly allow codebase_investigator and cli_help in read-only
153
- mode by @Adib234 in
154
- [#21157](https://github.com/google-gemini/gemini-cli/pull/21157)
155
- - test: add browser agent integration tests by @kunal-10-cloud in
156
- [#21151](https://github.com/google-gemini/gemini-cli/pull/21151)
157
- - fix(cli): fix enabling kitty codes on Windows Terminal by @scidomino in
158
- [#21136](https://github.com/google-gemini/gemini-cli/pull/21136)
159
- - refactor(core): extract shared OAuth flow primitives from MCPOAuthProvider by
160
- @SandyTao520 in
161
- [#20895](https://github.com/google-gemini/gemini-cli/pull/20895)
162
- - fix(ui): add partial output to cancelled shell UI by @devr0306 in
163
- [#21178](https://github.com/google-gemini/gemini-cli/pull/21178)
164
- - fix(cli): replace hardcoded keybinding strings with dynamic formatters by
165
- @scidomino in [#21159](https://github.com/google-gemini/gemini-cli/pull/21159)
166
- - DOCS: Update quota and pricing page by @g-samroberts in
167
- [#21194](https://github.com/google-gemini/gemini-cli/pull/21194)
168
- - feat(telemetry): implement Clearcut logging for startup statistics by
169
- @yunaseoul in [#21172](https://github.com/google-gemini/gemini-cli/pull/21172)
170
- - feat(triage): add area/documentation to issue triage by @g-samroberts in
171
- [#21222](https://github.com/google-gemini/gemini-cli/pull/21222)
172
- - Fix so shell calls are formatted by @jacob314 in
173
- [#21237](https://github.com/google-gemini/gemini-cli/pull/21237)
174
- - feat(cli): add native gVisor (runsc) sandboxing support by @Zheyuan-Lin in
175
- [#21062](https://github.com/google-gemini/gemini-cli/pull/21062)
176
- - docs: use absolute paths for internal links in plan-mode.md by @jerop in
177
- [#21299](https://github.com/google-gemini/gemini-cli/pull/21299)
178
- - fix(core): prevent unhandled AbortError crash during stream loop detection by
179
- @7hokerz in [#21123](https://github.com/google-gemini/gemini-cli/pull/21123)
180
- - fix:reorder env var redaction checks to scan values first by @kartikangiras in
181
- [#21059](https://github.com/google-gemini/gemini-cli/pull/21059)
182
- - fix(acp): rename --experimental-acp to --acp & remove Zed-specific refrences
183
- by @skeshive in
184
- [#21171](https://github.com/google-gemini/gemini-cli/pull/21171)
185
- - feat(core): fallback to 2.5 models with no access for toolcalls by @sehoon38
186
- in [#21283](https://github.com/google-gemini/gemini-cli/pull/21283)
187
- - test(core): improve testing for API request/response parsing by @sehoon38 in
188
- [#21227](https://github.com/google-gemini/gemini-cli/pull/21227)
189
- - docs(links): update docs-writer skill and fix broken link by @g-samroberts in
190
- [#21314](https://github.com/google-gemini/gemini-cli/pull/21314)
191
- - Fix code colorizer ansi escape bug. by @jacob314 in
192
- [#21321](https://github.com/google-gemini/gemini-cli/pull/21321)
193
- - remove wildcard behavior on keybindings by @scidomino in
194
- [#21315](https://github.com/google-gemini/gemini-cli/pull/21315)
195
- - feat(acp): Add support for AI Gateway auth by @skeshive in
196
- [#21305](https://github.com/google-gemini/gemini-cli/pull/21305)
197
- - fix(theme): improve theme color contrast for macOS Terminal.app by @clocky in
198
- [#21175](https://github.com/google-gemini/gemini-cli/pull/21175)
199
- - feat (core): Implement tracker related SI changes by @anj-s in
200
- [#19964](https://github.com/google-gemini/gemini-cli/pull/19964)
201
- - Changelog for v0.33.0-preview.2 by @gemini-cli-robot in
202
- [#21333](https://github.com/google-gemini/gemini-cli/pull/21333)
203
- - Changelog for v0.33.0-preview.3 by @gemini-cli-robot in
204
- [#21347](https://github.com/google-gemini/gemini-cli/pull/21347)
205
- - docs: format release times as HH:MM UTC by @pavan-sh in
206
- [#20726](https://github.com/google-gemini/gemini-cli/pull/20726)
207
- - fix(cli): implement --all flag for extensions uninstall by @sehoon38 in
208
- [#21319](https://github.com/google-gemini/gemini-cli/pull/21319)
209
- - docs: fix incorrect relative links to command reference by @kanywst in
210
- [#20964](https://github.com/google-gemini/gemini-cli/pull/20964)
211
- - documentiong ensures ripgrep by @Jatin24062005 in
212
- [#21298](https://github.com/google-gemini/gemini-cli/pull/21298)
213
- - fix(core): handle AbortError thrown during processTurn by @MumuTW in
214
- [#21296](https://github.com/google-gemini/gemini-cli/pull/21296)
215
- - docs(cli): clarify ! command output visibility in shell commands tutorial by
216
- @MohammedADev in
217
- [#21041](https://github.com/google-gemini/gemini-cli/pull/21041)
218
- - fix: logic for task tracker strategy and remove tracker tools by @anj-s in
219
- [#21355](https://github.com/google-gemini/gemini-cli/pull/21355)
220
- - fix(partUtils): display media type and size for inline data parts by @Aboudjem
221
- in [#21358](https://github.com/google-gemini/gemini-cli/pull/21358)
222
- - Fix(accessibility): add screen reader support to RewindViewer by @Famous077 in
223
- [#20750](https://github.com/google-gemini/gemini-cli/pull/20750)
224
- - fix(hooks): propagate stopHookActive in AfterAgent retry path (#20426) by
225
- @Aarchi-07 in [#20439](https://github.com/google-gemini/gemini-cli/pull/20439)
226
- - fix(core): deduplicate GEMINI.md files by device/inode on case-insensitive
227
- filesystems (#19904) by @Nixxx19 in
228
- [#19915](https://github.com/google-gemini/gemini-cli/pull/19915)
229
- - feat(core): add concurrency safety guidance for subagent delegation (#17753)
230
- by @abhipatel12 in
231
- [#21278](https://github.com/google-gemini/gemini-cli/pull/21278)
232
- - feat(ui): dynamically generate all keybinding hints by @scidomino in
233
- [#21346](https://github.com/google-gemini/gemini-cli/pull/21346)
234
- - feat(core): implement unified KeychainService and migrate token storage by
235
- @ehedlund in [#21344](https://github.com/google-gemini/gemini-cli/pull/21344)
236
- - fix(cli): gracefully handle --resume when no sessions exist by @SandyTao520 in
237
- [#21429](https://github.com/google-gemini/gemini-cli/pull/21429)
238
- - fix(plan): keep approved plan during chat compression by @ruomengz in
239
- [#21284](https://github.com/google-gemini/gemini-cli/pull/21284)
240
- - feat(core): implement generic CacheService and optimize setupUser by @sehoon38
241
- in [#21374](https://github.com/google-gemini/gemini-cli/pull/21374)
242
- - Update quota and pricing documentation with subscription tiers by @srithreepo
243
- in [#21351](https://github.com/google-gemini/gemini-cli/pull/21351)
244
- - fix(core): append correct OTLP paths for HTTP exporters by
245
- @sebastien-prudhomme in
246
- [#16836](https://github.com/google-gemini/gemini-cli/pull/16836)
247
- - Changelog for v0.33.0-preview.4 by @gemini-cli-robot in
248
- [#21354](https://github.com/google-gemini/gemini-cli/pull/21354)
249
- - feat(cli): implement dot-prefixing for slash command conflicts by @ehedlund in
250
- [#20979](https://github.com/google-gemini/gemini-cli/pull/20979)
251
- - refactor(core): standardize MCP tool naming to mcp\_ FQN format by
252
- @abhipatel12 in
253
- [#21425](https://github.com/google-gemini/gemini-cli/pull/21425)
254
- - feat(cli): hide gemma settings from display and mark as experimental by
255
- @abhipatel12 in
256
- [#21471](https://github.com/google-gemini/gemini-cli/pull/21471)
257
- - feat(skills): refine string-reviewer guidelines and description by @clocky in
258
- [#20368](https://github.com/google-gemini/gemini-cli/pull/20368)
259
- - fix(core): whitelist TERM and COLORTERM in environment sanitization by
260
- @deadsmash07 in
261
- [#20514](https://github.com/google-gemini/gemini-cli/pull/20514)
262
- - fix(billing): fix overage strategy lifecycle and settings integration by
263
- @gsquared94 in
264
- [#21236](https://github.com/google-gemini/gemini-cli/pull/21236)
265
- - fix: expand paste placeholders in TextInput on submit by @Jefftree in
266
- [#19946](https://github.com/google-gemini/gemini-cli/pull/19946)
267
- - fix(core): add in-memory cache to ChatRecordingService to prevent OOM by
268
- @SandyTao520 in
269
- [#21502](https://github.com/google-gemini/gemini-cli/pull/21502)
270
- - feat(cli): overhaul thinking UI by @keithguerin in
271
- [#18725](https://github.com/google-gemini/gemini-cli/pull/18725)
272
- - fix(ui): unify Ctrl+O expansion hint experience across buffer modes by
273
- @jwhelangoog in
274
- [#21474](https://github.com/google-gemini/gemini-cli/pull/21474)
275
- - fix(cli): correct shell height reporting by @jacob314 in
276
- [#21492](https://github.com/google-gemini/gemini-cli/pull/21492)
277
- - Make test suite pass when the GEMINI_SYSTEM_MD env variable or
278
- GEMINI_WRITE_SYSTEM_MD variable happens to be set locally/ by @jacob314 in
279
- [#21480](https://github.com/google-gemini/gemini-cli/pull/21480)
280
- - Disallow underspecified types by @gundermanc in
281
- [#21485](https://github.com/google-gemini/gemini-cli/pull/21485)
282
- - refactor(cli): standardize on 'reload' verb for all components by @keithguerin
283
- in [#20654](https://github.com/google-gemini/gemini-cli/pull/20654)
284
- - feat(cli): Invert quota language to 'percent used' by @keithguerin in
285
- [#20100](https://github.com/google-gemini/gemini-cli/pull/20100)
286
- - Docs: Add documentation for notifications (experimental)(macOS) by @jkcinouye
287
- in [#21163](https://github.com/google-gemini/gemini-cli/pull/21163)
288
- - Code review comments as a pr by @jacob314 in
289
- [#21209](https://github.com/google-gemini/gemini-cli/pull/21209)
290
- - feat(cli): unify /chat and /resume command UX by @LyalinDotCom in
291
- [#20256](https://github.com/google-gemini/gemini-cli/pull/20256)
292
- - docs: fix typo 'allowslisted' -> 'allowlisted' in mcp-server.md by
46
+ [#21966](https://github.com/google-gemini/gemini-cli/pull/21966)
47
+ - refactor(a2a): remove legacy CoreToolScheduler by @adamfweidman in
48
+ [#21955](https://github.com/google-gemini/gemini-cli/pull/21955)
49
+ - feat(ui): add missing vim mode motions (X, ~, r, f/F/t/T, df/dt and friends)
50
+ by @aanari in [#21932](https://github.com/google-gemini/gemini-cli/pull/21932)
51
+ - Feat/retry fetch notifications by @aishaneeshah in
52
+ [#21813](https://github.com/google-gemini/gemini-cli/pull/21813)
53
+ - fix(core): remove OAuth check from handleFallback and clean up stray file by
54
+ @sehoon38 in [#21962](https://github.com/google-gemini/gemini-cli/pull/21962)
55
+ - feat(cli): support literal character keybindings and extended Kitty protocol
56
+ keys by @scidomino in
57
+ [#21972](https://github.com/google-gemini/gemini-cli/pull/21972)
58
+ - fix(ui): clamp cursor to last char after all NORMAL mode deletes by @aanari in
59
+ [#21973](https://github.com/google-gemini/gemini-cli/pull/21973)
60
+ - test(core): add missing tests for prompts/utils.ts by @krrishverma1805-web in
61
+ [#19941](https://github.com/google-gemini/gemini-cli/pull/19941)
62
+ - fix(cli): allow scrolling keys in copy mode (Ctrl+S selection mode) by
63
+ @nsalerni in [#19933](https://github.com/google-gemini/gemini-cli/pull/19933)
64
+ - docs(cli): add custom keybinding documentation by @scidomino in
65
+ [#21980](https://github.com/google-gemini/gemini-cli/pull/21980)
66
+ - docs: fix misleading YOLO mode description in defaultApprovalMode by
293
67
  @Gyanranjan-Priyam in
294
- [#21665](https://github.com/google-gemini/gemini-cli/pull/21665)
295
- - fix(core): display actual graph output in tracker_visualize tool by @anj-s in
296
- [#21455](https://github.com/google-gemini/gemini-cli/pull/21455)
297
- - fix(core): sanitize SSE-corrupted JSON and domain strings in error
298
- classification by @gsquared94 in
299
- [#21702](https://github.com/google-gemini/gemini-cli/pull/21702)
300
- - Docs: Make documentation links relative by @diodesign in
301
- [#21490](https://github.com/google-gemini/gemini-cli/pull/21490)
302
- - feat(cli): expose /tools desc as explicit subcommand for discoverability by
303
- @aworki in [#21241](https://github.com/google-gemini/gemini-cli/pull/21241)
304
- - feat(cli): add /compact alias for /compress command by @jackwotherspoon in
305
- [#21711](https://github.com/google-gemini/gemini-cli/pull/21711)
306
- - feat(plan): enable Plan Mode by default by @jerop in
307
- [#21713](https://github.com/google-gemini/gemini-cli/pull/21713)
308
- - feat(core): Introduce `AgentLoopContext`. by @joshualitt in
309
- [#21198](https://github.com/google-gemini/gemini-cli/pull/21198)
310
- - fix(core): resolve symlinks for non-existent paths during validation by
311
- @Adib234 in [#21487](https://github.com/google-gemini/gemini-cli/pull/21487)
312
- - docs: document tool exclusion from memory via deny policy by @Abhijit-2592 in
313
- [#21428](https://github.com/google-gemini/gemini-cli/pull/21428)
314
- - perf(core): cache loadApiKey to reduce redundant keychain access by @sehoon38
315
- in [#21520](https://github.com/google-gemini/gemini-cli/pull/21520)
316
- - feat(cli): implement /upgrade command by @sehoon38 in
317
- [#21511](https://github.com/google-gemini/gemini-cli/pull/21511)
318
- - Feat/browser agent progress emission by @kunal-10-cloud in
319
- [#21218](https://github.com/google-gemini/gemini-cli/pull/21218)
320
- - fix(settings): display objects as JSON instead of [object Object] by
321
- @Zheyuan-Lin in
322
- [#21458](https://github.com/google-gemini/gemini-cli/pull/21458)
323
- - Unmarshall update by @DavidAPierce in
324
- [#21721](https://github.com/google-gemini/gemini-cli/pull/21721)
325
- - Update mcp's list function to check for disablement. by @DavidAPierce in
326
- [#21148](https://github.com/google-gemini/gemini-cli/pull/21148)
327
- - robustness(core): static checks to validate history is immutable by @jacob314
328
- in [#21228](https://github.com/google-gemini/gemini-cli/pull/21228)
329
- - refactor(cli): better react patterns for BaseSettingsDialog by @psinha40898 in
330
- [#21206](https://github.com/google-gemini/gemini-cli/pull/21206)
331
- - feat(security): implement robust IP validation and safeFetch foundation by
332
- @alisa-alisa in
333
- [#21401](https://github.com/google-gemini/gemini-cli/pull/21401)
334
- - feat(core): improve subagent result display by @joshualitt in
335
- [#20378](https://github.com/google-gemini/gemini-cli/pull/20378)
336
- - docs: fix broken markdown syntax and anchor links in /tools by @campox747 in
337
- [#20902](https://github.com/google-gemini/gemini-cli/pull/20902)
338
- - feat(policy): support subagent-specific policies in TOML by @akh64bit in
339
- [#21431](https://github.com/google-gemini/gemini-cli/pull/21431)
340
- - Add script to speed up reviewing PRs adding a worktree. by @jacob314 in
341
- [#21748](https://github.com/google-gemini/gemini-cli/pull/21748)
342
- - fix(core): prevent infinite recursion in symlink resolution by @Adib234 in
343
- [#21750](https://github.com/google-gemini/gemini-cli/pull/21750)
344
- - fix(docs): fix headless mode docs by @ame2en in
345
- [#21287](https://github.com/google-gemini/gemini-cli/pull/21287)
346
- - feat/redesign header compact by @jacob314 in
347
- [#20922](https://github.com/google-gemini/gemini-cli/pull/20922)
348
- - refactor: migrate to useKeyMatchers hook by @scidomino in
349
- [#21753](https://github.com/google-gemini/gemini-cli/pull/21753)
350
- - perf(cli): cache loadSettings to reduce redundant disk I/O at startup by
351
- @sehoon38 in [#21521](https://github.com/google-gemini/gemini-cli/pull/21521)
352
- - fix(core): resolve Windows line ending and path separation bugs across CLI by
353
- @muhammadusman586 in
354
- [#21068](https://github.com/google-gemini/gemini-cli/pull/21068)
355
- - docs: fix heading formatting in commands.md and phrasing in tools-api.md by
356
- @campox747 in [#20679](https://github.com/google-gemini/gemini-cli/pull/20679)
357
- - refactor(ui): unify keybinding infrastructure and support string
358
- initialization by @scidomino in
359
- [#21776](https://github.com/google-gemini/gemini-cli/pull/21776)
360
- - Add support for updating extension sources and names by @chrstnb in
361
- [#21715](https://github.com/google-gemini/gemini-cli/pull/21715)
362
- - fix(core): handle GUI editor non-zero exit codes gracefully by @reyyanxahmed
363
- in [#20376](https://github.com/google-gemini/gemini-cli/pull/20376)
364
- - fix(core): destroy PTY on kill() and exception to prevent fd leak by @nbardy
365
- in [#21693](https://github.com/google-gemini/gemini-cli/pull/21693)
366
- - fix(docs): update theme screenshots and add missing themes by @ashmod in
367
- [#20689](https://github.com/google-gemini/gemini-cli/pull/20689)
368
- - refactor(cli): rename 'return' key to 'enter' internally by @scidomino in
369
- [#21796](https://github.com/google-gemini/gemini-cli/pull/21796)
370
- - build(release): restrict npm bundling to non-stable tags by @sehoon38 in
371
- [#21821](https://github.com/google-gemini/gemini-cli/pull/21821)
372
- - fix(core): override toolRegistry property for sub-agent schedulers by
68
+ [#21878](https://github.com/google-gemini/gemini-cli/pull/21878)
69
+ - fix: clean up /clear and /resume by @jackwotherspoon in
70
+ [#22007](https://github.com/google-gemini/gemini-cli/pull/22007)
71
+ - fix(core)#20941: reap orphaned descendant processes on PTY abort by @manavmax
72
+ in [#21124](https://github.com/google-gemini/gemini-cli/pull/21124)
73
+ - fix(core): update language detection to use LSP 3.18 identifiers by @yunaseoul
74
+ in [#21931](https://github.com/google-gemini/gemini-cli/pull/21931)
75
+ - feat(cli): support removing keybindings via '-' prefix by @scidomino in
76
+ [#22042](https://github.com/google-gemini/gemini-cli/pull/22042)
77
+ - feat(policy): add --admin-policy flag for supplemental admin policies by
78
+ @galz10 in [#20360](https://github.com/google-gemini/gemini-cli/pull/20360)
79
+ - merge duplicate imports packages/cli/src subtask1 by @Nixxx19 in
80
+ [#22040](https://github.com/google-gemini/gemini-cli/pull/22040)
81
+ - perf(core): parallelize user quota and experiments fetching in refreshAuth by
82
+ @sehoon38 in [#21648](https://github.com/google-gemini/gemini-cli/pull/21648)
83
+ - Changelog for v0.34.0-preview.0 by @gemini-cli-robot in
84
+ [#21965](https://github.com/google-gemini/gemini-cli/pull/21965)
85
+ - Changelog for v0.33.0 by @gemini-cli-robot in
86
+ [#21967](https://github.com/google-gemini/gemini-cli/pull/21967)
87
+ - fix(core): handle EISDIR in robustRealpath on Windows by @sehoon38 in
88
+ [#21984](https://github.com/google-gemini/gemini-cli/pull/21984)
89
+ - feat(core): include initiationMethod in conversation interaction telemetry by
90
+ @yunaseoul in [#22054](https://github.com/google-gemini/gemini-cli/pull/22054)
91
+ - feat(ui): add vim yank/paste (y/p/P) with unnamed register by @aanari in
92
+ [#22026](https://github.com/google-gemini/gemini-cli/pull/22026)
93
+ - fix(core): enable numerical routing for api key users by @sehoon38 in
94
+ [#21977](https://github.com/google-gemini/gemini-cli/pull/21977)
95
+ - feat(telemetry): implement retry attempt telemetry for network related retries
96
+ by @aishaneeshah in
97
+ [#22027](https://github.com/google-gemini/gemini-cli/pull/22027)
98
+ - fix(policy): remove unnecessary escapeRegex from pattern builders by
99
+ @spencer426 in
100
+ [#21921](https://github.com/google-gemini/gemini-cli/pull/21921)
101
+ - fix(core): preserve dynamic tool descriptions on session resume by @sehoon38
102
+ in [#18835](https://github.com/google-gemini/gemini-cli/pull/18835)
103
+ - chore: allow 'gemini-3.1' in sensitive keyword linter by @scidomino in
104
+ [#22065](https://github.com/google-gemini/gemini-cli/pull/22065)
105
+ - feat(core): support custom base URL via env vars by @junaiddshaukat in
106
+ [#21561](https://github.com/google-gemini/gemini-cli/pull/21561)
107
+ - merge duplicate imports packages/cli/src subtask2 by @Nixxx19 in
108
+ [#22051](https://github.com/google-gemini/gemini-cli/pull/22051)
109
+ - fix(core): silently retry API errors up to 3 times before halting session by
110
+ @spencer426 in
111
+ [#21989](https://github.com/google-gemini/gemini-cli/pull/21989)
112
+ - feat(core): simplify subagent success UI and improve early termination display
113
+ by @abhipatel12 in
114
+ [#21917](https://github.com/google-gemini/gemini-cli/pull/21917)
115
+ - merge duplicate imports packages/cli/src subtask3 by @Nixxx19 in
116
+ [#22056](https://github.com/google-gemini/gemini-cli/pull/22056)
117
+ - fix(hooks): fix BeforeAgent/AfterAgent inconsistencies (#18514) by @krishdef7
118
+ in [#21383](https://github.com/google-gemini/gemini-cli/pull/21383)
119
+ - feat(core): implement SandboxManager interface and config schema by @galz10 in
120
+ [#21774](https://github.com/google-gemini/gemini-cli/pull/21774)
121
+ - docs: document npm deprecation warnings as safe to ignore by @h30s in
122
+ [#20692](https://github.com/google-gemini/gemini-cli/pull/20692)
123
+ - fix: remove status/need-triage from maintainer-only issues by @SandyTao520 in
124
+ [#22044](https://github.com/google-gemini/gemini-cli/pull/22044)
125
+ - fix(core): propagate subagent context to policy engine by @NTaylorMullen in
126
+ [#22086](https://github.com/google-gemini/gemini-cli/pull/22086)
127
+ - fix(cli): resolve skill uninstall failure when skill name is updated by
128
+ @NTaylorMullen in
129
+ [#22085](https://github.com/google-gemini/gemini-cli/pull/22085)
130
+ - docs(plan): clarify interactive plan editing with Ctrl+X by @Adib234 in
131
+ [#22076](https://github.com/google-gemini/gemini-cli/pull/22076)
132
+ - fix(policy): ensure user policies are loaded when policyPaths is empty by
133
+ @NTaylorMullen in
134
+ [#22090](https://github.com/google-gemini/gemini-cli/pull/22090)
135
+ - Docs: Add documentation for model steering (experimental). by @jkcinouye in
136
+ [#21154](https://github.com/google-gemini/gemini-cli/pull/21154)
137
+ - Add issue for automated changelogs by @g-samroberts in
138
+ [#21912](https://github.com/google-gemini/gemini-cli/pull/21912)
139
+ - fix(core): secure argsPattern and revert WEB_FETCH_TOOL_NAME escalation by
140
+ @spencer426 in
141
+ [#22104](https://github.com/google-gemini/gemini-cli/pull/22104)
142
+ - feat(core): differentiate User-Agent for a2a-server and ACP clients by
143
+ @bdmorgan in [#22059](https://github.com/google-gemini/gemini-cli/pull/22059)
144
+ - refactor(core): extract ExecutionLifecycleService for tool backgrounding by
145
+ @adamfweidman in
146
+ [#21717](https://github.com/google-gemini/gemini-cli/pull/21717)
147
+ - feat: Display pending and confirming tool calls by @sripasg in
148
+ [#22106](https://github.com/google-gemini/gemini-cli/pull/22106)
149
+ - feat(browser): implement input blocker overlay during automation by
150
+ @kunal-10-cloud in
151
+ [#21132](https://github.com/google-gemini/gemini-cli/pull/21132)
152
+ - fix: register themes on extension load not start by @jackwotherspoon in
153
+ [#22148](https://github.com/google-gemini/gemini-cli/pull/22148)
154
+ - feat(ui): Do not show Ultra users /upgrade hint (#22154) by @sehoon38 in
155
+ [#22156](https://github.com/google-gemini/gemini-cli/pull/22156)
156
+ - chore: remove unnecessary log for themes by @jackwotherspoon in
157
+ [#22165](https://github.com/google-gemini/gemini-cli/pull/22165)
158
+ - fix(core): resolve MCP tool FQN validation, schema export, and wildcards in
159
+ subagents by @abhipatel12 in
160
+ [#22069](https://github.com/google-gemini/gemini-cli/pull/22069)
161
+ - fix(cli): validate --model argument at startup by @JaisalJain in
162
+ [#21393](https://github.com/google-gemini/gemini-cli/pull/21393)
163
+ - fix(core): handle policy ALLOW for exit_plan_mode by @backnotprop in
164
+ [#21802](https://github.com/google-gemini/gemini-cli/pull/21802)
165
+ - feat(telemetry): add Clearcut instrumentation for AI credits billing events by
373
166
  @gsquared94 in
374
- [#21766](https://github.com/google-gemini/gemini-cli/pull/21766)
375
- - fix(cli): make footer items equally spaced by @jacob314 in
376
- [#21843](https://github.com/google-gemini/gemini-cli/pull/21843)
377
- - docs: clarify global policy rules application in plan mode by @jerop in
378
- [#21864](https://github.com/google-gemini/gemini-cli/pull/21864)
379
- - fix(core): ensure correct flash model steering in plan mode implementation
380
- phase by @jerop in
381
- [#21871](https://github.com/google-gemini/gemini-cli/pull/21871)
382
- - fix(core): update @a2a-js/sdk to 0.3.11 by @adamfweidman in
383
- [#21875](https://github.com/google-gemini/gemini-cli/pull/21875)
384
- - refactor(core): improve API response error logging when retry by @yunaseoul in
385
- [#21784](https://github.com/google-gemini/gemini-cli/pull/21784)
386
- - fix(ui): handle headless execution in credits and upgrade dialogs by
167
+ [#22153](https://github.com/google-gemini/gemini-cli/pull/22153)
168
+ - feat(core): add google credentials provider for remote agents by @adamfweidman
169
+ in [#21024](https://github.com/google-gemini/gemini-cli/pull/21024)
170
+ - test(cli): add integration test for node deprecation warnings by @Nixxx19 in
171
+ [#20215](https://github.com/google-gemini/gemini-cli/pull/20215)
172
+ - feat(cli): allow safe tools to execute concurrently while agent is busy by
173
+ @spencer426 in
174
+ [#21988](https://github.com/google-gemini/gemini-cli/pull/21988)
175
+ - feat(core): implement model-driven parallel tool scheduler by @abhipatel12 in
176
+ [#21933](https://github.com/google-gemini/gemini-cli/pull/21933)
177
+ - update vulnerable deps by @scidomino in
178
+ [#22180](https://github.com/google-gemini/gemini-cli/pull/22180)
179
+ - fix(core): fix startup stats to use int values for timestamps and durations by
180
+ @yunaseoul in [#22201](https://github.com/google-gemini/gemini-cli/pull/22201)
181
+ - fix(core): prevent duplicate tool schemas for instantiated tools by
182
+ @abhipatel12 in
183
+ [#22204](https://github.com/google-gemini/gemini-cli/pull/22204)
184
+ - fix(core): add proxy routing support for remote A2A subagents by @adamfweidman
185
+ in [#22199](https://github.com/google-gemini/gemini-cli/pull/22199)
186
+ - fix(core/ide): add Antigravity CLI fallbacks by @apfine in
187
+ [#22030](https://github.com/google-gemini/gemini-cli/pull/22030)
188
+ - fix(browser): fix duplicate function declaration error in browser agent by
387
189
  @gsquared94 in
388
- [#21850](https://github.com/google-gemini/gemini-cli/pull/21850)
389
- - fix(core): treat retryable errors with >5 min delay as terminal quota errors
390
- by @gsquared94 in
391
- [#21881](https://github.com/google-gemini/gemini-cli/pull/21881)
392
- - feat(telemetry): add specific PR, issue, and custom tracking IDs for GitHub
393
- Actions by @cocosheng-g in
394
- [#21129](https://github.com/google-gemini/gemini-cli/pull/21129)
395
- - feat(core): add OAuth2 Authorization Code auth provider for A2A agents by
190
+ [#22207](https://github.com/google-gemini/gemini-cli/pull/22207)
191
+ - feat(core): implement Stage 1 improvements for webfetch tool by @aishaneeshah
192
+ in [#21313](https://github.com/google-gemini/gemini-cli/pull/21313)
193
+ - Changelog for v0.34.0-preview.1 by @gemini-cli-robot in
194
+ [#22194](https://github.com/google-gemini/gemini-cli/pull/22194)
195
+ - perf(cli): enable code splitting and deferred UI loading by @sehoon38 in
196
+ [#22117](https://github.com/google-gemini/gemini-cli/pull/22117)
197
+ - fix: remove unused img.png from project root by @SandyTao520 in
198
+ [#22222](https://github.com/google-gemini/gemini-cli/pull/22222)
199
+ - docs(local model routing): add docs on how to use Gemma for local model
200
+ routing by @douglas-reid in
201
+ [#21365](https://github.com/google-gemini/gemini-cli/pull/21365)
202
+ - feat(a2a): enable native gRPC support and protocol routing by @alisa-alisa in
203
+ [#21403](https://github.com/google-gemini/gemini-cli/pull/21403)
204
+ - fix(cli): escape @ symbols on paste to prevent unintended file expansion by
205
+ @krishdef7 in [#21239](https://github.com/google-gemini/gemini-cli/pull/21239)
206
+ - feat(core): add trajectoryId to ConversationOffered telemetry by @yunaseoul in
207
+ [#22214](https://github.com/google-gemini/gemini-cli/pull/22214)
208
+ - docs: clarify that tools.core is an allowlist for ALL built-in tools by
209
+ @hobostay in [#18813](https://github.com/google-gemini/gemini-cli/pull/18813)
210
+ - docs(plan): document hooks with plan mode by @ruomengz in
211
+ [#22197](https://github.com/google-gemini/gemini-cli/pull/22197)
212
+ - Changelog for v0.33.1 by @gemini-cli-robot in
213
+ [#22235](https://github.com/google-gemini/gemini-cli/pull/22235)
214
+ - build(ci): fix false positive evals trigger on merge commits by @gundermanc in
215
+ [#22237](https://github.com/google-gemini/gemini-cli/pull/22237)
216
+ - fix(core): explicitly pass messageBus to policy engine for MCP tool saves by
217
+ @abhipatel12 in
218
+ [#22255](https://github.com/google-gemini/gemini-cli/pull/22255)
219
+ - feat(core): Fully migrate packages/core to AgentLoopContext. by @joshualitt in
220
+ [#22115](https://github.com/google-gemini/gemini-cli/pull/22115)
221
+ - feat(core): increase sub-agent turn and time limits by @bdmorgan in
222
+ [#22196](https://github.com/google-gemini/gemini-cli/pull/22196)
223
+ - feat(core): instrument file system tools for JIT context discovery by
396
224
  @SandyTao520 in
397
- [#21496](https://github.com/google-gemini/gemini-cli/pull/21496)
398
- - feat(cli): give visibility to /tools list command in the TUI and follow the
399
- subcommand pattern of other commands by @JayadityaGit in
400
- [#21213](https://github.com/google-gemini/gemini-cli/pull/21213)
401
- - Handle dirty worktrees better and warn about running scripts/review.sh on
402
- untrusted code. by @jacob314 in
403
- [#21791](https://github.com/google-gemini/gemini-cli/pull/21791)
404
- - feat(policy): support auto-add to policy by default and scoped persistence by
405
- @spencer426 in
406
- [#20361](https://github.com/google-gemini/gemini-cli/pull/20361)
407
- - fix(core): handle AbortError when ESC cancels tool execution by @PrasannaPal21
408
- in [#20863](https://github.com/google-gemini/gemini-cli/pull/20863)
409
- - fix(release): Improve Patch Release Workflow Comments: Clearer Approval
410
- Guidance by @jerop in
411
- [#21894](https://github.com/google-gemini/gemini-cli/pull/21894)
412
- - docs: clarify telemetry setup and comprehensive data map by @jerop in
413
- [#21879](https://github.com/google-gemini/gemini-cli/pull/21879)
414
- - feat(core): add per-model token usage to stream-json output by @yongruilin in
415
- [#21839](https://github.com/google-gemini/gemini-cli/pull/21839)
416
- - docs: remove experimental badge from plan mode in sidebar by @jerop in
417
- [#21906](https://github.com/google-gemini/gemini-cli/pull/21906)
418
- - fix(cli): prevent race condition in loop detection retry by @skyvanguard in
419
- [#17916](https://github.com/google-gemini/gemini-cli/pull/17916)
420
- - Add behavioral evals for tracker by @anj-s in
421
- [#20069](https://github.com/google-gemini/gemini-cli/pull/20069)
422
- - fix(auth): update terminology to 'sign in' and 'sign out' by @clocky in
423
- [#20892](https://github.com/google-gemini/gemini-cli/pull/20892)
424
- - docs(mcp): standardize mcp tool fqn documentation by @abhipatel12 in
425
- [#21664](https://github.com/google-gemini/gemini-cli/pull/21664)
426
- - fix(ui): prevent empty tool-group border stubs after filtering by @Aaxhirrr in
427
- [#21852](https://github.com/google-gemini/gemini-cli/pull/21852)
428
- - make command names consistent by @scidomino in
429
- [#21907](https://github.com/google-gemini/gemini-cli/pull/21907)
430
- - refactor: remove agent_card_requires_auth config flag by @adamfweidman in
431
- [#21914](https://github.com/google-gemini/gemini-cli/pull/21914)
432
- - feat(a2a): implement standardized normalization and streaming reassembly by
433
- @alisa-alisa in
434
- [#21402](https://github.com/google-gemini/gemini-cli/pull/21402)
435
- - feat(cli): enable skill activation via slash commands by @NTaylorMullen in
436
- [#21758](https://github.com/google-gemini/gemini-cli/pull/21758)
437
- - docs(cli): mention per-model token usage in stream-json result event by
438
- @yongruilin in
439
- [#21908](https://github.com/google-gemini/gemini-cli/pull/21908)
440
- - fix(plan): prevent plan truncation in approval dialog by supporting
441
- unconstrained heights by @Adib234 in
442
- [#21037](https://github.com/google-gemini/gemini-cli/pull/21037)
443
- - feat(a2a): switch from callback-based to event-driven tool scheduler by
444
- @cocosheng-g in
445
- [#21467](https://github.com/google-gemini/gemini-cli/pull/21467)
446
- - feat(voice): implement speech-friendly response formatter by @Solventerritory
447
- in [#20989](https://github.com/google-gemini/gemini-cli/pull/20989)
448
- - feat: add pulsating blue border automation overlay to browser agent by
449
- @kunal-10-cloud in
450
- [#21173](https://github.com/google-gemini/gemini-cli/pull/21173)
451
- - Add extensionRegistryURI setting to change where the registry is read from by
452
- @kevinjwang1 in
453
- [#20463](https://github.com/google-gemini/gemini-cli/pull/20463)
454
- - fix: patch gaxios v7 Array.toString() stream corruption by @gsquared94 in
455
- [#21884](https://github.com/google-gemini/gemini-cli/pull/21884)
456
- - fix: prevent hangs in non-interactive mode and improve agent guidance by
457
- @cocosheng-g in
458
- [#20893](https://github.com/google-gemini/gemini-cli/pull/20893)
459
- - Add ExtensionDetails dialog and support install by @chrstnb in
460
- [#20845](https://github.com/google-gemini/gemini-cli/pull/20845)
461
- - chore/release: bump version to 0.34.0-nightly.20260310.4653b126f by
225
+ [#22082](https://github.com/google-gemini/gemini-cli/pull/22082)
226
+ - refactor(ui): extract pure session browser utilities by @abhipatel12 in
227
+ [#22256](https://github.com/google-gemini/gemini-cli/pull/22256)
228
+ - fix(plan): Fix AskUser evals by @Adib234 in
229
+ [#22074](https://github.com/google-gemini/gemini-cli/pull/22074)
230
+ - fix(settings): prevent j/k navigation keys from intercepting edit buffer input
231
+ by @student-ankitpandit in
232
+ [#21865](https://github.com/google-gemini/gemini-cli/pull/21865)
233
+ - feat(skills): improve async-pr-review workflow and logging by @mattKorwel in
234
+ [#21790](https://github.com/google-gemini/gemini-cli/pull/21790)
235
+ - refactor(cli): consolidate getErrorMessage utility to core by @scidomino in
236
+ [#22190](https://github.com/google-gemini/gemini-cli/pull/22190)
237
+ - fix(core): show descriptive error messages when saving settings fails by
238
+ @afarber in [#18095](https://github.com/google-gemini/gemini-cli/pull/18095)
239
+ - docs(core): add authentication guide for remote subagents by @adamfweidman in
240
+ [#22178](https://github.com/google-gemini/gemini-cli/pull/22178)
241
+ - docs: overhaul subagents documentation and add /agents command by @abhipatel12
242
+ in [#22345](https://github.com/google-gemini/gemini-cli/pull/22345)
243
+ - refactor(ui): extract SessionBrowser static ui components by @abhipatel12 in
244
+ [#22348](https://github.com/google-gemini/gemini-cli/pull/22348)
245
+ - test: add Object.create context regression test and tool confirmation
246
+ integration test by @gsquared94 in
247
+ [#22356](https://github.com/google-gemini/gemini-cli/pull/22356)
248
+ - feat(tracker): return TodoList display for tracker tools by @anj-s in
249
+ [#22060](https://github.com/google-gemini/gemini-cli/pull/22060)
250
+ - feat(agent): add allowed domain restrictions for browser agent by
251
+ @cynthialong0-0 in
252
+ [#21775](https://github.com/google-gemini/gemini-cli/pull/21775)
253
+ - chore/release: bump version to 0.35.0-nightly.20260313.bb060d7a9 by
462
254
  @gemini-cli-robot in
463
- [#21816](https://github.com/google-gemini/gemini-cli/pull/21816)
464
- - Changelog for v0.33.0-preview.13 by @gemini-cli-robot in
465
- [#21927](https://github.com/google-gemini/gemini-cli/pull/21927)
466
- - fix(cli): stabilize prompt layout to prevent jumping when typing by
467
- @NTaylorMullen in
468
- [#21081](https://github.com/google-gemini/gemini-cli/pull/21081)
469
- - fix: preserve prompt text when cancelling streaming by @Nixxx19 in
470
- [#21103](https://github.com/google-gemini/gemini-cli/pull/21103)
471
- - fix: robust UX for remote agent errors by @Shyam-Raghuwanshi in
472
- [#20307](https://github.com/google-gemini/gemini-cli/pull/20307)
473
- - feat: implement background process logging and cleanup by @galz10 in
474
- [#21189](https://github.com/google-gemini/gemini-cli/pull/21189)
475
- - Changelog for v0.33.0-preview.14 by @gemini-cli-robot in
476
- [#21938](https://github.com/google-gemini/gemini-cli/pull/21938)
255
+ [#22251](https://github.com/google-gemini/gemini-cli/pull/22251)
256
+ - Move keychain fallback to keychain service by @chrstnb in
257
+ [#22332](https://github.com/google-gemini/gemini-cli/pull/22332)
258
+ - feat(core): integrate SandboxManager to sandbox all process-spawning tools by
259
+ @galz10 in [#22231](https://github.com/google-gemini/gemini-cli/pull/22231)
260
+ - fix(cli): support CJK input and full Unicode scalar values in terminal
261
+ protocols by @scidomino in
262
+ [#22353](https://github.com/google-gemini/gemini-cli/pull/22353)
263
+ - Promote stable tests. by @gundermanc in
264
+ [#22253](https://github.com/google-gemini/gemini-cli/pull/22253)
265
+ - feat(tracker): add tracker policy by @anj-s in
266
+ [#22379](https://github.com/google-gemini/gemini-cli/pull/22379)
267
+ - feat(security): add disableAlwaysAllow setting to disable auto-approvals by
268
+ @galz10 in [#21941](https://github.com/google-gemini/gemini-cli/pull/21941)
269
+ - Revert "fix(cli): validate --model argument at startup" by @sehoon38 in
270
+ [#22378](https://github.com/google-gemini/gemini-cli/pull/22378)
271
+ - fix(mcp): handle equivalent root resource URLs in OAuth validation by @galz10
272
+ in [#20231](https://github.com/google-gemini/gemini-cli/pull/20231)
273
+ - fix(core): use session-specific temp directory for task tracker by @anj-s in
274
+ [#22382](https://github.com/google-gemini/gemini-cli/pull/22382)
275
+ - Fix issue where config was undefined. by @gundermanc in
276
+ [#22397](https://github.com/google-gemini/gemini-cli/pull/22397)
277
+ - fix(core): deduplicate project memory when JIT context is enabled by
278
+ @SandyTao520 in
279
+ [#22234](https://github.com/google-gemini/gemini-cli/pull/22234)
280
+ - feat(prompts): implement Topic-Action-Summary model for verbosity reduction by
281
+ @Abhijit-2592 in
282
+ [#21503](https://github.com/google-gemini/gemini-cli/pull/21503)
283
+ - fix(core): fix manual deletion of subagent histories by @abhipatel12 in
284
+ [#22407](https://github.com/google-gemini/gemini-cli/pull/22407)
285
+ - Add registry var by @kevinjwang1 in
286
+ [#22224](https://github.com/google-gemini/gemini-cli/pull/22224)
287
+ - Add ModelDefinitions to ModelConfigService by @kevinjwang1 in
288
+ [#22302](https://github.com/google-gemini/gemini-cli/pull/22302)
289
+ - fix(cli): improve command conflict handling for skills by @NTaylorMullen in
290
+ [#21942](https://github.com/google-gemini/gemini-cli/pull/21942)
291
+ - fix(core): merge user settings with extension-provided MCP servers by
292
+ @abhipatel12 in
293
+ [#22484](https://github.com/google-gemini/gemini-cli/pull/22484)
294
+ - fix(core): skip discovery for incomplete MCP configs and resolve merge race
295
+ condition by @abhipatel12 in
296
+ [#22494](https://github.com/google-gemini/gemini-cli/pull/22494)
297
+ - fix(automation): harden stale PR closer permissions and maintainer detection
298
+ by @bdmorgan in
299
+ [#22558](https://github.com/google-gemini/gemini-cli/pull/22558)
300
+ - fix(automation): evaluate staleness before checking protected labels by
301
+ @bdmorgan in [#22561](https://github.com/google-gemini/gemini-cli/pull/22561)
302
+ - feat(agent): replace the runtime npx for browser agent chrome devtool mcp with
303
+ pre-built bundle by @cynthialong0-0 in
304
+ [#22213](https://github.com/google-gemini/gemini-cli/pull/22213)
305
+ - perf: optimize TrackerService dependency checks by @anj-s in
306
+ [#22384](https://github.com/google-gemini/gemini-cli/pull/22384)
307
+ - docs(policy): remove trailing space from commandPrefix examples by @kawasin73
308
+ in [#22264](https://github.com/google-gemini/gemini-cli/pull/22264)
309
+ - fix(a2a-server): resolve unsafe assignment lint errors by @ehedlund in
310
+ [#22661](https://github.com/google-gemini/gemini-cli/pull/22661)
311
+ - fix: Adjust ToolGroupMessage filtering to hide Confirming and show Canceled
312
+ tool calls. by @sripasg in
313
+ [#22230](https://github.com/google-gemini/gemini-cli/pull/22230)
314
+ - Disallow Object.create() and reflect. by @gundermanc in
315
+ [#22408](https://github.com/google-gemini/gemini-cli/pull/22408)
316
+ - Guard pro model usage by @sehoon38 in
317
+ [#22665](https://github.com/google-gemini/gemini-cli/pull/22665)
318
+ - refactor(core): Creates AgentSession abstraction for consolidated agent
319
+ interface. by @mbleigh in
320
+ [#22270](https://github.com/google-gemini/gemini-cli/pull/22270)
321
+ - docs(changelog): remove internal commands from release notes by
322
+ @jackwotherspoon in
323
+ [#22529](https://github.com/google-gemini/gemini-cli/pull/22529)
324
+ - feat: enable subagents by @abhipatel12 in
325
+ [#22386](https://github.com/google-gemini/gemini-cli/pull/22386)
326
+ - feat(extensions): implement cryptographic integrity verification for extension
327
+ updates by @ehedlund in
328
+ [#21772](https://github.com/google-gemini/gemini-cli/pull/21772)
329
+ - feat(tracker): polish UI sorting and formatting by @anj-s in
330
+ [#22437](https://github.com/google-gemini/gemini-cli/pull/22437)
331
+ - Changelog for v0.34.0-preview.2 by @gemini-cli-robot in
332
+ [#22220](https://github.com/google-gemini/gemini-cli/pull/22220)
333
+ - fix(core): fix three JIT context bugs in read_file, read_many_files, and
334
+ memoryDiscovery by @SandyTao520 in
335
+ [#22679](https://github.com/google-gemini/gemini-cli/pull/22679)
336
+ - refactor(core): introduce InjectionService with source-aware injection and
337
+ backend-native background completions by @adamfweidman in
338
+ [#22544](https://github.com/google-gemini/gemini-cli/pull/22544)
339
+ - Linux sandbox bubblewrap by @DavidAPierce in
340
+ [#22680](https://github.com/google-gemini/gemini-cli/pull/22680)
341
+ - feat(core): increase thought signature retry resilience by @bdmorgan in
342
+ [#22202](https://github.com/google-gemini/gemini-cli/pull/22202)
343
+ - feat(core): implement Stage 2 security and consistency improvements for
344
+ web_fetch by @aishaneeshah in
345
+ [#22217](https://github.com/google-gemini/gemini-cli/pull/22217)
346
+ - refactor(core): replace positional execute params with ExecuteOptions bag by
347
+ @adamfweidman in
348
+ [#22674](https://github.com/google-gemini/gemini-cli/pull/22674)
349
+ - feat(config): enable JIT context loading by default by @SandyTao520 in
350
+ [#22736](https://github.com/google-gemini/gemini-cli/pull/22736)
351
+ - fix(config): ensure discoveryMaxDirs is passed to global config during
352
+ initialization by @kevin-ramdass in
353
+ [#22744](https://github.com/google-gemini/gemini-cli/pull/22744)
354
+ - fix(plan): allowlist get_internal_docs in Plan Mode by @Adib234 in
355
+ [#22668](https://github.com/google-gemini/gemini-cli/pull/22668)
356
+ - Changelog for v0.34.0-preview.3 by @gemini-cli-robot in
357
+ [#22393](https://github.com/google-gemini/gemini-cli/pull/22393)
358
+ - feat(core): add foundation for subagent tool isolation by @akh64bit in
359
+ [#22708](https://github.com/google-gemini/gemini-cli/pull/22708)
360
+ - fix(core): handle surrogate pairs in truncateString by @sehoon38 in
361
+ [#22754](https://github.com/google-gemini/gemini-cli/pull/22754)
362
+ - fix(cli): override j/k navigation in settings dialog to fix search input
363
+ conflict by @sehoon38 in
364
+ [#22800](https://github.com/google-gemini/gemini-cli/pull/22800)
365
+ - feat(plan): add 'All the above' option to multi-select AskUser questions by
366
+ @Adib234 in [#22365](https://github.com/google-gemini/gemini-cli/pull/22365)
367
+ - docs: distribute package-specific GEMINI.md context to each package by
368
+ @SandyTao520 in
369
+ [#22734](https://github.com/google-gemini/gemini-cli/pull/22734)
370
+ - fix(cli): clean up stale pasted placeholder metadata after word/line deletions
371
+ by @Jomak-x in
372
+ [#20375](https://github.com/google-gemini/gemini-cli/pull/20375)
373
+ - refactor(core): align JIT memory placement with tiered context model by
374
+ @SandyTao520 in
375
+ [#22766](https://github.com/google-gemini/gemini-cli/pull/22766)
376
+ - Linux sandbox seccomp by @DavidAPierce in
377
+ [#22815](https://github.com/google-gemini/gemini-cli/pull/22815)
477
378
 
478
379
  **Full Changelog**:
479
- https://github.com/google-gemini/gemini-cli/compare/v0.33.0-preview.15...v0.34.0-preview.3
380
+ https://github.com/google-gemini/gemini-cli/compare/v0.34.0-preview.4...v0.35.0-preview.2