@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
- # Preview release: v0.35.0-preview.5
1
+ # Preview release: v0.37.0-preview.2
2
2
 
3
- Released: March 23, 2026
3
+ Released: April 07, 2026
4
4
 
5
5
  Our preview release includes the latest, new, and experimental features. This
6
6
  release may not be as stable as our [latest weekly release](latest.md).
@@ -13,375 +13,414 @@ npm install -g @google/gemini-cli@preview
13
13
 
14
14
  ## Highlights
15
15
 
16
- - **Subagents & Architecture Enhancements**: Enabled subagents and laid the
17
- foundation for subagent tool isolation. Added proxy routing support for remote
18
- A2A subagents and integrated `SandboxManager` to sandbox all process-spawning
19
- tools.
20
- - **CLI & UI Improvements**: Introduced customizable keyboard shortcuts and
21
- support for literal character keybindings. Added missing vim mode motions and
22
- CJK input support. Enabled code splitting and deferred UI loading for improved
23
- performance.
24
- - **Context & Tools Optimization**: JIT context loading is now enabled by
25
- default with deduplication for project memory. Introduced a model-driven
26
- parallel tool scheduler and allowed safe tools to execute concurrently.
27
- - **Security & Extensions**: Implemented cryptographic integrity verification
28
- for extension updates and added a `disableAlwaysAllow` setting to prevent
29
- auto-approvals for enhanced security.
30
- - **Plan Mode & Web Fetch Updates**: Added an 'All the above' option for
31
- multi-select AskUser questions in Plan Mode. Rolled out Stage 1 and Stage 2
32
- security and consistency improvements for the `web_fetch` tool.
16
+ - **Plan Mode Enhancements**: Plan now includes support for untrusted folders,
17
+ prioritized pre-approval discussions, and a resolve for sandbox-related
18
+ deadlocks during file creation.
19
+ - **Browser Agent Evolved**: Significant updates to the browser agent, including
20
+ persistent session management, dynamic discovery of read-only tools,
21
+ sandbox-aware initialization, and automated reclamation of stale snapshots to
22
+ optimize context window usage.
23
+ - **Advanced Sandbox Security**: Implementation of dynamic sandbox expansion for
24
+ both Linux and Windows, alongside secret visibility lockdown for environment
25
+ files and OS-specific forbidden path support.
26
+ - **Unified Core Architecture**: Centralized context management and a new
27
+ `ModelConfigService` for unified model discovery, complemented by the
28
+ introduction of `AgentHistoryProvider` and tool-based topic grouping
29
+ (Chapters).
30
+ - **UI/UX & Performance Improvements**: New Tokyo Night theme, "tab to queue"
31
+ message support, and compact tool output formatting, plus optimized build
32
+ scripts and improved layout stability for TUI components.
33
33
 
34
34
  ## What's Changed
35
35
 
36
- - fix(patch): cherry-pick b2d6dc4 to release/v0.35.0-preview.4-pr-23546
37
- [CONFLICTS] by @gemini-cli-robot in
38
- [#23585](https://github.com/google-gemini/gemini-cli/pull/23585)
39
- - fix(patch): cherry-pick daf3691 to release/v0.35.0-preview.2-pr-23558 to patch
40
- version v0.35.0-preview.2 and create version 0.35.0-preview.3 by
36
+ - fix(patch): cherry-pick cb7f7d6 to release/v0.37.0-preview.1-pr-24342 to patch
37
+ version v0.37.0-preview.1 and create version 0.37.0-preview.2 by
41
38
  @gemini-cli-robot in
42
- [#23565](https://github.com/google-gemini/gemini-cli/pull/23565)
43
- - fix(patch): cherry-pick 4e5dfd0 to release/v0.35.0-preview.1-pr-23074 to patch
44
- version v0.35.0-preview.1 and create version 0.35.0-preview.2 by
39
+ [#24842](https://github.com/google-gemini/gemini-cli/pull/24842)
40
+ - fix(patch): cherry-pick 64c928f to release/v0.37.0-preview.0-pr-23257 to patch
41
+ version v0.37.0-preview.0 and create version 0.37.0-preview.1 by
45
42
  @gemini-cli-robot in
46
- [#23134](https://github.com/google-gemini/gemini-cli/pull/23134)
47
- - feat(cli): customizable keyboard shortcuts by @scidomino in
48
- [#21945](https://github.com/google-gemini/gemini-cli/pull/21945)
49
- - feat(core): Thread `AgentLoopContext` through core. by @joshualitt in
50
- [#21944](https://github.com/google-gemini/gemini-cli/pull/21944)
51
- - chore(release): bump version to 0.35.0-nightly.20260311.657f19c1f by
52
- @gemini-cli-robot in
53
- [#21966](https://github.com/google-gemini/gemini-cli/pull/21966)
54
- - refactor(a2a): remove legacy CoreToolScheduler by @adamfweidman in
55
- [#21955](https://github.com/google-gemini/gemini-cli/pull/21955)
56
- - feat(ui): add missing vim mode motions (X, ~, r, f/F/t/T, df/dt and friends)
57
- by @aanari in [#21932](https://github.com/google-gemini/gemini-cli/pull/21932)
58
- - Feat/retry fetch notifications by @aishaneeshah in
59
- [#21813](https://github.com/google-gemini/gemini-cli/pull/21813)
60
- - fix(core): remove OAuth check from handleFallback and clean up stray file by
61
- @sehoon38 in [#21962](https://github.com/google-gemini/gemini-cli/pull/21962)
62
- - feat(cli): support literal character keybindings and extended Kitty protocol
63
- keys by @scidomino in
64
- [#21972](https://github.com/google-gemini/gemini-cli/pull/21972)
65
- - fix(ui): clamp cursor to last char after all NORMAL mode deletes by @aanari in
66
- [#21973](https://github.com/google-gemini/gemini-cli/pull/21973)
67
- - test(core): add missing tests for prompts/utils.ts by @krrishverma1805-web in
68
- [#19941](https://github.com/google-gemini/gemini-cli/pull/19941)
69
- - fix(cli): allow scrolling keys in copy mode (Ctrl+S selection mode) by
70
- @nsalerni in [#19933](https://github.com/google-gemini/gemini-cli/pull/19933)
71
- - docs(cli): add custom keybinding documentation by @scidomino in
72
- [#21980](https://github.com/google-gemini/gemini-cli/pull/21980)
73
- - docs: fix misleading YOLO mode description in defaultApprovalMode by
74
- @Gyanranjan-Priyam in
75
- [#21878](https://github.com/google-gemini/gemini-cli/pull/21878)
76
- - fix: clean up /clear and /resume by @jackwotherspoon in
77
- [#22007](https://github.com/google-gemini/gemini-cli/pull/22007)
78
- - fix(core)#20941: reap orphaned descendant processes on PTY abort by @manavmax
79
- in [#21124](https://github.com/google-gemini/gemini-cli/pull/21124)
80
- - fix(core): update language detection to use LSP 3.18 identifiers by @yunaseoul
81
- in [#21931](https://github.com/google-gemini/gemini-cli/pull/21931)
82
- - feat(cli): support removing keybindings via '-' prefix by @scidomino in
83
- [#22042](https://github.com/google-gemini/gemini-cli/pull/22042)
84
- - feat(policy): add --admin-policy flag for supplemental admin policies by
85
- @galz10 in [#20360](https://github.com/google-gemini/gemini-cli/pull/20360)
86
- - merge duplicate imports packages/cli/src subtask1 by @Nixxx19 in
87
- [#22040](https://github.com/google-gemini/gemini-cli/pull/22040)
88
- - perf(core): parallelize user quota and experiments fetching in refreshAuth by
89
- @sehoon38 in [#21648](https://github.com/google-gemini/gemini-cli/pull/21648)
90
- - Changelog for v0.34.0-preview.0 by @gemini-cli-robot in
91
- [#21965](https://github.com/google-gemini/gemini-cli/pull/21965)
92
- - Changelog for v0.33.0 by @gemini-cli-robot in
93
- [#21967](https://github.com/google-gemini/gemini-cli/pull/21967)
94
- - fix(core): handle EISDIR in robustRealpath on Windows by @sehoon38 in
95
- [#21984](https://github.com/google-gemini/gemini-cli/pull/21984)
96
- - feat(core): include initiationMethod in conversation interaction telemetry by
97
- @yunaseoul in [#22054](https://github.com/google-gemini/gemini-cli/pull/22054)
98
- - feat(ui): add vim yank/paste (y/p/P) with unnamed register by @aanari in
99
- [#22026](https://github.com/google-gemini/gemini-cli/pull/22026)
100
- - fix(core): enable numerical routing for api key users by @sehoon38 in
101
- [#21977](https://github.com/google-gemini/gemini-cli/pull/21977)
102
- - feat(telemetry): implement retry attempt telemetry for network related retries
103
- by @aishaneeshah in
104
- [#22027](https://github.com/google-gemini/gemini-cli/pull/22027)
105
- - fix(policy): remove unnecessary escapeRegex from pattern builders by
106
- @spencer426 in
107
- [#21921](https://github.com/google-gemini/gemini-cli/pull/21921)
108
- - fix(core): preserve dynamic tool descriptions on session resume by @sehoon38
109
- in [#18835](https://github.com/google-gemini/gemini-cli/pull/18835)
110
- - chore: allow 'gemini-3.1' in sensitive keyword linter by @scidomino in
111
- [#22065](https://github.com/google-gemini/gemini-cli/pull/22065)
112
- - feat(core): support custom base URL via env vars by @junaiddshaukat in
113
- [#21561](https://github.com/google-gemini/gemini-cli/pull/21561)
114
- - merge duplicate imports packages/cli/src subtask2 by @Nixxx19 in
115
- [#22051](https://github.com/google-gemini/gemini-cli/pull/22051)
116
- - fix(core): silently retry API errors up to 3 times before halting session by
117
- @spencer426 in
118
- [#21989](https://github.com/google-gemini/gemini-cli/pull/21989)
119
- - feat(core): simplify subagent success UI and improve early termination display
120
- by @abhipatel12 in
121
- [#21917](https://github.com/google-gemini/gemini-cli/pull/21917)
122
- - merge duplicate imports packages/cli/src subtask3 by @Nixxx19 in
123
- [#22056](https://github.com/google-gemini/gemini-cli/pull/22056)
124
- - fix(hooks): fix BeforeAgent/AfterAgent inconsistencies (#18514) by @krishdef7
125
- in [#21383](https://github.com/google-gemini/gemini-cli/pull/21383)
126
- - feat(core): implement SandboxManager interface and config schema by @galz10 in
127
- [#21774](https://github.com/google-gemini/gemini-cli/pull/21774)
128
- - docs: document npm deprecation warnings as safe to ignore by @h30s in
129
- [#20692](https://github.com/google-gemini/gemini-cli/pull/20692)
130
- - fix: remove status/need-triage from maintainer-only issues by @SandyTao520 in
131
- [#22044](https://github.com/google-gemini/gemini-cli/pull/22044)
132
- - fix(core): propagate subagent context to policy engine by @NTaylorMullen in
133
- [#22086](https://github.com/google-gemini/gemini-cli/pull/22086)
134
- - fix(cli): resolve skill uninstall failure when skill name is updated by
135
- @NTaylorMullen in
136
- [#22085](https://github.com/google-gemini/gemini-cli/pull/22085)
137
- - docs(plan): clarify interactive plan editing with Ctrl+X by @Adib234 in
138
- [#22076](https://github.com/google-gemini/gemini-cli/pull/22076)
139
- - fix(policy): ensure user policies are loaded when policyPaths is empty by
140
- @NTaylorMullen in
141
- [#22090](https://github.com/google-gemini/gemini-cli/pull/22090)
142
- - Docs: Add documentation for model steering (experimental). by @jkcinouye in
143
- [#21154](https://github.com/google-gemini/gemini-cli/pull/21154)
144
- - Add issue for automated changelogs by @g-samroberts in
145
- [#21912](https://github.com/google-gemini/gemini-cli/pull/21912)
146
- - fix(core): secure argsPattern and revert WEB_FETCH_TOOL_NAME escalation by
147
- @spencer426 in
148
- [#22104](https://github.com/google-gemini/gemini-cli/pull/22104)
149
- - feat(core): differentiate User-Agent for a2a-server and ACP clients by
150
- @bdmorgan in [#22059](https://github.com/google-gemini/gemini-cli/pull/22059)
151
- - refactor(core): extract ExecutionLifecycleService for tool backgrounding by
43
+ [#24561](https://github.com/google-gemini/gemini-cli/pull/24561)
44
+ - feat(evals): centralize test agents into test-utils for reuse by @Samee24 in
45
+ [#23616](https://github.com/google-gemini/gemini-cli/pull/23616)
46
+ - revert: chore(config): disable agents by default by @abhipatel12 in
47
+ [#23672](https://github.com/google-gemini/gemini-cli/pull/23672)
48
+ - fix(plan): update telemetry attribute keys and add timestamp by @Adib234 in
49
+ [#23685](https://github.com/google-gemini/gemini-cli/pull/23685)
50
+ - fix(core): prevent premature MCP discovery completion by @jackwotherspoon in
51
+ [#23637](https://github.com/google-gemini/gemini-cli/pull/23637)
52
+ - feat(browser): add maxActionsPerTask for browser agent setting by
53
+ @cynthialong0-0 in
54
+ [#23216](https://github.com/google-gemini/gemini-cli/pull/23216)
55
+ - fix(core): improve agent loader error formatting for empty paths by
152
56
  @adamfweidman in
153
- [#21717](https://github.com/google-gemini/gemini-cli/pull/21717)
154
- - feat: Display pending and confirming tool calls by @sripasg in
155
- [#22106](https://github.com/google-gemini/gemini-cli/pull/22106)
156
- - feat(browser): implement input blocker overlay during automation by
157
- @kunal-10-cloud in
158
- [#21132](https://github.com/google-gemini/gemini-cli/pull/21132)
159
- - fix: register themes on extension load not start by @jackwotherspoon in
160
- [#22148](https://github.com/google-gemini/gemini-cli/pull/22148)
161
- - feat(ui): Do not show Ultra users /upgrade hint (#22154) by @sehoon38 in
162
- [#22156](https://github.com/google-gemini/gemini-cli/pull/22156)
163
- - chore: remove unnecessary log for themes by @jackwotherspoon in
164
- [#22165](https://github.com/google-gemini/gemini-cli/pull/22165)
165
- - fix(core): resolve MCP tool FQN validation, schema export, and wildcards in
166
- subagents by @abhipatel12 in
167
- [#22069](https://github.com/google-gemini/gemini-cli/pull/22069)
168
- - fix(cli): validate --model argument at startup by @JaisalJain in
169
- [#21393](https://github.com/google-gemini/gemini-cli/pull/21393)
170
- - fix(core): handle policy ALLOW for exit_plan_mode by @backnotprop in
171
- [#21802](https://github.com/google-gemini/gemini-cli/pull/21802)
172
- - feat(telemetry): add Clearcut instrumentation for AI credits billing events by
57
+ [#23690](https://github.com/google-gemini/gemini-cli/pull/23690)
58
+ - fix(cli): only show updating spinner when auto-update is in progress by
59
+ @scidomino in [#23709](https://github.com/google-gemini/gemini-cli/pull/23709)
60
+ - Refine onboarding metrics to log the duration explicitly and use the tier
61
+ name. by @yunaseoul in
62
+ [#23678](https://github.com/google-gemini/gemini-cli/pull/23678)
63
+ - chore(tools): add toJSON to tools and invocations to reduce logging verbosity
64
+ by @alisa-alisa in
65
+ [#22899](https://github.com/google-gemini/gemini-cli/pull/22899)
66
+ - fix(cli): stabilize copy mode to prevent flickering and cursor resets by
67
+ @mattKorwel in
68
+ [#22584](https://github.com/google-gemini/gemini-cli/pull/22584)
69
+ - fix(test): move flaky ctrl-c-exit test to non-blocking suite by @mattKorwel in
70
+ [#23732](https://github.com/google-gemini/gemini-cli/pull/23732)
71
+ - feat(skills): add ci skill for automated failure replication by @mattKorwel in
72
+ [#23720](https://github.com/google-gemini/gemini-cli/pull/23720)
73
+ - feat(sandbox): implement forbiddenPaths for OS-specific sandbox managers by
74
+ @ehedlund in [#23282](https://github.com/google-gemini/gemini-cli/pull/23282)
75
+ - fix(core): conditionally expose additional_permissions in shell tool by
76
+ @galz10 in [#23729](https://github.com/google-gemini/gemini-cli/pull/23729)
77
+ - refactor(core): standardize OS-specific sandbox tests and extract linux helper
78
+ methods by @ehedlund in
79
+ [#23715](https://github.com/google-gemini/gemini-cli/pull/23715)
80
+ - format recently added script by @scidomino in
81
+ [#23739](https://github.com/google-gemini/gemini-cli/pull/23739)
82
+ - fix(ui): prevent over-eager slash subcommand completion by @keithguerin in
83
+ [#20136](https://github.com/google-gemini/gemini-cli/pull/20136)
84
+ - Fix dynamic model routing for gemini 3.1 pro to customtools model by
85
+ @kevinjwang1 in
86
+ [#23641](https://github.com/google-gemini/gemini-cli/pull/23641)
87
+ - feat(core): support inline agentCardJson for remote agents by @adamfweidman in
88
+ [#23743](https://github.com/google-gemini/gemini-cli/pull/23743)
89
+ - fix(cli): skip console log/info in headless mode by @cynthialong0-0 in
90
+ [#22739](https://github.com/google-gemini/gemini-cli/pull/22739)
91
+ - test(core): install bubblewrap on Linux CI for sandbox integration tests by
92
+ @ehedlund in [#23583](https://github.com/google-gemini/gemini-cli/pull/23583)
93
+ - docs(reference): split tools table into category sections by @sheikhlimon in
94
+ [#21516](https://github.com/google-gemini/gemini-cli/pull/21516)
95
+ - fix(browser): detect embedded URLs in query params to prevent allowedDomains
96
+ bypass by @tony-shi in
97
+ [#23225](https://github.com/google-gemini/gemini-cli/pull/23225)
98
+ - fix(browser): add proxy bypass constraint to domain restriction system prompt
99
+ by @tony-shi in
100
+ [#23229](https://github.com/google-gemini/gemini-cli/pull/23229)
101
+ - fix(policy): relax write_file argsPattern in plan mode to allow paths without
102
+ session ID by @Adib234 in
103
+ [#23695](https://github.com/google-gemini/gemini-cli/pull/23695)
104
+ - docs: fix grammar in CONTRIBUTING and numbering in sandbox docs by
105
+ @splint-disk-8i in
106
+ [#23448](https://github.com/google-gemini/gemini-cli/pull/23448)
107
+ - fix(acp): allow attachments by adding a permission prompt by @sripasg in
108
+ [#23680](https://github.com/google-gemini/gemini-cli/pull/23680)
109
+ - fix(core): thread AbortSignal to chat compression requests (#20405) by
110
+ @SH20RAJ in [#20778](https://github.com/google-gemini/gemini-cli/pull/20778)
111
+ - feat(core): implement Windows sandbox dynamic expansion Phase 1 and 2.1 by
112
+ @scidomino in [#23691](https://github.com/google-gemini/gemini-cli/pull/23691)
113
+ - Add note about root privileges in sandbox docs by @diodesign in
114
+ [#23314](https://github.com/google-gemini/gemini-cli/pull/23314)
115
+ - docs(core): document agent_card_json string literal options for remote agents
116
+ by @adamfweidman in
117
+ [#23797](https://github.com/google-gemini/gemini-cli/pull/23797)
118
+ - fix(cli): resolve TTY hang on headless environments by unconditionally
119
+ resuming process.stdin before React Ink launch by @cocosheng-g in
120
+ [#23673](https://github.com/google-gemini/gemini-cli/pull/23673)
121
+ - fix(ui): cleanup estimated string length hacks in composer by @keithguerin in
122
+ [#23694](https://github.com/google-gemini/gemini-cli/pull/23694)
123
+ - feat(browser): dynamically discover read-only tools by @cynthialong0-0 in
124
+ [#23805](https://github.com/google-gemini/gemini-cli/pull/23805)
125
+ - docs: clarify policy requirement for `general.plan.directory` in settings
126
+ schema by @jerop in
127
+ [#23784](https://github.com/google-gemini/gemini-cli/pull/23784)
128
+ - Revert "perf(cli): optimize --version startup time (#23671)" by @scidomino in
129
+ [#23812](https://github.com/google-gemini/gemini-cli/pull/23812)
130
+ - don't silence errors from wombat by @scidomino in
131
+ [#23822](https://github.com/google-gemini/gemini-cli/pull/23822)
132
+ - fix(ui): prevent escape key from cancelling requests in shell mode by
133
+ @PrasannaPal21 in
134
+ [#21245](https://github.com/google-gemini/gemini-cli/pull/21245)
135
+ - Changelog for v0.36.0-preview.0 by @gemini-cli-robot in
136
+ [#23702](https://github.com/google-gemini/gemini-cli/pull/23702)
137
+ - feat(core,ui): Add experiment-gated support for gemini flash 3.1 lite by
138
+ @chrstnb in [#23794](https://github.com/google-gemini/gemini-cli/pull/23794)
139
+ - Changelog for v0.36.0-preview.3 by @gemini-cli-robot in
140
+ [#23827](https://github.com/google-gemini/gemini-cli/pull/23827)
141
+ - new linting check: github-actions-pinning by @alisa-alisa in
142
+ [#23808](https://github.com/google-gemini/gemini-cli/pull/23808)
143
+ - fix(cli): show helpful guidance when no skills are available by @Niralisj in
144
+ [#23785](https://github.com/google-gemini/gemini-cli/pull/23785)
145
+ - fix: Chat logs and errors handle tail tool calls correctly by @googlestrobe in
146
+ [#22460](https://github.com/google-gemini/gemini-cli/pull/22460)
147
+ - Don't try removing a tag from a non-existent release. by @scidomino in
148
+ [#23830](https://github.com/google-gemini/gemini-cli/pull/23830)
149
+ - fix(cli): allow ask question dialog to take full window height by @jacob314 in
150
+ [#23693](https://github.com/google-gemini/gemini-cli/pull/23693)
151
+ - fix(core): strip leading underscores from error types in telemetry by
152
+ @yunaseoul in [#23824](https://github.com/google-gemini/gemini-cli/pull/23824)
153
+ - Changelog for v0.35.0 by @gemini-cli-robot in
154
+ [#23819](https://github.com/google-gemini/gemini-cli/pull/23819)
155
+ - feat(evals): add reliability harvester and 500/503 retry support by
156
+ @alisa-alisa in
157
+ [#23626](https://github.com/google-gemini/gemini-cli/pull/23626)
158
+ - feat(sandbox): dynamic Linux sandbox expansion and worktree support by @galz10
159
+ in [#23692](https://github.com/google-gemini/gemini-cli/pull/23692)
160
+ - Merge examples of use into quickstart documentation by @diodesign in
161
+ [#23319](https://github.com/google-gemini/gemini-cli/pull/23319)
162
+ - fix(cli): prioritize primary name matches in slash command search by @sehoon38
163
+ in [#23850](https://github.com/google-gemini/gemini-cli/pull/23850)
164
+ - Changelog for v0.35.1 by @gemini-cli-robot in
165
+ [#23840](https://github.com/google-gemini/gemini-cli/pull/23840)
166
+ - fix(browser): keep input blocker active across navigations by @kunal-10-cloud
167
+ in [#22562](https://github.com/google-gemini/gemini-cli/pull/22562)
168
+ - feat(core): new skill to look for duplicated code while reviewing PRs by
169
+ @devr0306 in [#23704](https://github.com/google-gemini/gemini-cli/pull/23704)
170
+ - fix(core): replace hardcoded non-interactive ASK_USER denial with explicit
171
+ policy rules by @ruomengz in
172
+ [#23668](https://github.com/google-gemini/gemini-cli/pull/23668)
173
+ - fix(plan): after exiting plan mode switches model to a flash model by @Adib234
174
+ in [#23885](https://github.com/google-gemini/gemini-cli/pull/23885)
175
+ - feat(gcp): add development worker infrastructure by @mattKorwel in
176
+ [#23814](https://github.com/google-gemini/gemini-cli/pull/23814)
177
+ - fix(a2a-server): A2A server should execute ask policies in interactive mode by
178
+ @kschaab in [#23831](https://github.com/google-gemini/gemini-cli/pull/23831)
179
+ - feat(core): define TrajectoryProvider interface by @sehoon38 in
180
+ [#23050](https://github.com/google-gemini/gemini-cli/pull/23050)
181
+ - Docs: Update quotas and pricing by @jkcinouye in
182
+ [#23835](https://github.com/google-gemini/gemini-cli/pull/23835)
183
+ - fix(core): allow disabling environment variable redaction by @galz10 in
184
+ [#23927](https://github.com/google-gemini/gemini-cli/pull/23927)
185
+ - feat(cli): enable notifications cross-platform via terminal bell fallback by
186
+ @genneth in [#21618](https://github.com/google-gemini/gemini-cli/pull/21618)
187
+ - feat(sandbox): implement secret visibility lockdown for env files by
188
+ @DavidAPierce in
189
+ [#23712](https://github.com/google-gemini/gemini-cli/pull/23712)
190
+ - fix(core): remove shell outputChunks buffer caching to prevent memory bloat
191
+ and sanitize prompt input by @spencer426 in
192
+ [#23751](https://github.com/google-gemini/gemini-cli/pull/23751)
193
+ - feat(core): implement persistent browser session management by @kunal-10-cloud
194
+ in [#21306](https://github.com/google-gemini/gemini-cli/pull/21306)
195
+ - refactor(core): delegate sandbox denial parsing to SandboxManager by
196
+ @scidomino in [#23928](https://github.com/google-gemini/gemini-cli/pull/23928)
197
+ - dep(update) Update Ink version to 6.5.0 by @jacob314 in
198
+ [#23843](https://github.com/google-gemini/gemini-cli/pull/23843)
199
+ - Docs: Update 'docs-writer' skill for relative links by @jkcinouye in
200
+ [#21463](https://github.com/google-gemini/gemini-cli/pull/21463)
201
+ - Changelog for v0.36.0-preview.4 by @gemini-cli-robot in
202
+ [#23935](https://github.com/google-gemini/gemini-cli/pull/23935)
203
+ - fix(acp): Update allow approval policy flow for ACP clients to fix config
204
+ persistence and compatible with TUI by @sripasg in
205
+ [#23818](https://github.com/google-gemini/gemini-cli/pull/23818)
206
+ - Changelog for v0.35.2 by @gemini-cli-robot in
207
+ [#23960](https://github.com/google-gemini/gemini-cli/pull/23960)
208
+ - ACP integration documents by @g-samroberts in
209
+ [#22254](https://github.com/google-gemini/gemini-cli/pull/22254)
210
+ - fix(core): explicitly set error names to avoid bundling renaming issues by
211
+ @yunaseoul in [#23913](https://github.com/google-gemini/gemini-cli/pull/23913)
212
+ - feat(core): subagent isolation and cleanup hardening by @abhipatel12 in
213
+ [#23903](https://github.com/google-gemini/gemini-cli/pull/23903)
214
+ - disable extension-reload test by @scidomino in
215
+ [#24018](https://github.com/google-gemini/gemini-cli/pull/24018)
216
+ - feat(core): add forbiddenPaths to GlobalSandboxOptions and refactor
217
+ createSandboxManager by @ehedlund in
218
+ [#23936](https://github.com/google-gemini/gemini-cli/pull/23936)
219
+ - refactor(core): improve ignore resolution and fix directory-matching bug by
220
+ @ehedlund in [#23816](https://github.com/google-gemini/gemini-cli/pull/23816)
221
+ - revert(core): support custom base URL via env vars by @spencer426 in
222
+ [#23976](https://github.com/google-gemini/gemini-cli/pull/23976)
223
+ - Increase memory limited for eslint. by @jacob314 in
224
+ [#24022](https://github.com/google-gemini/gemini-cli/pull/24022)
225
+ - fix(acp): prevent crash on empty response in ACP mode by @sripasg in
226
+ [#23952](https://github.com/google-gemini/gemini-cli/pull/23952)
227
+ - feat(core): Land `AgentHistoryProvider`. by @joshualitt in
228
+ [#23978](https://github.com/google-gemini/gemini-cli/pull/23978)
229
+ - fix(core): switch to subshells for shell tool wrapping to fix heredocs and
230
+ edge cases by @abhipatel12 in
231
+ [#24024](https://github.com/google-gemini/gemini-cli/pull/24024)
232
+ - Debug command. by @jacob314 in
233
+ [#23851](https://github.com/google-gemini/gemini-cli/pull/23851)
234
+ - Changelog for v0.36.0-preview.5 by @gemini-cli-robot in
235
+ [#24046](https://github.com/google-gemini/gemini-cli/pull/24046)
236
+ - Fix test flakes by globally mocking ink-spinner by @jacob314 in
237
+ [#24044](https://github.com/google-gemini/gemini-cli/pull/24044)
238
+ - Enable network access in sandbox configuration by @galz10 in
239
+ [#24055](https://github.com/google-gemini/gemini-cli/pull/24055)
240
+ - feat(context): add configurable memoryBoundaryMarkers setting by @SandyTao520
241
+ in [#24020](https://github.com/google-gemini/gemini-cli/pull/24020)
242
+ - feat(core): implement windows sandbox expansion and denial detection by
243
+ @scidomino in [#24027](https://github.com/google-gemini/gemini-cli/pull/24027)
244
+ - fix(core): resolve ACP Operation Aborted Errors in grep_search by @ivanporty
245
+ in [#23821](https://github.com/google-gemini/gemini-cli/pull/23821)
246
+ - fix(hooks): prevent SessionEnd from firing twice in non-interactive mode by
247
+ @krishdef7 in [#22139](https://github.com/google-gemini/gemini-cli/pull/22139)
248
+ - Re-word intro to Gemini 3 page. by @g-samroberts in
249
+ [#24069](https://github.com/google-gemini/gemini-cli/pull/24069)
250
+ - fix(cli): resolve layout contention and flashing loop in StatusRow by
251
+ @keithguerin in
252
+ [#24065](https://github.com/google-gemini/gemini-cli/pull/24065)
253
+ - fix(sandbox): implement Windows Mandatory Integrity Control for GeminiSandbox
254
+ by @galz10 in [#24057](https://github.com/google-gemini/gemini-cli/pull/24057)
255
+ - feat(core): implement tool-based topic grouping (Chapters) by @Abhijit-2592 in
256
+ [#23150](https://github.com/google-gemini/gemini-cli/pull/23150)
257
+ - feat(cli): support 'tab to queue' for messages while generating by @gundermanc
258
+ in [#24052](https://github.com/google-gemini/gemini-cli/pull/24052)
259
+ - feat(core): agnostic background task UI with CompletionBehavior by
260
+ @adamfweidman in
261
+ [#22740](https://github.com/google-gemini/gemini-cli/pull/22740)
262
+ - UX for topic narration tool by @gundermanc in
263
+ [#24079](https://github.com/google-gemini/gemini-cli/pull/24079)
264
+ - fix: shellcheck warnings in scripts by @scidomino in
265
+ [#24035](https://github.com/google-gemini/gemini-cli/pull/24035)
266
+ - test(evals): add comprehensive subagent delegation evaluations by @abhipatel12
267
+ in [#24132](https://github.com/google-gemini/gemini-cli/pull/24132)
268
+ - fix(a2a-server): prioritize ADC before evaluating headless constraints for
269
+ auth initialization by @spencer426 in
270
+ [#23614](https://github.com/google-gemini/gemini-cli/pull/23614)
271
+ - Text can be added after /plan command by @rambleraptor in
272
+ [#22833](https://github.com/google-gemini/gemini-cli/pull/22833)
273
+ - fix(cli): resolve missing F12 logs via global console store by @scidomino in
274
+ [#24235](https://github.com/google-gemini/gemini-cli/pull/24235)
275
+ - fix broken tests by @scidomino in
276
+ [#24279](https://github.com/google-gemini/gemini-cli/pull/24279)
277
+ - fix(evals): add update_topic behavioral eval by @gundermanc in
278
+ [#24223](https://github.com/google-gemini/gemini-cli/pull/24223)
279
+ - feat(core): Unified Context Management and Tool Distillation. by @joshualitt
280
+ in [#24157](https://github.com/google-gemini/gemini-cli/pull/24157)
281
+ - Default enable narration for the team. by @gundermanc in
282
+ [#24224](https://github.com/google-gemini/gemini-cli/pull/24224)
283
+ - fix(core): ensure default agents provide tools and use model-specific schemas
284
+ by @abhipatel12 in
285
+ [#24268](https://github.com/google-gemini/gemini-cli/pull/24268)
286
+ - feat(cli): show Flash Lite Preview model regardless of user tier by @sehoon38
287
+ in [#23904](https://github.com/google-gemini/gemini-cli/pull/23904)
288
+ - feat(cli): implement compact tool output by @jwhelangoog in
289
+ [#20974](https://github.com/google-gemini/gemini-cli/pull/20974)
290
+ - Add security settings for tool sandboxing by @galz10 in
291
+ [#23923](https://github.com/google-gemini/gemini-cli/pull/23923)
292
+ - chore(test-utils): switch integration tests to use PREVIEW_GEMINI_MODEL by
293
+ @sehoon38 in [#24276](https://github.com/google-gemini/gemini-cli/pull/24276)
294
+ - feat(core): enable topic update narration for legacy models by @Abhijit-2592
295
+ in [#24241](https://github.com/google-gemini/gemini-cli/pull/24241)
296
+ - feat(core): add project-level memory scope to save_memory tool by @SandyTao520
297
+ in [#24161](https://github.com/google-gemini/gemini-cli/pull/24161)
298
+ - test(integration): fix plan mode write denial test false positive by @sehoon38
299
+ in [#24299](https://github.com/google-gemini/gemini-cli/pull/24299)
300
+ - feat(plan): support `Plan` mode in untrusted folders by @Adib234 in
301
+ [#17586](https://github.com/google-gemini/gemini-cli/pull/17586)
302
+ - fix(core): enable mid-stream retries for all models and re-enable compression
303
+ test by @sehoon38 in
304
+ [#24302](https://github.com/google-gemini/gemini-cli/pull/24302)
305
+ - Changelog for v0.36.0-preview.6 by @gemini-cli-robot in
306
+ [#24082](https://github.com/google-gemini/gemini-cli/pull/24082)
307
+ - Changelog for v0.35.3 by @gemini-cli-robot in
308
+ [#24083](https://github.com/google-gemini/gemini-cli/pull/24083)
309
+ - feat(cli): add auth info to footer by @sehoon38 in
310
+ [#24042](https://github.com/google-gemini/gemini-cli/pull/24042)
311
+ - fix(browser): reset action counter for each agent session and let it ignore
312
+ internal actions by @cynthialong0-0 in
313
+ [#24228](https://github.com/google-gemini/gemini-cli/pull/24228)
314
+ - feat(plan): promote planning feature to stable by @ruomengz in
315
+ [#24282](https://github.com/google-gemini/gemini-cli/pull/24282)
316
+ - fix(browser): terminate subagent immediately on domain restriction violations
317
+ by @gsquared94 in
318
+ [#24313](https://github.com/google-gemini/gemini-cli/pull/24313)
319
+ - feat(cli): add UI to update extensions by @ruomengz in
320
+ [#23682](https://github.com/google-gemini/gemini-cli/pull/23682)
321
+ - Fix(browser): terminate immediately for "browser is already running" error by
322
+ @cynthialong0-0 in
323
+ [#24233](https://github.com/google-gemini/gemini-cli/pull/24233)
324
+ - docs: Add 'plan' option to approval mode in CLI reference by @YifanRuan in
325
+ [#24134](https://github.com/google-gemini/gemini-cli/pull/24134)
326
+ - fix(core): batch macOS seatbelt rules into a profile file to prevent ARG_MAX
327
+ errors by @ehedlund in
328
+ [#24255](https://github.com/google-gemini/gemini-cli/pull/24255)
329
+ - fix(core): fix race condition between browser agent and main closing process
330
+ by @cynthialong0-0 in
331
+ [#24340](https://github.com/google-gemini/gemini-cli/pull/24340)
332
+ - perf(build): optimize build scripts for parallel execution and remove
333
+ redundant checks by @sehoon38 in
334
+ [#24307](https://github.com/google-gemini/gemini-cli/pull/24307)
335
+ - ci: install bubblewrap on Linux for release workflows by @ehedlund in
336
+ [#24347](https://github.com/google-gemini/gemini-cli/pull/24347)
337
+ - chore(release): allow bundling for all builds, including stable by @sehoon38
338
+ in [#24305](https://github.com/google-gemini/gemini-cli/pull/24305)
339
+ - Revert "Add security settings for tool sandboxing" by @jerop in
340
+ [#24357](https://github.com/google-gemini/gemini-cli/pull/24357)
341
+ - docs: update subagents docs to not be experimental by @abhipatel12 in
342
+ [#24343](https://github.com/google-gemini/gemini-cli/pull/24343)
343
+ - fix(core): implement **read and **write commands in sandbox managers by
344
+ @galz10 in [#24283](https://github.com/google-gemini/gemini-cli/pull/24283)
345
+ - don't try to remove tags in dry run by @scidomino in
346
+ [#24356](https://github.com/google-gemini/gemini-cli/pull/24356)
347
+ - fix(config): disable JIT context loading by default by @SandyTao520 in
348
+ [#24364](https://github.com/google-gemini/gemini-cli/pull/24364)
349
+ - test(sandbox): add integration test for dynamic permission expansion by
350
+ @galz10 in [#24359](https://github.com/google-gemini/gemini-cli/pull/24359)
351
+ - docs(policy): remove unsupported mcpName wildcard edge case by @abhipatel12 in
352
+ [#24133](https://github.com/google-gemini/gemini-cli/pull/24133)
353
+ - docs: fix broken GEMINI.md link in CONTRIBUTING.md by @Panchal-Tirth in
354
+ [#24182](https://github.com/google-gemini/gemini-cli/pull/24182)
355
+ - feat(core): infrastructure for event-driven subagent history by @abhipatel12
356
+ in [#23914](https://github.com/google-gemini/gemini-cli/pull/23914)
357
+ - fix(core): resolve Plan Mode deadlock during plan file creation due to sandbox
358
+ restrictions by @DavidAPierce in
359
+ [#24047](https://github.com/google-gemini/gemini-cli/pull/24047)
360
+ - fix(core): fix browser agent UX issues and improve E2E test reliability by
173
361
  @gsquared94 in
174
- [#22153](https://github.com/google-gemini/gemini-cli/pull/22153)
175
- - feat(core): add google credentials provider for remote agents by @adamfweidman
176
- in [#21024](https://github.com/google-gemini/gemini-cli/pull/21024)
177
- - test(cli): add integration test for node deprecation warnings by @Nixxx19 in
178
- [#20215](https://github.com/google-gemini/gemini-cli/pull/20215)
179
- - feat(cli): allow safe tools to execute concurrently while agent is busy by
180
- @spencer426 in
181
- [#21988](https://github.com/google-gemini/gemini-cli/pull/21988)
182
- - feat(core): implement model-driven parallel tool scheduler by @abhipatel12 in
183
- [#21933](https://github.com/google-gemini/gemini-cli/pull/21933)
184
- - update vulnerable deps by @scidomino in
185
- [#22180](https://github.com/google-gemini/gemini-cli/pull/22180)
186
- - fix(core): fix startup stats to use int values for timestamps and durations by
187
- @yunaseoul in [#22201](https://github.com/google-gemini/gemini-cli/pull/22201)
188
- - fix(core): prevent duplicate tool schemas for instantiated tools by
362
+ [#24312](https://github.com/google-gemini/gemini-cli/pull/24312)
363
+ - fix(ui): wrap topic and intent fields in TopicMessage by @jwhelangoog in
364
+ [#24386](https://github.com/google-gemini/gemini-cli/pull/24386)
365
+ - refactor(core): Centralize context management logic into src/context by
366
+ @joshualitt in
367
+ [#24380](https://github.com/google-gemini/gemini-cli/pull/24380)
368
+ - fix(core): pin AuthType.GATEWAY to use Gemini 3.1 Pro/Flash Lite by default by
369
+ @sripasg in [#24375](https://github.com/google-gemini/gemini-cli/pull/24375)
370
+ - feat(ui): add Tokyo Night theme by @danrneal in
371
+ [#24054](https://github.com/google-gemini/gemini-cli/pull/24054)
372
+ - fix(cli): refactor test config loading and mock debugLogger in test-setup by
373
+ @mattKorwel in
374
+ [#24389](https://github.com/google-gemini/gemini-cli/pull/24389)
375
+ - Set memoryManager to false in settings.json by @mattKorwel in
376
+ [#24393](https://github.com/google-gemini/gemini-cli/pull/24393)
377
+ - ink 6.6.3 by @jacob314 in
378
+ [#24372](https://github.com/google-gemini/gemini-cli/pull/24372)
379
+ - fix(core): resolve subagent chat recording gaps and directory inheritance by
189
380
  @abhipatel12 in
190
- [#22204](https://github.com/google-gemini/gemini-cli/pull/22204)
191
- - fix(core): add proxy routing support for remote A2A subagents by @adamfweidman
192
- in [#22199](https://github.com/google-gemini/gemini-cli/pull/22199)
193
- - fix(core/ide): add Antigravity CLI fallbacks by @apfine in
194
- [#22030](https://github.com/google-gemini/gemini-cli/pull/22030)
195
- - fix(browser): fix duplicate function declaration error in browser agent by
381
+ [#24368](https://github.com/google-gemini/gemini-cli/pull/24368)
382
+ - fix(cli): cap shell output at 10 MB to prevent RangeError crash by @ProthamD
383
+ in [#24168](https://github.com/google-gemini/gemini-cli/pull/24168)
384
+ - feat(plan): conditionally add enter/exit plan mode tools based on current mode
385
+ by @ruomengz in
386
+ [#24378](https://github.com/google-gemini/gemini-cli/pull/24378)
387
+ - feat(core): prioritize discussion before formal plan approval by @jerop in
388
+ [#24423](https://github.com/google-gemini/gemini-cli/pull/24423)
389
+ - fix(ui): add accelerated scrolling on alternate buffer mode by @devr0306 in
390
+ [#23940](https://github.com/google-gemini/gemini-cli/pull/23940)
391
+ - feat(core): populate sandbox forbidden paths with project ignore file contents
392
+ by @ehedlund in
393
+ [#24038](https://github.com/google-gemini/gemini-cli/pull/24038)
394
+ - fix(core): ensure blue border overlay and input blocker to act correctly
395
+ depending on browser agent activities by @cynthialong0-0 in
396
+ [#24385](https://github.com/google-gemini/gemini-cli/pull/24385)
397
+ - fix(ui): removed additional vertical padding for tables by @devr0306 in
398
+ [#24381](https://github.com/google-gemini/gemini-cli/pull/24381)
399
+ - fix(build): upload full bundle directory archive to GitHub releases by
400
+ @sehoon38 in [#24403](https://github.com/google-gemini/gemini-cli/pull/24403)
401
+ - fix(build): wire bundle:browser-mcp into bundle pipeline by @gsquared94 in
402
+ [#24424](https://github.com/google-gemini/gemini-cli/pull/24424)
403
+ - feat(browser): add sandbox-aware browser agent initialization by @gsquared94
404
+ in [#24419](https://github.com/google-gemini/gemini-cli/pull/24419)
405
+ - feat(core): enhance tracker task schemas for detailed titles and descriptions
406
+ by @anj-s in [#23902](https://github.com/google-gemini/gemini-cli/pull/23902)
407
+ - refactor(core): Unified context management settings schema by @joshualitt in
408
+ [#24391](https://github.com/google-gemini/gemini-cli/pull/24391)
409
+ - feat(core): update browser agent prompt to check open pages first when
410
+ bringing up by @cynthialong0-0 in
411
+ [#24431](https://github.com/google-gemini/gemini-cli/pull/24431)
412
+ - fix(acp) refactor(core,cli): centralize model discovery logic in
413
+ ModelConfigService by @sripasg in
414
+ [#24392](https://github.com/google-gemini/gemini-cli/pull/24392)
415
+ - Changelog for v0.36.0-preview.7 by @gemini-cli-robot in
416
+ [#24346](https://github.com/google-gemini/gemini-cli/pull/24346)
417
+ - fix: update task tracker storage location in system prompt by @anj-s in
418
+ [#24034](https://github.com/google-gemini/gemini-cli/pull/24034)
419
+ - feat(browser): supersede stale snapshots to reclaim context-window tokens by
196
420
  @gsquared94 in
197
- [#22207](https://github.com/google-gemini/gemini-cli/pull/22207)
198
- - feat(core): implement Stage 1 improvements for webfetch tool by @aishaneeshah
199
- in [#21313](https://github.com/google-gemini/gemini-cli/pull/21313)
200
- - Changelog for v0.34.0-preview.1 by @gemini-cli-robot in
201
- [#22194](https://github.com/google-gemini/gemini-cli/pull/22194)
202
- - perf(cli): enable code splitting and deferred UI loading by @sehoon38 in
203
- [#22117](https://github.com/google-gemini/gemini-cli/pull/22117)
204
- - fix: remove unused img.png from project root by @SandyTao520 in
205
- [#22222](https://github.com/google-gemini/gemini-cli/pull/22222)
206
- - docs(local model routing): add docs on how to use Gemma for local model
207
- routing by @douglas-reid in
208
- [#21365](https://github.com/google-gemini/gemini-cli/pull/21365)
209
- - feat(a2a): enable native gRPC support and protocol routing by @alisa-alisa in
210
- [#21403](https://github.com/google-gemini/gemini-cli/pull/21403)
211
- - fix(cli): escape @ symbols on paste to prevent unintended file expansion by
212
- @krishdef7 in [#21239](https://github.com/google-gemini/gemini-cli/pull/21239)
213
- - feat(core): add trajectoryId to ConversationOffered telemetry by @yunaseoul in
214
- [#22214](https://github.com/google-gemini/gemini-cli/pull/22214)
215
- - docs: clarify that tools.core is an allowlist for ALL built-in tools by
216
- @hobostay in [#18813](https://github.com/google-gemini/gemini-cli/pull/18813)
217
- - docs(plan): document hooks with plan mode by @ruomengz in
218
- [#22197](https://github.com/google-gemini/gemini-cli/pull/22197)
219
- - Changelog for v0.33.1 by @gemini-cli-robot in
220
- [#22235](https://github.com/google-gemini/gemini-cli/pull/22235)
221
- - build(ci): fix false positive evals trigger on merge commits by @gundermanc in
222
- [#22237](https://github.com/google-gemini/gemini-cli/pull/22237)
223
- - fix(core): explicitly pass messageBus to policy engine for MCP tool saves by
224
- @abhipatel12 in
225
- [#22255](https://github.com/google-gemini/gemini-cli/pull/22255)
226
- - feat(core): Fully migrate packages/core to AgentLoopContext. by @joshualitt in
227
- [#22115](https://github.com/google-gemini/gemini-cli/pull/22115)
228
- - feat(core): increase sub-agent turn and time limits by @bdmorgan in
229
- [#22196](https://github.com/google-gemini/gemini-cli/pull/22196)
230
- - feat(core): instrument file system tools for JIT context discovery by
231
- @SandyTao520 in
232
- [#22082](https://github.com/google-gemini/gemini-cli/pull/22082)
233
- - refactor(ui): extract pure session browser utilities by @abhipatel12 in
234
- [#22256](https://github.com/google-gemini/gemini-cli/pull/22256)
235
- - fix(plan): Fix AskUser evals by @Adib234 in
236
- [#22074](https://github.com/google-gemini/gemini-cli/pull/22074)
237
- - fix(settings): prevent j/k navigation keys from intercepting edit buffer input
238
- by @student-ankitpandit in
239
- [#21865](https://github.com/google-gemini/gemini-cli/pull/21865)
240
- - feat(skills): improve async-pr-review workflow and logging by @mattKorwel in
241
- [#21790](https://github.com/google-gemini/gemini-cli/pull/21790)
242
- - refactor(cli): consolidate getErrorMessage utility to core by @scidomino in
243
- [#22190](https://github.com/google-gemini/gemini-cli/pull/22190)
244
- - fix(core): show descriptive error messages when saving settings fails by
245
- @afarber in [#18095](https://github.com/google-gemini/gemini-cli/pull/18095)
246
- - docs(core): add authentication guide for remote subagents by @adamfweidman in
247
- [#22178](https://github.com/google-gemini/gemini-cli/pull/22178)
248
- - docs: overhaul subagents documentation and add /agents command by @abhipatel12
249
- in [#22345](https://github.com/google-gemini/gemini-cli/pull/22345)
250
- - refactor(ui): extract SessionBrowser static ui components by @abhipatel12 in
251
- [#22348](https://github.com/google-gemini/gemini-cli/pull/22348)
252
- - test: add Object.create context regression test and tool confirmation
253
- integration test by @gsquared94 in
254
- [#22356](https://github.com/google-gemini/gemini-cli/pull/22356)
255
- - feat(tracker): return TodoList display for tracker tools by @anj-s in
256
- [#22060](https://github.com/google-gemini/gemini-cli/pull/22060)
257
- - feat(agent): add allowed domain restrictions for browser agent by
258
- @cynthialong0-0 in
259
- [#21775](https://github.com/google-gemini/gemini-cli/pull/21775)
260
- - chore/release: bump version to 0.35.0-nightly.20260313.bb060d7a9 by
261
- @gemini-cli-robot in
262
- [#22251](https://github.com/google-gemini/gemini-cli/pull/22251)
263
- - Move keychain fallback to keychain service by @chrstnb in
264
- [#22332](https://github.com/google-gemini/gemini-cli/pull/22332)
265
- - feat(core): integrate SandboxManager to sandbox all process-spawning tools by
266
- @galz10 in [#22231](https://github.com/google-gemini/gemini-cli/pull/22231)
267
- - fix(cli): support CJK input and full Unicode scalar values in terminal
268
- protocols by @scidomino in
269
- [#22353](https://github.com/google-gemini/gemini-cli/pull/22353)
270
- - Promote stable tests. by @gundermanc in
271
- [#22253](https://github.com/google-gemini/gemini-cli/pull/22253)
272
- - feat(tracker): add tracker policy by @anj-s in
273
- [#22379](https://github.com/google-gemini/gemini-cli/pull/22379)
274
- - feat(security): add disableAlwaysAllow setting to disable auto-approvals by
275
- @galz10 in [#21941](https://github.com/google-gemini/gemini-cli/pull/21941)
276
- - Revert "fix(cli): validate --model argument at startup" by @sehoon38 in
277
- [#22378](https://github.com/google-gemini/gemini-cli/pull/22378)
278
- - fix(mcp): handle equivalent root resource URLs in OAuth validation by @galz10
279
- in [#20231](https://github.com/google-gemini/gemini-cli/pull/20231)
280
- - fix(core): use session-specific temp directory for task tracker by @anj-s in
281
- [#22382](https://github.com/google-gemini/gemini-cli/pull/22382)
282
- - Fix issue where config was undefined. by @gundermanc in
283
- [#22397](https://github.com/google-gemini/gemini-cli/pull/22397)
284
- - fix(core): deduplicate project memory when JIT context is enabled by
285
- @SandyTao520 in
286
- [#22234](https://github.com/google-gemini/gemini-cli/pull/22234)
287
- - feat(prompts): implement Topic-Action-Summary model for verbosity reduction by
288
- @Abhijit-2592 in
289
- [#21503](https://github.com/google-gemini/gemini-cli/pull/21503)
290
- - fix(core): fix manual deletion of subagent histories by @abhipatel12 in
291
- [#22407](https://github.com/google-gemini/gemini-cli/pull/22407)
292
- - Add registry var by @kevinjwang1 in
293
- [#22224](https://github.com/google-gemini/gemini-cli/pull/22224)
294
- - Add ModelDefinitions to ModelConfigService by @kevinjwang1 in
295
- [#22302](https://github.com/google-gemini/gemini-cli/pull/22302)
296
- - fix(cli): improve command conflict handling for skills by @NTaylorMullen in
297
- [#21942](https://github.com/google-gemini/gemini-cli/pull/21942)
298
- - fix(core): merge user settings with extension-provided MCP servers by
299
- @abhipatel12 in
300
- [#22484](https://github.com/google-gemini/gemini-cli/pull/22484)
301
- - fix(core): skip discovery for incomplete MCP configs and resolve merge race
302
- condition by @abhipatel12 in
303
- [#22494](https://github.com/google-gemini/gemini-cli/pull/22494)
304
- - fix(automation): harden stale PR closer permissions and maintainer detection
305
- by @bdmorgan in
306
- [#22558](https://github.com/google-gemini/gemini-cli/pull/22558)
307
- - fix(automation): evaluate staleness before checking protected labels by
308
- @bdmorgan in [#22561](https://github.com/google-gemini/gemini-cli/pull/22561)
309
- - feat(agent): replace the runtime npx for browser agent chrome devtool mcp with
310
- pre-built bundle by @cynthialong0-0 in
311
- [#22213](https://github.com/google-gemini/gemini-cli/pull/22213)
312
- - perf: optimize TrackerService dependency checks by @anj-s in
313
- [#22384](https://github.com/google-gemini/gemini-cli/pull/22384)
314
- - docs(policy): remove trailing space from commandPrefix examples by @kawasin73
315
- in [#22264](https://github.com/google-gemini/gemini-cli/pull/22264)
316
- - fix(a2a-server): resolve unsafe assignment lint errors by @ehedlund in
317
- [#22661](https://github.com/google-gemini/gemini-cli/pull/22661)
318
- - fix: Adjust ToolGroupMessage filtering to hide Confirming and show Canceled
319
- tool calls. by @sripasg in
320
- [#22230](https://github.com/google-gemini/gemini-cli/pull/22230)
321
- - Disallow Object.create() and reflect. by @gundermanc in
322
- [#22408](https://github.com/google-gemini/gemini-cli/pull/22408)
323
- - Guard pro model usage by @sehoon38 in
324
- [#22665](https://github.com/google-gemini/gemini-cli/pull/22665)
325
- - refactor(core): Creates AgentSession abstraction for consolidated agent
326
- interface. by @mbleigh in
327
- [#22270](https://github.com/google-gemini/gemini-cli/pull/22270)
328
- - docs(changelog): remove internal commands from release notes by
329
- @jackwotherspoon in
330
- [#22529](https://github.com/google-gemini/gemini-cli/pull/22529)
331
- - feat: enable subagents by @abhipatel12 in
332
- [#22386](https://github.com/google-gemini/gemini-cli/pull/22386)
333
- - feat(extensions): implement cryptographic integrity verification for extension
334
- updates by @ehedlund in
335
- [#21772](https://github.com/google-gemini/gemini-cli/pull/21772)
336
- - feat(tracker): polish UI sorting and formatting by @anj-s in
337
- [#22437](https://github.com/google-gemini/gemini-cli/pull/22437)
338
- - Changelog for v0.34.0-preview.2 by @gemini-cli-robot in
339
- [#22220](https://github.com/google-gemini/gemini-cli/pull/22220)
340
- - fix(core): fix three JIT context bugs in read_file, read_many_files, and
341
- memoryDiscovery by @SandyTao520 in
342
- [#22679](https://github.com/google-gemini/gemini-cli/pull/22679)
343
- - refactor(core): introduce InjectionService with source-aware injection and
344
- backend-native background completions by @adamfweidman in
345
- [#22544](https://github.com/google-gemini/gemini-cli/pull/22544)
346
- - Linux sandbox bubblewrap by @DavidAPierce in
347
- [#22680](https://github.com/google-gemini/gemini-cli/pull/22680)
348
- - feat(core): increase thought signature retry resilience by @bdmorgan in
349
- [#22202](https://github.com/google-gemini/gemini-cli/pull/22202)
350
- - feat(core): implement Stage 2 security and consistency improvements for
351
- web_fetch by @aishaneeshah in
352
- [#22217](https://github.com/google-gemini/gemini-cli/pull/22217)
353
- - refactor(core): replace positional execute params with ExecuteOptions bag by
354
- @adamfweidman in
355
- [#22674](https://github.com/google-gemini/gemini-cli/pull/22674)
356
- - feat(config): enable JIT context loading by default by @SandyTao520 in
357
- [#22736](https://github.com/google-gemini/gemini-cli/pull/22736)
358
- - fix(config): ensure discoveryMaxDirs is passed to global config during
359
- initialization by @kevin-ramdass in
360
- [#22744](https://github.com/google-gemini/gemini-cli/pull/22744)
361
- - fix(plan): allowlist get_internal_docs in Plan Mode by @Adib234 in
362
- [#22668](https://github.com/google-gemini/gemini-cli/pull/22668)
363
- - Changelog for v0.34.0-preview.3 by @gemini-cli-robot in
364
- [#22393](https://github.com/google-gemini/gemini-cli/pull/22393)
365
- - feat(core): add foundation for subagent tool isolation by @akh64bit in
366
- [#22708](https://github.com/google-gemini/gemini-cli/pull/22708)
367
- - fix(core): handle surrogate pairs in truncateString by @sehoon38 in
368
- [#22754](https://github.com/google-gemini/gemini-cli/pull/22754)
369
- - fix(cli): override j/k navigation in settings dialog to fix search input
370
- conflict by @sehoon38 in
371
- [#22800](https://github.com/google-gemini/gemini-cli/pull/22800)
372
- - feat(plan): add 'All the above' option to multi-select AskUser questions by
373
- @Adib234 in [#22365](https://github.com/google-gemini/gemini-cli/pull/22365)
374
- - docs: distribute package-specific GEMINI.md context to each package by
375
- @SandyTao520 in
376
- [#22734](https://github.com/google-gemini/gemini-cli/pull/22734)
377
- - fix(cli): clean up stale pasted placeholder metadata after word/line deletions
378
- by @Jomak-x in
379
- [#20375](https://github.com/google-gemini/gemini-cli/pull/20375)
380
- - refactor(core): align JIT memory placement with tiered context model by
381
- @SandyTao520 in
382
- [#22766](https://github.com/google-gemini/gemini-cli/pull/22766)
383
- - Linux sandbox seccomp by @DavidAPierce in
384
- [#22815](https://github.com/google-gemini/gemini-cli/pull/22815)
421
+ [#24440](https://github.com/google-gemini/gemini-cli/pull/24440)
422
+ - docs(core): add subagent tool isolation draft doc by @akh64bit in
423
+ [#23275](https://github.com/google-gemini/gemini-cli/pull/23275)
385
424
 
386
425
  **Full Changelog**:
387
- https://github.com/google-gemini/gemini-cli/compare/v0.34.0-preview.4...v0.35.0-preview.5
426
+ https://github.com/google-gemini/gemini-cli/compare/v0.36.0-preview.8...v0.37.0-preview.2