@machina.ai/cell-cli-core 1.41.1-rc2 → 1.45.1-rc1
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 +1 -1
- package/dist/docs/changelogs/index.md +63 -0
- package/dist/docs/changelogs/latest.md +200 -244
- package/dist/docs/changelogs/preview.md +198 -385
- package/dist/docs/cli/auto-memory.md +61 -40
- package/dist/docs/cli/cli-reference.md +2 -1
- package/dist/docs/cli/creating-skills.md +165 -38
- package/dist/docs/cli/custom-commands.md +1 -0
- package/dist/docs/cli/gemini-md.md +0 -3
- package/dist/docs/cli/model-routing.md +3 -3
- package/dist/docs/cli/plan-mode.md +2 -2
- package/dist/docs/cli/settings.md +20 -19
- package/dist/docs/cli/skills-best-practices.md +78 -0
- package/dist/docs/cli/skills.md +98 -176
- package/dist/docs/cli/tutorials/memory-management.md +3 -3
- package/dist/docs/cli/tutorials/session-management.md +13 -0
- package/dist/docs/cli/tutorials/skills-getting-started.md +140 -92
- package/dist/docs/cli/using-agent-skills.md +90 -0
- package/dist/docs/core/gemma-setup.md +83 -0
- package/dist/docs/core/index.md +3 -2
- package/dist/docs/core/local-model-routing.md +14 -7
- package/dist/docs/extensions/reference.md +16 -0
- package/dist/docs/extensions/releasing.md +58 -24
- package/dist/docs/extensions/writing-extensions.md +7 -0
- package/dist/docs/get-started/installation.mdx +2 -2
- package/dist/docs/model-routing-spec.md +683 -0
- package/dist/docs/reference/commands.md +14 -7
- package/dist/docs/reference/configuration.md +264 -88
- package/dist/docs/reference/keyboard-shortcuts.md +24 -1
- package/dist/docs/reference/policy-engine.md +14 -3
- package/dist/docs/reference/tools.md +48 -1
- package/dist/docs/releases.md +2 -2
- package/dist/docs/sidebar.json +24 -2
- package/dist/docs/tools/activate-skill.md +1 -1
- package/dist/docs/tools/mcp-server.md +24 -3
- package/dist/docs/tools/memory.md +10 -13
- package/dist/docs/tools/shell.md +17 -0
- package/dist/package.json +18 -18
- package/dist/src/agent/content-utils.js +6 -1
- package/dist/src/agent/content-utils.js.map +1 -1
- package/dist/src/agent/content-utils.test.js +5 -1
- package/dist/src/agent/content-utils.test.js.map +1 -1
- package/dist/src/agent/event-translator.js +8 -7
- package/dist/src/agent/event-translator.js.map +1 -1
- package/dist/src/agent/event-translator.test.js +2 -2
- package/dist/src/agent/event-translator.test.js.map +1 -1
- package/dist/src/agent/legacy-agent-session.js +5 -1
- package/dist/src/agent/legacy-agent-session.js.map +1 -1
- package/dist/src/agent/legacy-agent-session.test.js +11 -3
- package/dist/src/agent/legacy-agent-session.test.js.map +1 -1
- package/dist/src/agent/tool-display-utils.d.ts +3 -2
- package/dist/src/agent/tool-display-utils.js +3 -2
- package/dist/src/agent/tool-display-utils.js.map +1 -1
- package/dist/src/agent/types.d.ts +33 -3
- package/dist/src/agents/a2aUtils.d.ts +1 -1
- package/dist/src/agents/a2aUtils.js +5 -4
- package/dist/src/agents/a2aUtils.js.map +1 -1
- package/dist/src/agents/a2aUtils.test.js +18 -0
- package/dist/src/agents/a2aUtils.test.js.map +1 -1
- package/dist/src/agents/agent-tool.d.ts +3 -1
- package/dist/src/agents/agent-tool.js +19 -3
- package/dist/src/agents/agent-tool.js.map +1 -1
- package/dist/src/agents/agent-tool.test.js +76 -0
- package/dist/src/agents/agent-tool.test.js.map +1 -1
- package/dist/src/agents/agentLoader.d.ts +127 -22
- package/dist/src/agents/agentLoader.js +20 -0
- package/dist/src/agents/agentLoader.js.map +1 -1
- package/dist/src/agents/agentLoader.test.js +60 -0
- package/dist/src/agents/agentLoader.test.js.map +1 -1
- package/dist/src/agents/auth-provider/types.d.ts +5 -0
- package/dist/src/agents/browser/browserAgentInvocation.js +24 -19
- package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
- package/dist/src/agents/browser/snapshotSuperseder.js +11 -8
- package/dist/src/agents/browser/snapshotSuperseder.js.map +1 -1
- package/dist/src/agents/browser/snapshotSuperseder.test.js +6 -1
- package/dist/src/agents/browser/snapshotSuperseder.test.js.map +1 -1
- package/dist/src/agents/generalist-agent.js +8 -1
- package/dist/src/agents/generalist-agent.js.map +1 -1
- package/dist/src/agents/generalist-agent.test.js +24 -0
- package/dist/src/agents/generalist-agent.test.js.map +1 -1
- package/dist/src/agents/local-executor.d.ts +1 -0
- package/dist/src/agents/local-executor.js +76 -45
- package/dist/src/agents/local-executor.js.map +1 -1
- package/dist/src/agents/local-executor.test.js +199 -27
- package/dist/src/agents/local-executor.test.js.map +1 -1
- package/dist/src/agents/local-invocation.d.ts +1 -1
- package/dist/src/agents/local-invocation.js +47 -48
- package/dist/src/agents/local-invocation.js.map +1 -1
- package/dist/src/agents/local-invocation.test.js +13 -15
- package/dist/src/agents/local-invocation.test.js.map +1 -1
- package/dist/src/agents/local-session-invocation.d.ts +51 -0
- package/dist/src/agents/local-session-invocation.js +320 -0
- package/dist/src/agents/local-session-invocation.js.map +1 -0
- package/dist/src/agents/local-session-invocation.test.js +512 -0
- package/dist/src/agents/local-session-invocation.test.js.map +1 -0
- package/dist/src/agents/local-subagent-protocol.d.ts +18 -0
- package/dist/src/agents/local-subagent-protocol.js +357 -0
- package/dist/src/agents/local-subagent-protocol.js.map +1 -0
- package/dist/src/agents/local-subagent-protocol.test.js +676 -0
- package/dist/src/agents/local-subagent-protocol.test.js.map +1 -0
- package/dist/src/agents/registry.d.ts +8 -4
- package/dist/src/agents/registry.js +112 -47
- package/dist/src/agents/registry.js.map +1 -1
- package/dist/src/agents/registry.test.js +9 -20
- package/dist/src/agents/registry.test.js.map +1 -1
- package/dist/src/agents/remote-invocation.js +6 -6
- package/dist/src/agents/remote-invocation.js.map +1 -1
- package/dist/src/agents/remote-invocation.test.js +23 -12
- package/dist/src/agents/remote-invocation.test.js.map +1 -1
- package/dist/src/agents/remote-session-invocation.d.ts +48 -0
- package/dist/src/agents/remote-session-invocation.js +193 -0
- package/dist/src/agents/remote-session-invocation.js.map +1 -0
- package/dist/src/agents/remote-session-invocation.test.d.ts +6 -0
- package/dist/src/agents/remote-session-invocation.test.js +405 -0
- package/dist/src/agents/remote-session-invocation.test.js.map +1 -0
- package/dist/src/agents/remote-subagent-protocol.d.ts +42 -0
- package/dist/src/agents/remote-subagent-protocol.js +348 -0
- package/dist/src/agents/remote-subagent-protocol.js.map +1 -0
- package/dist/src/agents/remote-subagent-protocol.test.d.ts +6 -0
- package/dist/src/agents/remote-subagent-protocol.test.js +652 -0
- package/dist/src/agents/remote-subagent-protocol.test.js.map +1 -0
- package/dist/src/agents/skill-extraction-agent.d.ts +8 -1
- package/dist/src/agents/skill-extraction-agent.js +171 -21
- package/dist/src/agents/skill-extraction-agent.js.map +1 -1
- package/dist/src/agents/skill-extraction-agent.test.js +66 -2
- package/dist/src/agents/skill-extraction-agent.test.js.map +1 -1
- package/dist/src/agents/types.d.ts +38 -2
- package/dist/src/agents/types.js +7 -0
- package/dist/src/agents/types.js.map +1 -1
- package/dist/src/availability/autoRoutingFallback.integration.test.d.ts +6 -0
- package/dist/src/availability/autoRoutingFallback.integration.test.js +288 -0
- package/dist/src/availability/autoRoutingFallback.integration.test.js.map +1 -0
- package/dist/src/availability/fallbackIntegration.test.js +29 -0
- package/dist/src/availability/fallbackIntegration.test.js.map +1 -1
- package/dist/src/availability/modelAvailabilityService.d.ts +6 -6
- package/dist/src/availability/modelAvailabilityService.js +16 -8
- package/dist/src/availability/modelAvailabilityService.js.map +1 -1
- package/dist/src/availability/modelAvailabilityService.test.js +39 -0
- package/dist/src/availability/modelAvailabilityService.test.js.map +1 -1
- package/dist/src/availability/modelPolicy.d.ts +1 -0
- package/dist/src/availability/policyCatalog.d.ts +2 -0
- package/dist/src/availability/policyCatalog.js +38 -9
- package/dist/src/availability/policyCatalog.js.map +1 -1
- package/dist/src/availability/policyCatalog.test.js +5 -4
- package/dist/src/availability/policyCatalog.test.js.map +1 -1
- package/dist/src/availability/policyHelpers.js +42 -27
- package/dist/src/availability/policyHelpers.js.map +1 -1
- package/dist/src/availability/policyHelpers.test.js +47 -7
- package/dist/src/availability/policyHelpers.test.js.map +1 -1
- package/dist/src/availability/testUtils.js +1 -1
- package/dist/src/availability/testUtils.js.map +1 -1
- package/dist/src/code_assist/admin/admin_controls.js +3 -1
- package/dist/src/code_assist/admin/admin_controls.js.map +1 -1
- package/dist/src/code_assist/experiments/flagNames.d.ts +1 -1
- package/dist/src/code_assist/experiments/flagNames.js +1 -1
- package/dist/src/code_assist/experiments/flagNames.js.map +1 -1
- package/dist/src/code_assist/oauth-credential-storage.js +12 -3
- package/dist/src/code_assist/oauth-credential-storage.js.map +1 -1
- package/dist/src/code_assist/oauth-credential-storage.test.js +29 -2
- package/dist/src/code_assist/oauth-credential-storage.test.js.map +1 -1
- package/dist/src/code_assist/oauth2.js +12 -3
- package/dist/src/code_assist/oauth2.js.map +1 -1
- package/dist/src/code_assist/oauth2.test.js +38 -0
- package/dist/src/code_assist/oauth2.test.js.map +1 -1
- package/dist/src/code_assist/setup.d.ts +3 -0
- package/dist/src/code_assist/setup.js +9 -0
- package/dist/src/code_assist/setup.js.map +1 -1
- package/dist/src/code_assist/setup.test.js +10 -1
- package/dist/src/code_assist/setup.test.js.map +1 -1
- package/dist/src/commands/memory.d.ts +83 -2
- package/dist/src/commands/memory.js +479 -28
- package/dist/src/commands/memory.js.map +1 -1
- package/dist/src/commands/memory.test.js +414 -58
- package/dist/src/commands/memory.test.js.map +1 -1
- package/dist/src/config/config.d.ts +61 -37
- package/dist/src/config/config.js +294 -101
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +365 -113
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/defaultModelConfigs.js +185 -61
- package/dist/src/config/defaultModelConfigs.js.map +1 -1
- package/dist/src/config/flashFallback.test.js +31 -0
- package/dist/src/config/flashFallback.test.js.map +1 -1
- package/dist/src/config/models.d.ts +20 -10
- package/dist/src/config/models.js +105 -34
- package/dist/src/config/models.js.map +1 -1
- package/dist/src/config/models.test.js +204 -47
- package/dist/src/config/models.test.js.map +1 -1
- package/dist/src/config/projectRegistry.d.ts +1 -0
- package/dist/src/config/projectRegistry.js +14 -3
- package/dist/src/config/projectRegistry.js.map +1 -1
- package/dist/src/config/projectRegistry.test.js +43 -0
- package/dist/src/config/projectRegistry.test.js.map +1 -1
- package/dist/src/config/scoped-config.d.ts +22 -0
- package/dist/src/config/scoped-config.js +32 -0
- package/dist/src/config/scoped-config.js.map +1 -1
- package/dist/src/config/storage.d.ts +0 -1
- package/dist/src/config/storage.js +0 -3
- package/dist/src/config/storage.js.map +1 -1
- package/dist/src/confirmation-bus/message-bus.d.ts +3 -1
- package/dist/src/confirmation-bus/message-bus.js +14 -5
- package/dist/src/confirmation-bus/message-bus.js.map +1 -1
- package/dist/src/confirmation-bus/message-bus.test.js +34 -0
- package/dist/src/confirmation-bus/message-bus.test.js.map +1 -1
- package/dist/src/context/chatCompressionService.js +7 -5
- package/dist/src/context/chatCompressionService.js.map +1 -1
- package/dist/src/context/chatCompressionService.test.js +1 -1
- package/dist/src/context/chatCompressionService.test.js.map +1 -1
- package/dist/src/context/config/configLoader.js +4 -1
- package/dist/src/context/config/configLoader.js.map +1 -1
- package/dist/src/context/config/profiles.d.ts +10 -0
- package/dist/src/context/config/profiles.js +98 -3
- package/dist/src/context/config/profiles.js.map +1 -1
- package/dist/src/context/config/schema.d.ts +4 -0
- package/dist/src/context/config/schema.js +4 -0
- package/dist/src/context/config/schema.js.map +1 -1
- package/dist/src/context/config/types.d.ts +13 -1
- package/dist/src/context/contextCompressionService.test.js +7 -3
- package/dist/src/context/contextCompressionService.test.js.map +1 -1
- package/dist/src/context/contextManager.barrier.test.js +39 -16
- package/dist/src/context/contextManager.barrier.test.js.map +1 -1
- package/dist/src/context/contextManager.d.ts +25 -28
- package/dist/src/context/contextManager.hotstart.test.d.ts +6 -0
- package/dist/src/context/contextManager.hotstart.test.js +65 -0
- package/dist/src/context/contextManager.hotstart.test.js.map +1 -0
- package/dist/src/context/contextManager.incremental.test.d.ts +6 -0
- package/dist/src/context/contextManager.incremental.test.js +101 -0
- package/dist/src/context/contextManager.incremental.test.js.map +1 -0
- package/dist/src/context/contextManager.js +276 -79
- package/dist/src/context/contextManager.js.map +1 -1
- package/dist/src/context/contextManager.test.d.ts +6 -0
- package/dist/src/context/contextManager.test.js +142 -0
- package/dist/src/context/contextManager.test.js.map +1 -0
- package/dist/src/context/eventBus.d.ts +13 -0
- package/dist/src/context/eventBus.js +12 -0
- package/dist/src/context/eventBus.js.map +1 -1
- package/dist/src/context/graph/behaviorRegistry.d.ts +4 -12
- package/dist/src/context/graph/behaviorRegistry.js.map +1 -1
- package/dist/src/context/graph/builtinBehaviors.d.ts +6 -1
- package/dist/src/context/graph/builtinBehaviors.js +23 -108
- package/dist/src/context/graph/builtinBehaviors.js.map +1 -1
- package/dist/src/context/graph/fromGraph.d.ts +8 -3
- package/dist/src/context/graph/fromGraph.js +46 -30
- package/dist/src/context/graph/fromGraph.js.map +1 -1
- package/dist/src/context/graph/fromGraph.test.d.ts +6 -0
- package/dist/src/context/graph/fromGraph.test.js +186 -0
- package/dist/src/context/graph/fromGraph.test.js.map +1 -0
- package/dist/src/context/graph/mapper.d.ts +8 -10
- package/dist/src/context/graph/mapper.js +11 -19
- package/dist/src/context/graph/mapper.js.map +1 -1
- package/dist/src/context/graph/mapper.test.d.ts +6 -0
- package/dist/src/context/graph/mapper.test.js +101 -0
- package/dist/src/context/graph/mapper.test.js.map +1 -0
- package/dist/src/context/graph/nodeIdService.d.ts +17 -0
- package/dist/src/context/graph/nodeIdService.js +24 -0
- package/dist/src/context/graph/nodeIdService.js.map +1 -0
- package/dist/src/context/graph/render.d.ts +24 -5
- package/dist/src/context/graph/render.js +129 -34
- package/dist/src/context/graph/render.js.map +1 -1
- package/dist/src/context/graph/render.test.d.ts +6 -0
- package/dist/src/context/graph/render.test.js +280 -0
- package/dist/src/context/graph/render.test.js.map +1 -0
- package/dist/src/context/graph/toGraph.d.ts +16 -14
- package/dist/src/context/graph/toGraph.js +180 -202
- package/dist/src/context/graph/toGraph.js.map +1 -1
- package/dist/src/context/graph/toGraph.test.d.ts +6 -0
- package/dist/src/context/graph/toGraph.test.js +116 -0
- package/dist/src/context/graph/toGraph.test.js.map +1 -0
- package/dist/src/context/graph/types.d.ts +36 -73
- package/dist/src/context/graph/types.js +23 -14
- package/dist/src/context/graph/types.js.map +1 -1
- package/dist/src/context/initializer.js +26 -5
- package/dist/src/context/initializer.js.map +1 -1
- package/dist/src/context/pipeline/contextWorkingBuffer.d.ts +5 -8
- package/dist/src/context/pipeline/contextWorkingBuffer.js +105 -35
- package/dist/src/context/pipeline/contextWorkingBuffer.js.map +1 -1
- package/dist/src/context/pipeline/contextWorkingBuffer.test.js +81 -13
- package/dist/src/context/pipeline/contextWorkingBuffer.test.js.map +1 -1
- package/dist/src/context/pipeline/environment.d.ts +4 -0
- package/dist/src/context/pipeline/environmentImpl.d.ts +6 -5
- package/dist/src/context/pipeline/environmentImpl.js +7 -9
- package/dist/src/context/pipeline/environmentImpl.js.map +1 -1
- package/dist/src/context/pipeline/environmentImpl.test.js +5 -1
- package/dist/src/context/pipeline/environmentImpl.test.js.map +1 -1
- package/dist/src/context/pipeline/orchestrator.d.ts +20 -6
- package/dist/src/context/pipeline/orchestrator.js +97 -80
- package/dist/src/context/pipeline/orchestrator.js.map +1 -1
- package/dist/src/context/pipeline/orchestrator.test.js +33 -36
- package/dist/src/context/pipeline/orchestrator.test.js.map +1 -1
- package/dist/src/context/pipeline.d.ts +0 -1
- package/dist/src/context/processors/blobDegradationProcessor.js +43 -84
- package/dist/src/context/processors/blobDegradationProcessor.js.map +1 -1
- package/dist/src/context/processors/blobDegradationProcessor.test.js +33 -37
- package/dist/src/context/processors/blobDegradationProcessor.test.js.map +1 -1
- package/dist/src/context/processors/nodeDistillationProcessor.js +58 -80
- package/dist/src/context/processors/nodeDistillationProcessor.js.map +1 -1
- package/dist/src/context/processors/nodeDistillationProcessor.test.js +21 -15
- package/dist/src/context/processors/nodeDistillationProcessor.test.js.map +1 -1
- package/dist/src/context/processors/nodeTruncationProcessor.js +16 -60
- package/dist/src/context/processors/nodeTruncationProcessor.js.map +1 -1
- package/dist/src/context/processors/nodeTruncationProcessor.test.js +16 -19
- package/dist/src/context/processors/nodeTruncationProcessor.test.js.map +1 -1
- package/dist/src/context/processors/rollingSummaryProcessor.js +12 -25
- package/dist/src/context/processors/rollingSummaryProcessor.js.map +1 -1
- package/dist/src/context/processors/rollingSummaryProcessor.test.js +10 -9
- package/dist/src/context/processors/rollingSummaryProcessor.test.js.map +1 -1
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.d.ts +7 -0
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.js +37 -19
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.js.map +1 -1
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.test.js +35 -10
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.test.js.map +1 -1
- package/dist/src/context/processors/stateSnapshotProcessor.d.ts +2 -0
- package/dist/src/context/processors/stateSnapshotProcessor.js +53 -21
- package/dist/src/context/processors/stateSnapshotProcessor.js.map +1 -1
- package/dist/src/context/processors/stateSnapshotProcessor.test.js +52 -12
- package/dist/src/context/processors/stateSnapshotProcessor.test.js.map +1 -1
- package/dist/src/context/processors/toolMaskingProcessor.js +96 -117
- package/dist/src/context/processors/toolMaskingProcessor.js.map +1 -1
- package/dist/src/context/processors/toolMaskingProcessor.test.js +50 -17
- package/dist/src/context/processors/toolMaskingProcessor.test.js.map +1 -1
- package/dist/src/context/system-tests/hysteresis.test.d.ts +6 -0
- package/dist/src/context/system-tests/hysteresis.test.js +100 -0
- package/dist/src/context/system-tests/hysteresis.test.js.map +1 -0
- package/dist/src/context/system-tests/lifecycle.golden.test.js +107 -72
- package/dist/src/context/system-tests/lifecycle.golden.test.js.map +1 -1
- package/dist/src/context/system-tests/powerUserLifecycle.test.d.ts +6 -0
- package/dist/src/context/system-tests/powerUserLifecycle.test.js +91 -0
- package/dist/src/context/system-tests/powerUserLifecycle.test.js.map +1 -0
- package/dist/src/context/system-tests/simulationHarness.d.ts +2 -5
- package/dist/src/context/system-tests/simulationHarness.js +34 -35
- package/dist/src/context/system-tests/simulationHarness.js.map +1 -1
- package/dist/src/context/testing/contextTestUtils.d.ts +5 -3
- package/dist/src/context/testing/contextTestUtils.js +74 -53
- package/dist/src/context/testing/contextTestUtils.js.map +1 -1
- package/dist/src/context/testing/testProfile.js +1 -0
- package/dist/src/context/testing/testProfile.js.map +1 -1
- package/dist/src/context/toolOutputMaskingService.js +1 -2
- package/dist/src/context/toolOutputMaskingService.js.map +1 -1
- package/dist/src/context/toolOutputMaskingService.test.js +5 -20
- package/dist/src/context/toolOutputMaskingService.test.js.map +1 -1
- package/dist/src/context/utils/adaptiveTokenCalculator.d.ts +70 -0
- package/dist/src/context/utils/adaptiveTokenCalculator.js +138 -0
- package/dist/src/context/utils/adaptiveTokenCalculator.js.map +1 -0
- package/dist/src/context/utils/adaptiveTokenCalculator.test.d.ts +6 -0
- package/dist/src/context/utils/adaptiveTokenCalculator.test.js +129 -0
- package/dist/src/context/utils/adaptiveTokenCalculator.test.js.map +1 -0
- package/dist/src/context/utils/contextTokenCalculator.d.ts +63 -2
- package/dist/src/context/utils/contextTokenCalculator.js +80 -5
- package/dist/src/context/utils/contextTokenCalculator.js.map +1 -1
- package/dist/src/context/utils/contextTokenCalculator.test.d.ts +6 -0
- package/dist/src/context/utils/contextTokenCalculator.test.js +54 -0
- package/dist/src/context/utils/contextTokenCalculator.test.js.map +1 -0
- package/dist/src/context/utils/formatNodesForLlm.d.ts +21 -0
- package/dist/src/context/utils/formatNodesForLlm.js +69 -0
- package/dist/src/context/utils/formatNodesForLlm.js.map +1 -0
- package/dist/src/context/utils/formatNodesForLlm.test.d.ts +6 -0
- package/dist/src/context/utils/formatNodesForLlm.test.js +110 -0
- package/dist/src/context/utils/formatNodesForLlm.test.js.map +1 -0
- package/dist/src/context/utils/invariantChecker.d.ts +11 -0
- package/dist/src/context/utils/invariantChecker.js +36 -0
- package/dist/src/context/utils/invariantChecker.js.map +1 -0
- package/dist/src/context/utils/snapshotGenerator.d.ts +43 -1
- package/dist/src/context/utils/snapshotGenerator.js +332 -33
- package/dist/src/context/utils/snapshotGenerator.js.map +1 -1
- package/dist/src/context/utils/snapshotGenerator.test.d.ts +6 -0
- package/dist/src/context/utils/snapshotGenerator.test.js +362 -0
- package/dist/src/context/utils/snapshotGenerator.test.js.map +1 -0
- package/dist/src/context/utils/tokenCalibration.d.ts +9 -0
- package/dist/src/context/utils/tokenCalibration.js +30 -0
- package/dist/src/context/utils/tokenCalibration.js.map +1 -0
- package/dist/src/core/agentChatHistory.d.ts +29 -14
- package/dist/src/core/agentChatHistory.js +27 -27
- package/dist/src/core/agentChatHistory.js.map +1 -1
- package/dist/src/core/baseLlmClient.d.ts +8 -0
- package/dist/src/core/baseLlmClient.js +23 -3
- package/dist/src/core/baseLlmClient.js.map +1 -1
- package/dist/src/core/baseLlmClient.test.js +27 -23
- package/dist/src/core/baseLlmClient.test.js.map +1 -1
- package/dist/src/core/client.d.ts +7 -5
- package/dist/src/core/client.js +65 -40
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/client.test.js +35 -131
- package/dist/src/core/client.test.js.map +1 -1
- package/dist/src/core/contentGenerator.js +46 -21
- package/dist/src/core/contentGenerator.js.map +1 -1
- package/dist/src/core/contentGenerator.test.js +191 -13
- package/dist/src/core/contentGenerator.test.js.map +1 -1
- package/dist/src/core/fakeContentGenerator.d.ts +15 -3
- package/dist/src/core/fakeContentGenerator.js +29 -9
- package/dist/src/core/fakeContentGenerator.js.map +1 -1
- package/dist/src/core/geminiChat.d.ts +18 -7
- package/dist/src/core/geminiChat.js +312 -54
- package/dist/src/core/geminiChat.js.map +1 -1
- package/dist/src/core/geminiChat.test.js +448 -54
- package/dist/src/core/geminiChat.test.js.map +1 -1
- package/dist/src/core/geminiChat_network_retry.test.js +39 -0
- package/dist/src/core/geminiChat_network_retry.test.js.map +1 -1
- package/dist/src/core/localLiteRtLmClient.js +6 -2
- package/dist/src/core/localLiteRtLmClient.js.map +1 -1
- package/dist/src/core/prompts.test.js +12 -7
- package/dist/src/core/prompts.test.js.map +1 -1
- package/dist/src/core/turn.d.ts +7 -2
- package/dist/src/core/turn.js +61 -4
- package/dist/src/core/turn.js.map +1 -1
- package/dist/src/core/turn.test.js +19 -10
- package/dist/src/core/turn.test.js.map +1 -1
- package/dist/src/fallback/handler.js +16 -6
- package/dist/src/fallback/handler.js.map +1 -1
- package/dist/src/fallback/handler.test.js +8 -2
- package/dist/src/fallback/handler.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 +3 -2
- package/dist/src/hooks/hookEventHandler.js.map +1 -1
- package/dist/src/hooks/hookEventHandler.test.js +80 -0
- package/dist/src/hooks/hookEventHandler.test.js.map +1 -1
- package/dist/src/hooks/hookRunner.test.js +3 -3
- package/dist/src/hooks/hookRunner.test.js.map +1 -1
- package/dist/src/hooks/hookTranslator.js +95 -5
- package/dist/src/hooks/hookTranslator.js.map +1 -1
- package/dist/src/hooks/hookTranslator.test.js +171 -0
- package/dist/src/hooks/hookTranslator.test.js.map +1 -1
- package/dist/src/ide/ide-client.js +5 -3
- package/dist/src/ide/ide-client.js.map +1 -1
- package/dist/src/ide/ide-connection-utils.js +12 -10
- package/dist/src/ide/ide-connection-utils.js.map +1 -1
- package/dist/src/ide/ide-connection-utils.test.js +25 -2
- package/dist/src/ide/ide-connection-utils.test.js.map +1 -1
- package/dist/src/ide/types.d.ts +16 -16
- package/dist/src/index.d.ts +5 -2
- package/dist/src/index.js +5 -3
- package/dist/src/index.js.map +1 -1
- package/dist/src/mcp/oauth-provider.d.ts +8 -0
- package/dist/src/mcp/oauth-provider.js +41 -0
- package/dist/src/mcp/oauth-provider.js.map +1 -1
- package/dist/src/mcp/oauth-token-storage.js +7 -1
- package/dist/src/mcp/oauth-token-storage.js.map +1 -1
- package/dist/src/mcp/oauth-token-storage.test.js +55 -0
- package/dist/src/mcp/oauth-token-storage.test.js.map +1 -1
- package/dist/src/mcp/stored-token-provider.d.ts +27 -0
- package/dist/src/mcp/stored-token-provider.js +76 -0
- package/dist/src/mcp/stored-token-provider.js.map +1 -0
- package/dist/src/mcp/token-storage/keychain-token-storage.js +2 -2
- package/dist/src/mcp/token-storage/keychain-token-storage.js.map +1 -1
- package/dist/src/mcp/token-storage/keychain-token-storage.test.js +14 -1
- package/dist/src/mcp/token-storage/keychain-token-storage.test.js.map +1 -1
- package/dist/src/output/json-formatter.d.ts +1 -1
- package/dist/src/output/json-formatter.js +4 -1
- package/dist/src/output/json-formatter.js.map +1 -1
- package/dist/src/output/json-formatter.test.js +7 -0
- package/dist/src/output/json-formatter.test.js.map +1 -1
- package/dist/src/output/types.d.ts +1 -0
- package/dist/src/output/types.js.map +1 -1
- package/dist/src/policy/config.js +25 -0
- package/dist/src/policy/config.js.map +1 -1
- package/dist/src/policy/config.test.js +80 -0
- package/dist/src/policy/config.test.js.map +1 -1
- package/dist/src/policy/core-tools-mapping.test.js +9 -1
- package/dist/src/policy/core-tools-mapping.test.js.map +1 -1
- package/dist/src/policy/policies/plan.toml +1 -1
- package/dist/src/policy/policies/write.toml +0 -7
- package/dist/src/policy/policy-engine.test.js +0 -8
- package/dist/src/policy/policy-engine.test.js.map +1 -1
- package/dist/src/policy/sandboxPolicyManager.d.ts +20 -20
- package/dist/src/policy/stable-stringify.js +10 -6
- package/dist/src/policy/stable-stringify.js.map +1 -1
- package/dist/src/policy/stable-stringify.test.js +157 -0
- package/dist/src/policy/stable-stringify.test.js.map +1 -0
- package/dist/src/policy/types.d.ts +1 -0
- package/dist/src/policy/types.js.map +1 -1
- package/dist/src/prompts/promptProvider.js +8 -9
- package/dist/src/prompts/promptProvider.js.map +1 -1
- package/dist/src/prompts/promptProvider.test.js +3 -1
- package/dist/src/prompts/promptProvider.test.js.map +1 -1
- package/dist/src/prompts/snippets-memory.test.d.ts +6 -0
- package/dist/src/prompts/{snippets-memory-v2.test.js → snippets-memory.test.js} +5 -23
- package/dist/src/prompts/snippets-memory.test.js.map +1 -0
- package/dist/src/prompts/snippets.d.ts +6 -11
- package/dist/src/prompts/snippets.js +28 -30
- package/dist/src/prompts/snippets.js.map +1 -1
- package/dist/src/prompts/snippets.legacy.d.ts +0 -1
- package/dist/src/prompts/snippets.legacy.js +8 -15
- package/dist/src/prompts/snippets.legacy.js.map +1 -1
- package/dist/src/routing/strategies/approvalModeStrategy.js +5 -3
- package/dist/src/routing/strategies/approvalModeStrategy.js.map +1 -1
- package/dist/src/routing/strategies/approvalModeStrategy.test.js +9 -0
- package/dist/src/routing/strategies/approvalModeStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/classifierStrategy.js +18 -4
- package/dist/src/routing/strategies/classifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/classifierStrategy.test.js +77 -1
- package/dist/src/routing/strategies/classifierStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/defaultStrategy.js +1 -1
- package/dist/src/routing/strategies/defaultStrategy.js.map +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.js +1 -1
- package/dist/src/routing/strategies/fallbackStrategy.js.map +1 -1
- package/dist/src/routing/strategies/gemmaClassifierStrategy.js +7 -1
- package/dist/src/routing/strategies/gemmaClassifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/gemmaClassifierStrategy.test.js +15 -1
- package/dist/src/routing/strategies/gemmaClassifierStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.d.ts +1 -0
- package/dist/src/routing/strategies/numericalClassifierStrategy.js +32 -5
- package/dist/src/routing/strategies/numericalClassifierStrategy.js.map +1 -1
- package/dist/src/routing/strategies/numericalClassifierStrategy.test.js +247 -25
- package/dist/src/routing/strategies/numericalClassifierStrategy.test.js.map +1 -1
- package/dist/src/routing/strategies/overrideStrategy.js +1 -1
- package/dist/src/routing/strategies/overrideStrategy.js.map +1 -1
- package/dist/src/sandbox/utils/commandSafety.js +22 -2
- package/dist/src/sandbox/utils/commandSafety.js.map +1 -1
- package/dist/src/sandbox/utils/commandSafety.test.d.ts +6 -0
- package/dist/src/sandbox/utils/commandSafety.test.js +85 -0
- package/dist/src/sandbox/utils/commandSafety.test.js.map +1 -0
- package/dist/src/scheduler/confirmation.test.js +29 -0
- package/dist/src/scheduler/confirmation.test.js.map +1 -1
- package/dist/src/scheduler/scheduler.js +15 -0
- package/dist/src/scheduler/scheduler.js.map +1 -1
- package/dist/src/scheduler/scheduler.test.js +1 -1
- package/dist/src/scheduler/scheduler.test.js.map +1 -1
- package/dist/src/scheduler/scheduler_parallel.test.js +37 -0
- package/dist/src/scheduler/scheduler_parallel.test.js.map +1 -1
- package/dist/src/scheduler/state-manager.js +5 -1
- package/dist/src/scheduler/state-manager.js.map +1 -1
- package/dist/src/scheduler/tool-executor.js +7 -4
- package/dist/src/scheduler/tool-executor.js.map +1 -1
- package/dist/src/scheduler/types.d.ts +5 -1
- package/dist/src/scheduler/types.js.map +1 -1
- package/dist/src/services/chatRecordingService.d.ts +14 -7
- package/dist/src/services/chatRecordingService.js +157 -133
- package/dist/src/services/chatRecordingService.js.map +1 -1
- package/dist/src/services/chatRecordingService.test.js +189 -52
- package/dist/src/services/chatRecordingService.test.js.map +1 -1
- package/dist/src/services/fileDiscoveryService.js +2 -1
- package/dist/src/services/fileDiscoveryService.js.map +1 -1
- package/dist/src/services/fileDiscoveryService.test.js +36 -0
- package/dist/src/services/fileDiscoveryService.test.js.map +1 -1
- package/dist/src/services/gitService.js +43 -4
- package/dist/src/services/gitService.js.map +1 -1
- package/dist/src/services/gitService.test.js +105 -1
- package/dist/src/services/gitService.test.js.map +1 -1
- package/dist/src/services/keychainService.js +14 -5
- package/dist/src/services/keychainService.js.map +1 -1
- package/dist/src/services/memoryPatchUtils.d.ts +93 -0
- package/dist/src/services/memoryPatchUtils.js +310 -2
- package/dist/src/services/memoryPatchUtils.js.map +1 -1
- package/dist/src/services/memoryService.d.ts +2 -0
- package/dist/src/services/memoryService.js +214 -9
- package/dist/src/services/memoryService.js.map +1 -1
- package/dist/src/services/memoryService.test.js +133 -0
- package/dist/src/services/memoryService.test.js.map +1 -1
- package/dist/src/services/modelConfigService.d.ts +3 -0
- package/dist/src/services/modelConfigService.js +22 -13
- package/dist/src/services/modelConfigService.js.map +1 -1
- package/dist/src/services/modelConfigService.test.js +73 -0
- package/dist/src/services/modelConfigService.test.js.map +1 -1
- package/dist/src/services/shellExecutionService.js +88 -41
- package/dist/src/services/shellExecutionService.js.map +1 -1
- package/dist/src/services/shellExecutionService.test.js +22 -9
- package/dist/src/services/shellExecutionService.test.js.map +1 -1
- package/dist/src/services/shellExecutionService.windows.integration.test.d.ts +6 -0
- package/dist/src/services/shellExecutionService.windows.integration.test.js +63 -0
- package/dist/src/services/shellExecutionService.windows.integration.test.js.map +1 -0
- package/dist/src/services/test-data/resolved-aliases-retry.golden.json +85 -7
- package/dist/src/services/test-data/resolved-aliases.golden.json +85 -7
- package/dist/src/services/trackerTypes.d.ts +4 -4
- package/dist/src/skills/skillManager.d.ts +4 -0
- package/dist/src/skills/skillManager.js +6 -0
- package/dist/src/skills/skillManager.js.map +1 -1
- package/dist/src/skills/skillManager.test.js +10 -0
- package/dist/src/skills/skillManager.test.js.map +1 -1
- package/dist/src/telemetry/file-exporters.d.ts +4 -1
- package/dist/src/telemetry/file-exporters.js +21 -3
- package/dist/src/telemetry/file-exporters.js.map +1 -1
- package/dist/src/telemetry/file-exporters.test.js +32 -2
- package/dist/src/telemetry/file-exporters.test.js.map +1 -1
- package/dist/src/telemetry/gcp-exporters.d.ts +3 -0
- package/dist/src/telemetry/gcp-exporters.js +72 -5
- package/dist/src/telemetry/gcp-exporters.js.map +1 -1
- package/dist/src/telemetry/gcp-exporters.test.js +52 -0
- package/dist/src/telemetry/gcp-exporters.test.js.map +1 -1
- package/dist/src/telemetry/heap-snapshot.d.ts +12 -0
- package/dist/src/telemetry/heap-snapshot.js +35 -0
- package/dist/src/telemetry/heap-snapshot.js.map +1 -0
- package/dist/src/telemetry/heap-snapshot.test.d.ts +6 -0
- package/dist/src/telemetry/heap-snapshot.test.js +38 -0
- package/dist/src/telemetry/heap-snapshot.test.js.map +1 -0
- package/dist/src/telemetry/index.d.ts +1 -0
- package/dist/src/telemetry/index.js +1 -0
- package/dist/src/telemetry/index.js.map +1 -1
- package/dist/src/telemetry/loggers.test.js +1 -0
- package/dist/src/telemetry/loggers.test.js.map +1 -1
- package/dist/src/telemetry/memory-monitor.d.ts +5 -0
- package/dist/src/telemetry/memory-monitor.js +8 -0
- package/dist/src/telemetry/memory-monitor.js.map +1 -1
- package/dist/src/telemetry/metrics.js +13 -2
- package/dist/src/telemetry/metrics.js.map +1 -1
- package/dist/src/telemetry/metrics.test.js +61 -1
- package/dist/src/telemetry/metrics.test.js.map +1 -1
- package/dist/src/test-utils/config.js +10 -1
- package/dist/src/test-utils/config.js.map +1 -1
- package/dist/src/tools/ask-user.js +25 -1
- package/dist/src/tools/ask-user.js.map +1 -1
- package/dist/src/tools/ask-user.test.js +46 -1
- package/dist/src/tools/ask-user.test.js.map +1 -1
- package/dist/src/tools/definitions/base-declarations.d.ts +0 -3
- package/dist/src/tools/definitions/base-declarations.js +0 -4
- package/dist/src/tools/definitions/base-declarations.js.map +1 -1
- package/dist/src/tools/definitions/coreTools.d.ts +1 -2
- package/dist/src/tools/definitions/coreTools.js +2 -8
- package/dist/src/tools/definitions/coreTools.js.map +1 -1
- package/dist/src/tools/definitions/coreToolsModelSnapshots.test.js +1 -2
- package/dist/src/tools/definitions/coreToolsModelSnapshots.test.js.map +1 -1
- package/dist/src/tools/definitions/model-family-sets/default-legacy.js +7 -31
- 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 +9 -26
- package/dist/src/tools/definitions/model-family-sets/gemini-3.js.map +1 -1
- package/dist/src/tools/definitions/types.d.ts +0 -1
- package/dist/src/tools/edit.js +27 -5
- package/dist/src/tools/edit.js.map +1 -1
- package/dist/src/tools/edit.test.js +37 -0
- package/dist/src/tools/edit.test.js.map +1 -1
- package/dist/src/tools/grep.js +14 -2
- package/dist/src/tools/grep.js.map +1 -1
- package/dist/src/tools/grep.test.js +17 -0
- package/dist/src/tools/grep.test.js.map +1 -1
- package/dist/src/tools/jit-context.d.ts +1 -1
- package/dist/src/tools/jit-context.js +1 -4
- package/dist/src/tools/jit-context.js.map +1 -1
- package/dist/src/tools/jit-context.test.js +1 -13
- package/dist/src/tools/jit-context.test.js.map +1 -1
- package/dist/src/tools/ls.js +5 -0
- package/dist/src/tools/ls.js.map +1 -1
- package/dist/src/tools/mcp-client-manager.js +2 -1
- package/dist/src/tools/mcp-client-manager.js.map +1 -1
- package/dist/src/tools/mcp-client-manager.test.js +29 -0
- package/dist/src/tools/mcp-client-manager.test.js.map +1 -1
- package/dist/src/tools/mcp-client.js +89 -50
- package/dist/src/tools/mcp-client.js.map +1 -1
- package/dist/src/tools/mcp-client.test.js +353 -59
- package/dist/src/tools/mcp-client.test.js.map +1 -1
- package/dist/src/tools/{xcode-mcp-fix-transport.d.ts → mcp-compliance-transport.d.ts} +6 -6
- package/dist/src/tools/{xcode-mcp-fix-transport.js → mcp-compliance-transport.js} +6 -6
- package/dist/src/tools/mcp-compliance-transport.js.map +1 -0
- package/dist/src/tools/mcp-compliance-transport.test.d.ts +6 -0
- package/dist/src/tools/mcp-compliance-transport.test.js +162 -0
- package/dist/src/tools/mcp-compliance-transport.test.js.map +1 -0
- package/dist/src/tools/memoryTool.d.ts +9 -31
- package/dist/src/tools/memoryTool.js +47 -262
- package/dist/src/tools/memoryTool.js.map +1 -1
- package/dist/src/tools/memoryTool.test.js +41 -312
- package/dist/src/tools/memoryTool.test.js.map +1 -1
- package/dist/src/tools/read-file.js +11 -6
- package/dist/src/tools/read-file.js.map +1 -1
- package/dist/src/tools/read-file.test.js +20 -8
- package/dist/src/tools/read-file.test.js.map +1 -1
- package/dist/src/tools/read-many-files.js +2 -2
- package/dist/src/tools/read-many-files.js.map +1 -1
- package/dist/src/tools/ripGrep.d.ts +3 -7
- package/dist/src/tools/ripGrep.js +57 -35
- package/dist/src/tools/ripGrep.js.map +1 -1
- package/dist/src/tools/ripGrep.test.js +197 -276
- package/dist/src/tools/ripGrep.test.js.map +1 -1
- package/dist/src/tools/shell.d.ts +5 -3
- package/dist/src/tools/shell.js +130 -36
- package/dist/src/tools/shell.js.map +1 -1
- package/dist/src/tools/shell.test.js +186 -14
- package/dist/src/tools/shell.test.js.map +1 -1
- package/dist/src/tools/shell_proactive.test.js +1 -0
- package/dist/src/tools/shell_proactive.test.js.map +1 -1
- package/dist/src/tools/tool-names.d.ts +3 -3
- package/dist/src/tools/tool-names.js +4 -5
- package/dist/src/tools/tool-names.js.map +1 -1
- package/dist/src/tools/tool-registry.js +1 -1
- package/dist/src/tools/tool-registry.js.map +1 -1
- package/dist/src/tools/tools.d.ts +6 -0
- package/dist/src/tools/tools.js.map +1 -1
- package/dist/src/tools/topicTool.js +5 -0
- package/dist/src/tools/topicTool.js.map +1 -1
- package/dist/src/tools/write-file.js +13 -0
- package/dist/src/tools/write-file.js.map +1 -1
- package/dist/src/tools/write-file.test.js +8 -0
- package/dist/src/tools/write-file.test.js.map +1 -1
- package/dist/src/utils/atCommandUtils.d.ts +35 -0
- package/dist/src/utils/atCommandUtils.js +163 -0
- package/dist/src/utils/atCommandUtils.js.map +1 -0
- package/dist/src/utils/atCommandUtils.test.d.ts +6 -0
- package/dist/src/utils/atCommandUtils.test.js +292 -0
- package/dist/src/utils/atCommandUtils.test.js.map +1 -0
- package/dist/src/utils/channel.d.ts +8 -0
- package/dist/src/utils/channel.js +21 -10
- package/dist/src/utils/channel.js.map +1 -1
- package/dist/src/utils/cryptoUtils.d.ts +11 -0
- package/dist/src/utils/cryptoUtils.js +19 -0
- package/dist/src/utils/cryptoUtils.js.map +1 -0
- package/dist/src/utils/cryptoUtils.test.d.ts +6 -0
- package/dist/src/utils/cryptoUtils.test.js +31 -0
- package/dist/src/utils/cryptoUtils.test.js.map +1 -0
- package/dist/src/utils/editor.d.ts +29 -3
- package/dist/src/utils/editor.js +94 -3
- package/dist/src/utils/editor.js.map +1 -1
- package/dist/src/utils/editor.test.js +176 -2
- package/dist/src/utils/editor.test.js.map +1 -1
- package/dist/src/utils/environmentContext.d.ts +2 -1
- package/dist/src/utils/environmentContext.js +15 -8
- package/dist/src/utils/environmentContext.js.map +1 -1
- package/dist/src/utils/environmentContext.test.js +4 -14
- package/dist/src/utils/environmentContext.test.js.map +1 -1
- package/dist/src/utils/errors.js +3 -8
- package/dist/src/utils/errors.js.map +1 -1
- package/dist/src/utils/events.d.ts +26 -1
- package/dist/src/utils/events.js +21 -2
- package/dist/src/utils/events.js.map +1 -1
- package/dist/src/utils/events.test.js +39 -0
- package/dist/src/utils/events.test.js.map +1 -1
- package/dist/src/utils/extensionLoader.js +2 -2
- package/dist/src/utils/extensionLoader.js.map +1 -1
- package/dist/src/utils/extensionLoader.test.js +22 -15
- package/dist/src/utils/extensionLoader.test.js.map +1 -1
- package/dist/src/utils/fetch.d.ts +3 -3
- package/dist/src/utils/fetch.js +41 -17
- package/dist/src/utils/fetch.js.map +1 -1
- package/dist/src/utils/fetch.test.js +93 -17
- package/dist/src/utils/fetch.test.js.map +1 -1
- package/dist/src/utils/fileUtils.js +4 -1
- package/dist/src/utils/fileUtils.js.map +1 -1
- package/dist/src/utils/filesearch/fileSearch.js +20 -9
- package/dist/src/utils/filesearch/fileSearch.js.map +1 -1
- package/dist/src/utils/filesearch/ignore.js +4 -1
- package/dist/src/utils/filesearch/ignore.js.map +1 -1
- package/dist/src/utils/generateContentResponseUtilities.d.ts +1 -0
- package/dist/src/utils/generateContentResponseUtilities.js +37 -7
- package/dist/src/utils/generateContentResponseUtilities.js.map +1 -1
- package/dist/src/utils/generateContentResponseUtilities.test.js +33 -0
- package/dist/src/utils/generateContentResponseUtilities.test.js.map +1 -1
- package/dist/src/utils/gitUtils.d.ts +5 -0
- package/dist/src/utils/gitUtils.js +11 -0
- package/dist/src/utils/gitUtils.js.map +1 -1
- package/dist/src/utils/historyHardening.d.ts +37 -0
- package/dist/src/utils/historyHardening.js +332 -0
- package/dist/src/utils/historyHardening.js.map +1 -0
- package/dist/src/utils/historyHardening.test.d.ts +6 -0
- package/dist/src/utils/historyHardening.test.js +317 -0
- package/dist/src/utils/historyHardening.test.js.map +1 -0
- package/dist/src/utils/ignoreFileParser.js +1 -1
- package/dist/src/utils/ignoreFileParser.js.map +1 -1
- package/dist/src/utils/ignorePatterns.js +2 -0
- package/dist/src/utils/ignorePatterns.js.map +1 -1
- package/dist/src/utils/ignorePatterns.test.js +1 -0
- package/dist/src/utils/ignorePatterns.test.js.map +1 -1
- package/dist/src/utils/memoryDiscovery.d.ts +0 -20
- package/dist/src/utils/memoryDiscovery.js +57 -220
- package/dist/src/utils/memoryDiscovery.js.map +1 -1
- package/dist/src/utils/memoryDiscovery.test.js +112 -403
- package/dist/src/utils/memoryDiscovery.test.js.map +1 -1
- package/dist/src/utils/modelUtils.d.ts +14 -0
- package/dist/src/utils/modelUtils.js +17 -0
- package/dist/src/utils/modelUtils.js.map +1 -0
- package/dist/src/utils/modelUtils.test.d.ts +6 -0
- package/dist/src/utils/modelUtils.test.js +23 -0
- package/dist/src/utils/modelUtils.test.js.map +1 -0
- package/dist/src/utils/partUtils.d.ts +26 -1
- package/dist/src/utils/partUtils.js +37 -0
- package/dist/src/utils/partUtils.js.map +1 -1
- package/dist/src/utils/path-validator.d.ts +17 -0
- package/dist/src/utils/path-validator.js +76 -0
- package/dist/src/utils/path-validator.js.map +1 -0
- package/dist/src/utils/path-validator.test.d.ts +6 -0
- package/dist/src/utils/path-validator.test.js +91 -0
- package/dist/src/utils/path-validator.test.js.map +1 -0
- package/dist/src/utils/pathReader.js +12 -0
- package/dist/src/utils/pathReader.js.map +1 -1
- package/dist/src/utils/pathReader.test.js +95 -0
- package/dist/src/utils/pathReader.test.js.map +1 -1
- package/dist/src/utils/paths.d.ts +19 -1
- package/dist/src/utils/paths.js +74 -9
- package/dist/src/utils/paths.js.map +1 -1
- package/dist/src/utils/paths.test.js +111 -1
- package/dist/src/utils/paths.test.js.map +1 -1
- package/dist/src/utils/quotaErrorDetection.js +23 -12
- package/dist/src/utils/quotaErrorDetection.js.map +1 -1
- package/dist/src/utils/ragLogger.d.ts +32 -0
- package/dist/src/utils/ragLogger.js +56 -0
- package/dist/src/utils/ragLogger.js.map +1 -0
- package/dist/src/utils/ragLogger.test.d.ts +6 -0
- package/dist/src/utils/ragLogger.test.js +97 -0
- package/dist/src/utils/ragLogger.test.js.map +1 -0
- package/dist/src/utils/retry.js +8 -3
- package/dist/src/utils/retry.js.map +1 -1
- package/dist/src/utils/retry.test.js +17 -0
- package/dist/src/utils/retry.test.js.map +1 -1
- package/dist/src/utils/safeJsonStringify.js +0 -2
- package/dist/src/utils/safeJsonStringify.js.map +1 -1
- package/dist/src/utils/sessionOperations.d.ts +26 -0
- package/dist/src/utils/sessionOperations.js +177 -8
- package/dist/src/utils/sessionOperations.js.map +1 -1
- package/dist/src/utils/sessionUtils.d.ts +11 -5
- package/dist/src/utils/sessionUtils.js +139 -68
- package/dist/src/utils/sessionUtils.js.map +1 -1
- package/dist/src/utils/sessionUtils.test.js +31 -5
- package/dist/src/utils/sessionUtils.test.js.map +1 -1
- package/dist/src/utils/shell-utils.d.ts +9 -1
- package/dist/src/utils/shell-utils.js +51 -20
- package/dist/src/utils/shell-utils.js.map +1 -1
- package/dist/src/utils/shell-utils.test.js +87 -46
- package/dist/src/utils/shell-utils.test.js.map +1 -1
- package/dist/src/utils/textUtils.d.ts +12 -2
- package/dist/src/utils/textUtils.js +30 -3
- package/dist/src/utils/textUtils.js.map +1 -1
- package/dist/src/utils/textUtils.test.js +96 -1
- package/dist/src/utils/textUtils.test.js.map +1 -1
- package/dist/src/utils/tokenCalculation.d.ts +3 -2
- package/dist/src/utils/tokenCalculation.js +9 -5
- package/dist/src/utils/tokenCalculation.js.map +1 -1
- package/dist/src/utils/tokenCalculation.test.js +15 -0
- package/dist/src/utils/tokenCalculation.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -18
- package/dist/src/context/historyObserver.d.ts +0 -28
- package/dist/src/context/historyObserver.js +0 -63
- package/dist/src/context/historyObserver.js.map +0 -1
- package/dist/src/policy/memory-manager-policy.test.js +0 -80
- package/dist/src/policy/memory-manager-policy.test.js.map +0 -1
- package/dist/src/policy/policies/memory-manager.toml +0 -20
- package/dist/src/prompts/snippets-memory-v2.test.js.map +0 -1
- package/dist/src/tools/xcode-mcp-fix-transport.js.map +0 -1
- package/dist/src/tools/xcode-mcp-fix-transport.test.d.ts +0 -1
- package/dist/src/tools/xcode-mcp-fix-transport.test.js +0 -98
- package/dist/src/tools/xcode-mcp-fix-transport.test.js.map +0 -1
- package/dist/src/utils/systemEncoding.d.ts +0 -40
- package/dist/src/utils/systemEncoding.js +0 -150
- package/dist/src/utils/systemEncoding.js.map +0 -1
- package/dist/src/utils/systemEncoding.test.js +0 -369
- package/dist/src/utils/systemEncoding.test.js.map +0 -1
- /package/dist/src/{policy/memory-manager-policy.test.d.ts → agents/local-session-invocation.test.d.ts} +0 -0
- /package/dist/src/{prompts/snippets-memory-v2.test.d.ts → agents/local-subagent-protocol.test.d.ts} +0 -0
- /package/dist/src/{utils/systemEncoding.test.d.ts → policy/stable-stringify.test.d.ts} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Preview release: v0.
|
|
1
|
+
# Preview release: v0.44.0-preview.0
|
|
2
2
|
|
|
3
|
-
Released:
|
|
3
|
+
Released: May 22, 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,395 +13,208 @@ 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
|
-
notifications and GitHub colorblind themes for better user feedback and
|
|
29
|
-
accessibility.
|
|
16
|
+
- **Simplified Modes:** Merged existing Auto modes into a single, unified Auto
|
|
17
|
+
mode for a more streamlined user experience.
|
|
18
|
+
- **Enhanced Agent Registration:** Improved agent registration logic to
|
|
19
|
+
prioritize project-specific agents using a first-wins strategy.
|
|
20
|
+
- **New Developer Skills:** Introduced `agent-tui` and `tui-tester` skills to
|
|
21
|
+
empower developers with better terminal UI testing and automation
|
|
22
|
+
capabilities.
|
|
23
|
+
- **Expanded Editor Support:** Added support for Sublime Text and Emacs Client,
|
|
24
|
+
providing more flexibility for external editing tasks.
|
|
25
|
+
- **Session Management:** Added new session invocation types
|
|
26
|
+
(`LocalSessionInvocation`, `RemoteSessionInvocation`) and improved context
|
|
27
|
+
recovery across sessions.
|
|
30
28
|
|
|
31
29
|
## What's Changed
|
|
32
30
|
|
|
33
|
-
-
|
|
34
|
-
in [#25874](https://github.com/google-gemini/gemini-cli/pull/25874)
|
|
35
|
-
- feat(core): enhance shell command validation and add core tools allowlist by
|
|
36
|
-
@galz10 in [#25720](https://github.com/google-gemini/gemini-cli/pull/25720)
|
|
37
|
-
- feat(cli): secure .env loading and enforce workspace trust in headless mode by
|
|
38
|
-
@ehedlund in [#25814](https://github.com/google-gemini/gemini-cli/pull/25814)
|
|
39
|
-
- chore(release): bump version to 0.40.0-nightly.20260414.g5b1f7375a by
|
|
31
|
+
- chore(release): bump version to 0.44.0-nightly.20260512.g022e8baef by
|
|
40
32
|
@gemini-cli-robot in
|
|
41
|
-
[#
|
|
42
|
-
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
[#
|
|
47
|
-
-
|
|
48
|
-
[#
|
|
49
|
-
-
|
|
50
|
-
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
[#
|
|
54
|
-
-
|
|
55
|
-
@
|
|
56
|
-
[#
|
|
57
|
-
-
|
|
58
|
-
|
|
59
|
-
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
[#
|
|
64
|
-
-
|
|
65
|
-
[#
|
|
66
|
-
-
|
|
67
|
-
[#
|
|
68
|
-
- fix(
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
-
|
|
72
|
-
|
|
73
|
-
-
|
|
74
|
-
|
|
75
|
-
[#
|
|
76
|
-
-
|
|
77
|
-
in [#
|
|
78
|
-
-
|
|
79
|
-
[#
|
|
80
|
-
- fix(
|
|
81
|
-
|
|
82
|
-
[#
|
|
83
|
-
-
|
|
84
|
-
[#
|
|
85
|
-
- fix(
|
|
86
|
-
[#
|
|
87
|
-
-
|
|
88
|
-
[#
|
|
89
|
-
-
|
|
90
|
-
|
|
91
|
-
-
|
|
92
|
-
|
|
93
|
-
-
|
|
94
|
-
|
|
95
|
-
[#25338](https://github.com/google-gemini/gemini-cli/pull/25338)
|
|
96
|
-
- feat(sandbox): resolve custom seatbelt profiles from $HOME/.cell-cli first by
|
|
97
|
-
@mvanhorn in [#25427](https://github.com/google-gemini/gemini-cli/pull/25427)
|
|
98
|
-
- Reduce blank lines. by @gundermanc in
|
|
99
|
-
[#25563](https://github.com/google-gemini/gemini-cli/pull/25563)
|
|
100
|
-
- fix(ui): revert preview theme on dialog unmount by @JayadityaGit in
|
|
101
|
-
[#22542](https://github.com/google-gemini/gemini-cli/pull/22542)
|
|
102
|
-
- fix(core): fix ShellExecutionConfig spread and add ProjectRegistry save
|
|
103
|
-
backoff by @mahimashanware in
|
|
104
|
-
[#25382](https://github.com/google-gemini/gemini-cli/pull/25382)
|
|
105
|
-
- feat(core): Disable topic updates for subagents by @gundermanc in
|
|
106
|
-
[#25567](https://github.com/google-gemini/gemini-cli/pull/25567)
|
|
107
|
-
- feat(core): enable topic update narration by default and promote to general by
|
|
108
|
-
@gundermanc in
|
|
109
|
-
[#25586](https://github.com/google-gemini/gemini-cli/pull/25586)
|
|
110
|
-
- docs: migrate installation and authentication to mdx with tabbed layouts by
|
|
111
|
-
@g-samroberts in
|
|
112
|
-
[#25155](https://github.com/google-gemini/gemini-cli/pull/25155)
|
|
113
|
-
- feat(config): split memoryManager flag into autoMemory by @SandyTao520 in
|
|
114
|
-
[#25601](https://github.com/google-gemini/gemini-cli/pull/25601)
|
|
115
|
-
- fix(core): allow Cloud Shell users to use PRO_MODEL_NO_ACCESS experiment by
|
|
116
|
-
@sehoon38 in [#25702](https://github.com/google-gemini/gemini-cli/pull/25702)
|
|
117
|
-
- fix(cli): round slow render latency to avoid opentelemetry float warning by
|
|
118
|
-
@scidomino in [#25709](https://github.com/google-gemini/gemini-cli/pull/25709)
|
|
119
|
-
- docs(tracker): introduce experimental task tracker feature by @anj-s in
|
|
120
|
-
[#24556](https://github.com/google-gemini/gemini-cli/pull/24556)
|
|
121
|
-
- docs(cli): fix inconsistent system.md casing in system prompt docs by @Bodlux
|
|
122
|
-
in [#25414](https://github.com/google-gemini/gemini-cli/pull/25414)
|
|
123
|
-
- feat(cli): add streamlined `gemini gemma` local model setup by @Samee24 in
|
|
124
|
-
[#25498](https://github.com/google-gemini/gemini-cli/pull/25498)
|
|
125
|
-
- Changelog for v0.38.2 by @gemini-cli-robot in
|
|
126
|
-
[#25593](https://github.com/google-gemini/gemini-cli/pull/25593)
|
|
127
|
-
- Fix: Disallow overriding IDE stdio via workspace .env (RCE) by @M0nd0R in
|
|
128
|
-
[#25022](https://github.com/google-gemini/gemini-cli/pull/25022)
|
|
129
|
-
- feat(test): refactor the memory usage test to use metrics from CLI process
|
|
130
|
-
instead of test runner by @cynthialong0-0 in
|
|
131
|
-
[#25708](https://github.com/google-gemini/gemini-cli/pull/25708)
|
|
132
|
-
- feat(vertex): add settings for Vertex AI request routing by @gordonhwc in
|
|
133
|
-
[#25513](https://github.com/google-gemini/gemini-cli/pull/25513)
|
|
134
|
-
- Fix/allow for session persistence by @ahsanfarooq210 in
|
|
135
|
-
[#25176](https://github.com/google-gemini/gemini-cli/pull/25176)
|
|
136
|
-
- Allow dots on GEMINI_API_KEY by @DKbyo in
|
|
137
|
-
[#25497](https://github.com/google-gemini/gemini-cli/pull/25497)
|
|
138
|
-
- feat(telemetry): add flag for enabling traces specifically by @spencer426 in
|
|
139
|
-
[#25343](https://github.com/google-gemini/gemini-cli/pull/25343)
|
|
140
|
-
- fix(core): resolve nested plan directory duplication and relative path
|
|
141
|
-
policies by @mahimashanware in
|
|
142
|
-
[#25138](https://github.com/google-gemini/gemini-cli/pull/25138)
|
|
143
|
-
- feat: detect new files in @ recommendations with watcher based updates by
|
|
144
|
-
@prassamin in [#25256](https://github.com/google-gemini/gemini-cli/pull/25256)
|
|
145
|
-
- fix(cli): use newline in shell command wrapping to avoid breaking heredocs by
|
|
33
|
+
[#26957](https://github.com/google-gemini/gemini-cli/pull/26957)
|
|
34
|
+
- Changelog for v0.42.0 by @gemini-cli-robot in
|
|
35
|
+
[#26958](https://github.com/google-gemini/gemini-cli/pull/26958)
|
|
36
|
+
- Refactor: Eliminate `no-unsafe-return` suppressions via strict type validation
|
|
37
|
+
by @M-DEV-1 in
|
|
38
|
+
[#20668](https://github.com/google-gemini/gemini-cli/pull/20668)
|
|
39
|
+
- Changelog for v0.43.0-preview.0 by @gemini-cli-robot in
|
|
40
|
+
[#26959](https://github.com/google-gemini/gemini-cli/pull/26959)
|
|
41
|
+
- feat(core): change agent registration to first-wins and prioritize project by
|
|
42
|
+
@adamfweidman in
|
|
43
|
+
[#26953](https://github.com/google-gemini/gemini-cli/pull/26953)
|
|
44
|
+
- feat(cli): merge Auto modes into a single Auto mode by @DavidAPierce in
|
|
45
|
+
[#26714](https://github.com/google-gemini/gemini-cli/pull/26714)
|
|
46
|
+
- fix(core): preserve OAuth refresh tokens during rotation and retrieval by
|
|
47
|
+
@cocosheng-g in
|
|
48
|
+
[#26924](https://github.com/google-gemini/gemini-cli/pull/26924)
|
|
49
|
+
- fix(cli): allow keychain auth for --list-sessions and non-interactive mode by
|
|
50
|
+
@cocosheng-g in
|
|
51
|
+
[#26921](https://github.com/google-gemini/gemini-cli/pull/26921)
|
|
52
|
+
- fix(core): handle EISDIR on virtual drives in memory discovery by @cocosheng-g
|
|
53
|
+
in [#26985](https://github.com/google-gemini/gemini-cli/pull/26985)
|
|
54
|
+
- fix(cli): auto-approve shell redirections in AUTO_EDIT mode by @cocosheng-g in
|
|
55
|
+
[#27003](https://github.com/google-gemini/gemini-cli/pull/27003)
|
|
56
|
+
- ci: suppress bot comments during standard triage maintenance by @cocosheng-g
|
|
57
|
+
in [#27006](https://github.com/google-gemini/gemini-cli/pull/27006)
|
|
58
|
+
- fix(core): refresh MCP OAuth token usage after re-auth by @sahilkirad in
|
|
59
|
+
[#26312](https://github.com/google-gemini/gemini-cli/pull/26312)
|
|
60
|
+
- fix(ui): clamped table column widths by @devr0306 in
|
|
61
|
+
[#26991](https://github.com/google-gemini/gemini-cli/pull/26991)
|
|
62
|
+
- fix(core): isolate subagent thread context by @akh64bit in
|
|
63
|
+
[#26449](https://github.com/google-gemini/gemini-cli/pull/26449)
|
|
64
|
+
- chore: add execution permission to scripts/review.sh by @scidomino in
|
|
65
|
+
[#27009](https://github.com/google-gemini/gemini-cli/pull/27009)
|
|
66
|
+
- fix(core): made context files append instead of replace by @devr0306 in
|
|
67
|
+
[#26950](https://github.com/google-gemini/gemini-cli/pull/26950)
|
|
68
|
+
- fix: add system PATH fallback for ripgrep resolution (#26777) by @cocosheng-g
|
|
69
|
+
in [#26868](https://github.com/google-gemini/gemini-cli/pull/26868)
|
|
70
|
+
- chore: clean up launched memory features by @SandyTao520 in
|
|
71
|
+
[#26941](https://github.com/google-gemini/gemini-cli/pull/26941)
|
|
72
|
+
- fix(core): throttle shell text output and bound live UI buffer by
|
|
73
|
+
@emersonbusson in
|
|
74
|
+
[#26955](https://github.com/google-gemini/gemini-cli/pull/26955)
|
|
75
|
+
- fix(cli): don't crash when an @-mention captures a non-path blob by @ifitisit
|
|
76
|
+
in [#25980](https://github.com/google-gemini/gemini-cli/pull/25980)
|
|
77
|
+
- fix(core): ensure stable fallback for restricted preview models by @galz10 in
|
|
78
|
+
[#26999](https://github.com/google-gemini/gemini-cli/pull/26999)
|
|
79
|
+
- feat(core): expose RAG snippets to local log file for debugging by @spencer426
|
|
80
|
+
in [#27016](https://github.com/google-gemini/gemini-cli/pull/27016)
|
|
81
|
+
- fix(acp/auth): prevent conflicting credentials on enterprise gateways and
|
|
82
|
+
support optional API keys natively by @sripasg in
|
|
83
|
+
[#27021](https://github.com/google-gemini/gemini-cli/pull/27021)
|
|
84
|
+
- fix(core): respect NO_PROXY for network-based MCP servers by @cocosheng-g in
|
|
85
|
+
[#27012](https://github.com/google-gemini/gemini-cli/pull/27012)
|
|
86
|
+
- fix(cli): resolve permission denied in sandbox on NixOS and other distros by
|
|
146
87
|
@cocosheng-g in
|
|
147
|
-
[#
|
|
148
|
-
- fix(
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
- fix(
|
|
157
|
-
[#
|
|
158
|
-
- fix(core):
|
|
88
|
+
[#27004](https://github.com/google-gemini/gemini-cli/pull/27004)
|
|
89
|
+
- fix(ui): preserve new line at the end of edit window by @devr0306 in
|
|
90
|
+
[#27057](https://github.com/google-gemini/gemini-cli/pull/27057)
|
|
91
|
+
- fix(core): ensure Vertex AI sets hasAccessToPreviewModels and remove
|
|
92
|
+
aggressive 404 fallback revocation by @galz10 in
|
|
93
|
+
[#27067](https://github.com/google-gemini/gemini-cli/pull/27067)
|
|
94
|
+
- fix(core): ensure stable admin settings comparison across IPC to prevent
|
|
95
|
+
restart loop by @DavidAPierce in
|
|
96
|
+
[#27066](https://github.com/google-gemini/gemini-cli/pull/27066)
|
|
97
|
+
- fix(deps): update vulnerable dependencies by @scidomino in
|
|
98
|
+
[#27062](https://github.com/google-gemini/gemini-cli/pull/27062)
|
|
99
|
+
- fix(core): resolve EISDIR errors during file processing (#21527) by @ProthamD
|
|
100
|
+
in [#27041](https://github.com/google-gemini/gemini-cli/pull/27041)
|
|
101
|
+
- docs(extensions): clarify env var sanitization policy for MCP and ext… by
|
|
102
|
+
@galz10 in [#22854](https://github.com/google-gemini/gemini-cli/pull/22854)
|
|
103
|
+
- fix(ui): add ENAMETOOLONG and ENOTDIR to exceptions for file parsing errors by
|
|
104
|
+
@devr0306 in [#27069](https://github.com/google-gemini/gemini-cli/pull/27069)
|
|
105
|
+
- fix(cli): explicitly clear entrypoint when spawning sandbox container by
|
|
106
|
+
@cocosheng-g in
|
|
107
|
+
[#27059](https://github.com/google-gemini/gemini-cli/pull/27059)
|
|
108
|
+
- docs: update sandbox image command by @sjhddh in
|
|
109
|
+
[#26774](https://github.com/google-gemini/gemini-cli/pull/26774)
|
|
110
|
+
- fix(core): externalize https-proxy-agent to fix proxy support by @sotokisehiro
|
|
111
|
+
in [#26361](https://github.com/google-gemini/gemini-cli/pull/26361)
|
|
112
|
+
- security: update dependencies to fix critical and high vulnerabilities by
|
|
113
|
+
@scidomino in [#27077](https://github.com/google-gemini/gemini-cli/pull/27077)
|
|
114
|
+
- Fix/web fetch ctrl c abort by @ProthamD in
|
|
115
|
+
[#24320](https://github.com/google-gemini/gemini-cli/pull/24320)
|
|
116
|
+
- fix(core): add aliases and thinking config for gemini-3.1 models by
|
|
117
|
+
@anishs1207 in
|
|
118
|
+
[#27007](https://github.com/google-gemini/gemini-cli/pull/27007)
|
|
119
|
+
- fix(core): use hasAccessToPreview for auto model resolution and fix
|
|
120
|
+
disappearing models by @DavidAPierce in
|
|
121
|
+
[#27112](https://github.com/google-gemini/gemini-cli/pull/27112)
|
|
122
|
+
- feat(core): add adk.agentSessionSubagentEnabled flag by @adamfweidman in
|
|
123
|
+
[#26947](https://github.com/google-gemini/gemini-cli/pull/26947)
|
|
124
|
+
- fix(core): enforce compile-time exhaustiveness in content-utils by
|
|
159
125
|
@adamfweidman in
|
|
160
|
-
[#
|
|
161
|
-
-
|
|
162
|
-
[#
|
|
163
|
-
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
-
|
|
167
|
-
|
|
168
|
-
-
|
|
169
|
-
|
|
170
|
-
[#
|
|
171
|
-
-
|
|
172
|
-
|
|
173
|
-
-
|
|
174
|
-
|
|
175
|
-
-
|
|
176
|
-
[#
|
|
177
|
-
- fix(
|
|
178
|
-
|
|
179
|
-
-
|
|
180
|
-
|
|
181
|
-
[#
|
|
182
|
-
-
|
|
183
|
-
[#
|
|
184
|
-
-
|
|
185
|
-
|
|
186
|
-
-
|
|
187
|
-
[#
|
|
188
|
-
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
126
|
+
[#27207](https://github.com/google-gemini/gemini-cli/pull/27207)
|
|
127
|
+
- feat(skills): add agent-tui and tui-tester skills by @adamfweidman in
|
|
128
|
+
[#27121](https://github.com/google-gemini/gemini-cli/pull/27121)
|
|
129
|
+
- fix(context): Fix snapshot recovery across sessions. by @joshualitt in
|
|
130
|
+
[#26939](https://github.com/google-gemini/gemini-cli/pull/26939)
|
|
131
|
+
- fix(core): add unit tests for stableStringify by @devr0306 in
|
|
132
|
+
[#27212](https://github.com/google-gemini/gemini-cli/pull/27212)
|
|
133
|
+
- fix(core): prefer pwsh.exe over Windows PowerShell 5.1 (#25859) by @kaluchi in
|
|
134
|
+
[#25900](https://github.com/google-gemini/gemini-cli/pull/25900)
|
|
135
|
+
- feat(core): add LocalSessionInvocation by @adamfweidman in
|
|
136
|
+
[#26665](https://github.com/google-gemini/gemini-cli/pull/26665)
|
|
137
|
+
- refactor: decouple auto model description and configuration from
|
|
138
|
+
releaseChannel by @danielweis in
|
|
139
|
+
[#27227](https://github.com/google-gemini/gemini-cli/pull/27227)
|
|
140
|
+
- fix(core): prevent isBinary false-positive on Windows PTY streams by
|
|
141
|
+
@TirthNaik-99 in
|
|
142
|
+
[#26565](https://github.com/google-gemini/gemini-cli/pull/26565)
|
|
143
|
+
- fix(cli): Prevent unmapped keys in Vim Normal mode from inserting text into
|
|
144
|
+
prompt Input. by @Rajeshpatel07 in
|
|
145
|
+
[#25139](https://github.com/google-gemini/gemini-cli/pull/25139)
|
|
146
|
+
- fix(a2a-server): Implement default policy loading for parity with CLI by
|
|
147
|
+
@kschaab in [#27073](https://github.com/google-gemini/gemini-cli/pull/27073)
|
|
148
|
+
- feat(core): add RemoteSessionInvocation by @adamfweidman in
|
|
149
|
+
[#26937](https://github.com/google-gemini/gemini-cli/pull/26937)
|
|
150
|
+
- fix: allow configured MCP servers in non-interactive mode by @cocosheng-g in
|
|
151
|
+
[#27215](https://github.com/google-gemini/gemini-cli/pull/27215)
|
|
152
|
+
- fix(core): add exception handling to migrateFromFileStorage by @devr0306 in
|
|
153
|
+
[#27229](https://github.com/google-gemini/gemini-cli/pull/27229)
|
|
154
|
+
- fix(cli): bundle ink worker-entry.js by @rmedranollamas in
|
|
155
|
+
[#27249](https://github.com/google-gemini/gemini-cli/pull/27249)
|
|
156
|
+
- feat(core): wire AgentSession invocations into agent-tool by @adamfweidman in
|
|
157
|
+
[#26948](https://github.com/google-gemini/gemini-cli/pull/26948)
|
|
158
|
+
- fix(core): prevent path traversal in custome command file injection by
|
|
159
|
+
@ompatel-aiml in
|
|
160
|
+
[#27234](https://github.com/google-gemini/gemini-cli/pull/27234)
|
|
161
|
+
- fix(core): respect NO_PROXY in global fetch dispatcher by @cocosheng-g in
|
|
162
|
+
[#27216](https://github.com/google-gemini/gemini-cli/pull/27216)
|
|
163
|
+
- fix(core): correctly handle nullable array types in MCP tools by @devr0306 in
|
|
164
|
+
[#27228](https://github.com/google-gemini/gemini-cli/pull/27228)
|
|
165
|
+
- fix(cli): preserve proxy-agent named exports in ESM bundle by @ashishch432 in
|
|
166
|
+
[#27145](https://github.com/google-gemini/gemini-cli/pull/27145)
|
|
167
|
+
- Proposal: deterministic encoding for child-process I/O by @kaluchi in
|
|
168
|
+
[#27247](https://github.com/google-gemini/gemini-cli/pull/27247)
|
|
169
|
+
- feat(cli): add Sublime Text and Emacs Client editors, improve error messages
|
|
170
|
+
and documentation by @alberti42 in
|
|
171
|
+
[#21090](https://github.com/google-gemini/gemini-cli/pull/21090)
|
|
172
|
+
- Changelog for v0.43.0-preview.1 by @gemini-cli-robot in
|
|
173
|
+
[#27297](https://github.com/google-gemini/gemini-cli/pull/27297)
|
|
174
|
+
- fix(devtools): bundle devtools package to avoid resolution errors by
|
|
175
|
+
@rmedranollamas in
|
|
176
|
+
[#27250](https://github.com/google-gemini/gemini-cli/pull/27250)
|
|
177
|
+
- fix(cli): integrate PolicyEngine into ACP session to prevent deadlocks
|
|
178
|
+
(#23507) by @cocosheng-g in
|
|
179
|
+
[#27252](https://github.com/google-gemini/gemini-cli/pull/27252)
|
|
180
|
+
- fix: robust ripgrep path resolution and 1p hermetic execution support by
|
|
181
|
+
@cocosheng-g in
|
|
182
|
+
[#27253](https://github.com/google-gemini/gemini-cli/pull/27253)
|
|
183
|
+
- refactor: decouple stored session deletion from ChatRecordingService (#22920)
|
|
184
|
+
by @yuvrajangadsingh in
|
|
185
|
+
[#27039](https://github.com/google-gemini/gemini-cli/pull/27039)
|
|
186
|
+
- fix(core): improve Alpine shell compatibility by @dibyx in
|
|
187
|
+
[#26770](https://github.com/google-gemini/gemini-cli/pull/26770)
|
|
188
|
+
- fix(core): generalize MCP compliance fix for tool results by @cocosheng-g in
|
|
189
|
+
[#27045](https://github.com/google-gemini/gemini-cli/pull/27045)
|
|
190
|
+
- fix(scripts): scrub CI env vars in dev to keep interactive mode by @Hashaam101
|
|
191
|
+
in [#27159](https://github.com/google-gemini/gemini-cli/pull/27159)
|
|
192
|
+
- fix(core): Added date field for the GCal MCP by @devr0306 in
|
|
193
|
+
[#27251](https://github.com/google-gemini/gemini-cli/pull/27251)
|
|
194
|
+
- fix(core): centralize path validation to prevent crashes from malformed
|
|
195
|
+
prompts by @cocosheng-g in
|
|
196
|
+
[#27211](https://github.com/google-gemini/gemini-cli/pull/27211)
|
|
197
|
+
- fix(core): prevent SIGHUP kills in PTY environments (WSL2/Kitty/Alacritty) by
|
|
198
|
+
@ProthamD in [#27267](https://github.com/google-gemini/gemini-cli/pull/27267)
|
|
199
|
+
- fix(core): dynamic fallback routing for exhausted quota models by @cocosheng-g
|
|
200
|
+
in [#27315](https://github.com/google-gemini/gemini-cli/pull/27315)
|
|
201
|
+
- Auto detect pnpm global installation path for macOS and Windows by @tisonkun
|
|
202
|
+
in [#22748](https://github.com/google-gemini/gemini-cli/pull/22748)
|
|
203
|
+
- fix(windows): resolve interactive shell arrow-key navigation on Windows by
|
|
204
|
+
@KumarADITHYA123 in
|
|
205
|
+
[#23505](https://github.com/google-gemini/gemini-cli/pull/23505)
|
|
206
|
+
- ci: robust stale issue lifecycle and consolidated triage labels by
|
|
207
|
+
@cocosheng-g in
|
|
208
|
+
[#27015](https://github.com/google-gemini/gemini-cli/pull/27015)
|
|
209
|
+
- fix(context): Ensure last message is processed. by @joshualitt in
|
|
210
|
+
[#27232](https://github.com/google-gemini/gemini-cli/pull/27232)
|
|
211
|
+
- chore/release: bump version to 0.44.0-nightly.20260521.g57c42a5c4 by
|
|
192
212
|
@gemini-cli-robot in
|
|
193
|
-
[#
|
|
194
|
-
- fix(
|
|
195
|
-
|
|
196
|
-
-
|
|
197
|
-
[#
|
|
198
|
-
- Changelog for v0.38.0-preview.0 by @gemini-cli-robot in
|
|
199
|
-
[#24938](https://github.com/google-gemini/gemini-cli/pull/24938)
|
|
200
|
-
- chore: ignore conductor directory by @JayadityaGit in
|
|
201
|
-
[#22128](https://github.com/google-gemini/gemini-cli/pull/22128)
|
|
202
|
-
- Changelog for v0.37.0 by @gemini-cli-robot in
|
|
203
|
-
[#24940](https://github.com/google-gemini/gemini-cli/pull/24940)
|
|
204
|
-
- feat(plan): require user confirmation for activate_skill in Plan Mode by
|
|
205
|
-
@ruomengz in [#24946](https://github.com/google-gemini/gemini-cli/pull/24946)
|
|
206
|
-
- feat(test-utils): add CPU performance integration test harness by @sripasg in
|
|
207
|
-
[#24951](https://github.com/google-gemini/gemini-cli/pull/24951)
|
|
208
|
-
- fix(cli-ui): enable Ctrl+Backspace for word deletion in Windows Terminal by
|
|
209
|
-
@dogukanozen in
|
|
210
|
-
[#21447](https://github.com/google-gemini/gemini-cli/pull/21447)
|
|
211
|
-
- test(sdk): add unit tests for GeminiCliSession by @AdamyaSingh7 in
|
|
212
|
-
[#21897](https://github.com/google-gemini/gemini-cli/pull/21897)
|
|
213
|
-
- fix(core): resolve windows symlink bypass and stabilize sandbox integration
|
|
214
|
-
tests by @ehedlund in
|
|
215
|
-
[#24834](https://github.com/google-gemini/gemini-cli/pull/24834)
|
|
216
|
-
- fix(cli): restore file path display in edit and write tool confirmations by
|
|
217
|
-
@jwhelangoog in
|
|
218
|
-
[#24974](https://github.com/google-gemini/gemini-cli/pull/24974)
|
|
219
|
-
- feat(core): refine shell tool description display logic by @jwhelangoog in
|
|
220
|
-
[#24903](https://github.com/google-gemini/gemini-cli/pull/24903)
|
|
221
|
-
- fix(core): dynamic session ID injection to resolve resume bugs by @scidomino
|
|
222
|
-
in [#24972](https://github.com/google-gemini/gemini-cli/pull/24972)
|
|
223
|
-
- Update ink version to 6.6.9 by @jacob314 in
|
|
224
|
-
[#24980](https://github.com/google-gemini/gemini-cli/pull/24980)
|
|
225
|
-
- Generalize evals infra to support more types of evals, organization and
|
|
226
|
-
queuing of named suites by @gundermanc in
|
|
227
|
-
[#24941](https://github.com/google-gemini/gemini-cli/pull/24941)
|
|
228
|
-
- fix(cli): optimize startup with lightweight parent process by @sehoon38 in
|
|
229
|
-
[#24667](https://github.com/google-gemini/gemini-cli/pull/24667)
|
|
230
|
-
- refactor(sandbox): use centralized sandbox paths in macOS Seatbelt
|
|
231
|
-
implementation by @ehedlund in
|
|
232
|
-
[#24984](https://github.com/google-gemini/gemini-cli/pull/24984)
|
|
233
|
-
- feat(cli): refine tool output formatting for compact mode by @jwhelangoog in
|
|
234
|
-
[#24677](https://github.com/google-gemini/gemini-cli/pull/24677)
|
|
235
|
-
- fix(sdk): skip broken sendStream tests to unblock nightly by @SandyTao520 in
|
|
236
|
-
[#25000](https://github.com/google-gemini/gemini-cli/pull/25000)
|
|
237
|
-
- refactor(core): use centralized path resolution for Linux sandbox by @ehedlund
|
|
238
|
-
in [#24985](https://github.com/google-gemini/gemini-cli/pull/24985)
|
|
239
|
-
- Support ctrl+shift+g by @jacob314 in
|
|
240
|
-
[#25035](https://github.com/google-gemini/gemini-cli/pull/25035)
|
|
241
|
-
- feat(core): refactor subagent tool to unified invoke_subagent tool by
|
|
242
|
-
@abhipatel12 in
|
|
243
|
-
[#24489](https://github.com/google-gemini/gemini-cli/pull/24489)
|
|
244
|
-
- fix(core): add explicit git identity env vars to prevent sandbox checkpointing
|
|
245
|
-
error by @mrpmohiburrahman in
|
|
246
|
-
[#19775](https://github.com/google-gemini/gemini-cli/pull/19775)
|
|
247
|
-
- fix: respect hideContextPercentage when FooterConfigDialog is closed without
|
|
248
|
-
changes by @chernistry in
|
|
249
|
-
[#24773](https://github.com/google-gemini/gemini-cli/pull/24773)
|
|
250
|
-
- fix(cli): suppress unhandled AbortError logs during request cancellation by
|
|
251
|
-
@euxaristia in
|
|
252
|
-
[#22621](https://github.com/google-gemini/gemini-cli/pull/22621)
|
|
253
|
-
- Automated documentation audit by @g-samroberts in
|
|
254
|
-
[#24567](https://github.com/google-gemini/gemini-cli/pull/24567)
|
|
255
|
-
- feat(cli): implement useAgentStream hook by @mbleigh in
|
|
256
|
-
[#24292](https://github.com/google-gemini/gemini-cli/pull/24292)
|
|
257
|
-
- refactor(plan) Clean default plan toml by @ruomengz in
|
|
258
|
-
[#25037](https://github.com/google-gemini/gemini-cli/pull/25037)
|
|
259
|
-
- refactor(core): remove legacy subagent wrapping tools by @abhipatel12 in
|
|
260
|
-
[#25053](https://github.com/google-gemini/gemini-cli/pull/25053)
|
|
261
|
-
- fix(core): honor retryDelay in RetryInfo for 503 errors by @yunaseoul in
|
|
262
|
-
[#25057](https://github.com/google-gemini/gemini-cli/pull/25057)
|
|
263
|
-
- fix(core): remediate subagent memory leaks using AbortSignal in MessageBus by
|
|
264
|
-
@abhipatel12 in
|
|
265
|
-
[#25048](https://github.com/google-gemini/gemini-cli/pull/25048)
|
|
266
|
-
- feat(cli): wire up useAgentStream in AppContainer by @mbleigh in
|
|
267
|
-
[#24297](https://github.com/google-gemini/gemini-cli/pull/24297)
|
|
268
|
-
- feat(core): migrate chat recording to JSONL streaming by @spencer426 in
|
|
269
|
-
[#23749](https://github.com/google-gemini/gemini-cli/pull/23749)
|
|
270
|
-
- fix(core): clear 5-minute timeouts in oauth flow to prevent memory leaks by
|
|
271
|
-
@spencer426 in
|
|
272
|
-
[#24968](https://github.com/google-gemini/gemini-cli/pull/24968)
|
|
273
|
-
- fix(sandbox): centralize async git worktree resolution and enforce read-only
|
|
274
|
-
security by @ehedlund in
|
|
275
|
-
[#25040](https://github.com/google-gemini/gemini-cli/pull/25040)
|
|
276
|
-
- feat(test): add high-volume shell test and refine perf harness by @sripasg in
|
|
277
|
-
[#24983](https://github.com/google-gemini/gemini-cli/pull/24983)
|
|
278
|
-
- fix(core): silently handle EPERM when listing dir structure by @scidomino in
|
|
279
|
-
[#25066](https://github.com/google-gemini/gemini-cli/pull/25066)
|
|
280
|
-
- Changelog for v0.37.1 by @gemini-cli-robot in
|
|
281
|
-
[#25055](https://github.com/google-gemini/gemini-cli/pull/25055)
|
|
282
|
-
- fix: decode Uint8Array and multi-byte UTF-8 in API error messages by
|
|
283
|
-
@kimjune01 in [#23341](https://github.com/google-gemini/gemini-cli/pull/23341)
|
|
284
|
-
- Automated documentation audit results by @g-samroberts in
|
|
285
|
-
[#22755](https://github.com/google-gemini/gemini-cli/pull/22755)
|
|
286
|
-
- debugging(ui): add optional debugRainbow setting by @jacob314 in
|
|
287
|
-
[#25088](https://github.com/google-gemini/gemini-cli/pull/25088)
|
|
288
|
-
- fix: resolve lifecycle memory leaks by cleaning up listeners and root closures
|
|
289
|
-
by @spencer426 in
|
|
290
|
-
[#25049](https://github.com/google-gemini/gemini-cli/pull/25049)
|
|
291
|
-
- docs(cli): updates f12 description to be more precise by @JayadityaGit in
|
|
292
|
-
[#15816](https://github.com/google-gemini/gemini-cli/pull/15816)
|
|
293
|
-
- fix(cli): mark /settings as unsafe to run concurrently by @jacob314 in
|
|
294
|
-
[#25061](https://github.com/google-gemini/gemini-cli/pull/25061)
|
|
295
|
-
- fix(core): remove buffer slice to prevent OOM on large output streams by
|
|
296
|
-
@spencer426 in
|
|
297
|
-
[#25094](https://github.com/google-gemini/gemini-cli/pull/25094)
|
|
298
|
-
- feat(core): persist subagent agentId in tool call records by @abhipatel12 in
|
|
299
|
-
[#25092](https://github.com/google-gemini/gemini-cli/pull/25092)
|
|
300
|
-
- chore(core): increase codebase investigator turn limits to 50 by @abhipatel12
|
|
301
|
-
in [#25125](https://github.com/google-gemini/gemini-cli/pull/25125)
|
|
302
|
-
- refactor(core): consolidate execute() arguments into ExecuteOptions by
|
|
303
|
-
@mbleigh in [#25101](https://github.com/google-gemini/gemini-cli/pull/25101)
|
|
304
|
-
- feat(core): add Strategic Re-evaluation guidance to system prompt by
|
|
305
|
-
@aishaneeshah in
|
|
306
|
-
[#25062](https://github.com/google-gemini/gemini-cli/pull/25062)
|
|
307
|
-
- fix(core): preserve shell execution config fields on update by
|
|
308
|
-
@jasonmatthewsuhari in
|
|
309
|
-
[#25113](https://github.com/google-gemini/gemini-cli/pull/25113)
|
|
310
|
-
- docs: add vi shortcuts and clarify MCP sandbox setup by @chrisjcthomas in
|
|
311
|
-
[#21679](https://github.com/google-gemini/gemini-cli/pull/21679)
|
|
312
|
-
- fix(cli): pass session id to interactive shell executions by
|
|
313
|
-
@jasonmatthewsuhari in
|
|
314
|
-
[#25114](https://github.com/google-gemini/gemini-cli/pull/25114)
|
|
315
|
-
- fix(cli): resolve text sanitization data loss due to C1 control characters by
|
|
316
|
-
@euxaristia in
|
|
317
|
-
[#22624](https://github.com/google-gemini/gemini-cli/pull/22624)
|
|
318
|
-
- feat(core): add large memory regression test by @cynthialong0-0 in
|
|
319
|
-
[#25059](https://github.com/google-gemini/gemini-cli/pull/25059)
|
|
320
|
-
- fix(core): resolve PTY exhaustion and orphan MCP subprocess leaks by
|
|
321
|
-
@spencer426 in
|
|
322
|
-
[#25079](https://github.com/google-gemini/gemini-cli/pull/25079)
|
|
323
|
-
- chore(deps): update vulnerable dependencies via npm audit fix by @scidomino in
|
|
324
|
-
[#25140](https://github.com/google-gemini/gemini-cli/pull/25140)
|
|
325
|
-
- perf(sandbox): optimize Windows sandbox initialization via native ACL
|
|
326
|
-
application by @ehedlund in
|
|
327
|
-
[#25077](https://github.com/google-gemini/gemini-cli/pull/25077)
|
|
328
|
-
- chore: switch from keytar to @github/keytar by @cocosheng-g in
|
|
329
|
-
[#25143](https://github.com/google-gemini/gemini-cli/pull/25143)
|
|
330
|
-
- fix: improve audio MIME normalization and validation in file reads by
|
|
331
|
-
@junaiddshaukat in
|
|
332
|
-
[#21636](https://github.com/google-gemini/gemini-cli/pull/21636)
|
|
333
|
-
- docs: Update docs-audit to include changes in PR body by @g-samroberts in
|
|
334
|
-
[#25153](https://github.com/google-gemini/gemini-cli/pull/25153)
|
|
335
|
-
- docs: correct documentation for enforced authentication type by @cocosheng-g
|
|
336
|
-
in [#25142](https://github.com/google-gemini/gemini-cli/pull/25142)
|
|
337
|
-
- fix(cli): exclude update_topic from confirmation queue count by @Abhijit-2592
|
|
338
|
-
in [#24945](https://github.com/google-gemini/gemini-cli/pull/24945)
|
|
339
|
-
- Memory fix for trace's streamWrapper. by @anthraxmilkshake in
|
|
340
|
-
[#25089](https://github.com/google-gemini/gemini-cli/pull/25089)
|
|
341
|
-
- fix(core): fix quota footer for non-auto models and improve display by
|
|
342
|
-
@jackwotherspoon in
|
|
343
|
-
[#25121](https://github.com/google-gemini/gemini-cli/pull/25121)
|
|
344
|
-
- docs(contributing): clarify self-assignment policy for issues by @jmr in
|
|
345
|
-
[#23087](https://github.com/google-gemini/gemini-cli/pull/23087)
|
|
346
|
-
- feat(core): add skill patching support with /memory inbox integration by
|
|
347
|
-
@SandyTao520 in
|
|
348
|
-
[#25148](https://github.com/google-gemini/gemini-cli/pull/25148)
|
|
349
|
-
- Stop suppressing thoughts and text in model response by @gundermanc in
|
|
350
|
-
[#25073](https://github.com/google-gemini/gemini-cli/pull/25073)
|
|
351
|
-
- fix(release): prefix git hash in nightly versions to prevent semver
|
|
352
|
-
normalization by @SandyTao520 in
|
|
353
|
-
[#25304](https://github.com/google-gemini/gemini-cli/pull/25304)
|
|
354
|
-
- feat(cli): extract QuotaContext and resolve infinite render loop by @Adib234
|
|
355
|
-
in [#24959](https://github.com/google-gemini/gemini-cli/pull/24959)
|
|
356
|
-
- refactor(core): extract and centralize sandbox path utilities by @ehedlund in
|
|
357
|
-
[#25305](https://github.com/google-gemini/gemini-cli/pull/25305)
|
|
358
|
-
- feat(ui): added enhancements to scroll momentum by @devr0306 in
|
|
359
|
-
[#24447](https://github.com/google-gemini/gemini-cli/pull/24447)
|
|
360
|
-
- fix(core): replace custom binary detection with isbinaryfile to correctly
|
|
361
|
-
handle UTF-8 (U+FFFD) by @Anjaligarhwal in
|
|
362
|
-
[#25297](https://github.com/google-gemini/gemini-cli/pull/25297)
|
|
363
|
-
- feat(agent): implement tool-controlled display protocol (Steps 2-3) by
|
|
364
|
-
@mbleigh in [#25134](https://github.com/google-gemini/gemini-cli/pull/25134)
|
|
365
|
-
- Stop showing scrollbar unless we are in terminalBuffer mode by @jacob314 in
|
|
366
|
-
[#25320](https://github.com/google-gemini/gemini-cli/pull/25320)
|
|
367
|
-
- feat: support auth block in MCP servers config in agents by @TanmayVartak in
|
|
368
|
-
[#24770](https://github.com/google-gemini/gemini-cli/pull/24770)
|
|
369
|
-
- fix(core): expose GEMINI_PLANS_DIR to hook environment by @Adib234 in
|
|
370
|
-
[#25296](https://github.com/google-gemini/gemini-cli/pull/25296)
|
|
371
|
-
- feat(core): implement silent fallback for Plan Mode model routing by @jerop in
|
|
372
|
-
[#25317](https://github.com/google-gemini/gemini-cli/pull/25317)
|
|
373
|
-
- fix: correct redirect count increment in fetchJson by @KevinZhao in
|
|
374
|
-
[#24896](https://github.com/google-gemini/gemini-cli/pull/24896)
|
|
375
|
-
- fix(core): prevent secondary crash in ModelRouterService finally block by
|
|
376
|
-
@gundermanc in
|
|
377
|
-
[#25333](https://github.com/google-gemini/gemini-cli/pull/25333)
|
|
378
|
-
- feat(core): introduce decoupled ContextManager and Sidecar architecture by
|
|
379
|
-
@joshualitt in
|
|
380
|
-
[#24752](https://github.com/google-gemini/gemini-cli/pull/24752)
|
|
381
|
-
- docs(core): update generalist agent documentation by @abhipatel12 in
|
|
382
|
-
[#25325](https://github.com/google-gemini/gemini-cli/pull/25325)
|
|
383
|
-
- chore(mcp): check MCP error code over brittle string match by @jackwotherspoon
|
|
384
|
-
in [#25381](https://github.com/google-gemini/gemini-cli/pull/25381)
|
|
385
|
-
- feat(plan): update plan mode prompt to allow showing plan content by @ruomengz
|
|
386
|
-
in [#25058](https://github.com/google-gemini/gemini-cli/pull/25058)
|
|
387
|
-
- test(core): improve sandbox integration test coverage and fix OS-specific
|
|
388
|
-
failures by @ehedlund in
|
|
389
|
-
[#25307](https://github.com/google-gemini/gemini-cli/pull/25307)
|
|
390
|
-
- fix(core): use debug level for keychain fallback logging by @ehedlund in
|
|
391
|
-
[#25398](https://github.com/google-gemini/gemini-cli/pull/25398)
|
|
392
|
-
- feat(test): add a performance test in asian language by @cynthialong0-0 in
|
|
393
|
-
[#25392](https://github.com/google-gemini/gemini-cli/pull/25392)
|
|
394
|
-
- feat(cli): enable mouse clicking for cursor positioning in AskUser multi-line
|
|
395
|
-
answers by @Adib234 in
|
|
396
|
-
[#24630](https://github.com/google-gemini/gemini-cli/pull/24630)
|
|
397
|
-
- fix(core): detect kmscon terminal as supporting true color by @claygeo in
|
|
398
|
-
[#25282](https://github.com/google-gemini/gemini-cli/pull/25282)
|
|
399
|
-
- ci: add agent session drift check workflow by @adamfweidman in
|
|
400
|
-
[#25389](https://github.com/google-gemini/gemini-cli/pull/25389)
|
|
401
|
-
- use macos-latest-large runner where applicable. by @scidomino in
|
|
402
|
-
[#25413](https://github.com/google-gemini/gemini-cli/pull/25413)
|
|
403
|
-
- Changelog for v0.37.2 by @gemini-cli-robot in
|
|
404
|
-
[#25336](https://github.com/google-gemini/gemini-cli/pull/25336)
|
|
213
|
+
[#27324](https://github.com/google-gemini/gemini-cli/pull/27324)
|
|
214
|
+
- fix(ui): added volta to auto update check by @devr0306 in
|
|
215
|
+
[#27353](https://github.com/google-gemini/gemini-cli/pull/27353)
|
|
216
|
+
- perf: optimize issue triage and lifecycle management by @cocosheng-g in
|
|
217
|
+
[#27346](https://github.com/google-gemini/gemini-cli/pull/27346)
|
|
405
218
|
|
|
406
219
|
**Full Changelog**:
|
|
407
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
220
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.43.0-preview.1...v0.44.0-preview.0
|