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