@machina.ai/cell-cli-core 1.36.0-rc1 → 1.38.1-rc2

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 (733) hide show
  1. package/dist/docs/AFTER_MERGE_PROMPT.md +3 -10
  2. package/dist/docs/assets/theme-tokyonight-dark.png +0 -0
  3. package/dist/docs/changelogs/index.md +49 -0
  4. package/dist/docs/changelogs/latest.md +355 -458
  5. package/dist/docs/changelogs/preview.md +402 -363
  6. package/dist/docs/cli/acp-mode.md +126 -0
  7. package/dist/docs/cli/cli-reference.md +1 -1
  8. package/dist/docs/cli/notifications.md +5 -5
  9. package/dist/docs/cli/plan-mode.md +26 -10
  10. package/dist/docs/cli/sandbox.md +53 -1
  11. package/dist/docs/cli/settings.md +52 -48
  12. package/dist/docs/cli/themes.md +5 -0
  13. package/dist/docs/core/index.md +2 -2
  14. package/dist/docs/core/remote-agents.md +14 -18
  15. package/dist/docs/core/subagents.md +194 -47
  16. package/dist/docs/get-started/authentication.md +2 -2
  17. package/dist/docs/get-started/gemini-3.md +1 -1
  18. package/dist/docs/get-started/index.md +127 -1
  19. package/dist/docs/get-started/installation.md +7 -0
  20. package/dist/docs/hooks/index.md +6 -6
  21. package/dist/docs/ide-integration/index.md +99 -24
  22. package/dist/docs/index.md +0 -2
  23. package/dist/docs/redirects.json +1 -0
  24. package/dist/docs/reference/commands.md +1 -3
  25. package/dist/docs/reference/configuration.md +220 -99
  26. package/dist/docs/reference/keyboard-shortcuts.md +21 -8
  27. package/dist/docs/reference/policy-engine.md +36 -31
  28. package/dist/docs/reference/tools.md +56 -23
  29. package/dist/docs/release-confidence.md +0 -6
  30. package/dist/docs/releases.md +4 -0
  31. package/dist/docs/resources/quota-and-pricing.md +23 -9
  32. package/dist/docs/sidebar.json +11 -4
  33. package/dist/docs/tools/mcp-server.md +3 -3
  34. package/dist/docs/tools/planning.md +6 -4
  35. package/dist/docs/tools/web-fetch.md +3 -0
  36. package/dist/package.json +2 -1
  37. package/dist/src/agent/agent-session.test.js +14 -6
  38. package/dist/src/agent/agent-session.test.js.map +1 -1
  39. package/dist/src/agent/event-translator.js +2 -1
  40. package/dist/src/agent/event-translator.js.map +1 -1
  41. package/dist/src/agent/event-translator.test.js +1 -0
  42. package/dist/src/agent/event-translator.test.js.map +1 -1
  43. package/dist/src/agent/legacy-agent-session.d.ts +47 -4
  44. package/dist/src/agent/legacy-agent-session.js +38 -15
  45. package/dist/src/agent/legacy-agent-session.js.map +1 -1
  46. package/dist/src/agent/legacy-agent-session.test.js +60 -73
  47. package/dist/src/agent/legacy-agent-session.test.js.map +1 -1
  48. package/dist/src/agent/mock.js +7 -1
  49. package/dist/src/agent/mock.js.map +1 -1
  50. package/dist/src/agent/mock.test.js +1 -1
  51. package/dist/src/agent/mock.test.js.map +1 -1
  52. package/dist/src/agent/types.d.ts +34 -1
  53. package/dist/src/agents/a2a-client-manager.js +3 -3
  54. package/dist/src/agents/a2a-client-manager.js.map +1 -1
  55. package/dist/src/agents/agent-scheduler.js +6 -1
  56. package/dist/src/agents/agent-scheduler.js.map +1 -1
  57. package/dist/src/agents/agent-scheduler.test.js +38 -0
  58. package/dist/src/agents/agent-scheduler.test.js.map +1 -1
  59. package/dist/src/agents/agentLoader.d.ts +12 -12
  60. package/dist/src/agents/agentLoader.js +1 -0
  61. package/dist/src/agents/agentLoader.js.map +1 -1
  62. package/dist/src/agents/auth-provider/api-key-provider.test.js +18 -2
  63. package/dist/src/agents/auth-provider/api-key-provider.test.js.map +1 -1
  64. package/dist/src/agents/auth-provider/value-resolver.test.js +30 -0
  65. package/dist/src/agents/auth-provider/value-resolver.test.js.map +1 -1
  66. package/dist/src/agents/browser/analyzeScreenshot.js +36 -6
  67. package/dist/src/agents/browser/analyzeScreenshot.js.map +1 -1
  68. package/dist/src/agents/browser/analyzeScreenshot.test.js +35 -3
  69. package/dist/src/agents/browser/analyzeScreenshot.test.js.map +1 -1
  70. package/dist/src/agents/browser/automationOverlay.js +2 -10
  71. package/dist/src/agents/browser/automationOverlay.js.map +1 -1
  72. package/dist/src/agents/browser/browserAgentDefinition.js +10 -3
  73. package/dist/src/agents/browser/browserAgentDefinition.js.map +1 -1
  74. package/dist/src/agents/browser/browserAgentFactory.d.ts +11 -3
  75. package/dist/src/agents/browser/browserAgentFactory.js +171 -129
  76. package/dist/src/agents/browser/browserAgentFactory.js.map +1 -1
  77. package/dist/src/agents/browser/browserAgentFactory.test.js +99 -13
  78. package/dist/src/agents/browser/browserAgentFactory.test.js.map +1 -1
  79. package/dist/src/agents/browser/browserAgentInvocation.d.ts +1 -0
  80. package/dist/src/agents/browser/browserAgentInvocation.js +87 -27
  81. package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
  82. package/dist/src/agents/browser/browserAgentInvocation.test.js +107 -7
  83. package/dist/src/agents/browser/browserAgentInvocation.test.js.map +1 -1
  84. package/dist/src/agents/browser/browserManager.d.ts +89 -8
  85. package/dist/src/agents/browser/browserManager.js +357 -74
  86. package/dist/src/agents/browser/browserManager.js.map +1 -1
  87. package/dist/src/agents/browser/browserManager.test.js +540 -19
  88. package/dist/src/agents/browser/browserManager.test.js.map +1 -1
  89. package/dist/src/agents/browser/inputBlocker.d.ts +4 -4
  90. package/dist/src/agents/browser/inputBlocker.js +8 -18
  91. package/dist/src/agents/browser/inputBlocker.js.map +1 -1
  92. package/dist/src/agents/browser/inputBlocker.test.js +31 -3
  93. package/dist/src/agents/browser/inputBlocker.test.js.map +1 -1
  94. package/dist/src/agents/browser/mcpToolWrapper.d.ts +1 -1
  95. package/dist/src/agents/browser/mcpToolWrapper.js +9 -6
  96. package/dist/src/agents/browser/mcpToolWrapper.js.map +1 -1
  97. package/dist/src/agents/browser/mcpToolWrapper.test.js +2 -2
  98. package/dist/src/agents/browser/mcpToolWrapper.test.js.map +1 -1
  99. package/dist/src/agents/browser/modelAvailability.d.ts +5 -0
  100. package/dist/src/agents/browser/modelAvailability.js +12 -0
  101. package/dist/src/agents/browser/modelAvailability.js.map +1 -1
  102. package/dist/src/agents/browser/snapshotSuperseder.d.ts +31 -0
  103. package/dist/src/agents/browser/snapshotSuperseder.js +101 -0
  104. package/dist/src/agents/browser/snapshotSuperseder.js.map +1 -0
  105. package/dist/src/agents/browser/snapshotSuperseder.test.js +158 -0
  106. package/dist/src/agents/browser/snapshotSuperseder.test.js.map +1 -0
  107. package/dist/src/agents/local-executor.d.ts +9 -0
  108. package/dist/src/agents/local-executor.js +144 -200
  109. package/dist/src/agents/local-executor.js.map +1 -1
  110. package/dist/src/agents/local-executor.test.js +500 -115
  111. package/dist/src/agents/local-executor.test.js.map +1 -1
  112. package/dist/src/agents/local-invocation.d.ts +1 -0
  113. package/dist/src/agents/local-invocation.js +19 -9
  114. package/dist/src/agents/local-invocation.js.map +1 -1
  115. package/dist/src/agents/local-invocation.test.js +24 -0
  116. package/dist/src/agents/local-invocation.test.js.map +1 -1
  117. package/dist/src/agents/memory-manager-agent.js +1 -0
  118. package/dist/src/agents/memory-manager-agent.js.map +1 -1
  119. package/dist/src/agents/memory-manager-agent.test.js +6 -0
  120. package/dist/src/agents/memory-manager-agent.test.js.map +1 -1
  121. package/dist/src/agents/registry.js +19 -11
  122. package/dist/src/agents/registry.js.map +1 -1
  123. package/dist/src/agents/registry.test.js +67 -0
  124. package/dist/src/agents/registry.test.js.map +1 -1
  125. package/dist/src/agents/skill-extraction-agent.d.ts +24 -0
  126. package/dist/src/agents/skill-extraction-agent.js +269 -0
  127. package/dist/src/agents/skill-extraction-agent.js.map +1 -0
  128. package/dist/src/agents/types.d.ts +20 -0
  129. package/dist/src/agents/types.js.map +1 -1
  130. package/dist/src/availability/policyCatalog.d.ts +2 -1
  131. package/dist/src/availability/policyCatalog.js +1 -1
  132. package/dist/src/availability/policyCatalog.js.map +1 -1
  133. package/dist/src/availability/policyHelpers.js +43 -32
  134. package/dist/src/availability/policyHelpers.js.map +1 -1
  135. package/dist/src/availability/policyHelpers.test.js +12 -1
  136. package/dist/src/availability/policyHelpers.test.js.map +1 -1
  137. package/dist/src/code_assist/admin/admin_controls.js +1 -1
  138. package/dist/src/code_assist/admin/admin_controls.js.map +1 -1
  139. package/dist/src/code_assist/experiments/flagNames.d.ts +1 -0
  140. package/dist/src/code_assist/experiments/flagNames.js +1 -0
  141. package/dist/src/code_assist/experiments/flagNames.js.map +1 -1
  142. package/dist/src/code_assist/oauth2.js +8 -3
  143. package/dist/src/code_assist/oauth2.js.map +1 -1
  144. package/dist/src/code_assist/oauth2.test.js +57 -0
  145. package/dist/src/code_assist/oauth2.test.js.map +1 -1
  146. package/dist/src/code_assist/server.js +1 -1
  147. package/dist/src/code_assist/server.js.map +1 -1
  148. package/dist/src/code_assist/setup.js +5 -2
  149. package/dist/src/code_assist/setup.js.map +1 -1
  150. package/dist/src/code_assist/setup.test.js +27 -1
  151. package/dist/src/code_assist/setup.test.js.map +1 -1
  152. package/dist/src/code_assist/types.d.ts +80 -80
  153. package/dist/src/commands/memory.js +1 -1
  154. package/dist/src/commands/memory.js.map +1 -1
  155. package/dist/src/config/agent-loop-context.d.ts +2 -0
  156. package/dist/src/config/config.d.ts +91 -23
  157. package/dist/src/config/config.js +238 -79
  158. package/dist/src/config/config.js.map +1 -1
  159. package/dist/src/config/config.test.js +189 -15
  160. package/dist/src/config/config.test.js.map +1 -1
  161. package/dist/src/config/defaultModelConfigs.js +9 -0
  162. package/dist/src/config/defaultModelConfigs.js.map +1 -1
  163. package/dist/src/config/extensions/integrity.js +1 -1
  164. package/dist/src/config/extensions/integrity.js.map +1 -1
  165. package/dist/src/config/memory.d.ts +1 -0
  166. package/dist/src/config/memory.js +6 -0
  167. package/dist/src/config/memory.js.map +1 -1
  168. package/dist/src/config/projectRegistry.js +5 -3
  169. package/dist/src/config/projectRegistry.js.map +1 -1
  170. package/dist/src/config/scoped-config.d.ts +30 -0
  171. package/dist/src/config/scoped-config.js +69 -0
  172. package/dist/src/config/scoped-config.js.map +1 -0
  173. package/dist/src/config/scoped-config.test.d.ts +6 -0
  174. package/dist/src/config/scoped-config.test.js +161 -0
  175. package/dist/src/config/scoped-config.test.js.map +1 -0
  176. package/dist/src/config/storage.d.ts +3 -0
  177. package/dist/src/config/storage.js +9 -0
  178. package/dist/src/config/storage.js.map +1 -1
  179. package/dist/src/config/storage.test.js +10 -5
  180. package/dist/src/config/storage.test.js.map +1 -1
  181. package/dist/src/config/topicState.d.ts +21 -0
  182. package/dist/src/config/topicState.js +41 -0
  183. package/dist/src/config/topicState.js.map +1 -0
  184. package/dist/src/confirmation-bus/types.d.ts +13 -4
  185. package/dist/src/confirmation-bus/types.js +2 -0
  186. package/dist/src/confirmation-bus/types.js.map +1 -1
  187. package/dist/src/context/agentHistoryProvider.d.ts +45 -0
  188. package/dist/src/context/agentHistoryProvider.js +294 -0
  189. package/dist/src/context/agentHistoryProvider.js.map +1 -0
  190. package/dist/src/context/agentHistoryProvider.test.d.ts +6 -0
  191. package/dist/src/context/agentHistoryProvider.test.js +357 -0
  192. package/dist/src/context/agentHistoryProvider.test.js.map +1 -0
  193. package/dist/src/context/chatCompressionService.js.map +1 -0
  194. package/dist/src/context/chatCompressionService.test.js.map +1 -0
  195. package/dist/src/context/contextCompressionService.d.ts +30 -0
  196. package/dist/src/context/contextCompressionService.js +405 -0
  197. package/dist/src/context/contextCompressionService.js.map +1 -0
  198. package/dist/src/context/contextCompressionService.test.js +253 -0
  199. package/dist/src/context/contextCompressionService.test.js.map +1 -0
  200. package/dist/src/{services/contextManager.d.ts → context/memoryContextManager.d.ts} +3 -1
  201. package/dist/src/{services/contextManager.js → context/memoryContextManager.js} +20 -11
  202. package/dist/src/context/memoryContextManager.js.map +1 -0
  203. package/dist/src/{services/contextManager.test.js → context/memoryContextManager.test.js} +42 -33
  204. package/dist/src/context/memoryContextManager.test.js.map +1 -0
  205. package/dist/src/context/profiles.d.ts +7 -0
  206. package/dist/src/context/profiles.js +21 -0
  207. package/dist/src/context/profiles.js.map +1 -0
  208. package/dist/src/context/toolDistillationService.d.ts +38 -0
  209. package/dist/src/context/toolDistillationService.js +170 -0
  210. package/dist/src/context/toolDistillationService.js.map +1 -0
  211. package/dist/src/context/toolDistillationService.test.d.ts +6 -0
  212. package/dist/src/context/toolDistillationService.test.js +86 -0
  213. package/dist/src/context/toolDistillationService.test.js.map +1 -0
  214. package/dist/src/{services → context}/toolOutputMaskingService.d.ts +2 -2
  215. package/dist/src/{services → context}/toolOutputMaskingService.js +7 -7
  216. package/dist/src/context/toolOutputMaskingService.js.map +1 -0
  217. package/dist/src/context/toolOutputMaskingService.test.d.ts +6 -0
  218. package/dist/src/{services → context}/toolOutputMaskingService.test.js +4 -5
  219. package/dist/src/context/toolOutputMaskingService.test.js.map +1 -0
  220. package/dist/src/context/truncation.d.ts +26 -0
  221. package/dist/src/context/truncation.js +102 -0
  222. package/dist/src/context/truncation.js.map +1 -0
  223. package/dist/src/context/types.d.ts +36 -0
  224. package/dist/src/context/types.js +7 -0
  225. package/dist/src/context/types.js.map +1 -0
  226. package/dist/src/core/AuthenticatedContentGenerator.js +9 -1
  227. package/dist/src/core/AuthenticatedContentGenerator.js.map +1 -1
  228. package/dist/src/core/baseLlmClient.js +1 -1
  229. package/dist/src/core/baseLlmClient.js.map +1 -1
  230. package/dist/src/core/baseLlmClient.test.js +1 -0
  231. package/dist/src/core/baseLlmClient.test.js.map +1 -1
  232. package/dist/src/core/client.d.ts +3 -1
  233. package/dist/src/core/client.js +24 -14
  234. package/dist/src/core/client.js.map +1 -1
  235. package/dist/src/core/client.test.js +36 -40
  236. package/dist/src/core/client.test.js.map +1 -1
  237. package/dist/src/core/contentGenerator.d.ts +0 -1
  238. package/dist/src/core/contentGenerator.js +2 -28
  239. package/dist/src/core/contentGenerator.js.map +1 -1
  240. package/dist/src/core/contentGenerator.test.js +1 -101
  241. package/dist/src/core/contentGenerator.test.js.map +1 -1
  242. package/dist/src/core/geminiChat.js +12 -5
  243. package/dist/src/core/geminiChat.js.map +1 -1
  244. package/dist/src/core/geminiChat.test.js +72 -18
  245. package/dist/src/core/geminiChat.test.js.map +1 -1
  246. package/dist/src/core/geminiChat_network_retry.test.js +1 -0
  247. package/dist/src/core/geminiChat_network_retry.test.js.map +1 -1
  248. package/dist/src/core/logger.js +4 -4
  249. package/dist/src/core/logger.js.map +1 -1
  250. package/dist/src/core/logger.test.js +1 -1
  251. package/dist/src/core/logger.test.js.map +1 -1
  252. package/dist/src/core/loggingContentGenerator.js +1 -1
  253. package/dist/src/core/loggingContentGenerator.js.map +1 -1
  254. package/dist/src/core/prompts-substitution.test.js +5 -0
  255. package/dist/src/core/prompts-substitution.test.js.map +1 -1
  256. package/dist/src/core/prompts.test.js +3 -0
  257. package/dist/src/core/prompts.test.js.map +1 -1
  258. package/dist/src/generated/git-commit.d.ts +2 -2
  259. package/dist/src/generated/git-commit.js +2 -2
  260. package/dist/src/hooks/hookEventHandler.js +8 -0
  261. package/dist/src/hooks/hookEventHandler.js.map +1 -1
  262. package/dist/src/hooks/hookRunner.js +9 -5
  263. package/dist/src/hooks/hookRunner.js.map +1 -1
  264. package/dist/src/hooks/hookRunner.test.js +20 -3
  265. package/dist/src/hooks/hookRunner.test.js.map +1 -1
  266. package/dist/src/hooks/hookSystem.d.ts +2 -0
  267. package/dist/src/hooks/hookSystem.js +1 -0
  268. package/dist/src/hooks/hookSystem.js.map +1 -1
  269. package/dist/src/hooks/hookTranslator.js +20 -13
  270. package/dist/src/hooks/hookTranslator.js.map +1 -1
  271. package/dist/src/hooks/hookTranslator.test.js +36 -0
  272. package/dist/src/hooks/hookTranslator.test.js.map +1 -1
  273. package/dist/src/hooks/types.d.ts +2 -0
  274. package/dist/src/ide/ide-client.js +3 -3
  275. package/dist/src/ide/ide-client.js.map +1 -1
  276. package/dist/src/ide/ide-connection-utils.js +1 -1
  277. package/dist/src/ide/ide-connection-utils.js.map +1 -1
  278. package/dist/src/ide/ide-installer.js +5 -4
  279. package/dist/src/ide/ide-installer.js.map +1 -1
  280. package/dist/src/ide/process-utils.js +3 -3
  281. package/dist/src/ide/process-utils.js.map +1 -1
  282. package/dist/src/index.d.ts +10 -3
  283. package/dist/src/index.js +13 -5
  284. package/dist/src/index.js.map +1 -1
  285. package/dist/src/mcp/mcpLauncher.js +1 -1
  286. package/dist/src/output/json-formatter.js +2 -1
  287. package/dist/src/output/json-formatter.js.map +1 -1
  288. package/dist/src/policy/config.d.ts +1 -1
  289. package/dist/src/policy/config.js +61 -24
  290. package/dist/src/policy/config.js.map +1 -1
  291. package/dist/src/policy/config.test.js +21 -20
  292. package/dist/src/policy/config.test.js.map +1 -1
  293. package/dist/src/policy/persistence.test.js +42 -0
  294. package/dist/src/policy/persistence.test.js.map +1 -1
  295. package/dist/src/policy/policies/discovered.toml +7 -0
  296. package/dist/src/policy/policies/memory-manager.toml +11 -1
  297. package/dist/src/policy/policies/non-interactive.toml +7 -0
  298. package/dist/src/policy/policies/plan.toml +36 -2
  299. package/dist/src/policy/policies/read-only.toml +12 -0
  300. package/dist/src/policy/policies/sandbox-default.toml +4 -4
  301. package/dist/src/policy/policies/write.toml +21 -0
  302. package/dist/src/policy/policies/yolo.toml +1 -1
  303. package/dist/src/policy/policy-engine.d.ts +2 -4
  304. package/dist/src/policy/policy-engine.js +47 -37
  305. package/dist/src/policy/policy-engine.js.map +1 -1
  306. package/dist/src/policy/policy-engine.test.js +236 -30
  307. package/dist/src/policy/policy-engine.test.js.map +1 -1
  308. package/dist/src/policy/sandboxPolicyManager.d.ts +26 -1
  309. package/dist/src/policy/sandboxPolicyManager.js +41 -12
  310. package/dist/src/policy/sandboxPolicyManager.js.map +1 -1
  311. package/dist/src/policy/sandboxPolicyManager.test.d.ts +6 -0
  312. package/dist/src/policy/sandboxPolicyManager.test.js +61 -0
  313. package/dist/src/policy/sandboxPolicyManager.test.js.map +1 -0
  314. package/dist/src/policy/topic-policy.test.d.ts +6 -0
  315. package/dist/src/policy/topic-policy.test.js +48 -0
  316. package/dist/src/policy/topic-policy.test.js.map +1 -0
  317. package/dist/src/policy/types.d.ts +9 -6
  318. package/dist/src/policy/types.js +11 -0
  319. package/dist/src/policy/types.js.map +1 -1
  320. package/dist/src/policy/workspace-policy.test.js +18 -15
  321. package/dist/src/policy/workspace-policy.test.js.map +1 -1
  322. package/dist/src/prompts/promptProvider.js +20 -4
  323. package/dist/src/prompts/promptProvider.js.map +1 -1
  324. package/dist/src/prompts/promptProvider.test.js +84 -1
  325. package/dist/src/prompts/promptProvider.test.js.map +1 -1
  326. package/dist/src/prompts/snippets-memory-manager.test.js +1 -1
  327. package/dist/src/prompts/snippets-memory-manager.test.js.map +1 -1
  328. package/dist/src/prompts/snippets.d.ts +3 -4
  329. package/dist/src/prompts/snippets.js +37 -52
  330. package/dist/src/prompts/snippets.js.map +1 -1
  331. package/dist/src/prompts/snippets.legacy.d.ts +6 -4
  332. package/dist/src/prompts/snippets.legacy.js +36 -7
  333. package/dist/src/prompts/snippets.legacy.js.map +1 -1
  334. package/dist/src/prompts/utils.test.js +7 -5
  335. package/dist/src/prompts/utils.test.js.map +1 -1
  336. package/dist/src/safety/built-in.js +1 -1
  337. package/dist/src/safety/built-in.js.map +1 -1
  338. package/dist/src/sandbox/linux/LinuxSandboxManager.d.ts +11 -1
  339. package/dist/src/sandbox/linux/LinuxSandboxManager.js +131 -41
  340. package/dist/src/sandbox/linux/LinuxSandboxManager.js.map +1 -1
  341. package/dist/src/sandbox/linux/LinuxSandboxManager.test.js +82 -139
  342. package/dist/src/sandbox/linux/LinuxSandboxManager.test.js.map +1 -1
  343. package/dist/src/sandbox/linux/bwrapArgsBuilder.d.ts +24 -0
  344. package/dist/src/sandbox/linux/bwrapArgsBuilder.js +200 -0
  345. package/dist/src/sandbox/linux/bwrapArgsBuilder.js.map +1 -0
  346. package/dist/src/sandbox/linux/bwrapArgsBuilder.test.d.ts +6 -0
  347. package/dist/src/sandbox/linux/bwrapArgsBuilder.test.js +247 -0
  348. package/dist/src/sandbox/linux/bwrapArgsBuilder.test.js.map +1 -0
  349. package/dist/src/sandbox/macos/MacOsSandboxManager.d.ts +10 -22
  350. package/dist/src/sandbox/macos/MacOsSandboxManager.js +67 -59
  351. package/dist/src/sandbox/macos/MacOsSandboxManager.js.map +1 -1
  352. package/dist/src/sandbox/macos/MacOsSandboxManager.test.js +168 -103
  353. package/dist/src/sandbox/macos/MacOsSandboxManager.test.js.map +1 -1
  354. package/dist/src/sandbox/macos/baseProfile.d.ts +1 -1
  355. package/dist/src/sandbox/macos/baseProfile.js +26 -8
  356. package/dist/src/sandbox/macos/baseProfile.js.map +1 -1
  357. package/dist/src/sandbox/macos/seatbeltArgsBuilder.d.ts +10 -10
  358. package/dist/src/sandbox/macos/seatbeltArgsBuilder.js +81 -93
  359. package/dist/src/sandbox/macos/seatbeltArgsBuilder.js.map +1 -1
  360. package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js +136 -99
  361. package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js.map +1 -1
  362. package/dist/src/sandbox/{macos → utils}/commandSafety.d.ts +11 -0
  363. package/dist/src/sandbox/{macos → utils}/commandSafety.js +47 -14
  364. package/dist/src/sandbox/utils/commandSafety.js.map +1 -0
  365. package/dist/src/sandbox/utils/commandUtils.d.ts +9 -0
  366. package/dist/src/sandbox/utils/commandUtils.js +57 -0
  367. package/dist/src/sandbox/utils/commandUtils.js.map +1 -0
  368. package/dist/src/sandbox/utils/fsUtils.d.ts +11 -0
  369. package/dist/src/sandbox/utils/fsUtils.js +84 -0
  370. package/dist/src/sandbox/utils/fsUtils.js.map +1 -0
  371. package/dist/src/sandbox/utils/fsUtils.test.d.ts +6 -0
  372. package/dist/src/sandbox/utils/fsUtils.test.js +43 -0
  373. package/dist/src/sandbox/utils/fsUtils.test.js.map +1 -0
  374. package/dist/src/sandbox/utils/proactivePermissions.d.ts +19 -0
  375. package/dist/src/sandbox/utils/proactivePermissions.js +163 -0
  376. package/dist/src/sandbox/utils/proactivePermissions.js.map +1 -0
  377. package/dist/src/sandbox/utils/proactivePermissions.test.d.ts +6 -0
  378. package/dist/src/sandbox/utils/proactivePermissions.test.js +145 -0
  379. package/dist/src/sandbox/utils/proactivePermissions.test.js.map +1 -0
  380. package/dist/src/sandbox/utils/sandboxDenialUtils.d.ts +27 -0
  381. package/dist/src/sandbox/utils/sandboxDenialUtils.js +142 -0
  382. package/dist/src/sandbox/utils/sandboxDenialUtils.js.map +1 -0
  383. package/dist/src/sandbox/utils/sandboxDenialUtils.test.d.ts +6 -0
  384. package/dist/src/sandbox/utils/sandboxDenialUtils.test.js +188 -0
  385. package/dist/src/sandbox/utils/sandboxDenialUtils.test.js.map +1 -0
  386. package/dist/src/sandbox/utils/sandboxReadWriteUtils.d.ts +5 -0
  387. package/dist/src/sandbox/utils/sandboxReadWriteUtils.js +64 -0
  388. package/dist/src/sandbox/utils/sandboxReadWriteUtils.js.map +1 -0
  389. package/dist/src/sandbox/windows/GeminiSandbox.cs +312 -223
  390. package/dist/src/sandbox/windows/WindowsSandboxManager.d.ts +16 -2
  391. package/dist/src/sandbox/windows/WindowsSandboxManager.js +261 -44
  392. package/dist/src/sandbox/windows/WindowsSandboxManager.js.map +1 -1
  393. package/dist/src/sandbox/windows/WindowsSandboxManager.test.js +379 -17
  394. package/dist/src/sandbox/windows/WindowsSandboxManager.test.js.map +1 -1
  395. package/dist/src/sandbox/windows/commandSafety.d.ts +19 -0
  396. package/dist/src/sandbox/windows/commandSafety.js +128 -0
  397. package/dist/src/sandbox/windows/commandSafety.js.map +1 -0
  398. package/dist/src/sandbox/windows/commandSafety.test.d.ts +6 -0
  399. package/dist/src/sandbox/windows/commandSafety.test.js +42 -0
  400. package/dist/src/sandbox/windows/commandSafety.test.js.map +1 -0
  401. package/dist/src/sandbox/windows/windowsSandboxDenialUtils.d.ts +13 -0
  402. package/dist/src/sandbox/windows/windowsSandboxDenialUtils.js +69 -0
  403. package/dist/src/sandbox/windows/windowsSandboxDenialUtils.js.map +1 -0
  404. package/dist/src/sandbox/windows/windowsSandboxDenialUtils.test.d.ts +6 -0
  405. package/dist/src/sandbox/windows/windowsSandboxDenialUtils.test.js +68 -0
  406. package/dist/src/sandbox/windows/windowsSandboxDenialUtils.test.js.map +1 -0
  407. package/dist/src/scheduler/policy.js +20 -5
  408. package/dist/src/scheduler/policy.js.map +1 -1
  409. package/dist/src/scheduler/policy.test.js +80 -0
  410. package/dist/src/scheduler/policy.test.js.map +1 -1
  411. package/dist/src/scheduler/scheduler.js +13 -3
  412. package/dist/src/scheduler/scheduler.js.map +1 -1
  413. package/dist/src/scheduler/scheduler.test.js +52 -0
  414. package/dist/src/scheduler/scheduler.test.js.map +1 -1
  415. package/dist/src/scheduler/scheduler_hooks.test.js +1 -0
  416. package/dist/src/scheduler/scheduler_hooks.test.js.map +1 -1
  417. package/dist/src/scheduler/state-manager.js +1 -1
  418. package/dist/src/scheduler/state-manager.js.map +1 -1
  419. package/dist/src/scheduler/state-manager.test.js +10 -0
  420. package/dist/src/scheduler/state-manager.test.js.map +1 -1
  421. package/dist/src/scheduler/tool-executor.js +7 -2
  422. package/dist/src/scheduler/tool-executor.js.map +1 -1
  423. package/dist/src/scheduler/tool-executor.test.js +38 -0
  424. package/dist/src/scheduler/tool-executor.test.js.map +1 -1
  425. package/dist/src/scheduler/types.d.ts +4 -2
  426. package/dist/src/services/chatRecordingService.d.ts +1 -13
  427. package/dist/src/services/chatRecordingService.js +45 -46
  428. package/dist/src/services/chatRecordingService.js.map +1 -1
  429. package/dist/src/services/chatRecordingService.test.js +79 -10
  430. package/dist/src/services/chatRecordingService.test.js.map +1 -1
  431. package/dist/src/services/executionLifecycleService.d.ts +44 -6
  432. package/dist/src/services/executionLifecycleService.js +52 -12
  433. package/dist/src/services/executionLifecycleService.js.map +1 -1
  434. package/dist/src/services/executionLifecycleService.test.js +157 -3
  435. package/dist/src/services/executionLifecycleService.test.js.map +1 -1
  436. package/dist/src/services/fileDiscoveryService.d.ts +17 -2
  437. package/dist/src/services/fileDiscoveryService.js +84 -20
  438. package/dist/src/services/fileDiscoveryService.js.map +1 -1
  439. package/dist/src/services/fileDiscoveryService.test.js +67 -1
  440. package/dist/src/services/fileDiscoveryService.test.js.map +1 -1
  441. package/dist/src/services/gitService.js +1 -1
  442. package/dist/src/services/gitService.js.map +1 -1
  443. package/dist/src/services/memoryService.d.ts +65 -0
  444. package/dist/src/services/memoryService.js +511 -0
  445. package/dist/src/services/memoryService.js.map +1 -0
  446. package/dist/src/services/memoryService.test.d.ts +6 -0
  447. package/dist/src/services/memoryService.test.js +563 -0
  448. package/dist/src/services/memoryService.test.js.map +1 -0
  449. package/dist/src/services/modelConfigService.d.ts +11 -0
  450. package/dist/src/services/modelConfigService.js +67 -0
  451. package/dist/src/services/modelConfigService.js.map +1 -1
  452. package/dist/src/services/modelConfigService.test.js +30 -0
  453. package/dist/src/services/modelConfigService.test.js.map +1 -1
  454. package/dist/src/services/sandboxManager.d.ts +107 -8
  455. package/dist/src/services/sandboxManager.integration.test.d.ts +1 -0
  456. package/dist/src/services/sandboxManager.integration.test.js +445 -0
  457. package/dist/src/services/sandboxManager.integration.test.js.map +1 -0
  458. package/dist/src/services/sandboxManager.js +176 -13
  459. package/dist/src/services/sandboxManager.js.map +1 -1
  460. package/dist/src/services/sandboxManager.test.js +401 -117
  461. package/dist/src/services/sandboxManager.test.js.map +1 -1
  462. package/dist/src/services/sandboxManagerFactory.d.ts +2 -3
  463. package/dist/src/services/sandboxManagerFactory.js +12 -22
  464. package/dist/src/services/sandboxManagerFactory.js.map +1 -1
  465. package/dist/src/services/sandboxedFileSystemService.d.ts +1 -0
  466. package/dist/src/services/sandboxedFileSystemService.js +43 -3
  467. package/dist/src/services/sandboxedFileSystemService.js.map +1 -1
  468. package/dist/src/services/sandboxedFileSystemService.test.js +97 -11
  469. package/dist/src/services/sandboxedFileSystemService.test.js.map +1 -1
  470. package/dist/src/services/shellExecutionService.d.ts +18 -1
  471. package/dist/src/services/shellExecutionService.js +115 -26
  472. package/dist/src/services/shellExecutionService.js.map +1 -1
  473. package/dist/src/services/shellExecutionService.test.js +70 -8
  474. package/dist/src/services/shellExecutionService.test.js.map +1 -1
  475. package/dist/src/services/test-data/resolved-aliases-retry.golden.json +4 -0
  476. package/dist/src/services/test-data/resolved-aliases.golden.json +4 -0
  477. package/dist/src/services/worktreeService.test.js +7 -7
  478. package/dist/src/services/worktreeService.test.js.map +1 -1
  479. package/dist/src/skills/skillLoader.d.ts +8 -0
  480. package/dist/src/skills/skillLoader.js +1 -1
  481. package/dist/src/skills/skillLoader.js.map +1 -1
  482. package/dist/src/telemetry/clearcut-logger/clearcut-logger.d.ts +29 -1
  483. package/dist/src/telemetry/clearcut-logger/clearcut-logger.js +107 -0
  484. package/dist/src/telemetry/clearcut-logger/clearcut-logger.js.map +1 -1
  485. package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js +172 -1
  486. package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js.map +1 -1
  487. package/dist/src/telemetry/clearcut-logger/event-metadata-key.d.ts +10 -1
  488. package/dist/src/telemetry/clearcut-logger/event-metadata-key.js +22 -1
  489. package/dist/src/telemetry/clearcut-logger/event-metadata-key.js.map +1 -1
  490. package/dist/src/telemetry/loggers.d.ts +22 -0
  491. package/dist/src/telemetry/loggers.js +41 -2
  492. package/dist/src/telemetry/loggers.js.map +1 -1
  493. package/dist/src/telemetry/loggers.test.js +8 -3
  494. package/dist/src/telemetry/loggers.test.js.map +1 -1
  495. package/dist/src/telemetry/metrics.d.ts +118 -1
  496. package/dist/src/telemetry/metrics.js +196 -4
  497. package/dist/src/telemetry/metrics.js.map +1 -1
  498. package/dist/src/telemetry/metrics.test.js +298 -0
  499. package/dist/src/telemetry/metrics.test.js.map +1 -1
  500. package/dist/src/telemetry/types.d.ts +3 -3
  501. package/dist/src/telemetry/types.js +9 -4
  502. package/dist/src/telemetry/types.js.map +1 -1
  503. package/dist/src/test-utils/mock-message-bus.d.ts +1 -1
  504. package/dist/src/test-utils/mock-message-bus.js +1 -1
  505. package/dist/src/test-utils/mock-message-bus.js.map +1 -1
  506. package/dist/src/tools/complete-task.d.ts +29 -0
  507. package/dist/src/tools/complete-task.js +123 -0
  508. package/dist/src/tools/complete-task.js.map +1 -0
  509. package/dist/src/tools/complete-task.test.d.ts +6 -0
  510. package/dist/src/tools/complete-task.test.js +114 -0
  511. package/dist/src/tools/complete-task.test.js.map +1 -0
  512. package/dist/src/tools/definitions/base-declarations.d.ts +8 -0
  513. package/dist/src/tools/definitions/base-declarations.js +10 -0
  514. package/dist/src/tools/definitions/base-declarations.js.map +1 -1
  515. package/dist/src/tools/definitions/coreTools.d.ts +2 -1
  516. package/dist/src/tools/definitions/coreTools.js +9 -3
  517. package/dist/src/tools/definitions/coreTools.js.map +1 -1
  518. package/dist/src/tools/definitions/dynamic-declaration-helpers.d.ts +4 -0
  519. package/dist/src/tools/definitions/dynamic-declaration-helpers.js +33 -2
  520. package/dist/src/tools/definitions/dynamic-declaration-helpers.js.map +1 -1
  521. package/dist/src/tools/definitions/model-family-sets/default-legacy.js +14 -9
  522. package/dist/src/tools/definitions/model-family-sets/default-legacy.js.map +1 -1
  523. package/dist/src/tools/definitions/model-family-sets/gemini-3.js +13 -7
  524. package/dist/src/tools/definitions/model-family-sets/gemini-3.js.map +1 -1
  525. package/dist/src/tools/definitions/trackerTools.js +3 -3
  526. package/dist/src/tools/definitions/trackerTools.js.map +1 -1
  527. package/dist/src/tools/definitions/types.d.ts +1 -0
  528. package/dist/src/tools/enter-plan-mode.js +15 -0
  529. package/dist/src/tools/enter-plan-mode.js.map +1 -1
  530. package/dist/src/tools/enter-plan-mode.test.js +25 -0
  531. package/dist/src/tools/enter-plan-mode.test.js.map +1 -1
  532. package/dist/src/tools/grep-utils.d.ts +2 -1
  533. package/dist/src/tools/grep-utils.js +22 -3
  534. package/dist/src/tools/grep-utils.js.map +1 -1
  535. package/dist/src/tools/grep.js +16 -3
  536. package/dist/src/tools/grep.js.map +1 -1
  537. package/dist/src/tools/grep.test.js +36 -8
  538. package/dist/src/tools/grep.test.js.map +1 -1
  539. package/dist/src/tools/jit-context.js +3 -3
  540. package/dist/src/tools/jit-context.js.map +1 -1
  541. package/dist/src/tools/jit-context.test.js +15 -13
  542. package/dist/src/tools/jit-context.test.js.map +1 -1
  543. package/dist/src/tools/ls.js +6 -4
  544. package/dist/src/tools/ls.js.map +1 -1
  545. package/dist/src/tools/ls.test.js +22 -7
  546. package/dist/src/tools/ls.test.js.map +1 -1
  547. package/dist/src/tools/mcp-client-manager.js +6 -3
  548. package/dist/src/tools/mcp-client-manager.js.map +1 -1
  549. package/dist/src/tools/mcp-client-manager.test.js +35 -0
  550. package/dist/src/tools/mcp-client-manager.test.js.map +1 -1
  551. package/dist/src/tools/mcp-client.js +1 -1
  552. package/dist/src/tools/mcp-client.js.map +1 -1
  553. package/dist/src/tools/mcp-tool.test.js +1 -1
  554. package/dist/src/tools/mcp-tool.test.js.map +1 -1
  555. package/dist/src/tools/memoryTool.d.ts +9 -2
  556. package/dist/src/tools/memoryTool.js +39 -15
  557. package/dist/src/tools/memoryTool.js.map +1 -1
  558. package/dist/src/tools/memoryTool.test.js +61 -2
  559. package/dist/src/tools/memoryTool.test.js.map +1 -1
  560. package/dist/src/tools/read-many-files.js +12 -4
  561. package/dist/src/tools/read-many-files.js.map +1 -1
  562. package/dist/src/tools/read-many-files.test.js +17 -17
  563. package/dist/src/tools/read-many-files.test.js.map +1 -1
  564. package/dist/src/tools/ripGrep.js +14 -1
  565. package/dist/src/tools/ripGrep.js.map +1 -1
  566. package/dist/src/tools/ripGrep.test.js +10 -10
  567. package/dist/src/tools/ripGrep.test.js.map +1 -1
  568. package/dist/src/tools/shell.d.ts +17 -4
  569. package/dist/src/tools/shell.js +342 -151
  570. package/dist/src/tools/shell.js.map +1 -1
  571. package/dist/src/tools/shell.test.js +204 -11
  572. package/dist/src/tools/shell.test.js.map +1 -1
  573. package/dist/src/tools/shellBackgroundTools.d.ts +38 -0
  574. package/dist/src/tools/shellBackgroundTools.integration.test.d.ts +6 -0
  575. package/dist/src/tools/shellBackgroundTools.integration.test.js +86 -0
  576. package/dist/src/tools/shellBackgroundTools.integration.test.js.map +1 -0
  577. package/dist/src/tools/shellBackgroundTools.js +186 -0
  578. package/dist/src/tools/shellBackgroundTools.js.map +1 -0
  579. package/dist/src/tools/shellBackgroundTools.test.d.ts +6 -0
  580. package/dist/src/tools/shellBackgroundTools.test.js +230 -0
  581. package/dist/src/tools/shellBackgroundTools.test.js.map +1 -0
  582. package/dist/src/tools/shell_proactive.test.d.ts +6 -0
  583. package/dist/src/tools/shell_proactive.test.js +122 -0
  584. package/dist/src/tools/shell_proactive.test.js.map +1 -0
  585. package/dist/src/tools/tool-names.d.ts +4 -4
  586. package/dist/src/tools/tool-names.js +6 -3
  587. package/dist/src/tools/tool-names.js.map +1 -1
  588. package/dist/src/tools/tool-registry.js +11 -1
  589. package/dist/src/tools/tool-registry.js.map +1 -1
  590. package/dist/src/tools/tool-registry.test.js +43 -1
  591. package/dist/src/tools/tool-registry.test.js.map +1 -1
  592. package/dist/src/tools/tools.d.ts +12 -1
  593. package/dist/src/tools/tools.js +16 -1
  594. package/dist/src/tools/tools.js.map +1 -1
  595. package/dist/src/tools/tools.test.js +42 -1
  596. package/dist/src/tools/tools.test.js.map +1 -1
  597. package/dist/src/tools/topicTool.d.ts +29 -0
  598. package/dist/src/tools/topicTool.js +72 -0
  599. package/dist/src/tools/topicTool.js.map +1 -0
  600. package/dist/src/tools/topicTool.test.d.ts +6 -0
  601. package/dist/src/tools/topicTool.test.js +105 -0
  602. package/dist/src/tools/topicTool.test.js.map +1 -0
  603. package/dist/src/tools/web-fetch.js +40 -22
  604. package/dist/src/tools/web-fetch.js.map +1 -1
  605. package/dist/src/tools/web-fetch.test.js +28 -0
  606. package/dist/src/tools/web-fetch.test.js.map +1 -1
  607. package/dist/src/tools/xcode-mcp-fix-transport.js +1 -1
  608. package/dist/src/tools/xcode-mcp-fix-transport.js.map +1 -1
  609. package/dist/src/utils/bfsFileSearch.js +3 -6
  610. package/dist/src/utils/bfsFileSearch.js.map +1 -1
  611. package/dist/src/utils/checkpointUtils.d.ts +4 -4
  612. package/dist/src/utils/checkpointUtils.js +11 -8
  613. package/dist/src/utils/checkpointUtils.js.map +1 -1
  614. package/dist/src/utils/compatibility.js +0 -7
  615. package/dist/src/utils/compatibility.js.map +1 -1
  616. package/dist/src/utils/compatibility.test.js +0 -9
  617. package/dist/src/utils/compatibility.test.js.map +1 -1
  618. package/dist/src/utils/editor.js +3 -0
  619. package/dist/src/utils/editor.js.map +1 -1
  620. package/dist/src/utils/errorParsing.js +2 -2
  621. package/dist/src/utils/errorParsing.js.map +1 -1
  622. package/dist/src/utils/errors.d.ts +3 -0
  623. package/dist/src/utils/errors.js +28 -6
  624. package/dist/src/utils/errors.js.map +1 -1
  625. package/dist/src/utils/errors.test.js +23 -0
  626. package/dist/src/utils/errors.test.js.map +1 -1
  627. package/dist/src/utils/events.d.ts +12 -0
  628. package/dist/src/utils/events.js +7 -0
  629. package/dist/src/utils/events.js.map +1 -1
  630. package/dist/src/utils/fetch.d.ts +1 -0
  631. package/dist/src/utils/fetch.js +22 -6
  632. package/dist/src/utils/fetch.js.map +1 -1
  633. package/dist/src/utils/fetch.test.js +26 -1
  634. package/dist/src/utils/fetch.test.js.map +1 -1
  635. package/dist/src/utils/fileUtils.js +1 -1
  636. package/dist/src/utils/fileUtils.js.map +1 -1
  637. package/dist/src/utils/filesearch/crawler.js +1 -1
  638. package/dist/src/utils/filesearch/crawler.js.map +1 -1
  639. package/dist/src/utils/filesearch/fileSearch.test.js +7 -2
  640. package/dist/src/utils/filesearch/fileSearch.test.js.map +1 -1
  641. package/dist/src/utils/getFolderStructure.js +1 -1
  642. package/dist/src/utils/getFolderStructure.js.map +1 -1
  643. package/dist/src/utils/getPty.js +2 -2
  644. package/dist/src/utils/getPty.js.map +1 -1
  645. package/dist/src/utils/gitIgnoreParser.d.ts +2 -2
  646. package/dist/src/utils/gitIgnoreParser.js +30 -52
  647. package/dist/src/utils/gitIgnoreParser.js.map +1 -1
  648. package/dist/src/utils/gitIgnoreParser.test.js +51 -185
  649. package/dist/src/utils/gitIgnoreParser.test.js.map +1 -1
  650. package/dist/src/utils/gitUtils.js +2 -2
  651. package/dist/src/utils/gitUtils.js.map +1 -1
  652. package/dist/src/utils/googleErrors.js +5 -5
  653. package/dist/src/utils/googleErrors.js.map +1 -1
  654. package/dist/src/utils/ignoreFileParser.d.ts +2 -2
  655. package/dist/src/utils/ignoreFileParser.js +7 -18
  656. package/dist/src/utils/ignoreFileParser.js.map +1 -1
  657. package/dist/src/utils/ignoreFileParser.test.js +40 -132
  658. package/dist/src/utils/ignoreFileParser.test.js.map +1 -1
  659. package/dist/src/utils/ignorePathUtils.d.ts +11 -0
  660. package/dist/src/utils/ignorePathUtils.js +39 -0
  661. package/dist/src/utils/ignorePathUtils.js.map +1 -0
  662. package/dist/src/utils/ignorePathUtils.test.d.ts +6 -0
  663. package/dist/src/utils/ignorePathUtils.test.js +70 -0
  664. package/dist/src/utils/ignorePathUtils.test.js.map +1 -0
  665. package/dist/src/utils/memoryDiscovery.d.ts +6 -4
  666. package/dist/src/utils/memoryDiscovery.js +69 -48
  667. package/dist/src/utils/memoryDiscovery.js.map +1 -1
  668. package/dist/src/utils/memoryDiscovery.test.js +40 -0
  669. package/dist/src/utils/memoryDiscovery.test.js.map +1 -1
  670. package/dist/src/utils/memoryImportProcessor.d.ts +1 -1
  671. package/dist/src/utils/memoryImportProcessor.js +24 -15
  672. package/dist/src/utils/memoryImportProcessor.js.map +1 -1
  673. package/dist/src/utils/paths.d.ts +8 -0
  674. package/dist/src/utils/paths.js +37 -6
  675. package/dist/src/utils/paths.js.map +1 -1
  676. package/dist/src/utils/paths.test.js +61 -3
  677. package/dist/src/utils/paths.test.js.map +1 -1
  678. package/dist/src/utils/process-utils.js +2 -2
  679. package/dist/src/utils/process-utils.js.map +1 -1
  680. package/dist/src/utils/retry.js +7 -0
  681. package/dist/src/utils/retry.js.map +1 -1
  682. package/dist/src/utils/retry.test.js +41 -0
  683. package/dist/src/utils/retry.test.js.map +1 -1
  684. package/dist/src/utils/secure-browser-launcher.js +1 -1
  685. package/dist/src/utils/secure-browser-launcher.js.map +1 -1
  686. package/dist/src/utils/sessionOperations.d.ts +19 -0
  687. package/dist/src/utils/sessionOperations.js +101 -0
  688. package/dist/src/utils/sessionOperations.js.map +1 -0
  689. package/dist/src/utils/sessionOperations.test.d.ts +6 -0
  690. package/dist/src/utils/sessionOperations.test.js +92 -0
  691. package/dist/src/utils/sessionOperations.test.js.map +1 -0
  692. package/dist/src/utils/shell-utils.d.ts +24 -0
  693. package/dist/src/utils/shell-utils.integration.test.js +1 -1
  694. package/dist/src/utils/shell-utils.integration.test.js.map +1 -1
  695. package/dist/src/utils/shell-utils.js +86 -6
  696. package/dist/src/utils/shell-utils.js.map +1 -1
  697. package/dist/src/utils/shell-utils.test.js +13 -1
  698. package/dist/src/utils/shell-utils.test.js.map +1 -1
  699. package/dist/src/utils/systemEncoding.js +1 -1
  700. package/dist/src/utils/systemEncoding.js.map +1 -1
  701. package/dist/src/utils/terminalSerializer.d.ts +1 -0
  702. package/dist/src/utils/terminalSerializer.js +31 -8
  703. package/dist/src/utils/terminalSerializer.js.map +1 -1
  704. package/dist/src/utils/terminalSerializer.test.js +3 -2
  705. package/dist/src/utils/terminalSerializer.test.js.map +1 -1
  706. package/dist/src/utils/textUtils.d.ts +8 -0
  707. package/dist/src/utils/textUtils.js +16 -0
  708. package/dist/src/utils/textUtils.js.map +1 -1
  709. package/dist/src/utils/tokenCalculation.d.ts +2 -0
  710. package/dist/src/utils/tokenCalculation.js +2 -2
  711. package/dist/src/utils/tokenCalculation.js.map +1 -1
  712. package/dist/src/utils/workspaceContext.js +2 -2
  713. package/dist/src/utils/workspaceContext.js.map +1 -1
  714. package/dist/tsconfig.tsbuildinfo +1 -1
  715. package/package.json +2 -1
  716. package/dist/docs/CONTRIBUTING.md +0 -566
  717. package/dist/docs/get-started/examples.md +0 -141
  718. package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.js +0 -164
  719. package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.js.map +0 -1
  720. package/dist/src/sandbox/macos/commandSafety.js.map +0 -1
  721. package/dist/src/services/chatCompressionService.js.map +0 -1
  722. package/dist/src/services/chatCompressionService.test.js.map +0 -1
  723. package/dist/src/services/contextManager.js.map +0 -1
  724. package/dist/src/services/contextManager.test.js.map +0 -1
  725. package/dist/src/services/toolOutputMaskingService.js.map +0 -1
  726. package/dist/src/services/toolOutputMaskingService.test.js.map +0 -1
  727. /package/dist/src/{services/toolOutputMaskingService.test.d.ts → agents/browser/snapshotSuperseder.test.d.ts} +0 -0
  728. /package/dist/src/{services → context}/chatCompressionService.d.ts +0 -0
  729. /package/dist/src/{services → context}/chatCompressionService.js +0 -0
  730. /package/dist/src/{services → context}/chatCompressionService.test.d.ts +0 -0
  731. /package/dist/src/{services → context}/chatCompressionService.test.js +0 -0
  732. /package/dist/src/{sandbox/macos/MacOsSandboxManager.integration.test.d.ts → context/contextCompressionService.test.d.ts} +0 -0
  733. /package/dist/src/{services/contextManager.test.d.ts → context/memoryContextManager.test.d.ts} +0 -0
@@ -1,6 +1,6 @@
1
- # Latest stable release: v0.34.0
1
+ # Latest stable release: v0.36.0
2
2
 
3
- Released: March 17, 2026
3
+ Released: April 1, 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,474 +11,371 @@ npm install -g @google/gemini-cli
11
11
 
12
12
  ## Highlights
13
13
 
14
- - **Plan Mode Enabled by Default**: The comprehensive planning capability is now
15
- enabled by default, allowing for better structured task management and
16
- execution.
17
- - **Enhanced Sandboxing Capabilities**: Added support for native gVisor (runsc)
18
- sandboxing as well as experimental LXC container sandboxing to provide more
19
- robust and isolated execution environments.
20
- - **Improved Loop Detection & Recovery**: Implemented iterative loop detection
21
- and model feedback mechanisms to prevent the CLI from getting stuck in
22
- repetitive actions.
23
- - **Customizable UI Elements**: You can now configure a custom footer using the
24
- new `/footer` command, and enjoy standardized semantic focus colors for better
25
- history visibility.
26
- - **Extensive Subagent Updates**: Refinements across the tracker visualization
27
- tools, background process logging, and broader fallback support for models in
28
- tool execution scenarios.
14
+ - **Multi-Registry Architecture and Tool Isolation:** Introduced a
15
+ multi-registry architecture for subagents and implemented strict sandboxing
16
+ for macOS (Seatbelt) and Windows to enhance security and isolation.
17
+ - **Improved Subagent Coordination:** Enhanced subagents with local execution
18
+ capabilities, JIT context injection (upward traversal capped at git root), and
19
+ resilient tool rejection with contextual feedback.
20
+ - **Enhanced UI and UX:** Implemented a refreshed UX for the Composer layout,
21
+ improved terminal fallback warnings, and resolved various UI flickering and
22
+ state persistence issues.
23
+ - **Git Worktree Support:** Added support for Git worktrees to enable isolated
24
+ parallel sessions within the same repository.
25
+ - **Plan Mode Improvements:** Plan mode now supports non-interactive execution
26
+ and includes hardened sandbox path resolution to prevent hallucinations.
29
27
 
30
28
  ## What's Changed
31
29
 
32
- - feat(cli): add chat resume footer on session quit by @lordshashank in
33
- [#20667](https://github.com/google-gemini/gemini-cli/pull/20667)
34
- - Support bold and other styles in svg snapshots by @jacob314 in
35
- [#20937](https://github.com/google-gemini/gemini-cli/pull/20937)
36
- - fix(core): increase A2A agent timeout to 30 minutes by @adamfweidman in
37
- [#21028](https://github.com/google-gemini/gemini-cli/pull/21028)
38
- - Cleanup old branches. by @jacob314 in
39
- [#19354](https://github.com/google-gemini/gemini-cli/pull/19354)
40
- - chore(release): bump version to 0.34.0-nightly.20260303.34f0c1538 by
41
- @gemini-cli-robot in
42
- [#21034](https://github.com/google-gemini/gemini-cli/pull/21034)
43
- - feat(ui): standardize semantic focus colors and enhance history visibility by
44
- @keithguerin in
45
- [#20745](https://github.com/google-gemini/gemini-cli/pull/20745)
46
- - fix: merge duplicate imports in packages/core (3/4) by @Nixxx19 in
47
- [#20928](https://github.com/google-gemini/gemini-cli/pull/20928)
48
- - Add extra safety checks for proto pollution by @jacob314 in
49
- [#20396](https://github.com/google-gemini/gemini-cli/pull/20396)
50
- - feat(core): Add tracker CRUD tools & visualization by @anj-s in
51
- [#19489](https://github.com/google-gemini/gemini-cli/pull/19489)
52
- - Revert "fix(ui): persist expansion in AskUser dialog when navigating options"
53
- by @jacob314 in
54
- [#21042](https://github.com/google-gemini/gemini-cli/pull/21042)
55
- - Changelog for v0.33.0-preview.0 by @gemini-cli-robot in
56
- [#21030](https://github.com/google-gemini/gemini-cli/pull/21030)
57
- - fix: model persistence for all scenarios by @sripasg in
58
- [#21051](https://github.com/google-gemini/gemini-cli/pull/21051)
59
- - chore/release: bump version to 0.34.0-nightly.20260304.28af4e127 by
60
- @gemini-cli-robot in
61
- [#21054](https://github.com/google-gemini/gemini-cli/pull/21054)
62
- - Consistently guard restarts against concurrent auto updates by @scidomino in
63
- [#21016](https://github.com/google-gemini/gemini-cli/pull/21016)
64
- - Defensive coding to reduce the risk of Maximum update depth errors by
65
- @jacob314 in [#20940](https://github.com/google-gemini/gemini-cli/pull/20940)
66
- - fix(cli): Polish shell autocomplete rendering to be a little more shell native
67
- feeling. by @jacob314 in
68
- [#20931](https://github.com/google-gemini/gemini-cli/pull/20931)
69
- - Docs: Update plan mode docs by @jkcinouye in
70
- [#19682](https://github.com/google-gemini/gemini-cli/pull/19682)
71
- - fix(mcp): Notifications/tools/list_changed support not working by @jacob314 in
72
- [#21050](https://github.com/google-gemini/gemini-cli/pull/21050)
73
- - fix(cli): register extension lifecycle events in DebugProfiler by
74
- @fayerman-source in
75
- [#20101](https://github.com/google-gemini/gemini-cli/pull/20101)
76
- - chore(dev): update vscode settings for typescriptreact by @rohit-4321 in
77
- [#19907](https://github.com/google-gemini/gemini-cli/pull/19907)
78
- - fix(cli): enable multi-arch docker builds for sandbox by @ru-aish in
79
- [#19821](https://github.com/google-gemini/gemini-cli/pull/19821)
80
- - Changelog for v0.32.0 by @gemini-cli-robot in
81
- [#21033](https://github.com/google-gemini/gemini-cli/pull/21033)
82
- - Changelog for v0.33.0-preview.1 by @gemini-cli-robot in
83
- [#21058](https://github.com/google-gemini/gemini-cli/pull/21058)
84
- - feat(core): improve @scripts/copy_files.js autocomplete to prioritize
85
- filenames by @sehoon38 in
86
- [#21064](https://github.com/google-gemini/gemini-cli/pull/21064)
87
- - feat(sandbox): add experimental LXC container sandbox support by @h30s in
88
- [#20735](https://github.com/google-gemini/gemini-cli/pull/20735)
89
- - feat(evals): add overall pass rate row to eval nightly summary table by
90
- @gundermanc in
91
- [#20905](https://github.com/google-gemini/gemini-cli/pull/20905)
92
- - feat(telemetry): include language in telemetry and fix accepted lines
93
- computation by @gundermanc in
94
- [#21126](https://github.com/google-gemini/gemini-cli/pull/21126)
95
- - Changelog for v0.32.1 by @gemini-cli-robot in
96
- [#21055](https://github.com/google-gemini/gemini-cli/pull/21055)
97
- - feat(core): add robustness tests, logging, and metrics for CodeAssistServer
98
- SSE parsing by @yunaseoul in
99
- [#21013](https://github.com/google-gemini/gemini-cli/pull/21013)
100
- - feat: add issue assignee workflow by @kartikangiras in
101
- [#21003](https://github.com/google-gemini/gemini-cli/pull/21003)
102
- - fix: improve error message when OAuth succeeds but project ID is required by
103
- @Nixxx19 in [#21070](https://github.com/google-gemini/gemini-cli/pull/21070)
104
- - feat(loop-reduction): implement iterative loop detection and model feedback by
105
- @aishaneeshah in
106
- [#20763](https://github.com/google-gemini/gemini-cli/pull/20763)
107
- - chore(github): require prompt approvers for agent prompt files by @gundermanc
108
- in [#20896](https://github.com/google-gemini/gemini-cli/pull/20896)
109
- - Docs: Create tools reference by @jkcinouye in
110
- [#19470](https://github.com/google-gemini/gemini-cli/pull/19470)
111
- - fix(core, a2a-server): prevent hang during OAuth in non-interactive sessions
112
- by @spencer426 in
113
- [#21045](https://github.com/google-gemini/gemini-cli/pull/21045)
114
- - chore(cli): enable deprecated settings removal by default by @yashodipmore in
115
- [#20682](https://github.com/google-gemini/gemini-cli/pull/20682)
116
- - feat(core): Disable fast ack helper for hints. by @joshualitt in
117
- [#21011](https://github.com/google-gemini/gemini-cli/pull/21011)
118
- - fix(ui): suppress redundant failure note when tool error note is shown by
119
- @NTaylorMullen in
120
- [#21078](https://github.com/google-gemini/gemini-cli/pull/21078)
121
- - docs: document planning workflows with Conductor example by @jerop in
122
- [#21166](https://github.com/google-gemini/gemini-cli/pull/21166)
123
- - feat(release): ship esbuild bundle in npm package by @genneth in
124
- [#19171](https://github.com/google-gemini/gemini-cli/pull/19171)
125
- - fix(extensions): preserve symlinks in extension source path while enforcing
126
- folder trust by @galz10 in
127
- [#20867](https://github.com/google-gemini/gemini-cli/pull/20867)
128
- - fix(cli): defer tool exclusions to policy engine in non-interactive mode by
129
- @EricRahm in [#20639](https://github.com/google-gemini/gemini-cli/pull/20639)
130
- - fix(ui): removed double padding on rendered content by @devr0306 in
131
- [#21029](https://github.com/google-gemini/gemini-cli/pull/21029)
132
- - fix(core): truncate excessively long lines in grep search output by
133
- @gundermanc in
134
- [#21147](https://github.com/google-gemini/gemini-cli/pull/21147)
135
- - feat: add custom footer configuration via `/footer` by @jackwotherspoon in
136
- [#19001](https://github.com/google-gemini/gemini-cli/pull/19001)
137
- - perf(core): fix OOM crash in long-running sessions by @WizardsForgeGames in
138
- [#19608](https://github.com/google-gemini/gemini-cli/pull/19608)
139
- - refactor(cli): categorize built-in themes into dark/ and light/ directories by
140
- @JayadityaGit in
141
- [#18634](https://github.com/google-gemini/gemini-cli/pull/18634)
142
- - fix(core): explicitly allow codebase_investigator and cli_help in read-only
143
- mode by @Adib234 in
144
- [#21157](https://github.com/google-gemini/gemini-cli/pull/21157)
145
- - test: add browser agent integration tests by @kunal-10-cloud in
146
- [#21151](https://github.com/google-gemini/gemini-cli/pull/21151)
147
- - fix(cli): fix enabling kitty codes on Windows Terminal by @scidomino in
148
- [#21136](https://github.com/google-gemini/gemini-cli/pull/21136)
149
- - refactor(core): extract shared OAuth flow primitives from MCPOAuthProvider by
30
+ - Changelog for v0.33.2 by @gemini-cli-robot in
31
+ [#22730](https://github.com/google-gemini/gemini-cli/pull/22730)
32
+ - feat(core): multi-registry architecture and tool filtering for subagents by
33
+ @akh64bit in [#22712](https://github.com/google-gemini/gemini-cli/pull/22712)
34
+ - Changelog for v0.34.0-preview.4 by @gemini-cli-robot in
35
+ [#22752](https://github.com/google-gemini/gemini-cli/pull/22752)
36
+ - fix(devtools): use theme-aware text colors for console warnings and errors by
150
37
  @SandyTao520 in
151
- [#20895](https://github.com/google-gemini/gemini-cli/pull/20895)
152
- - fix(ui): add partial output to cancelled shell UI by @devr0306 in
153
- [#21178](https://github.com/google-gemini/gemini-cli/pull/21178)
154
- - fix(cli): replace hardcoded keybinding strings with dynamic formatters by
155
- @scidomino in [#21159](https://github.com/google-gemini/gemini-cli/pull/21159)
156
- - DOCS: Update quota and pricing page by @g-samroberts in
157
- [#21194](https://github.com/google-gemini/gemini-cli/pull/21194)
158
- - feat(telemetry): implement Clearcut logging for startup statistics by
159
- @yunaseoul in [#21172](https://github.com/google-gemini/gemini-cli/pull/21172)
160
- - feat(triage): add area/documentation to issue triage by @g-samroberts in
161
- [#21222](https://github.com/google-gemini/gemini-cli/pull/21222)
162
- - Fix so shell calls are formatted by @jacob314 in
163
- [#21237](https://github.com/google-gemini/gemini-cli/pull/21237)
164
- - feat(cli): add native gVisor (runsc) sandboxing support by @Zheyuan-Lin in
165
- [#21062](https://github.com/google-gemini/gemini-cli/pull/21062)
166
- - docs: use absolute paths for internal links in plan-mode.md by @jerop in
167
- [#21299](https://github.com/google-gemini/gemini-cli/pull/21299)
168
- - fix(core): prevent unhandled AbortError crash during stream loop detection by
169
- @7hokerz in [#21123](https://github.com/google-gemini/gemini-cli/pull/21123)
170
- - fix:reorder env var redaction checks to scan values first by @kartikangiras in
171
- [#21059](https://github.com/google-gemini/gemini-cli/pull/21059)
172
- - fix(acp): rename --experimental-acp to --acp & remove Zed-specific refrences
173
- by @skeshive in
174
- [#21171](https://github.com/google-gemini/gemini-cli/pull/21171)
175
- - feat(core): fallback to 2.5 models with no access for toolcalls by @sehoon38
176
- in [#21283](https://github.com/google-gemini/gemini-cli/pull/21283)
177
- - test(core): improve testing for API request/response parsing by @sehoon38 in
178
- [#21227](https://github.com/google-gemini/gemini-cli/pull/21227)
179
- - docs(links): update docs-writer skill and fix broken link by @g-samroberts in
180
- [#21314](https://github.com/google-gemini/gemini-cli/pull/21314)
181
- - Fix code colorizer ansi escape bug. by @jacob314 in
182
- [#21321](https://github.com/google-gemini/gemini-cli/pull/21321)
183
- - remove wildcard behavior on keybindings by @scidomino in
184
- [#21315](https://github.com/google-gemini/gemini-cli/pull/21315)
185
- - feat(acp): Add support for AI Gateway auth by @skeshive in
186
- [#21305](https://github.com/google-gemini/gemini-cli/pull/21305)
187
- - fix(theme): improve theme color contrast for macOS Terminal.app by @clocky in
188
- [#21175](https://github.com/google-gemini/gemini-cli/pull/21175)
189
- - feat (core): Implement tracker related SI changes by @anj-s in
190
- [#19964](https://github.com/google-gemini/gemini-cli/pull/19964)
191
- - Changelog for v0.33.0-preview.2 by @gemini-cli-robot in
192
- [#21333](https://github.com/google-gemini/gemini-cli/pull/21333)
193
- - Changelog for v0.33.0-preview.3 by @gemini-cli-robot in
194
- [#21347](https://github.com/google-gemini/gemini-cli/pull/21347)
195
- - docs: format release times as HH:MM UTC by @pavan-sh in
196
- [#20726](https://github.com/google-gemini/gemini-cli/pull/20726)
197
- - fix(cli): implement --all flag for extensions uninstall by @sehoon38 in
198
- [#21319](https://github.com/google-gemini/gemini-cli/pull/21319)
199
- - docs: fix incorrect relative links to command reference by @kanywst in
200
- [#20964](https://github.com/google-gemini/gemini-cli/pull/20964)
201
- - documentiong ensures ripgrep by @Jatin24062005 in
202
- [#21298](https://github.com/google-gemini/gemini-cli/pull/21298)
203
- - fix(core): handle AbortError thrown during processTurn by @MumuTW in
204
- [#21296](https://github.com/google-gemini/gemini-cli/pull/21296)
205
- - docs(cli): clarify ! command output visibility in shell commands tutorial by
206
- @MohammedADev in
207
- [#21041](https://github.com/google-gemini/gemini-cli/pull/21041)
208
- - fix: logic for task tracker strategy and remove tracker tools by @anj-s in
209
- [#21355](https://github.com/google-gemini/gemini-cli/pull/21355)
210
- - fix(partUtils): display media type and size for inline data parts by @Aboudjem
211
- in [#21358](https://github.com/google-gemini/gemini-cli/pull/21358)
212
- - Fix(accessibility): add screen reader support to RewindViewer by @Famous077 in
213
- [#20750](https://github.com/google-gemini/gemini-cli/pull/20750)
214
- - fix(hooks): propagate stopHookActive in AfterAgent retry path (#20426) by
215
- @Aarchi-07 in [#20439](https://github.com/google-gemini/gemini-cli/pull/20439)
216
- - fix(core): deduplicate GEMINI.md files by device/inode on case-insensitive
217
- filesystems (#19904) by @Nixxx19 in
218
- [#19915](https://github.com/google-gemini/gemini-cli/pull/19915)
219
- - feat(core): add concurrency safety guidance for subagent delegation (#17753)
220
- by @abhipatel12 in
221
- [#21278](https://github.com/google-gemini/gemini-cli/pull/21278)
222
- - feat(ui): dynamically generate all keybinding hints by @scidomino in
223
- [#21346](https://github.com/google-gemini/gemini-cli/pull/21346)
224
- - feat(core): implement unified KeychainService and migrate token storage by
225
- @ehedlund in [#21344](https://github.com/google-gemini/gemini-cli/pull/21344)
226
- - fix(cli): gracefully handle --resume when no sessions exist by @SandyTao520 in
227
- [#21429](https://github.com/google-gemini/gemini-cli/pull/21429)
228
- - fix(plan): keep approved plan during chat compression by @ruomengz in
229
- [#21284](https://github.com/google-gemini/gemini-cli/pull/21284)
230
- - feat(core): implement generic CacheService and optimize setupUser by @sehoon38
231
- in [#21374](https://github.com/google-gemini/gemini-cli/pull/21374)
232
- - Update quota and pricing documentation with subscription tiers by @srithreepo
233
- in [#21351](https://github.com/google-gemini/gemini-cli/pull/21351)
234
- - fix(core): append correct OTLP paths for HTTP exporters by
235
- @sebastien-prudhomme in
236
- [#16836](https://github.com/google-gemini/gemini-cli/pull/16836)
237
- - Changelog for v0.33.0-preview.4 by @gemini-cli-robot in
238
- [#21354](https://github.com/google-gemini/gemini-cli/pull/21354)
239
- - feat(cli): implement dot-prefixing for slash command conflicts by @ehedlund in
240
- [#20979](https://github.com/google-gemini/gemini-cli/pull/20979)
241
- - refactor(core): standardize MCP tool naming to mcp\_ FQN format by
38
+ [#22181](https://github.com/google-gemini/gemini-cli/pull/22181)
39
+ - Add support for dynamic model Resolution to ModelConfigService by @kevinjwang1
40
+ in [#22578](https://github.com/google-gemini/gemini-cli/pull/22578)
41
+ - chore(release): bump version to 0.36.0-nightly.20260317.2f90b4653 by
42
+ @gemini-cli-robot in
43
+ [#22858](https://github.com/google-gemini/gemini-cli/pull/22858)
44
+ - fix(cli): use active sessionId in useLogger and improve resume robustness by
45
+ @mattKorwel in
46
+ [#22606](https://github.com/google-gemini/gemini-cli/pull/22606)
47
+ - fix(cli): expand tilde in policy paths from settings.json by @abhipatel12 in
48
+ [#22772](https://github.com/google-gemini/gemini-cli/pull/22772)
49
+ - fix(core): add actionable warnings for terminal fallbacks (#14426) by
50
+ @spencer426 in
51
+ [#22211](https://github.com/google-gemini/gemini-cli/pull/22211)
52
+ - feat(tracker): integrate task tracker protocol into core system prompt by
53
+ @anj-s in [#22442](https://github.com/google-gemini/gemini-cli/pull/22442)
54
+ - chore: add posttest build hooks and fix missing dependencies by @NTaylorMullen
55
+ in [#22865](https://github.com/google-gemini/gemini-cli/pull/22865)
56
+ - feat(a2a): add agent acknowledgment command and enhance registry discovery by
57
+ @alisa-alisa in
58
+ [#22389](https://github.com/google-gemini/gemini-cli/pull/22389)
59
+ - fix(cli): automatically add all VSCode workspace folders to Gemini context by
60
+ @sakshisemalti in
61
+ [#21380](https://github.com/google-gemini/gemini-cli/pull/21380)
62
+ - feat: add 'blocked' status to tasks and todos by @anj-s in
63
+ [#22735](https://github.com/google-gemini/gemini-cli/pull/22735)
64
+ - refactor(cli): remove extra newlines in ShellToolMessage.tsx by @NTaylorMullen
65
+ in [#22868](https://github.com/google-gemini/gemini-cli/pull/22868)
66
+ - fix(cli): lazily load settings in onModelChange to prevent stale closure data
67
+ loss by @KumarADITHYA123 in
68
+ [#20403](https://github.com/google-gemini/gemini-cli/pull/20403)
69
+ - feat(core): subagent local execution and tool isolation by @akh64bit in
70
+ [#22718](https://github.com/google-gemini/gemini-cli/pull/22718)
71
+ - fix(cli): resolve subagent grouping and UI state persistence by @abhipatel12
72
+ in [#22252](https://github.com/google-gemini/gemini-cli/pull/22252)
73
+ - refactor(ui): extract SessionBrowser search and navigation components by
242
74
  @abhipatel12 in
243
- [#21425](https://github.com/google-gemini/gemini-cli/pull/21425)
244
- - feat(cli): hide gemma settings from display and mark as experimental by
75
+ [#22377](https://github.com/google-gemini/gemini-cli/pull/22377)
76
+ - fix: updates Docker image reference for GitHub MCP server by @jhhornn in
77
+ [#22938](https://github.com/google-gemini/gemini-cli/pull/22938)
78
+ - refactor(cli): group subagent trajectory deletion and use native filesystem
79
+ testing by @abhipatel12 in
80
+ [#22890](https://github.com/google-gemini/gemini-cli/pull/22890)
81
+ - refactor(cli): simplify keypress and mouse providers and update tests by
82
+ @scidomino in [#22853](https://github.com/google-gemini/gemini-cli/pull/22853)
83
+ - Changelog for v0.34.0 by @gemini-cli-robot in
84
+ [#22860](https://github.com/google-gemini/gemini-cli/pull/22860)
85
+ - test(cli): simplify createMockSettings calls by @scidomino in
86
+ [#22952](https://github.com/google-gemini/gemini-cli/pull/22952)
87
+ - feat(ui): format multi-line banner warnings with a bold title by @keithguerin
88
+ in [#22955](https://github.com/google-gemini/gemini-cli/pull/22955)
89
+ - Docs: Remove references to stale Cell CLI file structure info by @g-samroberts
90
+ in [#22976](https://github.com/google-gemini/gemini-cli/pull/22976)
91
+ - feat(ui): remove write todo list tool from UI tips by @aniruddhaadak80 in
92
+ [#22281](https://github.com/google-gemini/gemini-cli/pull/22281)
93
+ - Fix issue where subagent thoughts are appended. by @gundermanc in
94
+ [#22975](https://github.com/google-gemini/gemini-cli/pull/22975)
95
+ - Feat/browser privacy consent by @kunal-10-cloud in
96
+ [#21119](https://github.com/google-gemini/gemini-cli/pull/21119)
97
+ - fix(core): explicitly map execution context in LocalAgentExecutor by @akh64bit
98
+ in [#22949](https://github.com/google-gemini/gemini-cli/pull/22949)
99
+ - feat(plan): support plan mode in non-interactive mode by @ruomengz in
100
+ [#22670](https://github.com/google-gemini/gemini-cli/pull/22670)
101
+ - feat(core): implement strict macOS sandboxing using Seatbelt allowlist by
102
+ @ehedlund in [#22832](https://github.com/google-gemini/gemini-cli/pull/22832)
103
+ - docs: add additional notes by @abhipatel12 in
104
+ [#23008](https://github.com/google-gemini/gemini-cli/pull/23008)
105
+ - fix(cli): resolve duplicate footer on tool cancel via ESC (#21743) by
106
+ @ruomengz in [#21781](https://github.com/google-gemini/gemini-cli/pull/21781)
107
+ - Changelog for v0.35.0-preview.1 by @gemini-cli-robot in
108
+ [#23012](https://github.com/google-gemini/gemini-cli/pull/23012)
109
+ - fix(ui): fix flickering on small terminal heights by @devr0306 in
110
+ [#21416](https://github.com/google-gemini/gemini-cli/pull/21416)
111
+ - fix(acp): provide more meta in tool_call_update by @Mervap in
112
+ [#22663](https://github.com/google-gemini/gemini-cli/pull/22663)
113
+ - docs: add FAQ entry for checking Cell CLI version by @surajsahani in
114
+ [#21271](https://github.com/google-gemini/gemini-cli/pull/21271)
115
+ - feat(core): resilient subagent tool rejection with contextual feedback by
245
116
  @abhipatel12 in
246
- [#21471](https://github.com/google-gemini/gemini-cli/pull/21471)
247
- - feat(skills): refine string-reviewer guidelines and description by @clocky in
248
- [#20368](https://github.com/google-gemini/gemini-cli/pull/20368)
249
- - fix(core): whitelist TERM and COLORTERM in environment sanitization by
250
- @deadsmash07 in
251
- [#20514](https://github.com/google-gemini/gemini-cli/pull/20514)
252
- - fix(billing): fix overage strategy lifecycle and settings integration by
117
+ [#22951](https://github.com/google-gemini/gemini-cli/pull/22951)
118
+ - fix(cli): correctly handle auto-update for standalone binaries by @bdmorgan in
119
+ [#23038](https://github.com/google-gemini/gemini-cli/pull/23038)
120
+ - feat(core): add content-utils by @adamfweidman in
121
+ [#22984](https://github.com/google-gemini/gemini-cli/pull/22984)
122
+ - fix: circumvent genai sdk requirement for api key when using gateway auth via
123
+ ACP by @sripasg in
124
+ [#23042](https://github.com/google-gemini/gemini-cli/pull/23042)
125
+ - fix(core): don't persist browser consent sentinel in non-interactive mode by
126
+ @jasonmatthewsuhari in
127
+ [#23073](https://github.com/google-gemini/gemini-cli/pull/23073)
128
+ - fix(core): narrow browser agent description to prevent stealing URL tasks from
129
+ web_fetch by @gsquared94 in
130
+ [#23086](https://github.com/google-gemini/gemini-cli/pull/23086)
131
+ - feat(cli): Partial threading of AgentLoopContext. by @joshualitt in
132
+ [#22978](https://github.com/google-gemini/gemini-cli/pull/22978)
133
+ - fix(browser-agent): enable "Allow all server tools" session policy by
134
+ @cynthialong0-0 in
135
+ [#22343](https://github.com/google-gemini/gemini-cli/pull/22343)
136
+ - refactor(cli): integrate real config loading into async test utils by
137
+ @scidomino in [#23040](https://github.com/google-gemini/gemini-cli/pull/23040)
138
+ - feat(core): inject memory and JIT context into subagents by @abhipatel12 in
139
+ [#23032](https://github.com/google-gemini/gemini-cli/pull/23032)
140
+ - Fix logging and virtual list. by @jacob314 in
141
+ [#23080](https://github.com/google-gemini/gemini-cli/pull/23080)
142
+ - feat(core): cap JIT context upward traversal at git root by @SandyTao520 in
143
+ [#23074](https://github.com/google-gemini/gemini-cli/pull/23074)
144
+ - Docs: Minor style updates from initial docs audit. by @g-samroberts in
145
+ [#22872](https://github.com/google-gemini/gemini-cli/pull/22872)
146
+ - feat(core): add experimental memory manager agent to replace save_memory tool
147
+ by @SandyTao520 in
148
+ [#22726](https://github.com/google-gemini/gemini-cli/pull/22726)
149
+ - Changelog for v0.35.0-preview.2 by @gemini-cli-robot in
150
+ [#23142](https://github.com/google-gemini/gemini-cli/pull/23142)
151
+ - Update website issue template for label and title by @g-samroberts in
152
+ [#23036](https://github.com/google-gemini/gemini-cli/pull/23036)
153
+ - fix: upgrade ACP SDK from 0.12 to 0.16.1 by @sripasg in
154
+ [#23132](https://github.com/google-gemini/gemini-cli/pull/23132)
155
+ - Update callouts to work on github. by @g-samroberts in
156
+ [#22245](https://github.com/google-gemini/gemini-cli/pull/22245)
157
+ - feat: ACP: Add token usage metadata to the `send` method's return value by
158
+ @sripasg in [#23148](https://github.com/google-gemini/gemini-cli/pull/23148)
159
+ - fix(plan): clarify that plan mode policies are combined with normal mode by
160
+ @ruomengz in [#23158](https://github.com/google-gemini/gemini-cli/pull/23158)
161
+ - Add ModelChain support to ModelConfigService and make ModelDialog dynamic by
162
+ @kevinjwang1 in
163
+ [#22914](https://github.com/google-gemini/gemini-cli/pull/22914)
164
+ - Ensure that copied extensions are writable in the user's local directory by
165
+ @kevinjwang1 in
166
+ [#23016](https://github.com/google-gemini/gemini-cli/pull/23016)
167
+ - feat(core): implement native Windows sandboxing by @mattKorwel in
168
+ [#21807](https://github.com/google-gemini/gemini-cli/pull/21807)
169
+ - feat(core): add support for admin-forced MCP server installations by
253
170
  @gsquared94 in
254
- [#21236](https://github.com/google-gemini/gemini-cli/pull/21236)
255
- - fix: expand paste placeholders in TextInput on submit by @Jefftree in
256
- [#19946](https://github.com/google-gemini/gemini-cli/pull/19946)
257
- - fix(core): add in-memory cache to ChatRecordingService to prevent OOM by
171
+ [#23163](https://github.com/google-gemini/gemini-cli/pull/23163)
172
+ - chore(lint): ignore .cell-cli directory and recursive node_modules by
173
+ @mattKorwel in
174
+ [#23211](https://github.com/google-gemini/gemini-cli/pull/23211)
175
+ - feat(cli): conditionally exclude ask_user tool in ACP mode by @nmcnamara-eng
176
+ in [#23045](https://github.com/google-gemini/gemini-cli/pull/23045)
177
+ - feat(core): introduce AgentSession and rename stream events to agent events by
178
+ @mbleigh in [#23159](https://github.com/google-gemini/gemini-cli/pull/23159)
179
+ - feat(worktree): add Git worktree support for isolated parallel sessions by
180
+ @jerop in [#22973](https://github.com/google-gemini/gemini-cli/pull/22973)
181
+ - Add support for linking in the extension registry by @kevinjwang1 in
182
+ [#23153](https://github.com/google-gemini/gemini-cli/pull/23153)
183
+ - feat(extensions): add --skip-settings flag to install command by @Ratish1 in
184
+ [#17212](https://github.com/google-gemini/gemini-cli/pull/17212)
185
+ - feat(telemetry): track if session is running in a Git worktree by @jerop in
186
+ [#23265](https://github.com/google-gemini/gemini-cli/pull/23265)
187
+ - refactor(core): use absolute paths in GEMINI.md context markers by
258
188
  @SandyTao520 in
259
- [#21502](https://github.com/google-gemini/gemini-cli/pull/21502)
260
- - feat(cli): overhaul thinking UI by @keithguerin in
261
- [#18725](https://github.com/google-gemini/gemini-cli/pull/18725)
262
- - fix(ui): unify Ctrl+O expansion hint experience across buffer modes by
263
- @jwhelangoog in
264
- [#21474](https://github.com/google-gemini/gemini-cli/pull/21474)
265
- - fix(cli): correct shell height reporting by @jacob314 in
266
- [#21492](https://github.com/google-gemini/gemini-cli/pull/21492)
267
- - Make test suite pass when the CELL_SYSTEM_MD env variable or
268
- CELL_WRITE_SYSTEM_MD variable happens to be set locally/ by @jacob314 in
269
- [#21480](https://github.com/google-gemini/gemini-cli/pull/21480)
270
- - Disallow underspecified types by @gundermanc in
271
- [#21485](https://github.com/google-gemini/gemini-cli/pull/21485)
272
- - refactor(cli): standardize on 'reload' verb for all components by @keithguerin
273
- in [#20654](https://github.com/google-gemini/gemini-cli/pull/20654)
274
- - feat(cli): Invert quota language to 'percent used' by @keithguerin in
275
- [#20100](https://github.com/google-gemini/gemini-cli/pull/20100)
276
- - Docs: Add documentation for notifications (experimental)(macOS) by @jkcinouye
277
- in [#21163](https://github.com/google-gemini/gemini-cli/pull/21163)
278
- - Code review comments as a pr by @jacob314 in
279
- [#21209](https://github.com/google-gemini/gemini-cli/pull/21209)
280
- - feat(cli): unify /chat and /resume command UX by @LyalinDotCom in
281
- [#20256](https://github.com/google-gemini/gemini-cli/pull/20256)
282
- - docs: fix typo 'allowslisted' -> 'allowlisted' in mcp-server.md by
283
- @Gyanranjan-Priyam in
284
- [#21665](https://github.com/google-gemini/gemini-cli/pull/21665)
285
- - fix(core): display actual graph output in tracker_visualize tool by @anj-s in
286
- [#21455](https://github.com/google-gemini/gemini-cli/pull/21455)
287
- - fix(core): sanitize SSE-corrupted JSON and domain strings in error
288
- classification by @gsquared94 in
289
- [#21702](https://github.com/google-gemini/gemini-cli/pull/21702)
290
- - Docs: Make documentation links relative by @diodesign in
291
- [#21490](https://github.com/google-gemini/gemini-cli/pull/21490)
292
- - feat(cli): expose /tools desc as explicit subcommand for discoverability by
293
- @aworki in [#21241](https://github.com/google-gemini/gemini-cli/pull/21241)
294
- - feat(cli): add /compact alias for /compress command by @jackwotherspoon in
295
- [#21711](https://github.com/google-gemini/gemini-cli/pull/21711)
296
- - feat(plan): enable Plan Mode by default by @jerop in
297
- [#21713](https://github.com/google-gemini/gemini-cli/pull/21713)
298
- - feat(core): Introduce `AgentLoopContext`. by @joshualitt in
299
- [#21198](https://github.com/google-gemini/gemini-cli/pull/21198)
300
- - fix(core): resolve symlinks for non-existent paths during validation by
301
- @Adib234 in [#21487](https://github.com/google-gemini/gemini-cli/pull/21487)
302
- - docs: document tool exclusion from memory via deny policy by @Abhijit-2592 in
303
- [#21428](https://github.com/google-gemini/gemini-cli/pull/21428)
304
- - perf(core): cache loadApiKey to reduce redundant keychain access by @sehoon38
305
- in [#21520](https://github.com/google-gemini/gemini-cli/pull/21520)
306
- - feat(cli): implement /upgrade command by @sehoon38 in
307
- [#21511](https://github.com/google-gemini/gemini-cli/pull/21511)
308
- - Feat/browser agent progress emission by @kunal-10-cloud in
309
- [#21218](https://github.com/google-gemini/gemini-cli/pull/21218)
310
- - fix(settings): display objects as JSON instead of [object Object] by
311
- @Zheyuan-Lin in
312
- [#21458](https://github.com/google-gemini/gemini-cli/pull/21458)
313
- - Unmarshall update by @DavidAPierce in
314
- [#21721](https://github.com/google-gemini/gemini-cli/pull/21721)
315
- - Update mcp's list function to check for disablement. by @DavidAPierce in
316
- [#21148](https://github.com/google-gemini/gemini-cli/pull/21148)
317
- - robustness(core): static checks to validate history is immutable by @jacob314
318
- in [#21228](https://github.com/google-gemini/gemini-cli/pull/21228)
319
- - refactor(cli): better react patterns for BaseSettingsDialog by @psinha40898 in
320
- [#21206](https://github.com/google-gemini/gemini-cli/pull/21206)
321
- - feat(security): implement robust IP validation and safeFetch foundation by
322
- @alisa-alisa in
323
- [#21401](https://github.com/google-gemini/gemini-cli/pull/21401)
324
- - feat(core): improve subagent result display by @joshualitt in
325
- [#20378](https://github.com/google-gemini/gemini-cli/pull/20378)
326
- - docs: fix broken markdown syntax and anchor links in /tools by @campox747 in
327
- [#20902](https://github.com/google-gemini/gemini-cli/pull/20902)
328
- - feat(policy): support subagent-specific policies in TOML by @akh64bit in
329
- [#21431](https://github.com/google-gemini/gemini-cli/pull/21431)
330
- - Add script to speed up reviewing PRs adding a worktree. by @jacob314 in
331
- [#21748](https://github.com/google-gemini/gemini-cli/pull/21748)
332
- - fix(core): prevent infinite recursion in symlink resolution by @Adib234 in
333
- [#21750](https://github.com/google-gemini/gemini-cli/pull/21750)
334
- - fix(docs): fix headless mode docs by @ame2en in
335
- [#21287](https://github.com/google-gemini/gemini-cli/pull/21287)
336
- - feat/redesign header compact by @jacob314 in
337
- [#20922](https://github.com/google-gemini/gemini-cli/pull/20922)
338
- - refactor: migrate to useKeyMatchers hook by @scidomino in
339
- [#21753](https://github.com/google-gemini/gemini-cli/pull/21753)
340
- - perf(cli): cache loadSettings to reduce redundant disk I/O at startup by
341
- @sehoon38 in [#21521](https://github.com/google-gemini/gemini-cli/pull/21521)
342
- - fix(core): resolve Windows line ending and path separation bugs across CLI by
343
- @muhammadusman586 in
344
- [#21068](https://github.com/google-gemini/gemini-cli/pull/21068)
345
- - docs: fix heading formatting in commands.md and phrasing in tools-api.md by
346
- @campox747 in [#20679](https://github.com/google-gemini/gemini-cli/pull/20679)
347
- - refactor(ui): unify keybinding infrastructure and support string
348
- initialization by @scidomino in
349
- [#21776](https://github.com/google-gemini/gemini-cli/pull/21776)
350
- - Add support for updating extension sources and names by @chrstnb in
351
- [#21715](https://github.com/google-gemini/gemini-cli/pull/21715)
352
- - fix(core): handle GUI editor non-zero exit codes gracefully by @reyyanxahmed
353
- in [#20376](https://github.com/google-gemini/gemini-cli/pull/20376)
354
- - fix(core): destroy PTY on kill() and exception to prevent fd leak by @nbardy
355
- in [#21693](https://github.com/google-gemini/gemini-cli/pull/21693)
356
- - fix(docs): update theme screenshots and add missing themes by @ashmod in
357
- [#20689](https://github.com/google-gemini/gemini-cli/pull/20689)
358
- - refactor(cli): rename 'return' key to 'enter' internally by @scidomino in
359
- [#21796](https://github.com/google-gemini/gemini-cli/pull/21796)
360
- - build(release): restrict npm bundling to non-stable tags by @sehoon38 in
361
- [#21821](https://github.com/google-gemini/gemini-cli/pull/21821)
362
- - fix(core): override toolRegistry property for sub-agent schedulers by
363
- @gsquared94 in
364
- [#21766](https://github.com/google-gemini/gemini-cli/pull/21766)
365
- - fix(cli): make footer items equally spaced by @jacob314 in
366
- [#21843](https://github.com/google-gemini/gemini-cli/pull/21843)
367
- - docs: clarify global policy rules application in plan mode by @jerop in
368
- [#21864](https://github.com/google-gemini/gemini-cli/pull/21864)
369
- - fix(core): ensure correct flash model steering in plan mode implementation
370
- phase by @jerop in
371
- [#21871](https://github.com/google-gemini/gemini-cli/pull/21871)
372
- - fix(core): update @a2a-js/sdk to 0.3.11 by @adamfweidman in
373
- [#21875](https://github.com/google-gemini/gemini-cli/pull/21875)
374
- - refactor(core): improve API response error logging when retry by @yunaseoul in
375
- [#21784](https://github.com/google-gemini/gemini-cli/pull/21784)
376
- - fix(ui): handle headless execution in credits and upgrade dialogs by
377
- @gsquared94 in
378
- [#21850](https://github.com/google-gemini/gemini-cli/pull/21850)
379
- - fix(core): treat retryable errors with >5 min delay as terminal quota errors
380
- by @gsquared94 in
381
- [#21881](https://github.com/google-gemini/gemini-cli/pull/21881)
382
- - feat(telemetry): add specific PR, issue, and custom tracking IDs for GitHub
383
- Actions by @cocosheng-g in
384
- [#21129](https://github.com/google-gemini/gemini-cli/pull/21129)
385
- - feat(core): add OAuth2 Authorization Code auth provider for A2A agents by
189
+ [#23135](https://github.com/google-gemini/gemini-cli/pull/23135)
190
+ - fix(core): add sanitization to sub agent thoughts and centralize utilities by
191
+ @devr0306 in [#22828](https://github.com/google-gemini/gemini-cli/pull/22828)
192
+ - feat(core): refine User-Agent for VS Code traffic (unified format) by
193
+ @sehoon38 in [#23256](https://github.com/google-gemini/gemini-cli/pull/23256)
194
+ - Fix schema for ModelChains by @kevinjwang1 in
195
+ [#23284](https://github.com/google-gemini/gemini-cli/pull/23284)
196
+ - test(cli): refactor tests for async render utilities by @scidomino in
197
+ [#23252](https://github.com/google-gemini/gemini-cli/pull/23252)
198
+ - feat(core): add security prompt for browser agent by @cynthialong0-0 in
199
+ [#23241](https://github.com/google-gemini/gemini-cli/pull/23241)
200
+ - refactor(ide): replace dynamic undici import with static fetch import by
201
+ @cocosheng-g in
202
+ [#23268](https://github.com/google-gemini/gemini-cli/pull/23268)
203
+ - test(cli): address unresolved feedback from PR #23252 by @scidomino in
204
+ [#23303](https://github.com/google-gemini/gemini-cli/pull/23303)
205
+ - feat(browser): add sensitive action controls and read-only noise reduction by
206
+ @cynthialong0-0 in
207
+ [#22867](https://github.com/google-gemini/gemini-cli/pull/22867)
208
+ - Disabling failing test while investigating by @alisa-alisa in
209
+ [#23311](https://github.com/google-gemini/gemini-cli/pull/23311)
210
+ - fix broken extension link in hooks guide by @Indrapal-70 in
211
+ [#21728](https://github.com/google-gemini/gemini-cli/pull/21728)
212
+ - fix(core): fix agent description indentation by @abhipatel12 in
213
+ [#23315](https://github.com/google-gemini/gemini-cli/pull/23315)
214
+ - Wrap the text under TOML rule for easier readability in policy-engine.md… by
215
+ @CogitationOps in
216
+ [#23076](https://github.com/google-gemini/gemini-cli/pull/23076)
217
+ - fix(extensions): revert broken extension removal behavior by @ehedlund in
218
+ [#23317](https://github.com/google-gemini/gemini-cli/pull/23317)
219
+ - feat(core): set up onboarding telemetry by @yunaseoul in
220
+ [#23118](https://github.com/google-gemini/gemini-cli/pull/23118)
221
+ - Retry evals on API error. by @gundermanc in
222
+ [#23322](https://github.com/google-gemini/gemini-cli/pull/23322)
223
+ - fix(evals): remove tool restrictions and add compile-time guards by
386
224
  @SandyTao520 in
387
- [#21496](https://github.com/google-gemini/gemini-cli/pull/21496)
388
- - feat(cli): give visibility to /tools list command in the TUI and follow the
389
- subcommand pattern of other commands by @JayadityaGit in
390
- [#21213](https://github.com/google-gemini/gemini-cli/pull/21213)
391
- - Handle dirty worktrees better and warn about running scripts/review.sh on
392
- untrusted code. by @jacob314 in
393
- [#21791](https://github.com/google-gemini/gemini-cli/pull/21791)
394
- - feat(policy): support auto-add to policy by default and scoped persistence by
395
- @spencer426 in
396
- [#20361](https://github.com/google-gemini/gemini-cli/pull/20361)
397
- - fix(core): handle AbortError when ESC cancels tool execution by @PrasannaPal21
398
- in [#20863](https://github.com/google-gemini/gemini-cli/pull/20863)
399
- - fix(release): Improve Patch Release Workflow Comments: Clearer Approval
400
- Guidance by @jerop in
401
- [#21894](https://github.com/google-gemini/gemini-cli/pull/21894)
402
- - docs: clarify telemetry setup and comprehensive data map by @jerop in
403
- [#21879](https://github.com/google-gemini/gemini-cli/pull/21879)
404
- - feat(core): add per-model token usage to stream-json output by @yongruilin in
405
- [#21839](https://github.com/google-gemini/gemini-cli/pull/21839)
406
- - docs: remove experimental badge from plan mode in sidebar by @jerop in
407
- [#21906](https://github.com/google-gemini/gemini-cli/pull/21906)
408
- - fix(cli): prevent race condition in loop detection retry by @skyvanguard in
409
- [#17916](https://github.com/google-gemini/gemini-cli/pull/17916)
410
- - Add behavioral evals for tracker by @anj-s in
411
- [#20069](https://github.com/google-gemini/gemini-cli/pull/20069)
412
- - fix(auth): update terminology to 'sign in' and 'sign out' by @clocky in
413
- [#20892](https://github.com/google-gemini/gemini-cli/pull/20892)
414
- - docs(mcp): standardize mcp tool fqn documentation by @abhipatel12 in
415
- [#21664](https://github.com/google-gemini/gemini-cli/pull/21664)
416
- - fix(ui): prevent empty tool-group border stubs after filtering by @Aaxhirrr in
417
- [#21852](https://github.com/google-gemini/gemini-cli/pull/21852)
418
- - make command names consistent by @scidomino in
419
- [#21907](https://github.com/google-gemini/gemini-cli/pull/21907)
420
- - refactor: remove agent_card_requires_auth config flag by @adamfweidman in
421
- [#21914](https://github.com/google-gemini/gemini-cli/pull/21914)
422
- - feat(a2a): implement standardized normalization and streaming reassembly by
225
+ [#23312](https://github.com/google-gemini/gemini-cli/pull/23312)
226
+ - fix(hooks): support 'ask' decision for BeforeTool hooks by @gundermanc in
227
+ [#21146](https://github.com/google-gemini/gemini-cli/pull/21146)
228
+ - feat(browser): add warning message for session mode 'existing' by
229
+ @cynthialong0-0 in
230
+ [#23288](https://github.com/google-gemini/gemini-cli/pull/23288)
231
+ - chore(lint): enforce zero warnings and cleanup syntax restrictions by
423
232
  @alisa-alisa in
424
- [#21402](https://github.com/google-gemini/gemini-cli/pull/21402)
425
- - feat(cli): enable skill activation via slash commands by @NTaylorMullen in
426
- [#21758](https://github.com/google-gemini/gemini-cli/pull/21758)
427
- - docs(cli): mention per-model token usage in stream-json result event by
428
- @yongruilin in
429
- [#21908](https://github.com/google-gemini/gemini-cli/pull/21908)
430
- - fix(plan): prevent plan truncation in approval dialog by supporting
431
- unconstrained heights by @Adib234 in
432
- [#21037](https://github.com/google-gemini/gemini-cli/pull/21037)
433
- - feat(a2a): switch from callback-based to event-driven tool scheduler by
434
- @cocosheng-g in
435
- [#21467](https://github.com/google-gemini/gemini-cli/pull/21467)
436
- - feat(voice): implement speech-friendly response formatter by @ayush31010 in
437
- [#20989](https://github.com/google-gemini/gemini-cli/pull/20989)
438
- - feat: add pulsating blue border automation overlay to browser agent by
439
- @kunal-10-cloud in
440
- [#21173](https://github.com/google-gemini/gemini-cli/pull/21173)
441
- - Add extensionRegistryURI setting to change where the registry is read from by
442
- @kevinjwang1 in
443
- [#20463](https://github.com/google-gemini/gemini-cli/pull/20463)
444
- - fix: patch gaxios v7 Array.toString() stream corruption by @gsquared94 in
445
- [#21884](https://github.com/google-gemini/gemini-cli/pull/21884)
446
- - fix: prevent hangs in non-interactive mode and improve agent guidance by
447
- @cocosheng-g in
448
- [#20893](https://github.com/google-gemini/gemini-cli/pull/20893)
449
- - Add ExtensionDetails dialog and support install by @chrstnb in
450
- [#20845](https://github.com/google-gemini/gemini-cli/pull/20845)
451
- - chore/release: bump version to 0.34.0-nightly.20260310.4653b126f by
452
- @gemini-cli-robot in
453
- [#21816](https://github.com/google-gemini/gemini-cli/pull/21816)
454
- - Changelog for v0.33.0-preview.13 by @gemini-cli-robot in
455
- [#21927](https://github.com/google-gemini/gemini-cli/pull/21927)
456
- - fix(cli): stabilize prompt layout to prevent jumping when typing by
233
+ [#22902](https://github.com/google-gemini/gemini-cli/pull/22902)
234
+ - fix(cli): add Esc instruction to HooksDialog footer by @abhipatel12 in
235
+ [#23258](https://github.com/google-gemini/gemini-cli/pull/23258)
236
+ - Disallow and suppress misused spread operator. by @gundermanc in
237
+ [#23294](https://github.com/google-gemini/gemini-cli/pull/23294)
238
+ - fix(core): refine CliHelpAgent description for better delegation by
239
+ @abhipatel12 in
240
+ [#23310](https://github.com/google-gemini/gemini-cli/pull/23310)
241
+ - fix(core): enable global session and persistent approval for web_fetch by
457
242
  @NTaylorMullen in
458
- [#21081](https://github.com/google-gemini/gemini-cli/pull/21081)
459
- - fix: preserve prompt text when cancelling streaming by @Nixxx19 in
460
- [#21103](https://github.com/google-gemini/gemini-cli/pull/21103)
461
- - fix: robust UX for remote agent errors by @Shyam-Raghuwanshi in
462
- [#20307](https://github.com/google-gemini/gemini-cli/pull/20307)
463
- - feat: implement background process logging and cleanup by @galz10 in
464
- [#21189](https://github.com/google-gemini/gemini-cli/pull/21189)
465
- - Changelog for v0.33.0-preview.14 by @gemini-cli-robot in
466
- [#21938](https://github.com/google-gemini/gemini-cli/pull/21938)
467
- - fix(patch): cherry-pick 45faf4d to release/v0.34.0-preview.0-pr-22148
468
- [CONFLICTS] by @gemini-cli-robot in
469
- [#22174](https://github.com/google-gemini/gemini-cli/pull/22174)
470
- - fix(patch): cherry-pick 8432bce to release/v0.34.0-preview.1-pr-22069 to patch
471
- version v0.34.0-preview.1 and create version 0.34.0-preview.2 by
472
- @gemini-cli-robot in
473
- [#22205](https://github.com/google-gemini/gemini-cli/pull/22205)
474
- - fix(patch): cherry-pick 24adacd to release/v0.34.0-preview.2-pr-22332 to patch
475
- version v0.34.0-preview.2 and create version 0.34.0-preview.3 by
243
+ [#23295](https://github.com/google-gemini/gemini-cli/pull/23295)
244
+ - fix(plan): add state transition override to prevent plan mode freeze by
245
+ @Adib234 in [#23020](https://github.com/google-gemini/gemini-cli/pull/23020)
246
+ - fix(cli): record skill activation tool calls in chat history by @NTaylorMullen
247
+ in [#23203](https://github.com/google-gemini/gemini-cli/pull/23203)
248
+ - fix(core): ensure subagent tool updates apply configuration overrides
249
+ immediately by @abhipatel12 in
250
+ [#23161](https://github.com/google-gemini/gemini-cli/pull/23161)
251
+ - fix(cli): resolve flicker at boundaries of list in BaseSelectionList by
252
+ @jackwotherspoon in
253
+ [#23298](https://github.com/google-gemini/gemini-cli/pull/23298)
254
+ - test(cli): force generic terminal in tests to fix snapshot failures by
255
+ @abhipatel12 in
256
+ [#23499](https://github.com/google-gemini/gemini-cli/pull/23499)
257
+ - Evals: PR Guidance adding workflow by @alisa-alisa in
258
+ [#23164](https://github.com/google-gemini/gemini-cli/pull/23164)
259
+ - feat(core): refactor SandboxManager to a stateless architecture and introduce
260
+ explicit Deny interface by @ehedlund in
261
+ [#23141](https://github.com/google-gemini/gemini-cli/pull/23141)
262
+ - feat(core): add event-translator and update agent types by @adamfweidman in
263
+ [#22985](https://github.com/google-gemini/gemini-cli/pull/22985)
264
+ - perf(cli): parallelize and background startup cleanup tasks by @sehoon38 in
265
+ [#23545](https://github.com/google-gemini/gemini-cli/pull/23545)
266
+ - fix: "allow always" for commands with paths by @scidomino in
267
+ [#23558](https://github.com/google-gemini/gemini-cli/pull/23558)
268
+ - fix(cli): prevent terminal escape sequences from leaking on exit by
269
+ @mattKorwel in
270
+ [#22682](https://github.com/google-gemini/gemini-cli/pull/22682)
271
+ - feat(cli): implement full "GEMINI CLI" logo for logged-out state by
272
+ @keithguerin in
273
+ [#22412](https://github.com/google-gemini/gemini-cli/pull/22412)
274
+ - fix(plan): reserve minimum height for selection list in AskUserDialog by
275
+ @ruomengz in [#23280](https://github.com/google-gemini/gemini-cli/pull/23280)
276
+ - fix(core): harden AgentSession replay semantics by @adamfweidman in
277
+ [#23548](https://github.com/google-gemini/gemini-cli/pull/23548)
278
+ - test(core): migrate hook tests to scheduler by @abhipatel12 in
279
+ [#23496](https://github.com/google-gemini/gemini-cli/pull/23496)
280
+ - chore(config): disable agents by default by @abhipatel12 in
281
+ [#23546](https://github.com/google-gemini/gemini-cli/pull/23546)
282
+ - fix(ui): make tool confirmations take up entire terminal height by @devr0306
283
+ in [#22366](https://github.com/google-gemini/gemini-cli/pull/22366)
284
+ - fix(core): prevent redundant remote agent loading on model switch by
285
+ @adamfweidman in
286
+ [#23576](https://github.com/google-gemini/gemini-cli/pull/23576)
287
+ - refactor(core): update production type imports from coreToolScheduler by
288
+ @abhipatel12 in
289
+ [#23498](https://github.com/google-gemini/gemini-cli/pull/23498)
290
+ - feat(cli): always prefix extension skills with colon separator by
291
+ @NTaylorMullen in
292
+ [#23566](https://github.com/google-gemini/gemini-cli/pull/23566)
293
+ - fix(core): properly support allowRedirect in policy engine by @scidomino in
294
+ [#23579](https://github.com/google-gemini/gemini-cli/pull/23579)
295
+ - fix(cli): prevent subcommand shadowing and skip auth for commands by
296
+ @mattKorwel in
297
+ [#23177](https://github.com/google-gemini/gemini-cli/pull/23177)
298
+ - fix(test): move flaky tests to non-blocking suite by @mattKorwel in
299
+ [#23259](https://github.com/google-gemini/gemini-cli/pull/23259)
300
+ - Changelog for v0.35.0-preview.3 by @gemini-cli-robot in
301
+ [#23574](https://github.com/google-gemini/gemini-cli/pull/23574)
302
+ - feat(skills): add behavioral-evals skill with fixing and promoting guides by
303
+ @abhipatel12 in
304
+ [#23349](https://github.com/google-gemini/gemini-cli/pull/23349)
305
+ - refactor(core): delete obsolete coreToolScheduler by @abhipatel12 in
306
+ [#23502](https://github.com/google-gemini/gemini-cli/pull/23502)
307
+ - Changelog for v0.35.0-preview.4 by @gemini-cli-robot in
308
+ [#23581](https://github.com/google-gemini/gemini-cli/pull/23581)
309
+ - feat(core): add LegacyAgentSession by @adamfweidman in
310
+ [#22986](https://github.com/google-gemini/gemini-cli/pull/22986)
311
+ - feat(test-utils): add TestMcpServerBuilder and support in TestRig by
312
+ @abhipatel12 in
313
+ [#23491](https://github.com/google-gemini/gemini-cli/pull/23491)
314
+ - fix(core)!: Force policy config to specify toolName by @kschaab in
315
+ [#23330](https://github.com/google-gemini/gemini-cli/pull/23330)
316
+ - eval(save_memory): add multi-turn interactive evals for memoryManager by
317
+ @SandyTao520 in
318
+ [#23572](https://github.com/google-gemini/gemini-cli/pull/23572)
319
+ - fix(telemetry): patch memory leak and enforce logPrompts privacy by
320
+ @spencer426 in
321
+ [#23281](https://github.com/google-gemini/gemini-cli/pull/23281)
322
+ - perf(cli): background IDE client to speed up initialization by @sehoon38 in
323
+ [#23603](https://github.com/google-gemini/gemini-cli/pull/23603)
324
+ - fix(cli): prevent Ctrl+D exit when input buffer is not empty by @wtanaka in
325
+ [#23306](https://github.com/google-gemini/gemini-cli/pull/23306)
326
+ - fix: ACP: separate conversational text from execute tool command title by
327
+ @sripasg in [#23179](https://github.com/google-gemini/gemini-cli/pull/23179)
328
+ - feat(evals): add behavioral evaluations for subagent routing by @Samee24 in
329
+ [#23272](https://github.com/google-gemini/gemini-cli/pull/23272)
330
+ - refactor(cli,core): foundational layout, identity management, and type safety
331
+ by @jwhelangoog in
332
+ [#23286](https://github.com/google-gemini/gemini-cli/pull/23286)
333
+ - fix(core): accurately reflect subagent tool failure in UI by @abhipatel12 in
334
+ [#23187](https://github.com/google-gemini/gemini-cli/pull/23187)
335
+ - Changelog for v0.35.0-preview.5 by @gemini-cli-robot in
336
+ [#23606](https://github.com/google-gemini/gemini-cli/pull/23606)
337
+ - feat(ui): implement refreshed UX for Composer layout by @jwhelangoog in
338
+ [#21212](https://github.com/google-gemini/gemini-cli/pull/21212)
339
+ - fix: API key input dialog user interaction when selected Gemini API Key by
340
+ @kartikangiras in
341
+ [#21057](https://github.com/google-gemini/gemini-cli/pull/21057)
342
+ - docs: update `/mcp refresh` to `/mcp reload` by @adamfweidman in
343
+ [#23631](https://github.com/google-gemini/gemini-cli/pull/23631)
344
+ - Implementation of sandbox "Write-Protected" Governance Files by @DavidAPierce
345
+ in [#23139](https://github.com/google-gemini/gemini-cli/pull/23139)
346
+ - feat(sandbox): dynamic macOS sandbox expansion and worktree support by @galz10
347
+ in [#23301](https://github.com/google-gemini/gemini-cli/pull/23301)
348
+ - fix(acp): Pass the cwd to `AcpFileSystemService` to avoid looping failures in
349
+ asking for perms to write plan md file by @sripasg in
350
+ [#23612](https://github.com/google-gemini/gemini-cli/pull/23612)
351
+ - fix(plan): sandbox path resolution in Plan Mode to prevent hallucinations by
352
+ @Adib234 in [#22737](https://github.com/google-gemini/gemini-cli/pull/22737)
353
+ - feat(ui): allow immediate user input during startup by @sehoon38 in
354
+ [#23661](https://github.com/google-gemini/gemini-cli/pull/23661)
355
+ - refactor(sandbox): reorganize Windows sandbox files by @galz10 in
356
+ [#23645](https://github.com/google-gemini/gemini-cli/pull/23645)
357
+ - fix(core): improve remote agent streaming UI and UX by @adamfweidman in
358
+ [#23633](https://github.com/google-gemini/gemini-cli/pull/23633)
359
+ - perf(cli): optimize --version startup time by @sehoon38 in
360
+ [#23671](https://github.com/google-gemini/gemini-cli/pull/23671)
361
+ - refactor(core): stop gemini CLI from producing unsafe casts by @gundermanc in
362
+ [#23611](https://github.com/google-gemini/gemini-cli/pull/23611)
363
+ - use enableAutoUpdate in test rig by @scidomino in
364
+ [#23681](https://github.com/google-gemini/gemini-cli/pull/23681)
365
+ - feat(core): change user-facing auth type from oauth2 to oauth by @adamfweidman
366
+ in [#23639](https://github.com/google-gemini/gemini-cli/pull/23639)
367
+ - chore(deps): fix npm audit vulnerabilities by @scidomino in
368
+ [#23679](https://github.com/google-gemini/gemini-cli/pull/23679)
369
+ - test(evals): fix overlapping act() deadlock in app-test-helper by @Adib234 in
370
+ [#23666](https://github.com/google-gemini/gemini-cli/pull/23666)
371
+ - fix(patch): cherry-pick 055ff92 to release/v0.36.0-preview.0-pr-23672 to patch
372
+ version v0.36.0-preview.0 and create version 0.36.0-preview.1 by
476
373
  @gemini-cli-robot in
477
- [#22391](https://github.com/google-gemini/gemini-cli/pull/22391)
478
- - fix(patch): cherry-pick 48130eb to release/v0.34.0-preview.3-pr-22665 to patch
479
- version v0.34.0-preview.3 and create version 0.34.0-preview.4 by
374
+ [#23723](https://github.com/google-gemini/gemini-cli/pull/23723)
375
+ - fix(patch): cherry-pick 765fb67 to release/v0.36.0-preview.5-pr-24055 to patch
376
+ version v0.36.0-preview.5 and create version 0.36.0-preview.6 by
480
377
  @gemini-cli-robot in
481
- [#22719](https://github.com/google-gemini/gemini-cli/pull/22719)
378
+ [#24061](https://github.com/google-gemini/gemini-cli/pull/24061)
482
379
 
483
380
  **Full Changelog**:
484
- https://github.com/google-gemini/gemini-cli/compare/v0.33.2...v0.34.0
381
+ https://github.com/google-gemini/gemini-cli/compare/v0.35.3...v0.36.0