@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.
- package/README.md +0 -1
- package/dist/docs/CONTRIBUTING.md +0 -15
- package/dist/docs/admin/enterprise-controls.md +61 -0
- package/dist/docs/changelogs/index.md +11 -0
- package/dist/docs/changelogs/latest.md +459 -209
- package/dist/docs/changelogs/preview.md +355 -454
- package/dist/docs/cli/checkpointing.md +3 -1
- package/dist/docs/cli/cli-reference.md +1 -0
- package/dist/docs/cli/custom-commands.md +7 -5
- package/dist/docs/cli/enterprise.md +15 -9
- package/dist/docs/cli/git-worktrees.md +107 -0
- package/dist/docs/cli/model-steering.md +4 -3
- package/dist/docs/cli/model.md +3 -1
- package/dist/docs/cli/notifications.md +4 -3
- package/dist/docs/cli/plan-mode.md +28 -8
- package/dist/docs/cli/sandbox.md +24 -4
- package/dist/docs/cli/session-management.md +6 -0
- package/dist/docs/cli/settings.md +14 -1
- package/dist/docs/cli/skills.md +4 -2
- package/dist/docs/cli/system-prompt.md +3 -1
- package/dist/docs/cli/telemetry.md +6 -3
- package/dist/docs/cli/themes.md +12 -8
- package/dist/docs/cli/tutorials/file-management.md +8 -6
- package/dist/docs/cli/tutorials/mcp-setup.md +5 -3
- package/dist/docs/cli/tutorials/memory-management.md +6 -6
- package/dist/docs/cli/tutorials/plan-mode-steering.md +4 -3
- package/dist/docs/cli/tutorials/shell-commands.md +3 -3
- package/dist/docs/core/remote-agents.md +8 -3
- package/dist/docs/core/subagents.md +21 -13
- package/dist/docs/extensions/reference.md +8 -3
- package/dist/docs/get-started/authentication.md +60 -50
- package/dist/docs/get-started/examples.md +3 -1
- package/dist/docs/get-started/gemini-3.md +11 -5
- package/dist/docs/hooks/index.md +3 -1
- package/dist/docs/hooks/writing-hooks.md +2 -2
- package/dist/docs/ide-integration/ide-companion-spec.md +5 -3
- package/dist/docs/ide-integration/index.md +8 -4
- package/dist/docs/issue-and-pr-automation.md +3 -1
- package/dist/docs/local-development.md +3 -1
- package/dist/docs/reference/commands.md +2 -2
- package/dist/docs/reference/configuration.md +410 -16
- package/dist/docs/reference/policy-engine.md +47 -19
- package/dist/docs/reference/tools.md +3 -1
- package/dist/docs/release-confidence.md +7 -3
- package/dist/docs/releases.md +11 -7
- package/dist/docs/resources/faq.md +13 -0
- package/dist/docs/resources/tos-privacy.md +4 -2
- package/dist/docs/resources/troubleshooting.md +3 -1
- package/dist/docs/sidebar.json +5 -0
- package/dist/docs/tools/mcp-server.md +17 -9
- package/dist/docs/tools/planning.md +3 -1
- package/dist/docs/tools/shell.md +4 -4
- package/dist/docs/tools/todos.md +2 -1
- 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
- package/dist/src/agent/agent-session.d.ts +37 -0
- package/dist/src/agent/agent-session.js +168 -0
- package/dist/src/agent/agent-session.js.map +1 -0
- package/dist/src/agent/agent-session.test.d.ts +6 -0
- package/dist/src/agent/agent-session.test.js +217 -0
- package/dist/src/agent/agent-session.test.js.map +1 -0
- package/dist/src/agent/content-utils.d.ts +33 -0
- package/dist/src/agent/content-utils.js +135 -0
- package/dist/src/agent/content-utils.js.map +1 -0
- package/dist/src/agent/content-utils.test.d.ts +6 -0
- package/dist/src/agent/content-utils.test.js +223 -0
- package/dist/src/agent/content-utils.test.js.map +1 -0
- package/dist/src/agent/mock.d.ts +9 -12
- package/dist/src/agent/mock.js +88 -129
- package/dist/src/agent/mock.js.map +1 -1
- package/dist/src/agent/mock.test.js +114 -144
- package/dist/src/agent/mock.test.js.map +1 -1
- package/dist/src/agent/types.d.ts +21 -21
- package/dist/src/agents/a2a-client-manager.d.ts +2 -11
- package/dist/src/agents/a2a-client-manager.js +3 -19
- package/dist/src/agents/a2a-client-manager.js.map +1 -1
- package/dist/src/agents/a2a-client-manager.test.js +6 -10
- package/dist/src/agents/a2a-client-manager.test.js.map +1 -1
- package/dist/src/agents/agent-scheduler.d.ts +6 -0
- package/dist/src/agents/agent-scheduler.js +3 -2
- package/dist/src/agents/agent-scheduler.js.map +1 -1
- package/dist/src/agents/agent-scheduler.test.js +6 -0
- package/dist/src/agents/agent-scheduler.test.js.map +1 -1
- package/dist/src/agents/browser/browserAgentDefinition.js +10 -1
- package/dist/src/agents/browser/browserAgentDefinition.js.map +1 -1
- package/dist/src/agents/browser/browserAgentFactory.js +62 -1
- package/dist/src/agents/browser/browserAgentFactory.js.map +1 -1
- package/dist/src/agents/browser/browserAgentFactory.test.js +73 -0
- package/dist/src/agents/browser/browserAgentFactory.test.js.map +1 -1
- package/dist/src/agents/browser/browserAgentInvocation.js +2 -97
- package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
- package/dist/src/agents/browser/browserAgentInvocation.test.js +30 -0
- package/dist/src/agents/browser/browserAgentInvocation.test.js.map +1 -1
- package/dist/src/agents/browser/browserManager.js +11 -0
- package/dist/src/agents/browser/browserManager.js.map +1 -1
- package/dist/src/agents/browser/browserManager.test.js +37 -0
- package/dist/src/agents/browser/browserManager.test.js.map +1 -1
- package/dist/src/agents/browser/mcpToolWrapper.d.ts +4 -2
- package/dist/src/agents/browser/mcpToolWrapper.js +30 -8
- package/dist/src/agents/browser/mcpToolWrapper.js.map +1 -1
- package/dist/src/agents/browser/mcpToolWrapper.test.js +30 -0
- package/dist/src/agents/browser/mcpToolWrapper.test.js.map +1 -1
- package/dist/src/agents/browser/mcpToolWrapperConfirmation.test.js +3 -3
- package/dist/src/agents/codebase-investigator.js +3 -3
- package/dist/src/agents/codebase-investigator.js.map +1 -1
- package/dist/src/agents/local-executor.d.ts +3 -1
- package/dist/src/agents/local-executor.js +138 -39
- package/dist/src/agents/local-executor.js.map +1 -1
- package/dist/src/agents/local-executor.test.js +305 -12
- package/dist/src/agents/local-executor.test.js.map +1 -1
- package/dist/src/agents/local-invocation.js +43 -24
- package/dist/src/agents/local-invocation.js.map +1 -1
- package/dist/src/agents/local-invocation.test.js +89 -14
- package/dist/src/agents/local-invocation.test.js.map +1 -1
- package/dist/src/agents/memory-manager-agent.d.ts +25 -0
- package/dist/src/agents/memory-manager-agent.js +137 -0
- package/dist/src/agents/memory-manager-agent.js.map +1 -0
- package/dist/src/agents/memory-manager-agent.test.d.ts +6 -0
- package/dist/src/agents/memory-manager-agent.test.js +117 -0
- package/dist/src/agents/memory-manager-agent.test.js.map +1 -0
- package/dist/src/agents/registry.js +21 -3
- package/dist/src/agents/registry.js.map +1 -1
- package/dist/src/agents/registry.test.js +23 -24
- package/dist/src/agents/registry.test.js.map +1 -1
- package/dist/src/agents/remote-invocation.d.ts +3 -1
- package/dist/src/agents/remote-invocation.js +10 -5
- package/dist/src/agents/remote-invocation.js.map +1 -1
- package/dist/src/agents/remote-invocation.test.js +64 -41
- package/dist/src/agents/remote-invocation.test.js.map +1 -1
- package/dist/src/agents/subagent-tool-wrapper.js +1 -1
- package/dist/src/agents/subagent-tool-wrapper.js.map +1 -1
- package/dist/src/agents/types.d.ts +12 -0
- package/dist/src/agents/types.js +14 -0
- package/dist/src/agents/types.js.map +1 -1
- package/dist/src/availability/policyHelpers.js +41 -1
- package/dist/src/availability/policyHelpers.js.map +1 -1
- package/dist/src/availability/policyHelpers.test.js +47 -0
- package/dist/src/availability/policyHelpers.test.js.map +1 -1
- package/dist/src/code_assist/admin/admin_controls.js +11 -0
- package/dist/src/code_assist/admin/admin_controls.js.map +1 -1
- package/dist/src/code_assist/admin/admin_controls.test.js +68 -0
- package/dist/src/code_assist/admin/admin_controls.test.js.map +1 -1
- package/dist/src/code_assist/admin/mcpUtils.d.ts +16 -1
- package/dist/src/code_assist/admin/mcpUtils.js +43 -0
- package/dist/src/code_assist/admin/mcpUtils.js.map +1 -1
- package/dist/src/code_assist/admin/mcpUtils.test.js +130 -1
- package/dist/src/code_assist/admin/mcpUtils.test.js.map +1 -1
- package/dist/src/code_assist/types.d.ts +458 -0
- package/dist/src/code_assist/types.js +26 -0
- package/dist/src/code_assist/types.js.map +1 -1
- package/dist/src/config/agent-loop-context.d.ts +6 -0
- package/dist/src/config/config.d.ts +41 -10
- package/dist/src/config/config.js +96 -19
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +29 -1
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/defaultModelConfigs.js +265 -9
- package/dist/src/config/defaultModelConfigs.js.map +1 -1
- package/dist/src/config/models.d.ts +13 -2
- package/dist/src/config/models.js +31 -3
- package/dist/src/config/models.js.map +1 -1
- package/dist/src/config/models.test.js +52 -7
- package/dist/src/config/models.test.js.map +1 -1
- package/dist/src/config/path-validation.test.d.ts +6 -0
- package/dist/src/config/path-validation.test.js +59 -0
- package/dist/src/config/path-validation.test.js.map +1 -0
- package/dist/src/core/client.d.ts +1 -0
- package/dist/src/core/client.js +6 -1
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/client.test.js +9 -1
- package/dist/src/core/client.test.js.map +1 -1
- package/dist/src/core/contentGenerator.js +36 -6
- package/dist/src/core/contentGenerator.js.map +1 -1
- package/dist/src/core/contentGenerator.test.js +97 -3
- package/dist/src/core/contentGenerator.test.js.map +1 -1
- package/dist/src/core/geminiChat.js +2 -2
- package/dist/src/core/geminiChat.js.map +1 -1
- package/dist/src/core/prompts.test.js +10 -0
- package/dist/src/core/prompts.test.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/generated/git-commit.js.map +1 -1
- package/dist/src/ide/ide-connection-utils.js +2 -7
- package/dist/src/ide/ide-connection-utils.js.map +1 -1
- package/dist/src/ide/ide-connection-utils.test.js +7 -0
- package/dist/src/ide/ide-connection-utils.test.js.map +1 -1
- package/dist/src/index.d.ts +4 -0
- package/dist/src/index.js +4 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/policy/config.js +2 -0
- package/dist/src/policy/config.js.map +1 -1
- package/dist/src/policy/config.test.js +15 -0
- package/dist/src/policy/config.test.js.map +1 -1
- package/dist/src/policy/memory-manager-policy.test.d.ts +6 -0
- package/dist/src/policy/memory-manager-policy.test.js +80 -0
- package/dist/src/policy/memory-manager-policy.test.js.map +1 -0
- package/dist/src/policy/policies/memory-manager.toml +10 -0
- package/dist/src/policy/policies/plan.toml +14 -0
- package/dist/src/policy/policies/yolo.toml +1 -0
- package/dist/src/policy/policy-engine.js +33 -6
- package/dist/src/policy/policy-engine.js.map +1 -1
- package/dist/src/policy/policy-engine.test.js +85 -3
- package/dist/src/policy/policy-engine.test.js.map +1 -1
- package/dist/src/policy/policy-updater.test.js +44 -0
- package/dist/src/policy/policy-updater.test.js.map +1 -1
- package/dist/src/policy/toml-loader.js +2 -0
- package/dist/src/policy/toml-loader.js.map +1 -1
- package/dist/src/policy/types.d.ts +11 -0
- package/dist/src/policy/types.js +5 -0
- package/dist/src/policy/types.js.map +1 -1
- package/dist/src/prompts/promptProvider.js +5 -3
- package/dist/src/prompts/promptProvider.js.map +1 -1
- package/dist/src/prompts/promptProvider.test.js +1 -0
- package/dist/src/prompts/promptProvider.test.js.map +1 -1
- package/dist/src/prompts/snippets-memory-manager.test.d.ts +6 -0
- package/dist/src/prompts/snippets-memory-manager.test.js +31 -0
- package/dist/src/prompts/snippets-memory-manager.test.js.map +1 -0
- package/dist/src/prompts/snippets.d.ts +2 -0
- package/dist/src/prompts/snippets.js +7 -3
- package/dist/src/prompts/snippets.js.map +1 -1
- package/dist/src/prompts/snippets.legacy.d.ts +5 -0
- package/dist/src/prompts/snippets.legacy.js +30 -2
- package/dist/src/prompts/snippets.legacy.js.map +1 -1
- package/dist/src/routing/strategies/classifierStrategy.js +1 -1
- package/dist/src/routing/strategies/classifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/defaultStrategy.js +1 -1
- package/dist/src/routing/strategies/defaultStrategy.js.map +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.js +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.js.map +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.js +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/overrideStrategy.js +1 -1
- package/dist/src/routing/strategies/overrideStrategy.js.map +1 -1
- package/dist/src/sandbox/macos/MacOsSandboxManager.d.ts +28 -0
- package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.d.ts +1 -0
- package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.js +160 -0
- package/dist/src/sandbox/macos/MacOsSandboxManager.integration.test.js.map +1 -0
- package/dist/src/sandbox/macos/MacOsSandboxManager.js +33 -0
- package/dist/src/sandbox/macos/MacOsSandboxManager.js.map +1 -0
- package/dist/src/sandbox/macos/MacOsSandboxManager.test.d.ts +1 -0
- package/dist/src/sandbox/macos/MacOsSandboxManager.test.js +87 -0
- package/dist/src/sandbox/macos/MacOsSandboxManager.test.js.map +1 -0
- package/dist/src/sandbox/macos/baseProfile.d.ts +20 -0
- package/dist/src/sandbox/macos/baseProfile.js +93 -0
- package/dist/src/sandbox/macos/baseProfile.js.map +1 -0
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.d.ts +25 -0
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.js +58 -0
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.js.map +1 -0
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.d.ts +1 -0
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js +80 -0
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js.map +1 -0
- package/dist/src/scheduler/scheduler.js +2 -0
- package/dist/src/scheduler/scheduler.js.map +1 -1
- package/dist/src/services/contextManager.js +2 -3
- package/dist/src/services/contextManager.js.map +1 -1
- package/dist/src/services/contextManager.test.js +1 -1
- package/dist/src/services/contextManager.test.js.map +1 -1
- package/dist/src/services/modelConfigService.d.ts +36 -1
- package/dist/src/services/modelConfigService.js +66 -0
- package/dist/src/services/modelConfigService.js.map +1 -1
- package/dist/src/services/sandboxManager.d.ts +3 -4
- package/dist/src/services/sandboxManager.js +1 -14
- package/dist/src/services/sandboxManager.js.map +1 -1
- package/dist/src/services/sandboxManager.test.js +13 -16
- package/dist/src/services/sandboxManager.test.js.map +1 -1
- package/dist/src/services/sandboxManagerFactory.d.ts +11 -0
- package/dist/src/services/sandboxManagerFactory.js +31 -0
- package/dist/src/services/sandboxManagerFactory.js.map +1 -0
- package/dist/src/services/sandboxedFileSystemService.d.ts +17 -0
- package/dist/src/services/sandboxedFileSystemService.js +95 -0
- package/dist/src/services/sandboxedFileSystemService.js.map +1 -0
- package/dist/src/services/sandboxedFileSystemService.test.d.ts +6 -0
- package/dist/src/services/sandboxedFileSystemService.test.js +87 -0
- package/dist/src/services/sandboxedFileSystemService.test.js.map +1 -0
- package/dist/src/services/scripts/GeminiSandbox.cs +370 -0
- package/dist/src/services/shellExecutionService.d.ts +2 -0
- package/dist/src/services/shellExecutionService.js +79 -75
- package/dist/src/services/shellExecutionService.js.map +1 -1
- package/dist/src/services/trackerTypes.d.ts +1 -0
- package/dist/src/services/trackerTypes.js +1 -0
- package/dist/src/services/trackerTypes.js.map +1 -1
- package/dist/src/services/windowsSandboxManager.d.ts +27 -0
- package/dist/src/services/windowsSandboxManager.js +148 -0
- package/dist/src/services/windowsSandboxManager.js.map +1 -0
- package/dist/src/services/windowsSandboxManager.test.d.ts +6 -0
- package/dist/src/services/windowsSandboxManager.test.js +59 -0
- package/dist/src/services/windowsSandboxManager.test.js.map +1 -0
- package/dist/src/services/worktreeService.d.ts +33 -0
- package/dist/src/services/worktreeService.js +174 -0
- package/dist/src/services/worktreeService.js.map +1 -0
- package/dist/src/services/worktreeService.test.d.ts +6 -0
- package/dist/src/services/worktreeService.test.js +200 -0
- package/dist/src/services/worktreeService.test.js.map +1 -0
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.js +4 -0
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/event-metadata-key.d.ts +1 -0
- package/dist/src/telemetry/clearcut-logger/event-metadata-key.js +2 -0
- package/dist/src/telemetry/clearcut-logger/event-metadata-key.js.map +1 -1
- package/dist/src/telemetry/loggers.test.js +62 -40
- package/dist/src/telemetry/loggers.test.js.map +1 -1
- package/dist/src/telemetry/types.d.ts +1 -0
- package/dist/src/telemetry/types.js +3 -0
- package/dist/src/telemetry/types.js.map +1 -1
- package/dist/src/tools/definitions/model-family-sets/default-legacy.js +8 -1
- package/dist/src/tools/definitions/model-family-sets/default-legacy.js.map +1 -1
- package/dist/src/tools/definitions/model-family-sets/gemini-3.js +8 -1
- package/dist/src/tools/definitions/model-family-sets/gemini-3.js.map +1 -1
- package/dist/src/tools/exit-plan-mode.d.ts +6 -1
- package/dist/src/tools/exit-plan-mode.js +17 -6
- package/dist/src/tools/exit-plan-mode.js.map +1 -1
- package/dist/src/tools/exit-plan-mode.test.js +22 -1
- package/dist/src/tools/exit-plan-mode.test.js.map +1 -1
- package/dist/src/tools/mcp-client-manager.d.ts +22 -3
- package/dist/src/tools/mcp-client-manager.js +84 -32
- package/dist/src/tools/mcp-client-manager.js.map +1 -1
- package/dist/src/tools/mcp-client-manager.test.js +76 -56
- package/dist/src/tools/mcp-client-manager.test.js.map +1 -1
- package/dist/src/tools/mcp-client.d.ts +15 -6
- package/dist/src/tools/mcp-client.js +85 -71
- package/dist/src/tools/mcp-client.js.map +1 -1
- package/dist/src/tools/mcp-client.test.js +195 -88
- package/dist/src/tools/mcp-client.test.js.map +1 -1
- package/dist/src/tools/tool-registry.d.ts +2 -1
- package/dist/src/tools/tool-registry.js +12 -1
- package/dist/src/tools/tool-registry.js.map +1 -1
- package/dist/src/tools/tool-registry.test.js +15 -0
- package/dist/src/tools/tool-registry.test.js.map +1 -1
- package/dist/src/tools/tools.d.ts +1 -1
- package/dist/src/tools/tools.js.map +1 -1
- package/dist/src/tools/trackerTools.js +6 -1
- package/dist/src/tools/trackerTools.js.map +1 -1
- package/dist/src/tools/trackerTools.test.js +9 -1
- package/dist/src/tools/trackerTools.test.js.map +1 -1
- package/dist/src/tools/write-todos.js +1 -0
- package/dist/src/tools/write-todos.js.map +1 -1
- package/dist/src/tools/write-todos.test.js +4 -1
- package/dist/src/tools/write-todos.test.js.map +1 -1
- package/dist/src/utils/agent-sanitization-utils.d.ts +23 -0
- package/dist/src/utils/agent-sanitization-utils.js +123 -0
- package/dist/src/utils/agent-sanitization-utils.js.map +1 -0
- package/dist/src/utils/agent-sanitization-utils.test.d.ts +6 -0
- package/dist/src/utils/agent-sanitization-utils.test.js +83 -0
- package/dist/src/utils/agent-sanitization-utils.test.js.map +1 -0
- package/dist/src/utils/browserConsent.d.ts +17 -0
- package/dist/src/utils/browserConsent.js +78 -0
- package/dist/src/utils/browserConsent.js.map +1 -0
- package/dist/src/utils/browserConsent.test.d.ts +6 -0
- package/dist/src/utils/browserConsent.test.js +93 -0
- package/dist/src/utils/browserConsent.test.js.map +1 -0
- package/dist/src/utils/compatibility.d.ts +16 -0
- package/dist/src/utils/compatibility.js +58 -9
- package/dist/src/utils/compatibility.js.map +1 -1
- package/dist/src/utils/compatibility.test.js +127 -29
- package/dist/src/utils/compatibility.test.js.map +1 -1
- package/dist/src/utils/memoryDiscovery.d.ts +2 -2
- package/dist/src/utils/memoryDiscovery.js +5 -10
- package/dist/src/utils/memoryDiscovery.js.map +1 -1
- package/dist/src/utils/memoryDiscovery.test.js +37 -37
- package/dist/src/utils/memoryDiscovery.test.js.map +1 -1
- package/dist/src/utils/memoryImportProcessor.js +5 -5
- package/dist/src/utils/memoryImportProcessor.js.map +1 -1
- package/dist/src/utils/surface.js +4 -3
- package/dist/src/utils/surface.js.map +1 -1
- package/dist/src/utils/toolCallContext.d.ts +2 -0
- package/dist/src/utils/toolCallContext.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- 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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
9
|
-
>
|
|
10
|
-
>
|
|
11
|
-
>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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 (
|
|
44
|
-
local machine).
|
|
45
|
+
machine that can communicate with the terminal running Gemini CLI (for example,
|
|
46
|
+
your local machine).
|
|
45
47
|
|
|
46
|
-
|
|
47
|
-
|
|
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
|
-
|
|
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 (
|
|
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 (
|
|
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
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
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
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
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
|
-
|
|
237
|
-
|
|
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
|
-
|
|
261
|
-
|
|
262
|
-
|
|
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
|
-
|
|
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** (
|
|
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)** (
|
|
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
|
-
|
|
343
|
-
|
|
344
|
-
|
|
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` (
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
##
|
|
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
|
package/dist/docs/hooks/index.md
CHANGED
|
@@ -143,7 +143,9 @@ Hooks are executed with a sanitized environment.
|
|
|
143
143
|
|
|
144
144
|
## Security and risks
|
|
145
145
|
|
|
146
|
-
|
|
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](
|
|
474
|
-
|
|
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
|
-
|
|
136
|
-
|
|
137
|
-
|
|
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
|
-
|
|
70
|
-
>
|
|
71
|
-
>
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
-
|
|
64
|
-
|
|
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.
|