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