@machina.ai/cell-cli-core 1.41.1-rc2 → 1.45.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 +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 +44 -20
- 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
|
@@ -18,6 +18,69 @@ on GitHub.
|
|
|
18
18
|
| [Preview](preview.md) | Experimental features ready for early feedback. |
|
|
19
19
|
| [Stable](latest.md) | Stable, recommended for general use. |
|
|
20
20
|
|
|
21
|
+
## Announcements: v0.43.0 - 2026-05-22
|
|
22
|
+
|
|
23
|
+
- **Surgical Code Edits:** Steered Gemini models to prefer the `edit` tool for
|
|
24
|
+
surgical modifications, improving speed and precision
|
|
25
|
+
([#26480](https://github.com/google-gemini/gemini-cli/pull/26480) by
|
|
26
|
+
@aishaneeshah).
|
|
27
|
+
- **Session Export and Import:** Added the ability to export sessions to files
|
|
28
|
+
and import them via a new flag, facilitating session portability
|
|
29
|
+
([#26514](https://github.com/google-gemini/gemini-cli/pull/26514) by
|
|
30
|
+
@cocosheng-g).
|
|
31
|
+
- **Adaptive Token Estimation:** Introduced an adaptive token calculator for
|
|
32
|
+
more accurate content size estimation, enhancing context management efficiency
|
|
33
|
+
([#26888](https://github.com/google-gemini/gemini-cli/pull/26888) by
|
|
34
|
+
@joshualitt).
|
|
35
|
+
|
|
36
|
+
## Announcements: v0.42.0 - 2026-05-12
|
|
37
|
+
|
|
38
|
+
- **Auto Memory Inbox:** Introduced a new inbox flow for Auto Memory with a
|
|
39
|
+
canonical-patch contract for seamless skill management
|
|
40
|
+
([#26338](https://github.com/google-gemini/gemini-cli/pull/26338) by
|
|
41
|
+
@SandyTao520).
|
|
42
|
+
- **Gemma 4 by Default:** Enabled Gemma 4 models by default via the Gemini API
|
|
43
|
+
for all users
|
|
44
|
+
([#26307](https://github.com/google-gemini/gemini-cli/pull/26307) by
|
|
45
|
+
@Abhijit-2592).
|
|
46
|
+
- **Voice Mode Enhancements:** Added wave animations and privacy/compliance UX
|
|
47
|
+
warnings for the Gemini Live backend
|
|
48
|
+
([#26284](https://github.com/google-gemini/gemini-cli/pull/26284) by
|
|
49
|
+
@devr0306, [#26454](https://github.com/google-gemini/gemini-cli/pull/26454) by
|
|
50
|
+
@cocosheng-g).
|
|
51
|
+
|
|
52
|
+
## Announcements: v0.41.0 - 2026-05-05
|
|
53
|
+
|
|
54
|
+
- **Real-time Voice Mode:** Implemented real-time voice mode with cloud and
|
|
55
|
+
local backends
|
|
56
|
+
([#24174](https://github.com/google-gemini/gemini-cli/pull/24174) by
|
|
57
|
+
@Abhijit-2592).
|
|
58
|
+
- **Secure Environment Loading:** Enforced workspace trust and secured .env
|
|
59
|
+
loading in headless mode
|
|
60
|
+
([#25814](https://github.com/google-gemini/gemini-cli/pull/25814) by
|
|
61
|
+
@ehedlund).
|
|
62
|
+
- **Advanced Shell Validation:** Enhanced shell command validation and added
|
|
63
|
+
core tools allowlist for improved security
|
|
64
|
+
([#25720](https://github.com/google-gemini/gemini-cli/pull/25720) by @galz10).
|
|
65
|
+
|
|
66
|
+
## Announcements: v0.40.0 - 2026-04-28
|
|
67
|
+
|
|
68
|
+
- **Offline Search and Themes:** Bundled ripgrep for offline search support and
|
|
69
|
+
added GitHub-style colorblind themes
|
|
70
|
+
([#25342](https://github.com/google-gemini/gemini-cli/pull/25342) by
|
|
71
|
+
@scidomino, [#15504](https://github.com/google-gemini/gemini-cli/pull/15504)
|
|
72
|
+
by @Z1xus).
|
|
73
|
+
- **Advanced Resource and Memory Management:** Introduced MCP resource tools and
|
|
74
|
+
transitioned to a prompt-driven, four-tier memory management system
|
|
75
|
+
([#25395](https://github.com/google-gemini/gemini-cli/pull/25395) by
|
|
76
|
+
@ruomengz, [#25716](https://github.com/google-gemini/gemini-cli/pull/25716) by
|
|
77
|
+
@SandyTao520).
|
|
78
|
+
- **UX and Local Models:** Enabled topic update narrations by default and
|
|
79
|
+
streamlined Gemma local model setup with `gemini gemma`
|
|
80
|
+
([#25586](https://github.com/google-gemini/gemini-cli/pull/25586) by
|
|
81
|
+
@gundermanc, [#25498](https://github.com/google-gemini/gemini-cli/pull/25498)
|
|
82
|
+
by @Samee24).
|
|
83
|
+
|
|
21
84
|
## Announcements: v0.39.0 - 2026-04-23
|
|
22
85
|
|
|
23
86
|
- **Skill Management:** Added a new `/memory` inbox command for reviewing and
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Latest stable release: v0.
|
|
1
|
+
# Latest stable release: v0.43.0
|
|
2
2
|
|
|
3
|
-
Released:
|
|
3
|
+
Released: May 22, 2026
|
|
4
4
|
|
|
5
5
|
For most users, our latest stable release is the recommended release. Install
|
|
6
6
|
the latest stable version with:
|
|
@@ -11,252 +11,208 @@ npm install -g @google/gemini-cli
|
|
|
11
11
|
|
|
12
12
|
## Highlights
|
|
13
13
|
|
|
14
|
-
- **
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- **
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- **
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- **
|
|
24
|
-
|
|
25
|
-
-
|
|
26
|
-
|
|
27
|
-
|
|
14
|
+
- **Surgical Code Edits:** Gemini models are now steered to prefer the `edit`
|
|
15
|
+
tool for surgical modifications, leading to faster and more precise code
|
|
16
|
+
updates.
|
|
17
|
+
- **Session Portability:** Introduced features to export active sessions to
|
|
18
|
+
files and import them later via a CLI flag, allowing for easier session
|
|
19
|
+
sharing and resumption.
|
|
20
|
+
- **Adaptive Token Estimation:** A new adaptive token calculator provides more
|
|
21
|
+
accurate content size measurements, optimizing context window usage and
|
|
22
|
+
reducing API overhead.
|
|
23
|
+
- **Improved UI Rendering:** Core tools now utilize native `ToolDisplay`
|
|
24
|
+
properties, fixing various UI rendering issues and improving the experience in
|
|
25
|
+
ACP-compliant IDEs.
|
|
26
|
+
- **Enhanced Agent Architecture:** Introduced `LocalSubagentProtocol` and
|
|
27
|
+
`RemoteSubagentProtocol` behind a unified `AgentProtocol`, laying the
|
|
28
|
+
groundwork for more complex multi-agent interactions.
|
|
28
29
|
|
|
29
30
|
## What's Changed
|
|
30
31
|
|
|
31
|
-
-
|
|
32
|
-
@ruomengz in [#24849](https://github.com/google-gemini/gemini-cli/pull/24849)
|
|
33
|
-
- feat(test-utils): add memory usage integration test harness by @sripasg in
|
|
34
|
-
[#24876](https://github.com/google-gemini/gemini-cli/pull/24876)
|
|
35
|
-
- feat(memory): add /memory inbox command for reviewing extracted skills by
|
|
36
|
-
@SandyTao520 in
|
|
37
|
-
[#24544](https://github.com/google-gemini/gemini-cli/pull/24544)
|
|
38
|
-
- chore(release): bump version to 0.39.0-nightly.20260408.e77b22e63 by
|
|
39
|
-
@gemini-cli-robot in
|
|
40
|
-
[#24939](https://github.com/google-gemini/gemini-cli/pull/24939)
|
|
41
|
-
- fix(core): ensure robust sandbox cleanup in all process execution paths by
|
|
42
|
-
@ehedlund in [#24763](https://github.com/google-gemini/gemini-cli/pull/24763)
|
|
43
|
-
- chore: update ink version to 6.6.8 by @jacob314 in
|
|
44
|
-
[#24934](https://github.com/google-gemini/gemini-cli/pull/24934)
|
|
45
|
-
- Changelog for v0.38.0-preview.0 by @gemini-cli-robot in
|
|
46
|
-
[#24938](https://github.com/google-gemini/gemini-cli/pull/24938)
|
|
47
|
-
- chore: ignore conductor directory by @JayadityaGit in
|
|
48
|
-
[#22128](https://github.com/google-gemini/gemini-cli/pull/22128)
|
|
49
|
-
- Changelog for v0.37.0 by @gemini-cli-robot in
|
|
50
|
-
[#24940](https://github.com/google-gemini/gemini-cli/pull/24940)
|
|
51
|
-
- feat(plan): require user confirmation for activate_skill in Plan Mode by
|
|
52
|
-
@ruomengz in [#24946](https://github.com/google-gemini/gemini-cli/pull/24946)
|
|
53
|
-
- feat(test-utils): add CPU performance integration test harness by @sripasg in
|
|
54
|
-
[#24951](https://github.com/google-gemini/gemini-cli/pull/24951)
|
|
55
|
-
- fix(cli-ui): enable Ctrl+Backspace for word deletion in Windows Terminal by
|
|
56
|
-
@dogukanozen in
|
|
57
|
-
[#21447](https://github.com/google-gemini/gemini-cli/pull/21447)
|
|
58
|
-
- test(sdk): add unit tests for GeminiCliSession by @AdamyaSingh7 in
|
|
59
|
-
[#21897](https://github.com/google-gemini/gemini-cli/pull/21897)
|
|
60
|
-
- fix(core): resolve windows symlink bypass and stabilize sandbox integration
|
|
61
|
-
tests by @ehedlund in
|
|
62
|
-
[#24834](https://github.com/google-gemini/gemini-cli/pull/24834)
|
|
63
|
-
- fix(cli): restore file path display in edit and write tool confirmations by
|
|
64
|
-
@jwhelangoog in
|
|
65
|
-
[#24974](https://github.com/google-gemini/gemini-cli/pull/24974)
|
|
66
|
-
- feat(core): refine shell tool description display logic by @jwhelangoog in
|
|
67
|
-
[#24903](https://github.com/google-gemini/gemini-cli/pull/24903)
|
|
68
|
-
- fix(core): dynamic session ID injection to resolve resume bugs by @scidomino
|
|
69
|
-
in [#24972](https://github.com/google-gemini/gemini-cli/pull/24972)
|
|
70
|
-
- Update ink version to 6.6.9 by @jacob314 in
|
|
71
|
-
[#24980](https://github.com/google-gemini/gemini-cli/pull/24980)
|
|
72
|
-
- Generalize evals infra to support more types of evals, organization and
|
|
73
|
-
queuing of named suites by @gundermanc in
|
|
74
|
-
[#24941](https://github.com/google-gemini/gemini-cli/pull/24941)
|
|
75
|
-
- fix(cli): optimize startup with lightweight parent process by @sehoon38 in
|
|
76
|
-
[#24667](https://github.com/google-gemini/gemini-cli/pull/24667)
|
|
77
|
-
- refactor(sandbox): use centralized sandbox paths in macOS Seatbelt
|
|
78
|
-
implementation by @ehedlund in
|
|
79
|
-
[#24984](https://github.com/google-gemini/gemini-cli/pull/24984)
|
|
80
|
-
- feat(cli): refine tool output formatting for compact mode by @jwhelangoog in
|
|
81
|
-
[#24677](https://github.com/google-gemini/gemini-cli/pull/24677)
|
|
82
|
-
- fix(sdk): skip broken sendStream tests to unblock nightly by @SandyTao520 in
|
|
83
|
-
[#25000](https://github.com/google-gemini/gemini-cli/pull/25000)
|
|
84
|
-
- refactor(core): use centralized path resolution for Linux sandbox by @ehedlund
|
|
85
|
-
in [#24985](https://github.com/google-gemini/gemini-cli/pull/24985)
|
|
86
|
-
- Support ctrl+shift+g by @jacob314 in
|
|
87
|
-
[#25035](https://github.com/google-gemini/gemini-cli/pull/25035)
|
|
88
|
-
- feat(core): refactor subagent tool to unified invoke_subagent tool by
|
|
89
|
-
@abhipatel12 in
|
|
90
|
-
[#24489](https://github.com/google-gemini/gemini-cli/pull/24489)
|
|
91
|
-
- fix(core): add explicit git identity env vars to prevent sandbox checkpointing
|
|
92
|
-
error by @mrpmohiburrahman in
|
|
93
|
-
[#19775](https://github.com/google-gemini/gemini-cli/pull/19775)
|
|
94
|
-
- fix: respect hideContextPercentage when FooterConfigDialog is closed without
|
|
95
|
-
changes by @chernistry in
|
|
96
|
-
[#24773](https://github.com/google-gemini/gemini-cli/pull/24773)
|
|
97
|
-
- fix(cli): suppress unhandled AbortError logs during request cancellation by
|
|
98
|
-
@euxaristia in
|
|
99
|
-
[#22621](https://github.com/google-gemini/gemini-cli/pull/22621)
|
|
100
|
-
- Automated documentation audit by @g-samroberts in
|
|
101
|
-
[#24567](https://github.com/google-gemini/gemini-cli/pull/24567)
|
|
102
|
-
- feat(cli): implement useAgentStream hook by @mbleigh in
|
|
103
|
-
[#24292](https://github.com/google-gemini/gemini-cli/pull/24292)
|
|
104
|
-
- refactor(plan) Clean default plan toml by @ruomengz in
|
|
105
|
-
[#25037](https://github.com/google-gemini/gemini-cli/pull/25037)
|
|
106
|
-
- refactor(core): remove legacy subagent wrapping tools by @abhipatel12 in
|
|
107
|
-
[#25053](https://github.com/google-gemini/gemini-cli/pull/25053)
|
|
108
|
-
- fix(core): honor retryDelay in RetryInfo for 503 errors by @yunaseoul in
|
|
109
|
-
[#25057](https://github.com/google-gemini/gemini-cli/pull/25057)
|
|
110
|
-
- fix(core): remediate subagent memory leaks using AbortSignal in MessageBus by
|
|
111
|
-
@abhipatel12 in
|
|
112
|
-
[#25048](https://github.com/google-gemini/gemini-cli/pull/25048)
|
|
113
|
-
- feat(cli): wire up useAgentStream in AppContainer by @mbleigh in
|
|
114
|
-
[#24297](https://github.com/google-gemini/gemini-cli/pull/24297)
|
|
115
|
-
- feat(core): migrate chat recording to JSONL streaming by @spencer426 in
|
|
116
|
-
[#23749](https://github.com/google-gemini/gemini-cli/pull/23749)
|
|
117
|
-
- fix(core): clear 5-minute timeouts in oauth flow to prevent memory leaks by
|
|
118
|
-
@spencer426 in
|
|
119
|
-
[#24968](https://github.com/google-gemini/gemini-cli/pull/24968)
|
|
120
|
-
- fix(sandbox): centralize async git worktree resolution and enforce read-only
|
|
121
|
-
security by @ehedlund in
|
|
122
|
-
[#25040](https://github.com/google-gemini/gemini-cli/pull/25040)
|
|
123
|
-
- feat(test): add high-volume shell test and refine perf harness by @sripasg in
|
|
124
|
-
[#24983](https://github.com/google-gemini/gemini-cli/pull/24983)
|
|
125
|
-
- fix(core): silently handle EPERM when listing dir structure by @scidomino in
|
|
126
|
-
[#25066](https://github.com/google-gemini/gemini-cli/pull/25066)
|
|
127
|
-
- Changelog for v0.37.1 by @gemini-cli-robot in
|
|
128
|
-
[#25055](https://github.com/google-gemini/gemini-cli/pull/25055)
|
|
129
|
-
- fix: decode Uint8Array and multi-byte UTF-8 in API error messages by
|
|
130
|
-
@kimjune01 in [#23341](https://github.com/google-gemini/gemini-cli/pull/23341)
|
|
131
|
-
- Automated documentation audit results by @g-samroberts in
|
|
132
|
-
[#22755](https://github.com/google-gemini/gemini-cli/pull/22755)
|
|
133
|
-
- debugging(ui): add optional debugRainbow setting by @jacob314 in
|
|
134
|
-
[#25088](https://github.com/google-gemini/gemini-cli/pull/25088)
|
|
135
|
-
- fix: resolve lifecycle memory leaks by cleaning up listeners and root closures
|
|
136
|
-
by @spencer426 in
|
|
137
|
-
[#25049](https://github.com/google-gemini/gemini-cli/pull/25049)
|
|
138
|
-
- docs(cli): updates f12 description to be more precise by @JayadityaGit in
|
|
139
|
-
[#15816](https://github.com/google-gemini/gemini-cli/pull/15816)
|
|
140
|
-
- fix(cli): mark /settings as unsafe to run concurrently by @jacob314 in
|
|
141
|
-
[#25061](https://github.com/google-gemini/gemini-cli/pull/25061)
|
|
142
|
-
- fix(core): remove buffer slice to prevent OOM on large output streams by
|
|
143
|
-
@spencer426 in
|
|
144
|
-
[#25094](https://github.com/google-gemini/gemini-cli/pull/25094)
|
|
145
|
-
- feat(core): persist subagent agentId in tool call records by @abhipatel12 in
|
|
146
|
-
[#25092](https://github.com/google-gemini/gemini-cli/pull/25092)
|
|
147
|
-
- chore(core): increase codebase investigator turn limits to 50 by @abhipatel12
|
|
148
|
-
in [#25125](https://github.com/google-gemini/gemini-cli/pull/25125)
|
|
149
|
-
- refactor(core): consolidate execute() arguments into ExecuteOptions by
|
|
150
|
-
@mbleigh in [#25101](https://github.com/google-gemini/gemini-cli/pull/25101)
|
|
151
|
-
- feat(core): add Strategic Re-evaluation guidance to system prompt by
|
|
32
|
+
- feat(core): steer model to use edit tool for surgical edits, fix a typo by
|
|
152
33
|
@aishaneeshah in
|
|
153
|
-
[#
|
|
154
|
-
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
-
|
|
158
|
-
[#
|
|
159
|
-
- fix(
|
|
160
|
-
@
|
|
161
|
-
[#
|
|
162
|
-
- fix(
|
|
163
|
-
@
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
-
|
|
171
|
-
|
|
172
|
-
-
|
|
173
|
-
|
|
174
|
-
[#
|
|
175
|
-
-
|
|
176
|
-
[#
|
|
177
|
-
- fix:
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
-
|
|
181
|
-
|
|
182
|
-
- docs: correct documentation for enforced authentication type by @cocosheng-g
|
|
183
|
-
in [#25142](https://github.com/google-gemini/gemini-cli/pull/25142)
|
|
184
|
-
- fix(cli): exclude update_topic from confirmation queue count by @Abhijit-2592
|
|
185
|
-
in [#24945](https://github.com/google-gemini/gemini-cli/pull/24945)
|
|
186
|
-
- Memory fix for trace's streamWrapper. by @anthraxmilkshake in
|
|
187
|
-
[#25089](https://github.com/google-gemini/gemini-cli/pull/25089)
|
|
188
|
-
- fix(core): fix quota footer for non-auto models and improve display by
|
|
189
|
-
@jackwotherspoon in
|
|
190
|
-
[#25121](https://github.com/google-gemini/gemini-cli/pull/25121)
|
|
191
|
-
- docs(contributing): clarify self-assignment policy for issues by @jmr in
|
|
192
|
-
[#23087](https://github.com/google-gemini/gemini-cli/pull/23087)
|
|
193
|
-
- feat(core): add skill patching support with /memory inbox integration by
|
|
194
|
-
@SandyTao520 in
|
|
195
|
-
[#25148](https://github.com/google-gemini/gemini-cli/pull/25148)
|
|
196
|
-
- Stop suppressing thoughts and text in model response by @gundermanc in
|
|
197
|
-
[#25073](https://github.com/google-gemini/gemini-cli/pull/25073)
|
|
198
|
-
- fix(release): prefix git hash in nightly versions to prevent semver
|
|
199
|
-
normalization by @SandyTao520 in
|
|
200
|
-
[#25304](https://github.com/google-gemini/gemini-cli/pull/25304)
|
|
201
|
-
- feat(cli): extract QuotaContext and resolve infinite render loop by @Adib234
|
|
202
|
-
in [#24959](https://github.com/google-gemini/gemini-cli/pull/24959)
|
|
203
|
-
- refactor(core): extract and centralize sandbox path utilities by @ehedlund in
|
|
204
|
-
[#25305](https://github.com/google-gemini/gemini-cli/pull/25305)
|
|
205
|
-
- feat(ui): added enhancements to scroll momentum by @devr0306 in
|
|
206
|
-
[#24447](https://github.com/google-gemini/gemini-cli/pull/24447)
|
|
207
|
-
- fix(core): replace custom binary detection with isbinaryfile to correctly
|
|
208
|
-
handle UTF-8 (U+FFFD) by @Anjaligarhwal in
|
|
209
|
-
[#25297](https://github.com/google-gemini/gemini-cli/pull/25297)
|
|
210
|
-
- feat(agent): implement tool-controlled display protocol (Steps 2-3) by
|
|
211
|
-
@mbleigh in [#25134](https://github.com/google-gemini/gemini-cli/pull/25134)
|
|
212
|
-
- Stop showing scrollbar unless we are in terminalBuffer mode by @jacob314 in
|
|
213
|
-
[#25320](https://github.com/google-gemini/gemini-cli/pull/25320)
|
|
214
|
-
- feat: support auth block in MCP servers config in agents by @TanmayVartak in
|
|
215
|
-
[#24770](https://github.com/google-gemini/gemini-cli/pull/24770)
|
|
216
|
-
- fix(core): expose GEMINI_PLANS_DIR to hook environment by @Adib234 in
|
|
217
|
-
[#25296](https://github.com/google-gemini/gemini-cli/pull/25296)
|
|
218
|
-
- feat(core): implement silent fallback for Plan Mode model routing by @jerop in
|
|
219
|
-
[#25317](https://github.com/google-gemini/gemini-cli/pull/25317)
|
|
220
|
-
- fix: correct redirect count increment in fetchJson by @KevinZhao in
|
|
221
|
-
[#24896](https://github.com/google-gemini/gemini-cli/pull/24896)
|
|
222
|
-
- fix(core): prevent secondary crash in ModelRouterService finally block by
|
|
223
|
-
@gundermanc in
|
|
224
|
-
[#25333](https://github.com/google-gemini/gemini-cli/pull/25333)
|
|
225
|
-
- feat(core): introduce decoupled ContextManager and Sidecar architecture by
|
|
34
|
+
[#26480](https://github.com/google-gemini/gemini-cli/pull/26480)
|
|
35
|
+
- docs: clarify Auto Memory proposes memory updates and skills by @SandyTao520
|
|
36
|
+
in [#26527](https://github.com/google-gemini/gemini-cli/pull/26527)
|
|
37
|
+
- fix(core): reject numeric project IDs in GOOGLE_CLOUD_PROJECT (#24695) by
|
|
38
|
+
@Abhijit-2592 in
|
|
39
|
+
[#26532](https://github.com/google-gemini/gemini-cli/pull/26532)
|
|
40
|
+
- fix(core): remove unsafe type assertion suppressions in error utils by
|
|
41
|
+
@himanshu748 in
|
|
42
|
+
[#19881](https://github.com/google-gemini/gemini-cli/pull/19881)
|
|
43
|
+
- fix(core): allow redirection in YOLO and AUTO_EDIT modes without sandboxing by
|
|
44
|
+
@galz10 in [#26542](https://github.com/google-gemini/gemini-cli/pull/26542)
|
|
45
|
+
- ci(release): build and attach unsigned macOS binaries to releases by @ruomengz
|
|
46
|
+
in [#26462](https://github.com/google-gemini/gemini-cli/pull/26462)
|
|
47
|
+
- fix(core): Fix chat corruption bug in context manager. by @joshualitt in
|
|
48
|
+
[#26534](https://github.com/google-gemini/gemini-cli/pull/26534)
|
|
49
|
+
- fix(cli): provide JSON output for AgentExecutionStopped in non-interactive
|
|
50
|
+
mode by @cynthialong0-0 in
|
|
51
|
+
[#26504](https://github.com/google-gemini/gemini-cli/pull/26504)
|
|
52
|
+
- feat(evals): add shell command safety evals by @akh64bit in
|
|
53
|
+
[#26528](https://github.com/google-gemini/gemini-cli/pull/26528)
|
|
54
|
+
- fix(core): handle invalid custom plans directory gracefully by @cynthialong0-0
|
|
55
|
+
in [#26560](https://github.com/google-gemini/gemini-cli/pull/26560)
|
|
56
|
+
- fix(acp): move tool explanation from thought stream to tool call content by
|
|
57
|
+
@sripasg in [#26554](https://github.com/google-gemini/gemini-cli/pull/26554)
|
|
58
|
+
- fix(a2a-server): Resolve race condition in tool completion waiting by @kschaab
|
|
59
|
+
in [#26568](https://github.com/google-gemini/gemini-cli/pull/26568)
|
|
60
|
+
- fix(cli): randomize sandbox container names by @Kkartik14 in
|
|
61
|
+
[#26014](https://github.com/google-gemini/gemini-cli/pull/26014)
|
|
62
|
+
- fix(core): Fix hysteresis in async context management pipelines. by
|
|
226
63
|
@joshualitt in
|
|
227
|
-
[#
|
|
228
|
-
-
|
|
229
|
-
[#
|
|
230
|
-
-
|
|
231
|
-
|
|
232
|
-
-
|
|
233
|
-
|
|
234
|
-
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
[#
|
|
239
|
-
-
|
|
240
|
-
[#
|
|
241
|
-
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
[#
|
|
246
|
-
-
|
|
247
|
-
[#
|
|
248
|
-
-
|
|
249
|
-
|
|
250
|
-
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
@
|
|
259
|
-
[#
|
|
64
|
+
[#26452](https://github.com/google-gemini/gemini-cli/pull/26452)
|
|
65
|
+
- Tighten private Auto Memory patch allowlist by @SandyTao520 in
|
|
66
|
+
[#26535](https://github.com/google-gemini/gemini-cli/pull/26535)
|
|
67
|
+
- fix(cli): hide read-only settings scopes by @cvan20191 in
|
|
68
|
+
[#26249](https://github.com/google-gemini/gemini-cli/pull/26249)
|
|
69
|
+
- fix(ci): preserve executable bit for mac binaries by @ruomengz in
|
|
70
|
+
[#26600](https://github.com/google-gemini/gemini-cli/pull/26600)
|
|
71
|
+
- fix(cli): improve mcp list UX in untrusted folders by @Adib234 in
|
|
72
|
+
[#26457](https://github.com/google-gemini/gemini-cli/pull/26457)
|
|
73
|
+
- fix(core): prevent silent hang during OAuth auth on headless Linux by
|
|
74
|
+
@RhysSullivan in
|
|
75
|
+
[#26571](https://github.com/google-gemini/gemini-cli/pull/26571)
|
|
76
|
+
- Changelog for v0.42.0-preview.0 by @gemini-cli-robot in
|
|
77
|
+
[#26537](https://github.com/google-gemini/gemini-cli/pull/26537)
|
|
78
|
+
- ci: fix Argument list too long in triage workflows by @cocosheng-g in
|
|
79
|
+
[#26603](https://github.com/google-gemini/gemini-cli/pull/26603)
|
|
80
|
+
- refactor(cli): migrate core tools to native ToolDisplay property and fix UI
|
|
81
|
+
rendering by @mbleigh in
|
|
82
|
+
[#25186](https://github.com/google-gemini/gemini-cli/pull/25186)
|
|
83
|
+
- don't wrap args unnecessarily by @scidomino in
|
|
84
|
+
[#26599](https://github.com/google-gemini/gemini-cli/pull/26599)
|
|
85
|
+
- fix(core): preserve system PATH in Git environment to fix ENOENT (#25034) by
|
|
86
|
+
@cocosheng-g in
|
|
87
|
+
[#26587](https://github.com/google-gemini/gemini-cli/pull/26587)
|
|
88
|
+
- fix(routing): fix resolveClassifierModel argument mismatch in
|
|
89
|
+
ApprovalModeStrategy by @danielweis in
|
|
90
|
+
[#26658](https://github.com/google-gemini/gemini-cli/pull/26658)
|
|
91
|
+
- docs: add vi mode shortcuts and clarify MCP/custom sandbox setup by
|
|
92
|
+
@chrisjcthomas in
|
|
93
|
+
[#23853](https://github.com/google-gemini/gemini-cli/pull/23853)
|
|
94
|
+
- fix(ux): fixed issue with transcribed text not showing after releasing space
|
|
95
|
+
by @devr0306 in
|
|
96
|
+
[#26609](https://github.com/google-gemini/gemini-cli/pull/26609)
|
|
97
|
+
- ci: fix json parsing in scheduled triage workflow by @cocosheng-g in
|
|
98
|
+
[#26656](https://github.com/google-gemini/gemini-cli/pull/26656)
|
|
99
|
+
- fix(cli): hide /memory add subcommand when memoryV2 is enabled by @SandyTao520
|
|
100
|
+
in [#26605](https://github.com/google-gemini/gemini-cli/pull/26605)
|
|
101
|
+
- fix: prevent false command conflicts when launching from home directory by
|
|
102
|
+
@Br1an67 in [#23069](https://github.com/google-gemini/gemini-cli/pull/23069)
|
|
103
|
+
- fix(core): cache model routing decision in LocalAgentExecutor by @akh64bit in
|
|
104
|
+
[#26548](https://github.com/google-gemini/gemini-cli/pull/26548)
|
|
105
|
+
- Changelog for v0.42.0-preview.2 by @gemini-cli-robot in
|
|
106
|
+
[#26597](https://github.com/google-gemini/gemini-cli/pull/26597)
|
|
107
|
+
- skip broken test by @scidomino in
|
|
108
|
+
[#26705](https://github.com/google-gemini/gemini-cli/pull/26705)
|
|
109
|
+
- feat: export session to file and import via flag by @cocosheng-g in
|
|
110
|
+
[#26514](https://github.com/google-gemini/gemini-cli/pull/26514)
|
|
111
|
+
- Feat: Add Machine Hostname to CLI interface by @M-DEV-1 in
|
|
112
|
+
[#25637](https://github.com/google-gemini/gemini-cli/pull/25637)
|
|
113
|
+
- docs(extensions): refactor releasing guide and add update mechanisms by
|
|
114
|
+
@ruomengz in [#26595](https://github.com/google-gemini/gemini-cli/pull/26595)
|
|
115
|
+
- fix(ci): fix maintainer identification in lifecycle manager by @gundermanc in
|
|
116
|
+
[#26706](https://github.com/google-gemini/gemini-cli/pull/26706)
|
|
117
|
+
- fix(ui): added quotes around session id in resume tip by @devr0306 in
|
|
118
|
+
[#26669](https://github.com/google-gemini/gemini-cli/pull/26669)
|
|
119
|
+
- Changelog for v0.41.0 by @gemini-cli-robot in
|
|
120
|
+
[#26670](https://github.com/google-gemini/gemini-cli/pull/26670)
|
|
121
|
+
- refactor(core): agent session protocol changes by @adamfweidman in
|
|
122
|
+
[#26661](https://github.com/google-gemini/gemini-cli/pull/26661)
|
|
123
|
+
- fix(context): implement loose boundary policy for gc backstop. by @joshualitt
|
|
124
|
+
in [#26594](https://github.com/google-gemini/gemini-cli/pull/26594)
|
|
125
|
+
- fix(core): throw explicit error on dropped tool responses by @aishaneeshah in
|
|
126
|
+
[#26668](https://github.com/google-gemini/gemini-cli/pull/26668)
|
|
127
|
+
- fix: resolve "function response turn must come immediately after function
|
|
128
|
+
call" error by @danielweis in
|
|
129
|
+
[#26691](https://github.com/google-gemini/gemini-cli/pull/26691)
|
|
130
|
+
- fix(core): resolve parallel tool call streaming ID collision by @aishaneeshah
|
|
131
|
+
in [#26646](https://github.com/google-gemini/gemini-cli/pull/26646)
|
|
132
|
+
- feat(core): add LocalSubagentProtocol behind AgentProtocol by @adamfweidman in
|
|
133
|
+
[#25302](https://github.com/google-gemini/gemini-cli/pull/25302)
|
|
134
|
+
- fix(cli): remove noisy theme registration logs from terminal by @JayadityaGit
|
|
135
|
+
in [#25858](https://github.com/google-gemini/gemini-cli/pull/25858)
|
|
136
|
+
- ci: implement codebase-aware effort level triage by @cocosheng-g in
|
|
137
|
+
[#26666](https://github.com/google-gemini/gemini-cli/pull/26666)
|
|
138
|
+
- feat(acp/core): prefix tool call IDs with tool names to support tool rendering
|
|
139
|
+
in ACP compliant IDEs. by @sripasg in
|
|
140
|
+
[#26676](https://github.com/google-gemini/gemini-cli/pull/26676)
|
|
141
|
+
- fix(mcp): treat GET 404 as 405 in StreamableHTTPClientTransport by @krishdef7
|
|
142
|
+
in [#24847](https://github.com/google-gemini/gemini-cli/pull/24847)
|
|
143
|
+
- feat(core): add RemoteSubagentProtocol behind AgentProtocol by @adamfweidman
|
|
144
|
+
in [#25303](https://github.com/google-gemini/gemini-cli/pull/25303)
|
|
145
|
+
- feat(context): Improvements to the snapshotter. by @joshualitt in
|
|
146
|
+
[#26655](https://github.com/google-gemini/gemini-cli/pull/26655)
|
|
147
|
+
- fix(context): Change snapshotter model config. by @joshualitt in
|
|
148
|
+
[#26745](https://github.com/google-gemini/gemini-cli/pull/26745)
|
|
149
|
+
- fix(cli): allow installing extensions from ssh repo by @danielmundi in
|
|
150
|
+
[#26274](https://github.com/google-gemini/gemini-cli/pull/26274)
|
|
151
|
+
- fix(cli): prevent duplicate SessionStart systemMessage render by @dimssu in
|
|
152
|
+
[#25827](https://github.com/google-gemini/gemini-cli/pull/25827)
|
|
153
|
+
- fix(cli/acp): prevent infinite thought loop in ACP mode by disablig
|
|
154
|
+
nextSpeakerCheck by @sripasg in
|
|
155
|
+
[#26874](https://github.com/google-gemini/gemini-cli/pull/26874)
|
|
156
|
+
- fix(cli): use static tool name in confirmation prompt to avoid parsing errors
|
|
157
|
+
by @cocosheng-g in
|
|
158
|
+
[#26866](https://github.com/google-gemini/gemini-cli/pull/26866)
|
|
159
|
+
- fix(routing): Refactor tool turn handling for the conversation history in
|
|
160
|
+
NumericalClassifierStrategy to prevent 400 Bad Request by @danielweis in
|
|
161
|
+
[#26761](https://github.com/google-gemini/gemini-cli/pull/26761)
|
|
162
|
+
- fix(core): handle malformed projects.json in ProjectRegistry by @cocosheng-g
|
|
163
|
+
in [#26885](https://github.com/google-gemini/gemini-cli/pull/26885)
|
|
164
|
+
- fix(ui): added a gutter width to the input prompt width calculation by
|
|
165
|
+
@devr0306 in [#26882](https://github.com/google-gemini/gemini-cli/pull/26882)
|
|
166
|
+
- fix: prevent EISDIR crash when customIgnoreFilePaths contains directories
|
|
167
|
+
(#19868) by @suhaan-24 in
|
|
168
|
+
[#19898](https://github.com/google-gemini/gemini-cli/pull/19898)
|
|
169
|
+
- revert 6b9b778d821728427eea07b1b97ba07378137d0b by @danielweis in
|
|
170
|
+
[#26893](https://github.com/google-gemini/gemini-cli/pull/26893)
|
|
171
|
+
- Fix/vscode run current file ts by @Neil-N4 in
|
|
172
|
+
[#22894](https://github.com/google-gemini/gemini-cli/pull/22894)
|
|
173
|
+
- Allow Enter to select session while in search mode in /resume by @f-pieri in
|
|
174
|
+
[#21523](https://github.com/google-gemini/gemini-cli/pull/21523)
|
|
175
|
+
- fix(core): ignore .pak and .rpa game archive formats by default by @Eswar809
|
|
176
|
+
in [#26884](https://github.com/google-gemini/gemini-cli/pull/26884)
|
|
177
|
+
- fix(cli): enable adk non-interactive session by @adamfweidman in
|
|
178
|
+
[#26895](https://github.com/google-gemini/gemini-cli/pull/26895)
|
|
179
|
+
- fix(cli): restore resume for legacy sessions by @KurodaKayn in
|
|
180
|
+
[#26577](https://github.com/google-gemini/gemini-cli/pull/26577)
|
|
181
|
+
- fix: respect explicit model selection after Flash quota exhaustion (#26759) by
|
|
182
|
+
@cocosheng-g in
|
|
183
|
+
[#26872](https://github.com/google-gemini/gemini-cli/pull/26872)
|
|
184
|
+
- feat(context): Introduce adaptive token calculator to more accurately
|
|
185
|
+
calculate content sizes. by @joshualitt in
|
|
186
|
+
[#26888](https://github.com/google-gemini/gemini-cli/pull/26888)
|
|
187
|
+
- chore: update checkout action configuration in workflows by @galz10 in
|
|
188
|
+
[#26897](https://github.com/google-gemini/gemini-cli/pull/26897)
|
|
189
|
+
- fix (telemetry): inject quota_project_id to prevent fallback to default oauth
|
|
190
|
+
client by @TNTCompany in
|
|
191
|
+
[#26698](https://github.com/google-gemini/gemini-cli/pull/26698)
|
|
192
|
+
- Exclude extension context from skill extraction agent by @SandyTao520 in
|
|
193
|
+
[#26879](https://github.com/google-gemini/gemini-cli/pull/26879)
|
|
194
|
+
- Enable NumericalRouter when using dynamic model configs by @kevinjwang1 in
|
|
195
|
+
[#26929](https://github.com/google-gemini/gemini-cli/pull/26929)
|
|
196
|
+
- ci: actively triage missing priority labels and intelligently clean up
|
|
197
|
+
conflicting labels by @cocosheng-g in
|
|
198
|
+
[#26865](https://github.com/google-gemini/gemini-cli/pull/26865)
|
|
199
|
+
- refactor(core): introduce SubagentState enum for progress by @adamfweidman in
|
|
200
|
+
[#26934](https://github.com/google-gemini/gemini-cli/pull/26934)
|
|
201
|
+
- fix(ci): replace brittle --no-tag with explicit staging-tmp tag by @scidomino
|
|
202
|
+
in [#26940](https://github.com/google-gemini/gemini-cli/pull/26940)
|
|
203
|
+
- Incremental refactor repo agent towards skills-based composition by
|
|
204
|
+
@gundermanc in
|
|
205
|
+
[#26717](https://github.com/google-gemini/gemini-cli/pull/26717)
|
|
206
|
+
- fix(ui): fixed line wrap padding for selection lists by @devr0306 in
|
|
207
|
+
[#26944](https://github.com/google-gemini/gemini-cli/pull/26944)
|
|
208
|
+
- fix(core): update read_file schema for v1 compatibility (#22183) by
|
|
209
|
+
@cocosheng-g in
|
|
210
|
+
[#26922](https://github.com/google-gemini/gemini-cli/pull/26922)
|
|
211
|
+
- fix(ci): configure git remote with token for authentication by @scidomino in
|
|
212
|
+
[#26949](https://github.com/google-gemini/gemini-cli/pull/26949)
|
|
213
|
+
- fix(patch): cherry-pick 85566a7 to release/v0.43.0-preview.0-pr-27073
|
|
214
|
+
[CONFLICTS] by @gemini-cli-robot in
|
|
215
|
+
[#27256](https://github.com/google-gemini/gemini-cli/pull/27256)
|
|
260
216
|
|
|
261
217
|
**Full Changelog**:
|
|
262
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
218
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.42.0...v0.43.0
|