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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (366) hide show
  1. package/README.md +0 -1
  2. package/dist/docs/CONTRIBUTING.md +0 -15
  3. package/dist/docs/admin/enterprise-controls.md +61 -0
  4. package/dist/docs/changelogs/index.md +11 -0
  5. package/dist/docs/changelogs/latest.md +459 -209
  6. package/dist/docs/changelogs/preview.md +355 -454
  7. package/dist/docs/cli/checkpointing.md +3 -1
  8. package/dist/docs/cli/cli-reference.md +1 -0
  9. package/dist/docs/cli/custom-commands.md +7 -5
  10. package/dist/docs/cli/enterprise.md +15 -9
  11. package/dist/docs/cli/git-worktrees.md +107 -0
  12. package/dist/docs/cli/model-steering.md +4 -3
  13. package/dist/docs/cli/model.md +3 -1
  14. package/dist/docs/cli/notifications.md +4 -3
  15. package/dist/docs/cli/plan-mode.md +28 -8
  16. package/dist/docs/cli/sandbox.md +24 -4
  17. package/dist/docs/cli/session-management.md +6 -0
  18. package/dist/docs/cli/settings.md +14 -1
  19. package/dist/docs/cli/skills.md +4 -2
  20. package/dist/docs/cli/system-prompt.md +3 -1
  21. package/dist/docs/cli/telemetry.md +6 -3
  22. package/dist/docs/cli/themes.md +12 -8
  23. package/dist/docs/cli/tutorials/file-management.md +8 -6
  24. package/dist/docs/cli/tutorials/mcp-setup.md +5 -3
  25. package/dist/docs/cli/tutorials/memory-management.md +6 -6
  26. package/dist/docs/cli/tutorials/plan-mode-steering.md +4 -3
  27. package/dist/docs/cli/tutorials/shell-commands.md +3 -3
  28. package/dist/docs/core/remote-agents.md +8 -3
  29. package/dist/docs/core/subagents.md +21 -13
  30. package/dist/docs/extensions/reference.md +8 -3
  31. package/dist/docs/get-started/authentication.md +60 -50
  32. package/dist/docs/get-started/examples.md +3 -1
  33. package/dist/docs/get-started/gemini-3.md +11 -5
  34. package/dist/docs/hooks/index.md +3 -1
  35. package/dist/docs/hooks/writing-hooks.md +2 -2
  36. package/dist/docs/ide-integration/ide-companion-spec.md +5 -3
  37. package/dist/docs/ide-integration/index.md +8 -4
  38. package/dist/docs/issue-and-pr-automation.md +3 -1
  39. package/dist/docs/local-development.md +3 -1
  40. package/dist/docs/reference/commands.md +2 -2
  41. package/dist/docs/reference/configuration.md +410 -16
  42. package/dist/docs/reference/policy-engine.md +47 -19
  43. package/dist/docs/reference/tools.md +3 -1
  44. package/dist/docs/release-confidence.md +7 -3
  45. package/dist/docs/releases.md +11 -7
  46. package/dist/docs/resources/faq.md +13 -0
  47. package/dist/docs/resources/tos-privacy.md +4 -2
  48. package/dist/docs/resources/troubleshooting.md +3 -1
  49. package/dist/docs/sidebar.json +5 -0
  50. package/dist/docs/tools/mcp-server.md +17 -9
  51. package/dist/docs/tools/planning.md +3 -1
  52. package/dist/docs/tools/shell.md +4 -4
  53. package/dist/docs/tools/todos.md +2 -1
  54. package/dist/{google-gemini-cli-core-0.35.0-preview.1.tgz → google-gemini-cli-core-0.36.0-nightly.20260317.2f90b4653.tgz} +0 -0
  55. package/dist/src/agent/agent-session.d.ts +37 -0
  56. package/dist/src/agent/agent-session.js +168 -0
  57. package/dist/src/agent/agent-session.js.map +1 -0
  58. package/dist/src/agent/agent-session.test.d.ts +6 -0
  59. package/dist/src/agent/agent-session.test.js +217 -0
  60. package/dist/src/agent/agent-session.test.js.map +1 -0
  61. package/dist/src/agent/content-utils.d.ts +33 -0
  62. package/dist/src/agent/content-utils.js +135 -0
  63. package/dist/src/agent/content-utils.js.map +1 -0
  64. package/dist/src/agent/content-utils.test.d.ts +6 -0
  65. package/dist/src/agent/content-utils.test.js +223 -0
  66. package/dist/src/agent/content-utils.test.js.map +1 -0
  67. package/dist/src/agent/mock.d.ts +9 -12
  68. package/dist/src/agent/mock.js +88 -129
  69. package/dist/src/agent/mock.js.map +1 -1
  70. package/dist/src/agent/mock.test.js +114 -144
  71. package/dist/src/agent/mock.test.js.map +1 -1
  72. package/dist/src/agent/types.d.ts +21 -21
  73. package/dist/src/agents/a2a-client-manager.d.ts +2 -11
  74. package/dist/src/agents/a2a-client-manager.js +3 -19
  75. package/dist/src/agents/a2a-client-manager.js.map +1 -1
  76. package/dist/src/agents/a2a-client-manager.test.js +6 -10
  77. package/dist/src/agents/a2a-client-manager.test.js.map +1 -1
  78. package/dist/src/agents/agent-scheduler.d.ts +6 -0
  79. package/dist/src/agents/agent-scheduler.js +3 -2
  80. package/dist/src/agents/agent-scheduler.js.map +1 -1
  81. package/dist/src/agents/agent-scheduler.test.js +6 -0
  82. package/dist/src/agents/agent-scheduler.test.js.map +1 -1
  83. package/dist/src/agents/browser/browserAgentDefinition.js +10 -1
  84. package/dist/src/agents/browser/browserAgentDefinition.js.map +1 -1
  85. package/dist/src/agents/browser/browserAgentFactory.js +62 -1
  86. package/dist/src/agents/browser/browserAgentFactory.js.map +1 -1
  87. package/dist/src/agents/browser/browserAgentFactory.test.js +73 -0
  88. package/dist/src/agents/browser/browserAgentFactory.test.js.map +1 -1
  89. package/dist/src/agents/browser/browserAgentInvocation.js +2 -97
  90. package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
  91. package/dist/src/agents/browser/browserAgentInvocation.test.js +30 -0
  92. package/dist/src/agents/browser/browserAgentInvocation.test.js.map +1 -1
  93. package/dist/src/agents/browser/browserManager.js +11 -0
  94. package/dist/src/agents/browser/browserManager.js.map +1 -1
  95. package/dist/src/agents/browser/browserManager.test.js +37 -0
  96. package/dist/src/agents/browser/browserManager.test.js.map +1 -1
  97. package/dist/src/agents/browser/mcpToolWrapper.d.ts +4 -2
  98. package/dist/src/agents/browser/mcpToolWrapper.js +30 -8
  99. package/dist/src/agents/browser/mcpToolWrapper.js.map +1 -1
  100. package/dist/src/agents/browser/mcpToolWrapper.test.js +30 -0
  101. package/dist/src/agents/browser/mcpToolWrapper.test.js.map +1 -1
  102. package/dist/src/agents/browser/mcpToolWrapperConfirmation.test.js +3 -3
  103. package/dist/src/agents/codebase-investigator.js +3 -3
  104. package/dist/src/agents/codebase-investigator.js.map +1 -1
  105. package/dist/src/agents/local-executor.d.ts +3 -1
  106. package/dist/src/agents/local-executor.js +138 -39
  107. package/dist/src/agents/local-executor.js.map +1 -1
  108. package/dist/src/agents/local-executor.test.js +305 -12
  109. package/dist/src/agents/local-executor.test.js.map +1 -1
  110. package/dist/src/agents/local-invocation.js +43 -24
  111. package/dist/src/agents/local-invocation.js.map +1 -1
  112. package/dist/src/agents/local-invocation.test.js +89 -14
  113. package/dist/src/agents/local-invocation.test.js.map +1 -1
  114. package/dist/src/agents/memory-manager-agent.d.ts +25 -0
  115. package/dist/src/agents/memory-manager-agent.js +137 -0
  116. package/dist/src/agents/memory-manager-agent.js.map +1 -0
  117. package/dist/src/agents/memory-manager-agent.test.d.ts +6 -0
  118. package/dist/src/agents/memory-manager-agent.test.js +117 -0
  119. package/dist/src/agents/memory-manager-agent.test.js.map +1 -0
  120. package/dist/src/agents/registry.js +21 -3
  121. package/dist/src/agents/registry.js.map +1 -1
  122. package/dist/src/agents/registry.test.js +23 -24
  123. package/dist/src/agents/registry.test.js.map +1 -1
  124. package/dist/src/agents/remote-invocation.d.ts +3 -1
  125. package/dist/src/agents/remote-invocation.js +10 -5
  126. package/dist/src/agents/remote-invocation.js.map +1 -1
  127. package/dist/src/agents/remote-invocation.test.js +64 -41
  128. package/dist/src/agents/remote-invocation.test.js.map +1 -1
  129. package/dist/src/agents/subagent-tool-wrapper.js +1 -1
  130. package/dist/src/agents/subagent-tool-wrapper.js.map +1 -1
  131. package/dist/src/agents/types.d.ts +12 -0
  132. package/dist/src/agents/types.js +14 -0
  133. package/dist/src/agents/types.js.map +1 -1
  134. package/dist/src/availability/policyHelpers.js +41 -1
  135. package/dist/src/availability/policyHelpers.js.map +1 -1
  136. package/dist/src/availability/policyHelpers.test.js +47 -0
  137. package/dist/src/availability/policyHelpers.test.js.map +1 -1
  138. package/dist/src/code_assist/admin/admin_controls.js +11 -0
  139. package/dist/src/code_assist/admin/admin_controls.js.map +1 -1
  140. package/dist/src/code_assist/admin/admin_controls.test.js +68 -0
  141. package/dist/src/code_assist/admin/admin_controls.test.js.map +1 -1
  142. package/dist/src/code_assist/admin/mcpUtils.d.ts +16 -1
  143. package/dist/src/code_assist/admin/mcpUtils.js +43 -0
  144. package/dist/src/code_assist/admin/mcpUtils.js.map +1 -1
  145. package/dist/src/code_assist/admin/mcpUtils.test.js +130 -1
  146. package/dist/src/code_assist/admin/mcpUtils.test.js.map +1 -1
  147. package/dist/src/code_assist/types.d.ts +458 -0
  148. package/dist/src/code_assist/types.js +26 -0
  149. package/dist/src/code_assist/types.js.map +1 -1
  150. package/dist/src/config/agent-loop-context.d.ts +6 -0
  151. package/dist/src/config/config.d.ts +41 -10
  152. package/dist/src/config/config.js +96 -19
  153. package/dist/src/config/config.js.map +1 -1
  154. package/dist/src/config/config.test.js +29 -1
  155. package/dist/src/config/config.test.js.map +1 -1
  156. package/dist/src/config/defaultModelConfigs.js +265 -9
  157. package/dist/src/config/defaultModelConfigs.js.map +1 -1
  158. package/dist/src/config/models.d.ts +13 -2
  159. package/dist/src/config/models.js +31 -3
  160. package/dist/src/config/models.js.map +1 -1
  161. package/dist/src/config/models.test.js +52 -7
  162. package/dist/src/config/models.test.js.map +1 -1
  163. package/dist/src/config/path-validation.test.d.ts +6 -0
  164. package/dist/src/config/path-validation.test.js +59 -0
  165. package/dist/src/config/path-validation.test.js.map +1 -0
  166. package/dist/src/core/client.d.ts +1 -0
  167. package/dist/src/core/client.js +6 -1
  168. package/dist/src/core/client.js.map +1 -1
  169. package/dist/src/core/client.test.js +9 -1
  170. package/dist/src/core/client.test.js.map +1 -1
  171. package/dist/src/core/contentGenerator.js +36 -6
  172. package/dist/src/core/contentGenerator.js.map +1 -1
  173. package/dist/src/core/contentGenerator.test.js +97 -3
  174. package/dist/src/core/contentGenerator.test.js.map +1 -1
  175. package/dist/src/core/geminiChat.js +2 -2
  176. package/dist/src/core/geminiChat.js.map +1 -1
  177. package/dist/src/core/prompts.test.js +10 -0
  178. package/dist/src/core/prompts.test.js.map +1 -1
  179. package/dist/src/generated/git-commit.d.ts +2 -2
  180. package/dist/src/generated/git-commit.js +2 -2
  181. package/dist/src/generated/git-commit.js.map +1 -1
  182. package/dist/src/ide/ide-connection-utils.js +2 -7
  183. package/dist/src/ide/ide-connection-utils.js.map +1 -1
  184. package/dist/src/ide/ide-connection-utils.test.js +7 -0
  185. package/dist/src/ide/ide-connection-utils.test.js.map +1 -1
  186. package/dist/src/index.d.ts +4 -0
  187. package/dist/src/index.js +4 -0
  188. package/dist/src/index.js.map +1 -1
  189. package/dist/src/policy/config.js +2 -0
  190. package/dist/src/policy/config.js.map +1 -1
  191. package/dist/src/policy/config.test.js +15 -0
  192. package/dist/src/policy/config.test.js.map +1 -1
  193. package/dist/src/policy/memory-manager-policy.test.d.ts +6 -0
  194. package/dist/src/policy/memory-manager-policy.test.js +80 -0
  195. package/dist/src/policy/memory-manager-policy.test.js.map +1 -0
  196. package/dist/src/policy/policies/memory-manager.toml +10 -0
  197. package/dist/src/policy/policies/plan.toml +14 -0
  198. package/dist/src/policy/policies/yolo.toml +1 -0
  199. package/dist/src/policy/policy-engine.js +33 -6
  200. package/dist/src/policy/policy-engine.js.map +1 -1
  201. package/dist/src/policy/policy-engine.test.js +85 -3
  202. package/dist/src/policy/policy-engine.test.js.map +1 -1
  203. package/dist/src/policy/policy-updater.test.js +44 -0
  204. package/dist/src/policy/policy-updater.test.js.map +1 -1
  205. package/dist/src/policy/toml-loader.js +2 -0
  206. package/dist/src/policy/toml-loader.js.map +1 -1
  207. package/dist/src/policy/types.d.ts +11 -0
  208. package/dist/src/policy/types.js +5 -0
  209. package/dist/src/policy/types.js.map +1 -1
  210. package/dist/src/prompts/promptProvider.js +5 -3
  211. package/dist/src/prompts/promptProvider.js.map +1 -1
  212. package/dist/src/prompts/promptProvider.test.js +1 -0
  213. package/dist/src/prompts/promptProvider.test.js.map +1 -1
  214. package/dist/src/prompts/snippets-memory-manager.test.d.ts +6 -0
  215. package/dist/src/prompts/snippets-memory-manager.test.js +31 -0
  216. package/dist/src/prompts/snippets-memory-manager.test.js.map +1 -0
  217. package/dist/src/prompts/snippets.d.ts +2 -0
  218. package/dist/src/prompts/snippets.js +7 -3
  219. package/dist/src/prompts/snippets.js.map +1 -1
  220. package/dist/src/prompts/snippets.legacy.d.ts +5 -0
  221. package/dist/src/prompts/snippets.legacy.js +30 -2
  222. package/dist/src/prompts/snippets.legacy.js.map +1 -1
  223. package/dist/src/routing/strategies/classifierStrategy.js +1 -1
  224. package/dist/src/routing/strategies/classifierStrategy.js.map +1 -1
  225. package/dist/src/routing/strategies/defaultStrategy.js +1 -1
  226. package/dist/src/routing/strategies/defaultStrategy.js.map +1 -1
  227. package/dist/src/routing/strategies/fallbackStrategy.js +1 -1
  228. package/dist/src/routing/strategies/fallbackStrategy.js.map +1 -1
  229. package/dist/src/routing/strategies/numericalClassifierStrategy.js +1 -1
  230. package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -1
  231. package/dist/src/routing/strategies/overrideStrategy.js +1 -1
  232. package/dist/src/routing/strategies/overrideStrategy.js.map +1 -1
  233. package/dist/src/sandbox/macos/MacOsSandboxManager.d.ts +28 -0
  234. package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.d.ts +1 -0
  235. package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.js +160 -0
  236. package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.js.map +1 -0
  237. package/dist/src/sandbox/macos/MacOsSandboxManager.js +33 -0
  238. package/dist/src/sandbox/macos/MacOsSandboxManager.js.map +1 -0
  239. package/dist/src/sandbox/macos/MacOsSandboxManager.test.d.ts +1 -0
  240. package/dist/src/sandbox/macos/MacOsSandboxManager.test.js +87 -0
  241. package/dist/src/sandbox/macos/MacOsSandboxManager.test.js.map +1 -0
  242. package/dist/src/sandbox/macos/baseProfile.d.ts +20 -0
  243. package/dist/src/sandbox/macos/baseProfile.js +93 -0
  244. package/dist/src/sandbox/macos/baseProfile.js.map +1 -0
  245. package/dist/src/sandbox/macos/seatbeltArgsBuilder.d.ts +25 -0
  246. package/dist/src/sandbox/macos/seatbeltArgsBuilder.js +58 -0
  247. package/dist/src/sandbox/macos/seatbeltArgsBuilder.js.map +1 -0
  248. package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.d.ts +1 -0
  249. package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js +80 -0
  250. package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js.map +1 -0
  251. package/dist/src/scheduler/scheduler.js +2 -0
  252. package/dist/src/scheduler/scheduler.js.map +1 -1
  253. package/dist/src/services/contextManager.js +2 -3
  254. package/dist/src/services/contextManager.js.map +1 -1
  255. package/dist/src/services/contextManager.test.js +1 -1
  256. package/dist/src/services/contextManager.test.js.map +1 -1
  257. package/dist/src/services/modelConfigService.d.ts +36 -1
  258. package/dist/src/services/modelConfigService.js +66 -0
  259. package/dist/src/services/modelConfigService.js.map +1 -1
  260. package/dist/src/services/sandboxManager.d.ts +3 -4
  261. package/dist/src/services/sandboxManager.js +1 -14
  262. package/dist/src/services/sandboxManager.js.map +1 -1
  263. package/dist/src/services/sandboxManager.test.js +13 -16
  264. package/dist/src/services/sandboxManager.test.js.map +1 -1
  265. package/dist/src/services/sandboxManagerFactory.d.ts +11 -0
  266. package/dist/src/services/sandboxManagerFactory.js +31 -0
  267. package/dist/src/services/sandboxManagerFactory.js.map +1 -0
  268. package/dist/src/services/sandboxedFileSystemService.d.ts +17 -0
  269. package/dist/src/services/sandboxedFileSystemService.js +95 -0
  270. package/dist/src/services/sandboxedFileSystemService.js.map +1 -0
  271. package/dist/src/services/sandboxedFileSystemService.test.d.ts +6 -0
  272. package/dist/src/services/sandboxedFileSystemService.test.js +87 -0
  273. package/dist/src/services/sandboxedFileSystemService.test.js.map +1 -0
  274. package/dist/src/services/scripts/GeminiSandbox.cs +370 -0
  275. package/dist/src/services/shellExecutionService.d.ts +2 -0
  276. package/dist/src/services/shellExecutionService.js +79 -75
  277. package/dist/src/services/shellExecutionService.js.map +1 -1
  278. package/dist/src/services/trackerTypes.d.ts +1 -0
  279. package/dist/src/services/trackerTypes.js +1 -0
  280. package/dist/src/services/trackerTypes.js.map +1 -1
  281. package/dist/src/services/windowsSandboxManager.d.ts +27 -0
  282. package/dist/src/services/windowsSandboxManager.js +148 -0
  283. package/dist/src/services/windowsSandboxManager.js.map +1 -0
  284. package/dist/src/services/windowsSandboxManager.test.d.ts +6 -0
  285. package/dist/src/services/windowsSandboxManager.test.js +59 -0
  286. package/dist/src/services/windowsSandboxManager.test.js.map +1 -0
  287. package/dist/src/services/worktreeService.d.ts +33 -0
  288. package/dist/src/services/worktreeService.js +174 -0
  289. package/dist/src/services/worktreeService.js.map +1 -0
  290. package/dist/src/services/worktreeService.test.d.ts +6 -0
  291. package/dist/src/services/worktreeService.test.js +200 -0
  292. package/dist/src/services/worktreeService.test.js.map +1 -0
  293. package/dist/src/telemetry/clearcut-logger/clearcut-logger.js +4 -0
  294. package/dist/src/telemetry/clearcut-logger/clearcut-logger.js.map +1 -1
  295. package/dist/src/telemetry/clearcut-logger/event-metadata-key.d.ts +1 -0
  296. package/dist/src/telemetry/clearcut-logger/event-metadata-key.js +2 -0
  297. package/dist/src/telemetry/clearcut-logger/event-metadata-key.js.map +1 -1
  298. package/dist/src/telemetry/loggers.test.js +62 -40
  299. package/dist/src/telemetry/loggers.test.js.map +1 -1
  300. package/dist/src/telemetry/types.d.ts +1 -0
  301. package/dist/src/telemetry/types.js +3 -0
  302. package/dist/src/telemetry/types.js.map +1 -1
  303. package/dist/src/tools/definitions/model-family-sets/default-legacy.js +8 -1
  304. package/dist/src/tools/definitions/model-family-sets/default-legacy.js.map +1 -1
  305. package/dist/src/tools/definitions/model-family-sets/gemini-3.js +8 -1
  306. package/dist/src/tools/definitions/model-family-sets/gemini-3.js.map +1 -1
  307. package/dist/src/tools/exit-plan-mode.d.ts +6 -1
  308. package/dist/src/tools/exit-plan-mode.js +17 -6
  309. package/dist/src/tools/exit-plan-mode.js.map +1 -1
  310. package/dist/src/tools/exit-plan-mode.test.js +22 -1
  311. package/dist/src/tools/exit-plan-mode.test.js.map +1 -1
  312. package/dist/src/tools/mcp-client-manager.d.ts +22 -3
  313. package/dist/src/tools/mcp-client-manager.js +84 -32
  314. package/dist/src/tools/mcp-client-manager.js.map +1 -1
  315. package/dist/src/tools/mcp-client-manager.test.js +76 -56
  316. package/dist/src/tools/mcp-client-manager.test.js.map +1 -1
  317. package/dist/src/tools/mcp-client.d.ts +15 -6
  318. package/dist/src/tools/mcp-client.js +85 -71
  319. package/dist/src/tools/mcp-client.js.map +1 -1
  320. package/dist/src/tools/mcp-client.test.js +195 -88
  321. package/dist/src/tools/mcp-client.test.js.map +1 -1
  322. package/dist/src/tools/tool-registry.d.ts +2 -1
  323. package/dist/src/tools/tool-registry.js +12 -1
  324. package/dist/src/tools/tool-registry.js.map +1 -1
  325. package/dist/src/tools/tool-registry.test.js +15 -0
  326. package/dist/src/tools/tool-registry.test.js.map +1 -1
  327. package/dist/src/tools/tools.d.ts +1 -1
  328. package/dist/src/tools/tools.js.map +1 -1
  329. package/dist/src/tools/trackerTools.js +6 -1
  330. package/dist/src/tools/trackerTools.js.map +1 -1
  331. package/dist/src/tools/trackerTools.test.js +9 -1
  332. package/dist/src/tools/trackerTools.test.js.map +1 -1
  333. package/dist/src/tools/write-todos.js +1 -0
  334. package/dist/src/tools/write-todos.js.map +1 -1
  335. package/dist/src/tools/write-todos.test.js +4 -1
  336. package/dist/src/tools/write-todos.test.js.map +1 -1
  337. package/dist/src/utils/agent-sanitization-utils.d.ts +23 -0
  338. package/dist/src/utils/agent-sanitization-utils.js +123 -0
  339. package/dist/src/utils/agent-sanitization-utils.js.map +1 -0
  340. package/dist/src/utils/agent-sanitization-utils.test.d.ts +6 -0
  341. package/dist/src/utils/agent-sanitization-utils.test.js +83 -0
  342. package/dist/src/utils/agent-sanitization-utils.test.js.map +1 -0
  343. package/dist/src/utils/browserConsent.d.ts +17 -0
  344. package/dist/src/utils/browserConsent.js +78 -0
  345. package/dist/src/utils/browserConsent.js.map +1 -0
  346. package/dist/src/utils/browserConsent.test.d.ts +6 -0
  347. package/dist/src/utils/browserConsent.test.js +93 -0
  348. package/dist/src/utils/browserConsent.test.js.map +1 -0
  349. package/dist/src/utils/compatibility.d.ts +16 -0
  350. package/dist/src/utils/compatibility.js +58 -9
  351. package/dist/src/utils/compatibility.js.map +1 -1
  352. package/dist/src/utils/compatibility.test.js +127 -29
  353. package/dist/src/utils/compatibility.test.js.map +1 -1
  354. package/dist/src/utils/memoryDiscovery.d.ts +2 -2
  355. package/dist/src/utils/memoryDiscovery.js +5 -10
  356. package/dist/src/utils/memoryDiscovery.js.map +1 -1
  357. package/dist/src/utils/memoryDiscovery.test.js +37 -37
  358. package/dist/src/utils/memoryDiscovery.test.js.map +1 -1
  359. package/dist/src/utils/memoryImportProcessor.js +5 -5
  360. package/dist/src/utils/memoryImportProcessor.js.map +1 -1
  361. package/dist/src/utils/surface.js +4 -3
  362. package/dist/src/utils/surface.js.map +1 -1
  363. package/dist/src/utils/toolCallContext.d.ts +2 -0
  364. package/dist/src/utils/toolCallContext.js.map +1 -1
  365. package/dist/tsconfig.tsbuildinfo +1 -1
  366. package/package.json +2 -1
@@ -10,7 +10,9 @@ agents in the following repositories:
10
10
  - [ADK Samples (Python)](https://github.com/google/adk-samples/tree/main/python)
11
11
  - [ADK Python Contributing Samples](https://github.com/google/adk-python/tree/main/contributing/samples)
12
12
 
13
- > **Note: Remote subagents are currently an experimental feature.**
13
+ <!-- prettier-ignore -->
14
+ > [!NOTE]
15
+ > Remote subagents are currently an experimental feature.
14
16
 
15
17
  ## Configuration
16
18
 
@@ -82,7 +84,8 @@ Markdown file.
82
84
  ---
83
85
  ```
84
86
 
85
- > **Note:** Mixed local and remote agents, or multiple local agents, are not
87
+ <!-- prettier-ignore -->
88
+ > [!NOTE] Mixed local and remote agents, or multiple local agents, are not
86
89
  > supported in a single file; the list format is currently remote-only.
87
90
 
88
91
  ## Authentication
@@ -362,5 +365,7 @@ Users can manage subagents using the following commands within the Gemini CLI:
362
365
  - `/agents enable <agent_name>`: Enables a specific subagent.
363
366
  - `/agents disable <agent_name>`: Disables a specific subagent.
364
367
 
365
- > **Tip:** You can use the `@cli_help` agent within Gemini CLI for assistance
368
+ <!-- prettier-ignore -->
369
+ > [!TIP]
370
+ > You can use the `@cli_help` agent within Gemini CLI for assistance
366
371
  > with configuring subagents.
@@ -5,16 +5,18 @@ session. They are designed to handle specific, complex tasks—like deep codebas
5
5
  analysis, documentation lookup, or domain-specific reasoning—without cluttering
6
6
  the main agent's context or toolset.
7
7
 
8
- > **Note: Subagents are currently an experimental feature.**
9
- >
10
- > To use custom subagents, you must ensure they are enabled in your
11
- > `settings.json` (enabled by default):
12
- >
13
- > ```json
14
- > {
15
- > "experimental": { "enableAgents": true }
16
- > }
17
- > ```
8
+ <!-- prettier-ignore -->
9
+ > [!NOTE]
10
+ > Subagents are currently an experimental feature.
11
+ >
12
+ To use custom subagents, you must ensure they are enabled in your
13
+ `settings.json` (enabled by default):
14
+
15
+ ```json
16
+ {
17
+ "experimental": { "enableAgents": true }
18
+ }
19
+ ```
18
20
 
19
21
  ## What are subagents?
20
22
 
@@ -114,7 +116,9 @@ Gemini CLI comes with the following built-in subagents:
114
116
  the pricing table from this page," "Click the login button and enter my
115
117
  credentials."
116
118
 
117
- > **Note:** This is a preview feature currently under active development.
119
+ <!-- prettier-ignore -->
120
+ > [!NOTE]
121
+ > This is a preview feature currently under active development.
118
122
 
119
123
  #### Prerequisites
120
124
 
@@ -217,7 +221,9 @@ captures a screenshot and sends it to the vision model for analysis. The model
217
221
  returns coordinates and element descriptions that the browser agent uses with
218
222
  the `click_at` tool for precise, coordinate-based interactions.
219
223
 
220
- > **Note:** The visual agent requires API key or Vertex AI authentication. It is
224
+ <!-- prettier-ignore -->
225
+ > [!NOTE]
226
+ > The visual agent requires API key or Vertex AI authentication. It is
221
227
  > not available when using "Sign in with Google".
222
228
 
223
229
  ## Creating custom subagents
@@ -405,7 +411,9 @@ that your subagent was called with a specific prompt and the given description.
405
411
  Gemini CLI can also delegate tasks to remote subagents using the Agent-to-Agent
406
412
  (A2A) protocol.
407
413
 
408
- > **Note: Remote subagents are currently an experimental feature.**
414
+ <!-- prettier-ignore -->
415
+ > [!NOTE]
416
+ > Remote subagents are currently an experimental feature.
409
417
 
410
418
  See the [Remote Subagents documentation](remote-agents) for detailed
411
419
  configuration, authentication, and usage instructions.
@@ -23,7 +23,7 @@ Gemini CLI creates a copy of the extension during installation. You must run
23
23
  GitHub, you must have `git` installed on your machine.
24
24
 
25
25
  ```bash
26
- gemini extensions install <source> [--ref <ref>] [--auto-update] [--pre-release] [--consent]
26
+ gemini extensions install <source> [--ref <ref>] [--auto-update] [--pre-release] [--consent] [--skip-settings]
27
27
  ```
28
28
 
29
29
  - `<source>`: The GitHub URL or local path of the extension.
@@ -31,6 +31,7 @@ gemini extensions install <source> [--ref <ref>] [--auto-update] [--pre-release]
31
31
  - `--auto-update`: Enable automatic updates for this extension.
32
32
  - `--pre-release`: Enable installation of pre-release versions.
33
33
  - `--consent`: Acknowledge security risks and skip the confirmation prompt.
34
+ - `--skip-settings`: Skip the configuration on install process.
34
35
 
35
36
  ### Uninstall an extension
36
37
 
@@ -234,7 +235,9 @@ skill definitions in a `skills/` directory. For example,
234
235
 
235
236
  ### Sub-agents
236
237
 
237
- > **Note:** Sub-agents are a preview feature currently under active development.
238
+ <!-- prettier-ignore -->
239
+ > [!NOTE]
240
+ > Sub-agents are a preview feature currently under active development.
238
241
 
239
242
  Provide [sub-agents](../core/subagents.md) that users can delegate tasks to. Add
240
243
  agent definition files (`.md`) to an `agents/` directory in your extension root.
@@ -253,7 +256,9 @@ Rules contributed by extensions run in their own tier (tier 2), alongside
253
256
  workspace-defined policies. This tier has higher priority than the default rules
254
257
  but lower priority than user or admin policies.
255
258
 
256
- > **Warning:** For security, Gemini CLI ignores any `allow` decisions or `yolo`
259
+ <!-- prettier-ignore -->
260
+ > [!WARNING]
261
+ > For security, Gemini CLI ignores any `allow` decisions or `yolo`
257
262
  > mode configurations in extension policies. This ensures that an extension
258
263
  > cannot automatically approve tool calls or bypass security measures without
259
264
  > your confirmation.
@@ -4,7 +4,9 @@ To use Gemini CLI, you'll need to authenticate with Google. This guide helps you
4
4
  quickly find the best way to sign in based on your account type and how you're
5
5
  using the CLI.
6
6
 
7
- > **Note:** Looking for a high-level comparison of all available subscriptions?
7
+ <!-- prettier-ignore -->
8
+ > [!TIP]
9
+ > Looking for a high-level comparison of all available subscriptions?
8
10
  > To compare features and find the right quota for your needs, see our
9
11
  > [Plans page](https://geminicli.com/plans/).
10
12
 
@@ -40,11 +42,11 @@ Select the authentication method that matches your situation in the table below:
40
42
 
41
43
  If you run Gemini CLI on your local machine, the simplest authentication method
42
44
  is logging in with your Google account. This method requires a web browser on a
43
- machine that can communicate with the terminal running Gemini CLI (e.g., your
44
- local machine).
45
+ machine that can communicate with the terminal running Gemini CLI (for example,
46
+ your local machine).
45
47
 
46
- > **Important:** If you are a **Google AI Pro** or **Google AI Ultra**
47
- > subscriber, use the Google account associated with your subscription.
48
+ If you are a **Google AI Pro** or **Google AI Ultra** subscriber, use the Google
49
+ account associated with your subscription.
48
50
 
49
51
  To authenticate and use Gemini CLI:
50
52
 
@@ -107,7 +109,9 @@ To authenticate and use Gemini CLI with a Gemini API key:
107
109
 
108
110
  4. Select **Use Gemini API key**.
109
111
 
110
- > **Warning:** Treat API keys, especially for services like Gemini, as sensitive
112
+ <!-- prettier-ignore -->
113
+ > [!WARNING]
114
+ > Treat API keys, especially for services like Gemini, as sensitive
111
115
  > credentials. Protect them to prevent unauthorized access and potential misuse
112
116
  > of the service under your account.
113
117
 
@@ -130,7 +134,7 @@ For example:
130
134
  **macOS/Linux**
131
135
 
132
136
  ```bash
133
- # Replace with your project ID and desired location (e.g., us-central1)
137
+ # Replace with your project ID and desired location (for example, us-central1)
134
138
  export GOOGLE_CLOUD_PROJECT="YOUR_PROJECT_ID"
135
139
  export GOOGLE_CLOUD_LOCATION="YOUR_PROJECT_LOCATION"
136
140
  ```
@@ -138,7 +142,7 @@ export GOOGLE_CLOUD_LOCATION="YOUR_PROJECT_LOCATION"
138
142
  **Windows (PowerShell)**
139
143
 
140
144
  ```powershell
141
- # Replace with your project ID and desired location (e.g., us-central1)
145
+ # Replace with your project ID and desired location (for example, us-central1)
142
146
  $env:GOOGLE_CLOUD_PROJECT="YOUR_PROJECT_ID"
143
147
  $env:GOOGLE_CLOUD_LOCATION="YOUR_PROJECT_LOCATION"
144
148
  ```
@@ -150,20 +154,20 @@ To make any Vertex AI environment variable settings persistent, see
150
154
 
151
155
  Consider this authentication method if you have Google Cloud CLI installed.
152
156
 
153
- > **Note:** If you have previously set `GOOGLE_API_KEY` or `GEMINI_API_KEY`, you
154
- > must unset them to use ADC:
155
- >
156
- > **macOS/Linux**
157
- >
158
- > ```bash
159
- > unset GOOGLE_API_KEY GEMINI_API_KEY
160
- > ```
161
- >
162
- > **Windows (PowerShell)**
163
- >
164
- > ```powershell
165
- > Remove-Item Env:\GOOGLE_API_KEY, Env:\GEMINI_API_KEY -ErrorAction Ignore
166
- > ```
157
+ If you have previously set `GOOGLE_API_KEY` or `GEMINI_API_KEY`, you must unset
158
+ them to use ADC.
159
+
160
+ **macOS/Linux**
161
+
162
+ ```bash
163
+ unset GOOGLE_API_KEY GEMINI_API_KEY
164
+ ```
165
+
166
+ **Windows (PowerShell)**
167
+
168
+ ```powershell
169
+ Remove-Item Env:\GOOGLE_API_KEY, Env:\GEMINI_API_KEY -ErrorAction Ignore
170
+ ```
167
171
 
168
172
  1. Verify you have a Google Cloud project and Vertex AI API is enabled.
169
173
 
@@ -188,20 +192,20 @@ Consider this authentication method if you have Google Cloud CLI installed.
188
192
  Consider this method of authentication in non-interactive environments, CI/CD
189
193
  pipelines, or if your organization restricts user-based ADC or API key creation.
190
194
 
191
- > **Note:** If you have previously set `GOOGLE_API_KEY` or `GEMINI_API_KEY`, you
192
- > must unset them:
193
- >
194
- > **macOS/Linux**
195
- >
196
- > ```bash
197
- > unset GOOGLE_API_KEY GEMINI_API_KEY
198
- > ```
199
- >
200
- > **Windows (PowerShell)**
201
- >
202
- > ```powershell
203
- > Remove-Item Env:\GOOGLE_API_KEY, Env:\GEMINI_API_KEY -ErrorAction Ignore
204
- > ```
195
+ If you have previously set `GOOGLE_API_KEY` or `GEMINI_API_KEY`, you must unset
196
+ them:
197
+
198
+ **macOS/Linux**
199
+
200
+ ```bash
201
+ unset GOOGLE_API_KEY GEMINI_API_KEY
202
+ ```
203
+
204
+ **Windows (PowerShell)**
205
+
206
+ ```powershell
207
+ Remove-Item Env:\GOOGLE_API_KEY, Env:\GEMINI_API_KEY -ErrorAction Ignore
208
+ ```
205
209
 
206
210
  1. [Create a service account and key](https://cloud.google.com/iam/docs/keys-create-delete)
207
211
  and download the provided JSON file. Assign the "Vertex AI User" role to the
@@ -233,8 +237,11 @@ pipelines, or if your organization restricts user-based ADC or API key creation.
233
237
  ```
234
238
 
235
239
  5. Select **Vertex AI**.
236
- > **Warning:** Protect your service account key file as it gives access to
237
- > your resources.
240
+
241
+ <!-- prettier-ignore -->
242
+ > [!WARNING]
243
+ > Protect your service account key file as it gives access to
244
+ > your resources.
238
245
 
239
246
  #### C. Vertex AI - Google Cloud API key
240
247
 
@@ -257,10 +264,9 @@ pipelines, or if your organization restricts user-based ADC or API key creation.
257
264
  $env:GOOGLE_API_KEY="YOUR_GOOGLE_API_KEY"
258
265
  ```
259
266
 
260
- > **Note:** If you see errors like
261
- > `"API keys are not supported by this API..."`, your organization might
262
- > restrict API key usage for this service. Try the other Vertex AI
263
- > authentication methods instead.
267
+ If you see errors like `"API keys are not supported by this API..."`, your
268
+ organization might restrict API key usage for this service. Try the other
269
+ Vertex AI authentication methods instead.
264
270
 
265
271
  3. [Configure your Google Cloud Project](#set-gcp).
266
272
 
@@ -274,7 +280,9 @@ pipelines, or if your organization restricts user-based ADC or API key creation.
274
280
 
275
281
  ## Set your Google Cloud project <a id="set-gcp"></a>
276
282
 
277
- > **Important:** Most individual Google accounts (free and paid) don't require a
283
+ <!-- prettier-ignore -->
284
+ > [!IMPORTANT]
285
+ > Most individual Google accounts (free and paid) don't require a
278
286
  > Google Cloud project for authentication.
279
287
 
280
288
  When you sign in using your Google account, you may need to configure a Google
@@ -325,29 +333,31 @@ persist them with the following methods:
325
333
  1. **Add your environment variables to your shell configuration file:** Append
326
334
  the environment variable commands to your shell's startup file.
327
335
 
328
- **macOS/Linux** (e.g., `~/.bashrc`, `~/.zshrc`, or `~/.profile`):
336
+ **macOS/Linux** (for example, `~/.bashrc`, `~/.zshrc`, or `~/.profile`):
329
337
 
330
338
  ```bash
331
339
  echo 'export GOOGLE_CLOUD_PROJECT="YOUR_PROJECT_ID"' >> ~/.bashrc
332
340
  source ~/.bashrc
333
341
  ```
334
342
 
335
- **Windows (PowerShell)** (e.g., `$PROFILE`):
343
+ **Windows (PowerShell)** (for example, `$PROFILE`):
336
344
 
337
345
  ```powershell
338
346
  Add-Content -Path $PROFILE -Value '$env:GOOGLE_CLOUD_PROJECT="YOUR_PROJECT_ID"'
339
347
  . $PROFILE
340
348
  ```
341
349
 
342
- > **Warning:** Be aware that when you export API keys or service account
343
- > paths in your shell configuration file, any process launched from that
344
- > shell can read them.
350
+ <!-- prettier-ignore -->
351
+ > [!WARNING]
352
+ > Be aware that when you export API keys or service account
353
+ > paths in your shell configuration file, any process launched from that
354
+ > shell can read them.
345
355
 
346
356
  2. **Use a `.env` file:** Create a `.gemini/.env` file in your project
347
357
  directory or home directory. Gemini CLI automatically loads variables from
348
358
  the first `.env` file it finds, searching up from the current directory,
349
- then in your home directory's `.gemini/.env` (e.g., `~/.gemini/.env` or
350
- `%USERPROFILE%\.gemini\.env`).
359
+ then in your home directory's `.gemini/.env` (for example, `~/.gemini/.env`
360
+ or `%USERPROFILE%\.gemini\.env`).
351
361
 
352
362
  Example for user-wide settings:
353
363
 
@@ -4,7 +4,9 @@ Gemini CLI helps you automate common engineering tasks by combining AI reasoning
4
4
  with local system tools. This document provides examples of how to use the CLI
5
5
  for file management, code analysis, and data transformation.
6
6
 
7
- > **Note:** These examples demonstrate potential capabilities. Your actual
7
+ <!-- prettier-ignore -->
8
+ > [!NOTE]
9
+ > These examples demonstrate potential capabilities. Your actual
8
10
  > results can vary based on the model used and your project environment.
9
11
 
10
12
  ## Rename your photographs based on content
@@ -2,7 +2,9 @@
2
2
 
3
3
  Gemini 3 Pro and Gemini 3 Flash are available on Gemini CLI for all users!
4
4
 
5
- > **Note:** Gemini 3.1 Pro Preview is rolling out. To determine whether you have
5
+ <!-- prettier-ignore -->
6
+ > [!NOTE]
7
+ > Gemini 3.1 Pro Preview is rolling out. To determine whether you have
6
8
  > access to Gemini 3.1, use the `/model` command and select **Manual**. If you
7
9
  > have access, you will see `gemini-3.1-pro-preview`.
8
10
  >
@@ -25,7 +27,7 @@ Get started by upgrading Gemini CLI to the latest version:
25
27
  npm install -g @google/gemini-cli@latest
26
28
  ```
27
29
 
28
- After you’ve confirmed your version is 0.21.1 or later:
30
+ If your version is 0.21.1 or later:
29
31
 
30
32
  1. Run `/model`.
31
33
  2. Select **Auto (Gemini 3)**.
@@ -39,7 +41,9 @@ When you encounter that limit, you’ll be given the option to switch to Gemini
39
41
  2.5 Pro, upgrade for higher limits, or stop. You’ll also be told when your usage
40
42
  limit resets and Gemini 3 Pro can be used again.
41
43
 
42
- > **Note:** Looking to upgrade for higher limits? To compare subscription
44
+ <!-- prettier-ignore -->
45
+ > [!TIP]
46
+ > Looking to upgrade for higher limits? To compare subscription
43
47
  > options and find the right quota for your needs, see our
44
48
  > [Plans page](https://geminicli.com/plans/).
45
49
 
@@ -52,7 +56,9 @@ There may be times when the Gemini 3 Pro model is overloaded. When that happens,
52
56
  Gemini CLI will ask you to decide whether you want to keep trying Gemini 3 Pro
53
57
  or fallback to Gemini 2.5 Pro.
54
58
 
55
- > **Note:** The **Keep trying** option uses exponential backoff, in which Gemini
59
+ <!-- prettier-ignore -->
60
+ > [!NOTE]
61
+ > The **Keep trying** option uses exponential backoff, in which Gemini
56
62
  > CLI waits longer between each retry, when the system is busy. If the retry
57
63
  > doesn't happen immediately, please wait a few minutes for the request to
58
64
  > process.
@@ -109,7 +115,7 @@ then:
109
115
 
110
116
  Restart Gemini CLI and you should have access to Gemini 3.
111
117
 
112
- ## Need help?
118
+ ## Next steps
113
119
 
114
120
  If you need help, we recommend searching for an existing
115
121
  [GitHub issue](https://github.com/google-gemini/gemini-cli/issues). If you
@@ -143,7 +143,9 @@ Hooks are executed with a sanitized environment.
143
143
 
144
144
  ## Security and risks
145
145
 
146
- > **Warning: Hooks execute arbitrary code with your user privileges.** By
146
+ <!-- prettier-ignore -->
147
+ > [!WARNING]
148
+ > Hooks execute arbitrary code with your user privileges. By
147
149
  > configuring hooks, you are allowing scripts to run shell commands on your
148
150
  > machine.
149
151
 
@@ -470,5 +470,5 @@ console.error('Consolidating memories for session end...');
470
470
 
471
471
  While project-level hooks are great for specific repositories, you can share
472
472
  your hooks across multiple projects by packaging them as a
473
- [Gemini CLI extension](https://www.google.com/search?q=../extensions/index.md).
474
- This provides version control, easy distribution, and centralized management.
473
+ [Gemini CLI extension](../extensions/index.md). This provides version control,
474
+ easy distribution, and centralized management.
@@ -132,9 +132,11 @@ to the CLI whenever the user's context changes.
132
132
  }
133
133
  ```
134
134
 
135
- **Note:** The `openFiles` list should only include files that exist on disk.
136
- Virtual files (e.g., unsaved files without a path, editor settings pages)
137
- **MUST** be excluded.
135
+ <!-- prettier-ignore -->
136
+ > [!NOTE]
137
+ > The `openFiles` list should only include files that exist on disk.
138
+ > Virtual files (e.g., unsaved files without a path, editor settings pages)
139
+ > **MUST** be excluded.
138
140
 
139
141
  ### How the CLI uses this context
140
142
 
@@ -66,9 +66,11 @@ You can also install the extension directly from a marketplace.
66
66
  Follow your editor's instructions for installing extensions from this
67
67
  registry.
68
68
 
69
- > NOTE: The "Gemini CLI Companion" extension may appear towards the bottom of
70
- > search results. If you don't see it immediately, try scrolling down or sorting
71
- > by "Newly Published".
69
+ <!-- prettier-ignore -->
70
+ > [!NOTE]
71
+ > The "Gemini CLI Companion" extension may appear towards the bottom of
72
+ > search results. If you don't see it immediately, try scrolling down or
73
+ > sorting by "Newly Published".
72
74
  >
73
75
  > After manually installing the extension, you must run `/ide enable` in the CLI
74
76
  > to activate the integration.
@@ -103,7 +105,9 @@ IDE, run:
103
105
  If connected, this command will show the IDE it's connected to and a list of
104
106
  recently opened files it is aware of.
105
107
 
106
- > [!NOTE] The file list is limited to 10 recently accessed files within your
108
+ <!-- prettier-ignore -->
109
+ > [!NOTE]
110
+ > The file list is limited to 10 recently accessed files within your
107
111
  > workspace and only includes local files on disk.)
108
112
 
109
113
  ### Working with diffs
@@ -14,7 +14,9 @@ feature), while the PR is the "how" (the implementation). This separation helps
14
14
  us track work, prioritize features, and maintain clear historical context. Our
15
15
  automation is built around this principle.
16
16
 
17
- > **Note:** Issues tagged as "🔒Maintainers only" are reserved for project
17
+ <!-- prettier-ignore -->
18
+ > [!NOTE]
19
+ > Issues tagged as "🔒Maintainers only" are reserved for project
18
20
  > maintainers. We will not accept pull requests related to these issues.
19
21
 
20
22
  ---
@@ -79,7 +79,9 @@ You can view traces in the Jaeger UI for local development.
79
79
  You can use an OpenTelemetry collector to forward telemetry data to Google Cloud
80
80
  Trace for custom processing or routing.
81
81
 
82
- > **Warning:** Ensure you complete the
82
+ <!-- prettier-ignore -->
83
+ > [!WARNING]
84
+ > Ensure you complete the
83
85
  > [Google Cloud telemetry prerequisites](./cli/telemetry.md#prerequisites)
84
86
  > (Project ID, authentication, IAM roles, and APIs) before using this method.
85
87
 
@@ -60,8 +60,8 @@ Slash commands provide meta-level control over the CLI itself.
60
60
  - `list` (selecting this opens the auto-saved session browser)
61
61
  - `-- checkpoints --`
62
62
  - `list`, `save`, `resume`, `delete`, `share` (manual tagged checkpoints)
63
- - **Note:** Unique prefixes (for example `/cha` or `/resum`) resolve to the
64
- same grouped menu.
63
+ - Unique prefixes (for example `/cha` or `/resu`) resolve to the same grouped
64
+ menu.
65
65
  - **Sub-commands:**
66
66
  - **`debug`**
67
67
  - **Description:** Export the most recent API request as a JSON payload.