@machina.ai/cell-cli-core 1.38.1-rc2 → 1.40.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/admin/enterprise-controls.md +1 -1
- package/dist/docs/changelogs/index.md +42 -0
- package/dist/docs/changelogs/latest.md +254 -361
- package/dist/docs/changelogs/preview.md +237 -406
- package/dist/docs/cli/acp-mode.md +6 -6
- package/dist/docs/cli/auto-memory.md +143 -0
- package/dist/docs/cli/checkpointing.md +5 -5
- package/dist/docs/cli/cli-reference.md +12 -11
- package/dist/docs/cli/creating-skills.md +2 -2
- package/dist/docs/cli/custom-commands.md +15 -14
- package/dist/docs/cli/enterprise.md +17 -14
- package/dist/docs/cli/gemini-ignore.md +2 -2
- package/dist/docs/cli/generation-settings.md +21 -20
- package/dist/docs/cli/model-routing.md +2 -2
- package/dist/docs/cli/model-steering.md +1 -1
- package/dist/docs/cli/plan-mode.md +11 -6
- package/dist/docs/cli/sandbox.md +7 -5
- package/dist/docs/cli/settings.md +32 -28
- package/dist/docs/cli/system-prompt.md +8 -8
- package/dist/docs/cli/telemetry.md +18 -11
- package/dist/docs/cli/themes.md +2 -2
- package/dist/docs/cli/trusted-folders.md +41 -13
- package/dist/docs/cli/tutorials/mcp-setup.md +1 -1
- package/dist/docs/cli/tutorials/memory-management.md +3 -1
- package/dist/docs/cli/tutorials/plan-mode-steering.md +2 -2
- package/dist/docs/cli/tutorials/session-management.md +1 -1
- package/dist/docs/cli/tutorials/shell-commands.md +1 -1
- package/dist/docs/cli/tutorials/task-planning.md +3 -3
- package/dist/docs/core/index.md +5 -6
- package/dist/docs/core/local-model-routing.md +1 -1
- package/dist/docs/core/remote-agents.md +1 -1
- package/dist/docs/core/subagents.md +38 -8
- package/dist/docs/extensions/best-practices.md +5 -4
- package/dist/docs/extensions/reference.md +6 -5
- package/dist/docs/extensions/releasing.md +6 -5
- package/dist/docs/extensions/writing-extensions.md +11 -11
- package/dist/docs/get-started/{authentication.md → authentication.mdx} +139 -93
- package/dist/docs/get-started/gemini-3.md +1 -1
- package/dist/docs/get-started/index.md +4 -4
- package/dist/docs/get-started/installation.mdx +201 -0
- package/dist/docs/hooks/best-practices.md +18 -17
- package/dist/docs/hooks/index.md +10 -8
- package/dist/docs/hooks/reference.md +10 -10
- package/dist/docs/ide-integration/ide-companion-spec.md +14 -14
- package/dist/docs/ide-integration/index.md +4 -4
- package/dist/docs/index.md +2 -2
- package/dist/docs/integration-tests.md +84 -2
- package/dist/docs/issue-and-pr-automation.md +8 -7
- package/dist/docs/npm.md +2 -2
- package/dist/docs/reference/commands.md +11 -11
- package/dist/docs/reference/configuration.md +150 -47
- package/dist/docs/reference/keyboard-shortcuts.md +79 -2
- package/dist/docs/reference/memport.md +2 -3
- package/dist/docs/reference/policy-engine.md +60 -26
- package/dist/docs/reference/tools.md +38 -4
- package/dist/docs/release-confidence.md +1 -1
- package/dist/docs/releases.md +19 -19
- package/dist/docs/resources/faq.md +5 -5
- package/dist/docs/resources/tos-privacy.md +10 -9
- package/dist/docs/resources/troubleshooting.md +17 -16
- package/dist/docs/resources/uninstall.md +5 -4
- package/dist/docs/sidebar.json +13 -1
- package/dist/docs/tools/ask-user.md +3 -3
- package/dist/docs/tools/file-system.md +7 -7
- package/dist/docs/tools/mcp-resources.md +44 -0
- package/dist/docs/tools/mcp-server.md +42 -39
- package/dist/docs/tools/shell.md +5 -5
- package/dist/docs/tools/tracker.md +61 -0
- package/dist/package.json +5 -4
- package/dist/src/agent/content-utils.d.ts +0 -6
- package/dist/src/agent/content-utils.js +0 -14
- package/dist/src/agent/content-utils.js.map +1 -1
- package/dist/src/agent/content-utils.test.js +1 -18
- package/dist/src/agent/content-utils.test.js.map +1 -1
- package/dist/src/agent/event-translator.js +8 -3
- package/dist/src/agent/event-translator.js.map +1 -1
- package/dist/src/agent/event-translator.test.js +14 -9
- package/dist/src/agent/event-translator.test.js.map +1 -1
- package/dist/src/agent/legacy-agent-session.js +9 -3
- package/dist/src/agent/legacy-agent-session.js.map +1 -1
- package/dist/src/agent/legacy-agent-session.test.js +4 -3
- package/dist/src/agent/legacy-agent-session.test.js.map +1 -1
- package/dist/src/agent/tool-display-utils.d.ts +30 -0
- package/dist/src/agent/tool-display-utils.js +69 -0
- package/dist/src/agent/tool-display-utils.js.map +1 -0
- package/dist/src/agent/tool-display-utils.test.js +101 -0
- package/dist/src/agent/tool-display-utils.test.js.map +1 -0
- package/dist/src/agent/types.d.ts +25 -5
- package/dist/src/agents/a2aUtils.js +28 -15
- package/dist/src/agents/a2aUtils.js.map +1 -1
- package/dist/src/agents/a2aUtils.test.js +43 -0
- package/dist/src/agents/a2aUtils.test.js.map +1 -1
- package/dist/src/agents/agent-tool.d.ts +31 -0
- package/dist/src/agents/agent-tool.js +155 -0
- package/dist/src/agents/agent-tool.js.map +1 -0
- package/dist/src/agents/agent-tool.test.js +110 -0
- package/dist/src/agents/agent-tool.test.js.map +1 -0
- package/dist/src/agents/agentLoader.d.ts +79 -4
- package/dist/src/agents/agentLoader.js +40 -2
- package/dist/src/agents/agentLoader.js.map +1 -1
- package/dist/src/agents/agentLoader.test.js +32 -0
- package/dist/src/agents/agentLoader.test.js.map +1 -1
- package/dist/src/agents/browser/analyzeScreenshot.js +1 -1
- package/dist/src/agents/browser/analyzeScreenshot.js.map +1 -1
- package/dist/src/agents/browser/analyzeScreenshot.test.js +19 -7
- package/dist/src/agents/browser/analyzeScreenshot.test.js.map +1 -1
- package/dist/src/agents/browser/browser-tools-manifest.json +20 -20
- package/dist/src/agents/browser/browserAgentInvocation.d.ts +2 -2
- package/dist/src/agents/browser/browserAgentInvocation.js +2 -1
- package/dist/src/agents/browser/browserAgentInvocation.js.map +1 -1
- package/dist/src/agents/browser/browserAgentInvocation.test.js +61 -17
- package/dist/src/agents/browser/browserAgentInvocation.test.js.map +1 -1
- package/dist/src/agents/browser/mcpToolWrapper.js +1 -1
- package/dist/src/agents/browser/mcpToolWrapper.js.map +1 -1
- package/dist/src/agents/browser/mcpToolWrapper.test.js +22 -10
- package/dist/src/agents/browser/mcpToolWrapper.test.js.map +1 -1
- package/dist/src/agents/codebase-investigator.js +2 -2
- package/dist/src/agents/codebase-investigator.js.map +1 -1
- package/dist/src/agents/generalist-agent.js +3 -2
- package/dist/src/agents/generalist-agent.js.map +1 -1
- package/dist/src/agents/generalist-agent.test.js +1 -0
- package/dist/src/agents/generalist-agent.test.js.map +1 -1
- package/dist/src/agents/local-executor.d.ts +1 -1
- package/dist/src/agents/local-executor.js +10 -7
- package/dist/src/agents/local-executor.js.map +1 -1
- package/dist/src/agents/local-executor.test.js +5 -3
- package/dist/src/agents/local-executor.test.js.map +1 -1
- package/dist/src/agents/local-invocation.d.ts +2 -2
- package/dist/src/agents/local-invocation.js +8 -2
- package/dist/src/agents/local-invocation.js.map +1 -1
- package/dist/src/agents/local-invocation.test.js +29 -13
- package/dist/src/agents/local-invocation.test.js.map +1 -1
- package/dist/src/agents/registry.d.ts +2 -0
- package/dist/src/agents/registry.js +20 -19
- package/dist/src/agents/registry.js.map +1 -1
- package/dist/src/agents/registry.test.js +19 -30
- package/dist/src/agents/registry.test.js.map +1 -1
- package/dist/src/agents/remote-invocation.d.ts +3 -4
- package/dist/src/agents/remote-invocation.js +2 -1
- package/dist/src/agents/remote-invocation.js.map +1 -1
- package/dist/src/agents/remote-invocation.test.js +45 -18
- package/dist/src/agents/remote-invocation.test.js.map +1 -1
- package/dist/src/agents/skill-extraction-agent.d.ts +3 -2
- package/dist/src/agents/skill-extraction-agent.js +99 -56
- package/dist/src/agents/skill-extraction-agent.js.map +1 -1
- package/dist/src/agents/skill-extraction-agent.test.js +54 -0
- package/dist/src/agents/skill-extraction-agent.test.js.map +1 -0
- package/dist/src/availability/policyCatalog.js +1 -1
- package/dist/src/availability/policyCatalog.js.map +1 -1
- package/dist/src/availability/policyCatalog.test.js +1 -1
- package/dist/src/availability/policyCatalog.test.js.map +1 -1
- package/dist/src/code_assist/oauth2.js +14 -4
- package/dist/src/code_assist/oauth2.js.map +1 -1
- package/dist/src/commands/memory.d.ts +77 -0
- package/dist/src/commands/memory.js +494 -0
- package/dist/src/commands/memory.js.map +1 -1
- package/dist/src/commands/memory.test.js +720 -1
- package/dist/src/commands/memory.test.js.map +1 -1
- package/dist/src/config/config-agents-reload.test.js +26 -31
- package/dist/src/config/config-agents-reload.test.js.map +1 -1
- package/dist/src/config/config.d.ts +24 -10
- package/dist/src/config/config.js +148 -82
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +373 -10
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/constants.d.ts +1 -0
- package/dist/src/config/constants.js +2 -0
- package/dist/src/config/constants.js.map +1 -1
- package/dist/src/config/defaultModelConfigs.js +7 -7
- package/dist/src/config/defaultModelConfigs.js.map +1 -1
- package/dist/src/config/memory.js +1 -1
- package/dist/src/config/memory.js.map +1 -1
- package/dist/src/config/path-validation.test.js +15 -6
- package/dist/src/config/path-validation.test.js.map +1 -1
- package/dist/src/config/projectRegistry.js +113 -32
- package/dist/src/config/projectRegistry.js.map +1 -1
- package/dist/src/config/projectRegistry.test.js +51 -0
- package/dist/src/config/projectRegistry.test.js.map +1 -1
- package/dist/src/config/storage.d.ts +5 -1
- package/dist/src/config/storage.js +14 -1
- package/dist/src/config/storage.js.map +1 -1
- package/dist/src/config/storage.test.js +12 -0
- package/dist/src/config/storage.test.js.map +1 -1
- package/dist/src/confirmation-bus/message-bus.d.ts +4 -1
- package/dist/src/confirmation-bus/message-bus.js +39 -1
- package/dist/src/confirmation-bus/message-bus.js.map +1 -1
- package/dist/src/confirmation-bus/message-bus.test.js +43 -0
- package/dist/src/confirmation-bus/message-bus.test.js.map +1 -1
- package/dist/src/context/config/configLoader.d.ts +13 -0
- package/dist/src/context/config/configLoader.js +65 -0
- package/dist/src/context/config/configLoader.js.map +1 -0
- package/dist/src/context/config/configLoader.test.d.ts +6 -0
- package/dist/src/context/config/configLoader.test.js +79 -0
- package/dist/src/context/config/configLoader.test.js.map +1 -0
- package/dist/src/context/config/profiles.d.ts +17 -0
- package/dist/src/context/config/profiles.js +93 -0
- package/dist/src/context/config/profiles.js.map +1 -0
- package/dist/src/context/config/registry.d.ts +21 -0
- package/dist/src/context/config/registry.js +32 -0
- package/dist/src/context/config/registry.js.map +1 -0
- package/dist/src/context/config/schema.d.ts +45 -0
- package/dist/src/context/config/schema.js +47 -0
- package/dist/src/context/config/schema.js.map +1 -0
- package/dist/src/context/config/types.d.ts +39 -0
- package/dist/src/context/config/types.js +7 -0
- package/dist/src/context/config/types.js.map +1 -0
- package/dist/src/context/contextManager.barrier.test.d.ts +6 -0
- package/dist/src/context/contextManager.barrier.test.js +56 -0
- package/dist/src/context/contextManager.barrier.test.js.map +1 -0
- package/dist/src/context/contextManager.d.ts +49 -0
- package/dist/src/context/contextManager.js +120 -0
- package/dist/src/context/contextManager.js.map +1 -0
- package/dist/src/context/eventBus.d.ts +28 -0
- package/dist/src/context/eventBus.js +27 -0
- package/dist/src/context/eventBus.js.map +1 -0
- package/dist/src/context/graph/behaviorRegistry.d.ts +28 -0
- package/dist/src/context/graph/behaviorRegistry.js +14 -0
- package/dist/src/context/graph/behaviorRegistry.js.map +1 -0
- package/dist/src/context/graph/builtinBehaviors.d.ts +11 -0
- package/dist/src/context/graph/builtinBehaviors.js +145 -0
- package/dist/src/context/graph/builtinBehaviors.js.map +1 -0
- package/dist/src/context/graph/fromGraph.d.ts +9 -0
- package/dist/src/context/graph/fromGraph.js +34 -0
- package/dist/src/context/graph/fromGraph.js.map +1 -0
- package/dist/src/context/graph/mapper.d.ts +16 -0
- package/dist/src/context/graph/mapper.js +16 -0
- package/dist/src/context/graph/mapper.js.map +1 -0
- package/dist/src/context/graph/render.d.ts +15 -0
- package/dist/src/context/graph/render.js +72 -0
- package/dist/src/context/graph/render.js.map +1 -0
- package/dist/src/context/graph/toGraph.d.ts +10 -0
- package/dist/src/context/graph/toGraph.js +172 -0
- package/dist/src/context/graph/toGraph.js.map +1 -0
- package/dist/src/context/graph/types.d.ts +139 -0
- package/dist/src/context/graph/types.js +36 -0
- package/dist/src/context/graph/types.js.map +1 -0
- package/dist/src/context/historyObserver.d.ts +27 -0
- package/dist/src/context/historyObserver.js +64 -0
- package/dist/src/context/historyObserver.js.map +1 -0
- package/dist/src/context/pipeline/contextWorkingBuffer.d.ts +33 -0
- package/dist/src/context/pipeline/contextWorkingBuffer.js +197 -0
- package/dist/src/context/pipeline/contextWorkingBuffer.js.map +1 -0
- package/dist/src/context/pipeline/contextWorkingBuffer.test.d.ts +6 -0
- package/dist/src/context/pipeline/contextWorkingBuffer.test.js +89 -0
- package/dist/src/context/pipeline/contextWorkingBuffer.test.js.map +1 -0
- package/dist/src/context/pipeline/environment.d.ts +27 -0
- package/dist/src/context/pipeline/environment.js +2 -0
- package/dist/src/context/pipeline/environment.js.map +1 -0
- package/dist/src/context/pipeline/environmentImpl.d.ts +28 -0
- package/dist/src/context/pipeline/environmentImpl.js +40 -0
- package/dist/src/context/pipeline/environmentImpl.js.map +1 -0
- package/dist/src/context/pipeline/environmentImpl.test.d.ts +1 -0
- package/dist/src/context/pipeline/environmentImpl.test.js +32 -0
- package/dist/src/context/pipeline/environmentImpl.test.js.map +1 -0
- package/dist/src/context/pipeline/inbox.d.ts +15 -0
- package/dist/src/context/pipeline/inbox.js +52 -0
- package/dist/src/context/pipeline/inbox.js.map +1 -0
- package/dist/src/context/pipeline/inbox.test.d.ts +1 -0
- package/dist/src/context/pipeline/inbox.test.js +36 -0
- package/dist/src/context/pipeline/inbox.test.js.map +1 -0
- package/dist/src/context/pipeline/orchestrator.d.ts +22 -0
- package/dist/src/context/pipeline/orchestrator.js +126 -0
- package/dist/src/context/pipeline/orchestrator.js.map +1 -0
- package/dist/src/context/pipeline/orchestrator.test.d.ts +6 -0
- package/dist/src/context/pipeline/orchestrator.test.js +154 -0
- package/dist/src/context/pipeline/orchestrator.test.js.map +1 -0
- package/dist/src/context/pipeline.d.ts +52 -0
- package/dist/src/context/pipeline.js +7 -0
- package/dist/src/context/pipeline.js.map +1 -0
- package/dist/src/context/processors/blobDegradationProcessor.d.ts +6 -0
- package/dist/src/context/processors/blobDegradationProcessor.js +127 -0
- package/dist/src/context/processors/blobDegradationProcessor.js.map +1 -0
- package/dist/src/context/processors/blobDegradationProcessor.test.d.ts +6 -0
- package/dist/src/context/processors/blobDegradationProcessor.test.js +72 -0
- package/dist/src/context/processors/blobDegradationProcessor.test.js.map +1 -0
- package/dist/src/context/processors/historyTruncationProcessor.d.ts +11 -0
- package/dist/src/context/processors/historyTruncationProcessor.js +61 -0
- package/dist/src/context/processors/historyTruncationProcessor.js.map +1 -0
- package/dist/src/context/processors/nodeDistillationProcessor.d.ts +8 -0
- package/dist/src/context/processors/nodeDistillationProcessor.js +167 -0
- package/dist/src/context/processors/nodeDistillationProcessor.js.map +1 -0
- package/dist/src/context/processors/nodeDistillationProcessor.test.d.ts +6 -0
- package/dist/src/context/processors/nodeDistillationProcessor.test.js +77 -0
- package/dist/src/context/processors/nodeDistillationProcessor.test.js.map +1 -0
- package/dist/src/context/processors/nodeTruncationProcessor.d.ts +8 -0
- package/dist/src/context/processors/nodeTruncationProcessor.js +109 -0
- package/dist/src/context/processors/nodeTruncationProcessor.js.map +1 -0
- package/dist/src/context/processors/nodeTruncationProcessor.test.d.ts +6 -0
- package/dist/src/context/processors/nodeTruncationProcessor.test.js +71 -0
- package/dist/src/context/processors/nodeTruncationProcessor.test.js.map +1 -0
- package/dist/src/context/processors/rollingSummaryProcessor.d.ts +8 -0
- package/dist/src/context/processors/rollingSummaryProcessor.js +129 -0
- package/dist/src/context/processors/rollingSummaryProcessor.js.map +1 -0
- package/dist/src/context/processors/rollingSummaryProcessor.test.d.ts +1 -0
- package/dist/src/context/processors/rollingSummaryProcessor.test.js +60 -0
- package/dist/src/context/processors/rollingSummaryProcessor.test.js.map +1 -0
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.d.ts +9 -0
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.js +75 -0
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.js.map +1 -0
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.test.d.ts +1 -0
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.test.js +80 -0
- package/dist/src/context/processors/stateSnapshotAsyncProcessor.test.js.map +1 -0
- package/dist/src/context/processors/stateSnapshotProcessor.d.ts +9 -0
- package/dist/src/context/processors/stateSnapshotProcessor.js +130 -0
- package/dist/src/context/processors/stateSnapshotProcessor.js.map +1 -0
- package/dist/src/context/processors/stateSnapshotProcessor.test.d.ts +1 -0
- package/dist/src/context/processors/stateSnapshotProcessor.test.js +91 -0
- package/dist/src/context/processors/stateSnapshotProcessor.test.js.map +1 -0
- package/dist/src/context/processors/toolMaskingProcessor.d.ts +8 -0
- package/dist/src/context/processors/toolMaskingProcessor.js +194 -0
- package/dist/src/context/processors/toolMaskingProcessor.js.map +1 -0
- package/dist/src/context/processors/toolMaskingProcessor.test.d.ts +1 -0
- package/dist/src/context/processors/toolMaskingProcessor.test.js +50 -0
- package/dist/src/context/processors/toolMaskingProcessor.test.js.map +1 -0
- package/dist/src/context/system-tests/lifecycle.golden.test.d.ts +6 -0
- package/dist/src/context/system-tests/lifecycle.golden.test.js +195 -0
- package/dist/src/context/system-tests/lifecycle.golden.test.js.map +1 -0
- package/dist/src/context/system-tests/simulationHarness.d.ts +41 -0
- package/dist/src/context/system-tests/simulationHarness.js +88 -0
- package/dist/src/context/system-tests/simulationHarness.js.map +1 -0
- package/dist/src/context/testing/contextTestUtils.d.ts +44 -0
- package/dist/src/context/testing/contextTestUtils.js +176 -0
- package/dist/src/context/testing/contextTestUtils.js.map +1 -0
- package/dist/src/context/testing/testProfile.d.ts +7 -0
- package/dist/src/context/testing/testProfile.js +20 -0
- package/dist/src/context/testing/testProfile.js.map +1 -0
- package/dist/src/context/tracer.d.ts +19 -0
- package/dist/src/context/tracer.js +79 -0
- package/dist/src/context/tracer.js.map +1 -0
- package/dist/src/context/tracer.test.d.ts +6 -0
- package/dist/src/context/tracer.test.js +71 -0
- package/dist/src/context/tracer.test.js.map +1 -0
- package/dist/src/context/utils/contextTokenCalculator.d.ts +53 -0
- package/dist/src/context/utils/contextTokenCalculator.js +97 -0
- package/dist/src/context/utils/contextTokenCalculator.js.map +1 -0
- package/dist/src/context/utils/snapshotGenerator.d.ts +12 -0
- package/dist/src/context/utils/snapshotGenerator.js +43 -0
- package/dist/src/context/utils/snapshotGenerator.js.map +1 -0
- package/dist/src/core/agentChatHistory.d.ts +26 -0
- package/dist/src/core/agentChatHistory.js +50 -0
- package/dist/src/core/agentChatHistory.js.map +1 -0
- package/dist/src/core/client.js +3 -1
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/client.test.js +4 -0
- package/dist/src/core/client.test.js.map +1 -1
- package/dist/src/core/contentGenerator.d.ts +8 -1
- package/dist/src/core/contentGenerator.js +46 -4
- package/dist/src/core/contentGenerator.js.map +1 -1
- package/dist/src/core/contentGenerator.test.js +174 -8
- package/dist/src/core/contentGenerator.test.js.map +1 -1
- package/dist/src/core/coreToolHookTriggers.d.ts +1 -1
- package/dist/src/core/coreToolHookTriggers.js +5 -1
- package/dist/src/core/coreToolHookTriggers.js.map +1 -1
- package/dist/src/core/coreToolHookTriggers.test.js +1 -1
- package/dist/src/core/coreToolHookTriggers.test.js.map +1 -1
- package/dist/src/core/geminiChat.d.ts +2 -1
- package/dist/src/core/geminiChat.js +7 -2
- package/dist/src/core/geminiChat.js.map +1 -1
- package/dist/src/core/geminiChat.test.js +19 -6
- package/dist/src/core/geminiChat.test.js.map +1 -1
- package/dist/src/core/geminiChat_network_retry.test.js +42 -0
- package/dist/src/core/geminiChat_network_retry.test.js.map +1 -1
- package/dist/src/core/localLiteRtLmClient.js +2 -0
- package/dist/src/core/localLiteRtLmClient.js.map +1 -1
- package/dist/src/core/localLiteRtLmClient.test.js +7 -0
- package/dist/src/core/localLiteRtLmClient.test.js.map +1 -1
- package/dist/src/core/loggingContentGenerator.js +19 -6
- package/dist/src/core/loggingContentGenerator.js.map +1 -1
- package/dist/src/core/loggingContentGenerator.test.js +55 -0
- package/dist/src/core/loggingContentGenerator.test.js.map +1 -1
- package/dist/src/core/prompts-substitution.test.js +1 -0
- package/dist/src/core/prompts-substitution.test.js.map +1 -1
- package/dist/src/core/prompts.d.ts +1 -1
- package/dist/src/core/prompts.js +2 -2
- package/dist/src/core/prompts.js.map +1 -1
- package/dist/src/core/prompts.test.js +39 -8
- package/dist/src/core/prompts.test.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/hooks/hookRunner.js +8 -0
- package/dist/src/hooks/hookRunner.js.map +1 -1
- package/dist/src/hooks/hookRunner.test.js +23 -0
- package/dist/src/hooks/hookRunner.test.js.map +1 -1
- package/dist/src/ide/ide-client.js +3 -4
- package/dist/src/ide/ide-client.js.map +1 -1
- package/dist/src/index.d.ts +7 -3
- package/dist/src/index.js +7 -2
- package/dist/src/index.js.map +1 -1
- package/dist/src/mcp/mcpLauncher.js +1 -1
- package/dist/src/mcp/mcpLauncher.js.map +1 -1
- package/dist/src/mcp/oauth-provider.test.js +24 -17
- package/dist/src/mcp/oauth-provider.test.js.map +1 -1
- package/dist/src/policy/config.d.ts +2 -0
- package/dist/src/policy/config.js +67 -12
- package/dist/src/policy/config.js.map +1 -1
- package/dist/src/policy/core-tools-mapping.test.d.ts +6 -0
- package/dist/src/policy/core-tools-mapping.test.js +44 -0
- package/dist/src/policy/core-tools-mapping.test.js.map +1 -0
- package/dist/src/policy/policies/agents.toml +10 -0
- package/dist/src/policy/policies/plan.toml +17 -43
- package/dist/src/policy/policies/read-only.toml +24 -38
- package/dist/src/policy/policy-engine.d.ts +1 -1
- package/dist/src/policy/policy-engine.js +72 -67
- package/dist/src/policy/policy-engine.js.map +1 -1
- package/dist/src/policy/policy-engine.test.js +71 -4
- package/dist/src/policy/policy-engine.test.js.map +1 -1
- package/dist/src/policy/sandboxPolicyManager.js +4 -4
- package/dist/src/policy/sandboxPolicyManager.js.map +1 -1
- package/dist/src/policy/shell-safety-regression.test.d.ts +6 -0
- package/dist/src/policy/shell-safety-regression.test.js +86 -0
- package/dist/src/policy/shell-safety-regression.test.js.map +1 -0
- package/dist/src/policy/shell-safety.test.js +24 -0
- package/dist/src/policy/shell-safety.test.js.map +1 -1
- package/dist/src/policy/shell-substitution.test.d.ts +6 -0
- package/dist/src/policy/shell-substitution.test.js +75 -0
- package/dist/src/policy/shell-substitution.test.js.map +1 -0
- package/dist/src/policy/toml-loader.test.js +25 -11
- package/dist/src/policy/toml-loader.test.js.map +1 -1
- package/dist/src/policy/types.d.ts +6 -2
- package/dist/src/policy/types.js +4 -2
- package/dist/src/policy/types.js.map +1 -1
- package/dist/src/prompts/promptProvider.d.ts +1 -1
- package/dist/src/prompts/promptProvider.js +41 -24
- package/dist/src/prompts/promptProvider.js.map +1 -1
- package/dist/src/prompts/promptProvider.test.js +36 -2
- package/dist/src/prompts/promptProvider.test.js.map +1 -1
- package/dist/src/prompts/snippets-memory-v2.test.d.ts +6 -0
- package/dist/src/prompts/snippets-memory-v2.test.js +94 -0
- package/dist/src/prompts/snippets-memory-v2.test.js.map +1 -0
- package/dist/src/prompts/snippets.d.ts +19 -1
- package/dist/src/prompts/snippets.js +33 -6
- package/dist/src/prompts/snippets.js.map +1 -1
- package/dist/src/prompts/snippets.legacy.d.ts +6 -1
- package/dist/src/prompts/snippets.legacy.js +14 -7
- package/dist/src/prompts/snippets.legacy.js.map +1 -1
- package/dist/src/prompts/utils.test.js +1 -0
- package/dist/src/prompts/utils.test.js.map +1 -1
- package/dist/src/routing/modelRouterService.js +1 -1
- package/dist/src/routing/modelRouterService.js.map +1 -1
- package/dist/src/sandbox/linux/LinuxSandboxManager.d.ts +2 -0
- package/dist/src/sandbox/linux/LinuxSandboxManager.js +43 -19
- package/dist/src/sandbox/linux/LinuxSandboxManager.js.map +1 -1
- package/dist/src/sandbox/linux/LinuxSandboxManager.test.js +16 -0
- package/dist/src/sandbox/linux/LinuxSandboxManager.test.js.map +1 -1
- package/dist/src/sandbox/linux/bwrapArgsBuilder.d.ts +3 -7
- package/dist/src/sandbox/linux/bwrapArgsBuilder.js +96 -105
- package/dist/src/sandbox/linux/bwrapArgsBuilder.js.map +1 -1
- package/dist/src/sandbox/linux/bwrapArgsBuilder.test.js +144 -41
- package/dist/src/sandbox/linux/bwrapArgsBuilder.test.js.map +1 -1
- package/dist/src/sandbox/macos/MacOsSandboxManager.js +19 -10
- package/dist/src/sandbox/macos/MacOsSandboxManager.js.map +1 -1
- package/dist/src/sandbox/macos/MacOsSandboxManager.test.js +24 -37
- package/dist/src/sandbox/macos/MacOsSandboxManager.test.js.map +1 -1
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.d.ts +3 -9
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.js +129 -96
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.js.map +1 -1
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js +78 -77
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.test.js.map +1 -1
- package/dist/src/sandbox/utils/fsUtils.d.ts +2 -3
- package/dist/src/sandbox/utils/fsUtils.js +12 -27
- package/dist/src/sandbox/utils/fsUtils.js.map +1 -1
- package/dist/src/sandbox/utils/fsUtils.test.js +87 -29
- package/dist/src/sandbox/utils/fsUtils.test.js.map +1 -1
- package/dist/src/sandbox/windows/GeminiSandbox.cs +186 -77
- package/dist/src/sandbox/windows/WindowsSandboxManager.d.ts +4 -16
- package/dist/src/sandbox/windows/WindowsSandboxManager.js +138 -204
- package/dist/src/sandbox/windows/WindowsSandboxManager.js.map +1 -1
- package/dist/src/sandbox/windows/WindowsSandboxManager.test.js +105 -122
- package/dist/src/sandbox/windows/WindowsSandboxManager.test.js.map +1 -1
- package/dist/src/scheduler/policy.js +1 -2
- package/dist/src/scheduler/policy.js.map +1 -1
- package/dist/src/scheduler/policy.test.js +58 -2
- package/dist/src/scheduler/policy.test.js.map +1 -1
- package/dist/src/scheduler/scheduler.d.ts +2 -1
- package/dist/src/scheduler/scheduler.js +13 -14
- package/dist/src/scheduler/scheduler.js.map +1 -1
- package/dist/src/scheduler/scheduler.test.js +66 -0
- package/dist/src/scheduler/scheduler.test.js.map +1 -1
- package/dist/src/scheduler/scheduler_hooks.test.js +1 -0
- package/dist/src/scheduler/scheduler_hooks.test.js.map +1 -1
- package/dist/src/scheduler/scheduler_parallel.test.js +2 -0
- package/dist/src/scheduler/scheduler_parallel.test.js.map +1 -1
- package/dist/src/scheduler/tool-executor.js +2 -0
- package/dist/src/scheduler/tool-executor.js.map +1 -1
- package/dist/src/services/chatRecordingService.d.ts +12 -153
- package/dist/src/services/chatRecordingService.js +444 -350
- package/dist/src/services/chatRecordingService.js.map +1 -1
- package/dist/src/services/chatRecordingService.test.js +174 -128
- package/dist/src/services/chatRecordingService.test.js.map +1 -1
- package/dist/src/services/chatRecordingTypes.d.ts +111 -0
- package/dist/src/services/chatRecordingTypes.js +10 -0
- package/dist/src/services/chatRecordingTypes.js.map +1 -0
- package/dist/src/services/gitService.d.ts +2 -0
- package/dist/src/services/gitService.js +10 -1
- package/dist/src/services/gitService.js.map +1 -1
- package/dist/src/services/gitService.test.js +6 -2
- package/dist/src/services/gitService.test.js.map +1 -1
- package/dist/src/services/keychainService.d.ts +2 -2
- package/dist/src/services/keychainService.js +9 -9
- package/dist/src/services/keychainService.js.map +1 -1
- package/dist/src/services/keychainService.test.js +7 -7
- package/dist/src/services/keychainService.test.js.map +1 -1
- package/dist/src/services/keychainTypes.d.ts +1 -1
- package/dist/src/services/memoryPatchUtils.d.ts +42 -0
- package/dist/src/services/memoryPatchUtils.js +216 -0
- package/dist/src/services/memoryPatchUtils.js.map +1 -0
- package/dist/src/services/memoryService.d.ts +21 -1
- package/dist/src/services/memoryService.js +405 -64
- package/dist/src/services/memoryService.js.map +1 -1
- package/dist/src/services/memoryService.test.js +686 -2
- package/dist/src/services/memoryService.test.js.map +1 -1
- package/dist/src/services/sandboxManager.d.ts +33 -19
- package/dist/src/services/sandboxManager.integration.test.js +728 -266
- package/dist/src/services/sandboxManager.integration.test.js.map +1 -1
- package/dist/src/services/sandboxManager.js +65 -62
- package/dist/src/services/sandboxManager.js.map +1 -1
- package/dist/src/services/sandboxManager.test.js +17 -114
- package/dist/src/services/sandboxManager.test.js.map +1 -1
- package/dist/src/services/sandboxedFileSystemService.js +72 -62
- package/dist/src/services/sandboxedFileSystemService.js.map +1 -1
- package/dist/src/services/sessionSummaryUtils.d.ts +1 -1
- package/dist/src/services/sessionSummaryUtils.js +111 -38
- package/dist/src/services/sessionSummaryUtils.js.map +1 -1
- package/dist/src/services/sessionSummaryUtils.test.js +204 -51
- package/dist/src/services/sessionSummaryUtils.test.js.map +1 -1
- package/dist/src/services/shellExecutionService.d.ts +19 -0
- package/dist/src/services/shellExecutionService.js +88 -34
- package/dist/src/services/shellExecutionService.js.map +1 -1
- package/dist/src/services/shellExecutionService.test.js +38 -4
- package/dist/src/services/shellExecutionService.test.js.map +1 -1
- package/dist/src/services/test-data/resolved-aliases-retry.golden.json +259 -259
- package/dist/src/services/test-data/resolved-aliases.golden.json +259 -259
- package/dist/src/telemetry/activity-monitor.js +1 -0
- package/dist/src/telemetry/activity-monitor.js.map +1 -1
- package/dist/src/telemetry/config.js +3 -0
- package/dist/src/telemetry/config.js.map +1 -1
- package/dist/src/telemetry/conseca-logger.js +18 -20
- package/dist/src/telemetry/conseca-logger.js.map +1 -1
- package/dist/src/telemetry/conseca-logger.test.js +100 -0
- package/dist/src/telemetry/conseca-logger.test.js.map +1 -1
- package/dist/src/telemetry/event-loop-monitor.d.ts +17 -0
- package/dist/src/telemetry/event-loop-monitor.js +76 -0
- package/dist/src/telemetry/event-loop-monitor.js.map +1 -0
- package/dist/src/telemetry/index.d.ts +2 -1
- package/dist/src/telemetry/index.js +2 -1
- package/dist/src/telemetry/index.js.map +1 -1
- package/dist/src/telemetry/llmRole.d.ts +2 -1
- package/dist/src/telemetry/llmRole.js +1 -0
- package/dist/src/telemetry/llmRole.js.map +1 -1
- package/dist/src/telemetry/loggers.test.js +184 -8
- package/dist/src/telemetry/loggers.test.js.map +1 -1
- package/dist/src/telemetry/memory-monitor.d.ts +1 -0
- package/dist/src/telemetry/memory-monitor.js +8 -1
- package/dist/src/telemetry/memory-monitor.js.map +1 -1
- package/dist/src/telemetry/memory-monitor.test.js +6 -1
- package/dist/src/telemetry/memory-monitor.test.js.map +1 -1
- package/dist/src/telemetry/metrics.d.ts +12 -0
- package/dist/src/telemetry/metrics.js +19 -0
- package/dist/src/telemetry/metrics.js.map +1 -1
- package/dist/src/telemetry/sdk.js +20 -1
- package/dist/src/telemetry/sdk.js.map +1 -1
- package/dist/src/telemetry/trace.d.ts +23 -6
- package/dist/src/telemetry/trace.js +71 -22
- package/dist/src/telemetry/trace.js.map +1 -1
- package/dist/src/telemetry/trace.test.js +79 -15
- package/dist/src/telemetry/trace.test.js.map +1 -1
- package/dist/src/telemetry/types.js +61 -15
- package/dist/src/telemetry/types.js.map +1 -1
- package/dist/src/test-utils/mock-tool.d.ts +3 -2
- package/dist/src/test-utils/mock-tool.js +4 -3
- package/dist/src/test-utils/mock-tool.js.map +1 -1
- package/dist/src/tools/activate-skill.js +1 -1
- package/dist/src/tools/activate-skill.js.map +1 -1
- package/dist/src/tools/activate-skill.test.js +6 -2
- package/dist/src/tools/activate-skill.test.js.map +1 -1
- package/dist/src/tools/ask-user.d.ts +2 -2
- package/dist/src/tools/ask-user.js +1 -1
- package/dist/src/tools/ask-user.js.map +1 -1
- package/dist/src/tools/ask-user.test.js +9 -3
- package/dist/src/tools/ask-user.test.js.map +1 -1
- package/dist/src/tools/complete-task.d.ts +2 -2
- package/dist/src/tools/complete-task.js +1 -1
- package/dist/src/tools/complete-task.js.map +1 -1
- package/dist/src/tools/complete-task.test.js +9 -3
- package/dist/src/tools/complete-task.test.js.map +1 -1
- package/dist/src/tools/definitions/base-declarations.d.ts +2 -0
- package/dist/src/tools/definitions/base-declarations.js +3 -0
- package/dist/src/tools/definitions/base-declarations.js.map +1 -1
- package/dist/src/tools/definitions/coreTools.d.ts +3 -1
- package/dist/src/tools/definitions/coreTools.js +13 -1
- package/dist/src/tools/definitions/coreTools.js.map +1 -1
- package/dist/src/tools/definitions/model-family-sets/default-legacy.js +29 -1
- package/dist/src/tools/definitions/model-family-sets/default-legacy.js.map +1 -1
- package/dist/src/tools/definitions/model-family-sets/gemini-3.js +29 -1
- package/dist/src/tools/definitions/model-family-sets/gemini-3.js.map +1 -1
- package/dist/src/tools/definitions/types.d.ts +2 -0
- package/dist/src/tools/edit.js +20 -4
- package/dist/src/tools/edit.js.map +1 -1
- package/dist/src/tools/edit.test.js +41 -18
- package/dist/src/tools/edit.test.js.map +1 -1
- package/dist/src/tools/enter-plan-mode.d.ts +2 -2
- package/dist/src/tools/enter-plan-mode.js +1 -1
- package/dist/src/tools/enter-plan-mode.js.map +1 -1
- package/dist/src/tools/enter-plan-mode.test.js +10 -4
- package/dist/src/tools/enter-plan-mode.test.js.map +1 -1
- package/dist/src/tools/exit-plan-mode.d.ts +2 -2
- package/dist/src/tools/exit-plan-mode.js +9 -12
- package/dist/src/tools/exit-plan-mode.js.map +1 -1
- package/dist/src/tools/exit-plan-mode.test.js +44 -17
- package/dist/src/tools/exit-plan-mode.test.js.map +1 -1
- package/dist/src/tools/get-internal-docs.js +6 -3
- package/dist/src/tools/get-internal-docs.js.map +1 -1
- package/dist/src/tools/get-internal-docs.test.js +4 -4
- package/dist/src/tools/get-internal-docs.test.js.map +1 -1
- package/dist/src/tools/glob.js +1 -1
- package/dist/src/tools/glob.js.map +1 -1
- package/dist/src/tools/glob.test.js +16 -16
- package/dist/src/tools/glob.test.js.map +1 -1
- package/dist/src/tools/grep.js +21 -12
- package/dist/src/tools/grep.js.map +1 -1
- package/dist/src/tools/grep.test.js +18 -18
- package/dist/src/tools/grep.test.js.map +1 -1
- package/dist/src/tools/line-endings.test.js +3 -3
- package/dist/src/tools/line-endings.test.js.map +1 -1
- package/dist/src/tools/list-mcp-resources.d.ts +24 -0
- package/dist/src/tools/list-mcp-resources.js +74 -0
- package/dist/src/tools/list-mcp-resources.js.map +1 -0
- package/dist/src/tools/list-mcp-resources.test.d.ts +6 -0
- package/dist/src/tools/list-mcp-resources.test.js +79 -0
- package/dist/src/tools/list-mcp-resources.test.js.map +1 -0
- package/dist/src/tools/ls.js +2 -2
- package/dist/src/tools/ls.js.map +1 -1
- package/dist/src/tools/ls.test.js +21 -21
- package/dist/src/tools/ls.test.js.map +1 -1
- package/dist/src/tools/mcp-client-manager.d.ts +3 -1
- package/dist/src/tools/mcp-client-manager.js +24 -1
- package/dist/src/tools/mcp-client-manager.js.map +1 -1
- package/dist/src/tools/mcp-client-manager.test.js +43 -0
- package/dist/src/tools/mcp-client-manager.test.js.map +1 -1
- package/dist/src/tools/mcp-client.js +10 -12
- package/dist/src/tools/mcp-client.js.map +1 -1
- package/dist/src/tools/mcp-client.test.js +14 -2
- package/dist/src/tools/mcp-client.test.js.map +1 -1
- package/dist/src/tools/mcp-tool.d.ts +2 -2
- package/dist/src/tools/mcp-tool.js +1 -1
- package/dist/src/tools/mcp-tool.js.map +1 -1
- package/dist/src/tools/mcp-tool.test.js +51 -21
- package/dist/src/tools/mcp-tool.test.js.map +1 -1
- package/dist/src/tools/memoryTool.d.ts +4 -3
- package/dist/src/tools/memoryTool.js +43 -14
- package/dist/src/tools/memoryTool.js.map +1 -1
- package/dist/src/tools/memoryTool.test.js +29 -9
- package/dist/src/tools/memoryTool.test.js.map +1 -1
- package/dist/src/tools/read-file.js +1 -1
- package/dist/src/tools/read-file.js.map +1 -1
- package/dist/src/tools/read-file.test.js +17 -17
- package/dist/src/tools/read-file.test.js.map +1 -1
- package/dist/src/tools/read-many-files.js +4 -4
- package/dist/src/tools/read-many-files.js.map +1 -1
- package/dist/src/tools/read-many-files.test.js +70 -24
- package/dist/src/tools/read-many-files.test.js.map +1 -1
- package/dist/src/tools/read-mcp-resource.d.ts +25 -0
- package/dist/src/tools/read-mcp-resource.js +120 -0
- package/dist/src/tools/read-mcp-resource.js.map +1 -0
- package/dist/src/tools/read-mcp-resource.test.d.ts +6 -0
- package/dist/src/tools/read-mcp-resource.test.js +110 -0
- package/dist/src/tools/read-mcp-resource.test.js.map +1 -0
- package/dist/src/tools/ripGrep.d.ts +3 -2
- package/dist/src/tools/ripGrep.js +26 -55
- package/dist/src/tools/ripGrep.js.map +1 -1
- package/dist/src/tools/ripGrep.test.js +113 -167
- package/dist/src/tools/ripGrep.test.js.map +1 -1
- package/dist/src/tools/shell.d.ts +2 -2
- package/dist/src/tools/shell.js +51 -21
- package/dist/src/tools/shell.js.map +1 -1
- package/dist/src/tools/shell.test.js +479 -76
- package/dist/src/tools/shell.test.js.map +1 -1
- package/dist/src/tools/shellBackgroundTools.d.ts +3 -3
- package/dist/src/tools/shellBackgroundTools.integration.test.js +6 -2
- package/dist/src/tools/shellBackgroundTools.integration.test.js.map +1 -1
- package/dist/src/tools/shellBackgroundTools.js +2 -2
- package/dist/src/tools/shellBackgroundTools.js.map +1 -1
- package/dist/src/tools/shellBackgroundTools.test.js +30 -10
- package/dist/src/tools/shellBackgroundTools.test.js.map +1 -1
- package/dist/src/tools/tool-error.d.ts +1 -0
- package/dist/src/tools/tool-error.js +1 -0
- package/dist/src/tools/tool-error.js.map +1 -1
- package/dist/src/tools/tool-names.d.ts +5 -4
- package/dist/src/tools/tool-names.js +8 -2
- package/dist/src/tools/tool-names.js.map +1 -1
- package/dist/src/tools/tool-registry.js +137 -114
- package/dist/src/tools/tool-registry.js.map +1 -1
- package/dist/src/tools/tool-registry.test.js +3 -1
- package/dist/src/tools/tool-registry.test.js.map +1 -1
- package/dist/src/tools/tools.d.ts +6 -6
- package/dist/src/tools/tools.js +6 -2
- package/dist/src/tools/tools.js.map +1 -1
- package/dist/src/tools/topicTool.d.ts +2 -2
- package/dist/src/tools/topicTool.js +1 -1
- package/dist/src/tools/topicTool.js.map +1 -1
- package/dist/src/tools/topicTool.test.js +6 -2
- package/dist/src/tools/topicTool.test.js.map +1 -1
- package/dist/src/tools/trackerTools.d.ts +7 -7
- package/dist/src/tools/trackerTools.js +6 -6
- package/dist/src/tools/trackerTools.js.map +1 -1
- package/dist/src/tools/web-fetch.js +1 -1
- package/dist/src/tools/web-fetch.js.map +1 -1
- package/dist/src/tools/web-fetch.test.js +59 -23
- package/dist/src/tools/web-fetch.test.js.map +1 -1
- package/dist/src/tools/web-search.js +1 -1
- package/dist/src/tools/web-search.js.map +1 -1
- package/dist/src/tools/web-search.test.js +5 -5
- package/dist/src/tools/web-search.test.js.map +1 -1
- package/dist/src/tools/write-file.js +22 -4
- package/dist/src/tools/write-file.js.map +1 -1
- package/dist/src/tools/write-file.test.js +29 -11
- package/dist/src/tools/write-file.test.js.map +1 -1
- package/dist/src/tools/write-todos.js +1 -1
- package/dist/src/tools/write-todos.js.map +1 -1
- package/dist/src/utils/compatibility.js +6 -1
- package/dist/src/utils/compatibility.js.map +1 -1
- package/dist/src/utils/compatibility.test.js +23 -0
- package/dist/src/utils/compatibility.test.js.map +1 -1
- package/dist/src/utils/errors.d.ts +3 -0
- package/dist/src/utils/errors.js +6 -0
- package/dist/src/utils/errors.js.map +1 -1
- package/dist/src/utils/fileUtils.d.ts +1 -2
- package/dist/src/utils/fileUtils.js +80 -40
- package/dist/src/utils/fileUtils.js.map +1 -1
- package/dist/src/utils/fileUtils.test.js +61 -0
- package/dist/src/utils/fileUtils.test.js.map +1 -1
- package/dist/src/utils/filesearch/fileSearch.d.ts +2 -0
- package/dist/src/utils/filesearch/fileSearch.js +97 -6
- package/dist/src/utils/filesearch/fileSearch.js.map +1 -1
- package/dist/src/utils/filesearch/fileSearch.test.js +54 -0
- package/dist/src/utils/filesearch/fileSearch.test.js.map +1 -1
- package/dist/src/utils/filesearch/fileWatcher.d.ts +25 -0
- package/dist/src/utils/filesearch/fileWatcher.js +86 -0
- package/dist/src/utils/filesearch/fileWatcher.js.map +1 -0
- package/dist/src/utils/filesearch/fileWatcher.test.js +142 -0
- package/dist/src/utils/filesearch/fileWatcher.test.js.map +1 -0
- package/dist/src/utils/getFolderStructure.js +4 -2
- package/dist/src/utils/getFolderStructure.js.map +1 -1
- package/dist/src/utils/gitIgnoreParser.js +1 -1
- package/dist/src/utils/gitIgnoreParser.js.map +1 -1
- package/dist/src/utils/googleQuotaErrors.d.ts +2 -1
- package/dist/src/utils/googleQuotaErrors.js +30 -35
- package/dist/src/utils/googleQuotaErrors.js.map +1 -1
- package/dist/src/utils/googleQuotaErrors.test.js +24 -0
- package/dist/src/utils/googleQuotaErrors.test.js.map +1 -1
- package/dist/src/utils/ignoreFileParser.js +1 -1
- package/dist/src/utils/ignoreFileParser.js.map +1 -1
- package/dist/src/utils/memoryDiscovery.js +15 -5
- package/dist/src/utils/memoryDiscovery.js.map +1 -1
- package/dist/src/utils/oauth-flow.js +17 -5
- package/dist/src/utils/oauth-flow.js.map +1 -1
- package/dist/src/utils/oauth-flow.test.js +20 -0
- package/dist/src/utils/oauth-flow.test.js.map +1 -1
- package/dist/src/utils/paths.d.ts +9 -0
- package/dist/src/utils/paths.js +37 -0
- package/dist/src/utils/paths.js.map +1 -1
- package/dist/src/utils/paths.test.js +45 -1
- package/dist/src/utils/paths.test.js.map +1 -1
- package/dist/src/utils/planUtils.d.ts +11 -2
- package/dist/src/utils/planUtils.js +43 -11
- package/dist/src/utils/planUtils.js.map +1 -1
- package/dist/src/utils/planUtils.test.js +10 -9
- package/dist/src/utils/planUtils.test.js.map +1 -1
- package/dist/src/utils/process-utils.d.ts +2 -1
- package/dist/src/utils/process-utils.js +64 -33
- package/dist/src/utils/process-utils.js.map +1 -1
- package/dist/src/utils/process-utils.test.js +9 -0
- package/dist/src/utils/process-utils.test.js.map +1 -1
- package/dist/src/utils/retry.js +18 -6
- package/dist/src/utils/retry.js.map +1 -1
- package/dist/src/utils/retry.test.js +30 -0
- package/dist/src/utils/retry.test.js.map +1 -1
- package/dist/src/utils/sessionOperations.js +3 -2
- package/dist/src/utils/sessionOperations.js.map +1 -1
- package/dist/src/utils/shell-utils.d.ts +2 -0
- package/dist/src/utils/shell-utils.js +237 -107
- package/dist/src/utils/shell-utils.js.map +1 -1
- package/dist/src/utils/tool-utils.d.ts +1 -29
- package/dist/src/utils/tool-utils.js +0 -39
- package/dist/src/utils/tool-utils.js.map +1 -1
- package/dist/src/utils/tool-utils.test.js +2 -76
- package/dist/src/utils/tool-utils.test.js.map +1 -1
- package/dist/src/utils/tool-visibility.d.ts +40 -0
- package/dist/src/utils/tool-visibility.js +111 -0
- package/dist/src/utils/tool-visibility.js.map +1 -0
- package/dist/src/utils/tool-visibility.test.d.ts +6 -0
- package/dist/src/utils/tool-visibility.test.js +96 -0
- package/dist/src/utils/tool-visibility.test.js.map +1 -0
- package/dist/src/utils/trust.d.ts +64 -0
- package/dist/src/utils/trust.js +276 -0
- package/dist/src/utils/trust.js.map +1 -0
- package/dist/src/utils/trust.test.d.ts +6 -0
- package/dist/src/utils/trust.test.js +159 -0
- package/dist/src/utils/trust.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -4
- package/dist/docs/get-started/installation.md +0 -181
- package/dist/src/agents/memory-manager-agent.d.ts +0 -25
- package/dist/src/agents/memory-manager-agent.js +0 -138
- package/dist/src/agents/memory-manager-agent.js.map +0 -1
- package/dist/src/agents/memory-manager-agent.test.js +0 -123
- package/dist/src/agents/memory-manager-agent.test.js.map +0 -1
- package/dist/src/agents/subagent-tool-wrapper.d.ts +0 -38
- package/dist/src/agents/subagent-tool-wrapper.js +0 -58
- package/dist/src/agents/subagent-tool-wrapper.js.map +0 -1
- package/dist/src/agents/subagent-tool-wrapper.test.js +0 -123
- package/dist/src/agents/subagent-tool-wrapper.test.js.map +0 -1
- package/dist/src/agents/subagent-tool.d.ts +0 -18
- package/dist/src/agents/subagent-tool.js +0 -134
- package/dist/src/agents/subagent-tool.js.map +0 -1
- package/dist/src/agents/subagent-tool.test.js +0 -287
- package/dist/src/agents/subagent-tool.test.js.map +0 -1
- package/dist/src/policy/policies/tracker.toml +0 -34
- package/dist/src/prompts/snippets-memory-manager.test.js +0 -31
- package/dist/src/prompts/snippets-memory-manager.test.js.map +0 -1
- /package/dist/src/{agents/memory-manager-agent.test.d.ts → agent/tool-display-utils.test.d.ts} +0 -0
- /package/dist/src/agents/{subagent-tool.test.d.ts → agent-tool.test.d.ts} +0 -0
- /package/dist/src/{prompts/snippets-memory-manager.test.d.ts → agents/skill-extraction-agent.test.d.ts} +0 -0
- /package/dist/src/{agents/subagent-tool-wrapper.test.d.ts → utils/filesearch/fileWatcher.test.d.ts} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Latest stable release: v0.
|
|
1
|
+
# Latest stable release: v0.38.2
|
|
2
2
|
|
|
3
|
-
Released: April
|
|
3
|
+
Released: April 17, 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,371 +11,264 @@ npm install -g @google/gemini-cli
|
|
|
11
11
|
|
|
12
12
|
## Highlights
|
|
13
13
|
|
|
14
|
-
- **
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- **
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- **Enhanced UI
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- **
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
14
|
+
- **Chapters Narrative Flow:** Introduced tool-based topic grouping ("Chapters")
|
|
15
|
+
to provide better session structure and narrative continuity in long-running
|
|
16
|
+
tasks.
|
|
17
|
+
- **Context Compression Service:** Implemented a dedicated service for advanced
|
|
18
|
+
context management, efficiently distilling conversation history to preserve
|
|
19
|
+
focus and tokens.
|
|
20
|
+
- **Enhanced UI Stability & UX:** Introduced a new "Terminal Buffer" mode to
|
|
21
|
+
solve rendering flicker, along with selective topic expansion and improved
|
|
22
|
+
tool confirmation layouts.
|
|
23
|
+
- **Context-Aware Policy Approvals:** Users can now grant persistent,
|
|
24
|
+
context-aware approvals for tools, significantly reducing manual confirmation
|
|
25
|
+
overhead for trusted workflows.
|
|
26
|
+
- **Background Process Monitoring:** New tools for monitoring and inspecting
|
|
27
|
+
background shell processes, providing better visibility into asynchronous
|
|
28
|
+
tasks.
|
|
27
29
|
|
|
28
30
|
## What's Changed
|
|
29
31
|
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
[#
|
|
36
|
-
- fix(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
-
|
|
40
|
-
|
|
41
|
-
- chore(release): bump version to 0.36.0-nightly.20260317.2f90b4653 by
|
|
42
|
-
@gemini-cli-robot in
|
|
43
|
-
[#22858](https://github.com/google-gemini/gemini-cli/pull/22858)
|
|
44
|
-
- fix(cli): use active sessionId in useLogger and improve resume robustness by
|
|
45
|
-
@mattKorwel in
|
|
46
|
-
[#22606](https://github.com/google-gemini/gemini-cli/pull/22606)
|
|
47
|
-
- fix(cli): expand tilde in policy paths from settings.json by @abhipatel12 in
|
|
48
|
-
[#22772](https://github.com/google-gemini/gemini-cli/pull/22772)
|
|
49
|
-
- fix(core): add actionable warnings for terminal fallbacks (#14426) by
|
|
50
|
-
@spencer426 in
|
|
51
|
-
[#22211](https://github.com/google-gemini/gemini-cli/pull/22211)
|
|
52
|
-
- feat(tracker): integrate task tracker protocol into core system prompt by
|
|
53
|
-
@anj-s in [#22442](https://github.com/google-gemini/gemini-cli/pull/22442)
|
|
54
|
-
- chore: add posttest build hooks and fix missing dependencies by @NTaylorMullen
|
|
55
|
-
in [#22865](https://github.com/google-gemini/gemini-cli/pull/22865)
|
|
56
|
-
- feat(a2a): add agent acknowledgment command and enhance registry discovery by
|
|
57
|
-
@alisa-alisa in
|
|
58
|
-
[#22389](https://github.com/google-gemini/gemini-cli/pull/22389)
|
|
59
|
-
- fix(cli): automatically add all VSCode workspace folders to Gemini context by
|
|
60
|
-
@sakshisemalti in
|
|
61
|
-
[#21380](https://github.com/google-gemini/gemini-cli/pull/21380)
|
|
62
|
-
- feat: add 'blocked' status to tasks and todos by @anj-s in
|
|
63
|
-
[#22735](https://github.com/google-gemini/gemini-cli/pull/22735)
|
|
64
|
-
- refactor(cli): remove extra newlines in ShellToolMessage.tsx by @NTaylorMullen
|
|
65
|
-
in [#22868](https://github.com/google-gemini/gemini-cli/pull/22868)
|
|
66
|
-
- fix(cli): lazily load settings in onModelChange to prevent stale closure data
|
|
67
|
-
loss by @KumarADITHYA123 in
|
|
68
|
-
[#20403](https://github.com/google-gemini/gemini-cli/pull/20403)
|
|
69
|
-
- feat(core): subagent local execution and tool isolation by @akh64bit in
|
|
70
|
-
[#22718](https://github.com/google-gemini/gemini-cli/pull/22718)
|
|
71
|
-
- fix(cli): resolve subagent grouping and UI state persistence by @abhipatel12
|
|
72
|
-
in [#22252](https://github.com/google-gemini/gemini-cli/pull/22252)
|
|
73
|
-
- refactor(ui): extract SessionBrowser search and navigation components by
|
|
32
|
+
- fix(patch): cherry-pick 14b2f35 to release/v0.38.1-pr-24974 to patch version
|
|
33
|
+
v0.38.1 and create version 0.38.2 by @gemini-cli-robot in
|
|
34
|
+
[#25585](https://github.com/google-gemini/gemini-cli/pull/25585)
|
|
35
|
+
- fix(patch): cherry-pick 050c303 to release/v0.38.0-pr-25317 to patch version
|
|
36
|
+
v0.38.0 and create version 0.38.1 by @gemini-cli-robot in
|
|
37
|
+
[#25466](https://github.com/google-gemini/gemini-cli/pull/25466)
|
|
38
|
+
- fix(cli): refresh slash command list after /skills reload by @NTaylorMullen in
|
|
39
|
+
[#24454](https://github.com/google-gemini/gemini-cli/pull/24454)
|
|
40
|
+
- Update README.md for links. by @g-samroberts in
|
|
41
|
+
[#22759](https://github.com/google-gemini/gemini-cli/pull/22759)
|
|
42
|
+
- fix(core): ensure complete_task tool calls are recorded in chat history by
|
|
74
43
|
@abhipatel12 in
|
|
75
|
-
[#
|
|
76
|
-
-
|
|
77
|
-
[#
|
|
78
|
-
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
- Changelog for v0.
|
|
84
|
-
[#
|
|
85
|
-
-
|
|
86
|
-
[#
|
|
87
|
-
-
|
|
88
|
-
in
|
|
89
|
-
-
|
|
90
|
-
|
|
91
|
-
-
|
|
92
|
-
|
|
93
|
-
-
|
|
94
|
-
|
|
95
|
-
-
|
|
96
|
-
|
|
97
|
-
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
-
|
|
102
|
-
|
|
103
|
-
-
|
|
104
|
-
[#
|
|
105
|
-
- fix(
|
|
106
|
-
@
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
[#
|
|
118
|
-
- fix
|
|
119
|
-
|
|
120
|
-
-
|
|
121
|
-
|
|
122
|
-
- fix: circumvent genai sdk requirement for api key when using gateway auth via
|
|
123
|
-
ACP by @sripasg in
|
|
124
|
-
[#23042](https://github.com/google-gemini/gemini-cli/pull/23042)
|
|
125
|
-
- fix(core): don't persist browser consent sentinel in non-interactive mode by
|
|
126
|
-
@jasonmatthewsuhari in
|
|
127
|
-
[#23073](https://github.com/google-gemini/gemini-cli/pull/23073)
|
|
128
|
-
- fix(core): narrow browser agent description to prevent stealing URL tasks from
|
|
129
|
-
web_fetch by @gsquared94 in
|
|
130
|
-
[#23086](https://github.com/google-gemini/gemini-cli/pull/23086)
|
|
131
|
-
- feat(cli): Partial threading of AgentLoopContext. by @joshualitt in
|
|
132
|
-
[#22978](https://github.com/google-gemini/gemini-cli/pull/22978)
|
|
133
|
-
- fix(browser-agent): enable "Allow all server tools" session policy by
|
|
134
|
-
@cynthialong0-0 in
|
|
135
|
-
[#22343](https://github.com/google-gemini/gemini-cli/pull/22343)
|
|
136
|
-
- refactor(cli): integrate real config loading into async test utils by
|
|
137
|
-
@scidomino in [#23040](https://github.com/google-gemini/gemini-cli/pull/23040)
|
|
138
|
-
- feat(core): inject memory and JIT context into subagents by @abhipatel12 in
|
|
139
|
-
[#23032](https://github.com/google-gemini/gemini-cli/pull/23032)
|
|
140
|
-
- Fix logging and virtual list. by @jacob314 in
|
|
141
|
-
[#23080](https://github.com/google-gemini/gemini-cli/pull/23080)
|
|
142
|
-
- feat(core): cap JIT context upward traversal at git root by @SandyTao520 in
|
|
143
|
-
[#23074](https://github.com/google-gemini/gemini-cli/pull/23074)
|
|
144
|
-
- Docs: Minor style updates from initial docs audit. by @g-samroberts in
|
|
145
|
-
[#22872](https://github.com/google-gemini/gemini-cli/pull/22872)
|
|
146
|
-
- feat(core): add experimental memory manager agent to replace save_memory tool
|
|
147
|
-
by @SandyTao520 in
|
|
148
|
-
[#22726](https://github.com/google-gemini/gemini-cli/pull/22726)
|
|
149
|
-
- Changelog for v0.35.0-preview.2 by @gemini-cli-robot in
|
|
150
|
-
[#23142](https://github.com/google-gemini/gemini-cli/pull/23142)
|
|
151
|
-
- Update website issue template for label and title by @g-samroberts in
|
|
152
|
-
[#23036](https://github.com/google-gemini/gemini-cli/pull/23036)
|
|
153
|
-
- fix: upgrade ACP SDK from 0.12 to 0.16.1 by @sripasg in
|
|
154
|
-
[#23132](https://github.com/google-gemini/gemini-cli/pull/23132)
|
|
155
|
-
- Update callouts to work on github. by @g-samroberts in
|
|
156
|
-
[#22245](https://github.com/google-gemini/gemini-cli/pull/22245)
|
|
157
|
-
- feat: ACP: Add token usage metadata to the `send` method's return value by
|
|
158
|
-
@sripasg in [#23148](https://github.com/google-gemini/gemini-cli/pull/23148)
|
|
159
|
-
- fix(plan): clarify that plan mode policies are combined with normal mode by
|
|
160
|
-
@ruomengz in [#23158](https://github.com/google-gemini/gemini-cli/pull/23158)
|
|
161
|
-
- Add ModelChain support to ModelConfigService and make ModelDialog dynamic by
|
|
162
|
-
@kevinjwang1 in
|
|
163
|
-
[#22914](https://github.com/google-gemini/gemini-cli/pull/22914)
|
|
164
|
-
- Ensure that copied extensions are writable in the user's local directory by
|
|
165
|
-
@kevinjwang1 in
|
|
166
|
-
[#23016](https://github.com/google-gemini/gemini-cli/pull/23016)
|
|
167
|
-
- feat(core): implement native Windows sandboxing by @mattKorwel in
|
|
168
|
-
[#21807](https://github.com/google-gemini/gemini-cli/pull/21807)
|
|
169
|
-
- feat(core): add support for admin-forced MCP server installations by
|
|
44
|
+
[#24437](https://github.com/google-gemini/gemini-cli/pull/24437)
|
|
45
|
+
- feat(policy): explicitly allow web_fetch in plan mode with ask_user by
|
|
46
|
+
@Adib234 in [#24456](https://github.com/google-gemini/gemini-cli/pull/24456)
|
|
47
|
+
- fix(core): refactor linux sandbox to fix ARG_MAX crashes by @ehedlund in
|
|
48
|
+
[#24286](https://github.com/google-gemini/gemini-cli/pull/24286)
|
|
49
|
+
- feat(config): add experimental.adk.agentSessionNoninteractiveEnabled setting
|
|
50
|
+
by @adamfweidman in
|
|
51
|
+
[#24439](https://github.com/google-gemini/gemini-cli/pull/24439)
|
|
52
|
+
- Changelog for v0.36.0-preview.8 by @gemini-cli-robot in
|
|
53
|
+
[#24453](https://github.com/google-gemini/gemini-cli/pull/24453)
|
|
54
|
+
- feat(cli): change default loadingPhrases to 'off' to hide tips by @keithguerin
|
|
55
|
+
in [#24342](https://github.com/google-gemini/gemini-cli/pull/24342)
|
|
56
|
+
- fix(cli): ensure agent stops when all declinable tools are cancelled by
|
|
57
|
+
@NTaylorMullen in
|
|
58
|
+
[#24479](https://github.com/google-gemini/gemini-cli/pull/24479)
|
|
59
|
+
- fix(core): enhance sandbox usability and fix build error by @galz10 in
|
|
60
|
+
[#24460](https://github.com/google-gemini/gemini-cli/pull/24460)
|
|
61
|
+
- Terminal Serializer Optimization by @jacob314 in
|
|
62
|
+
[#24485](https://github.com/google-gemini/gemini-cli/pull/24485)
|
|
63
|
+
- Auto configure memory. by @jacob314 in
|
|
64
|
+
[#24474](https://github.com/google-gemini/gemini-cli/pull/24474)
|
|
65
|
+
- Unused error variables in catch block are not allowed by @alisa-alisa in
|
|
66
|
+
[#24487](https://github.com/google-gemini/gemini-cli/pull/24487)
|
|
67
|
+
- feat(core): add background memory service for skill extraction by @SandyTao520
|
|
68
|
+
in [#24274](https://github.com/google-gemini/gemini-cli/pull/24274)
|
|
69
|
+
- feat: implement high-signal PR regression check for evaluations by
|
|
70
|
+
@alisa-alisa in
|
|
71
|
+
[#23937](https://github.com/google-gemini/gemini-cli/pull/23937)
|
|
72
|
+
- Fix shell output display by @jacob314 in
|
|
73
|
+
[#24490](https://github.com/google-gemini/gemini-cli/pull/24490)
|
|
74
|
+
- fix(ui): resolve unwanted vertical spacing around various tool output
|
|
75
|
+
treatments by @jwhelangoog in
|
|
76
|
+
[#24449](https://github.com/google-gemini/gemini-cli/pull/24449)
|
|
77
|
+
- revert(cli): bring back input box and footer visibility in copy mode by
|
|
78
|
+
@sehoon38 in [#24504](https://github.com/google-gemini/gemini-cli/pull/24504)
|
|
79
|
+
- fix(cli): prevent crash in AnsiOutputText when handling non-array data by
|
|
80
|
+
@sehoon38 in [#24498](https://github.com/google-gemini/gemini-cli/pull/24498)
|
|
81
|
+
- feat(cli): support default values for environment variables by @ruomengz in
|
|
82
|
+
[#24469](https://github.com/google-gemini/gemini-cli/pull/24469)
|
|
83
|
+
- Implement background process monitoring and inspection tools by @cocosheng-g
|
|
84
|
+
in [#23799](https://github.com/google-gemini/gemini-cli/pull/23799)
|
|
85
|
+
- docs(browser-agent): update stale browser agent documentation by @gsquared94
|
|
86
|
+
in [#24463](https://github.com/google-gemini/gemini-cli/pull/24463)
|
|
87
|
+
- fix: enable browser_agent in integration tests and add localhost fixture tests
|
|
88
|
+
by @gsquared94 in
|
|
89
|
+
[#24523](https://github.com/google-gemini/gemini-cli/pull/24523)
|
|
90
|
+
- fix(browser): handle computer-use model detection for analyze_screenshot by
|
|
170
91
|
@gsquared94 in
|
|
171
|
-
[#
|
|
172
|
-
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
- feat(cli): conditionally exclude ask_user tool in ACP mode by @nmcnamara-eng
|
|
176
|
-
in [#23045](https://github.com/google-gemini/gemini-cli/pull/23045)
|
|
177
|
-
- feat(core): introduce AgentSession and rename stream events to agent events by
|
|
178
|
-
@mbleigh in [#23159](https://github.com/google-gemini/gemini-cli/pull/23159)
|
|
179
|
-
- feat(worktree): add Git worktree support for isolated parallel sessions by
|
|
180
|
-
@jerop in [#22973](https://github.com/google-gemini/gemini-cli/pull/22973)
|
|
181
|
-
- Add support for linking in the extension registry by @kevinjwang1 in
|
|
182
|
-
[#23153](https://github.com/google-gemini/gemini-cli/pull/23153)
|
|
183
|
-
- feat(extensions): add --skip-settings flag to install command by @Ratish1 in
|
|
184
|
-
[#17212](https://github.com/google-gemini/gemini-cli/pull/17212)
|
|
185
|
-
- feat(telemetry): track if session is running in a Git worktree by @jerop in
|
|
186
|
-
[#23265](https://github.com/google-gemini/gemini-cli/pull/23265)
|
|
187
|
-
- refactor(core): use absolute paths in GEMINI.md context markers by
|
|
188
|
-
@SandyTao520 in
|
|
189
|
-
[#23135](https://github.com/google-gemini/gemini-cli/pull/23135)
|
|
190
|
-
- fix(core): add sanitization to sub agent thoughts and centralize utilities by
|
|
191
|
-
@devr0306 in [#22828](https://github.com/google-gemini/gemini-cli/pull/22828)
|
|
192
|
-
- feat(core): refine User-Agent for VS Code traffic (unified format) by
|
|
193
|
-
@sehoon38 in [#23256](https://github.com/google-gemini/gemini-cli/pull/23256)
|
|
194
|
-
- Fix schema for ModelChains by @kevinjwang1 in
|
|
195
|
-
[#23284](https://github.com/google-gemini/gemini-cli/pull/23284)
|
|
196
|
-
- test(cli): refactor tests for async render utilities by @scidomino in
|
|
197
|
-
[#23252](https://github.com/google-gemini/gemini-cli/pull/23252)
|
|
198
|
-
- feat(core): add security prompt for browser agent by @cynthialong0-0 in
|
|
199
|
-
[#23241](https://github.com/google-gemini/gemini-cli/pull/23241)
|
|
200
|
-
- refactor(ide): replace dynamic undici import with static fetch import by
|
|
201
|
-
@cocosheng-g in
|
|
202
|
-
[#23268](https://github.com/google-gemini/gemini-cli/pull/23268)
|
|
203
|
-
- test(cli): address unresolved feedback from PR #23252 by @scidomino in
|
|
204
|
-
[#23303](https://github.com/google-gemini/gemini-cli/pull/23303)
|
|
205
|
-
- feat(browser): add sensitive action controls and read-only noise reduction by
|
|
206
|
-
@cynthialong0-0 in
|
|
207
|
-
[#22867](https://github.com/google-gemini/gemini-cli/pull/22867)
|
|
208
|
-
- Disabling failing test while investigating by @alisa-alisa in
|
|
209
|
-
[#23311](https://github.com/google-gemini/gemini-cli/pull/23311)
|
|
210
|
-
- fix broken extension link in hooks guide by @Indrapal-70 in
|
|
211
|
-
[#21728](https://github.com/google-gemini/gemini-cli/pull/21728)
|
|
212
|
-
- fix(core): fix agent description indentation by @abhipatel12 in
|
|
213
|
-
[#23315](https://github.com/google-gemini/gemini-cli/pull/23315)
|
|
214
|
-
- Wrap the text under TOML rule for easier readability in policy-engine.md… by
|
|
215
|
-
@CogitationOps in
|
|
216
|
-
[#23076](https://github.com/google-gemini/gemini-cli/pull/23076)
|
|
217
|
-
- fix(extensions): revert broken extension removal behavior by @ehedlund in
|
|
218
|
-
[#23317](https://github.com/google-gemini/gemini-cli/pull/23317)
|
|
219
|
-
- feat(core): set up onboarding telemetry by @yunaseoul in
|
|
220
|
-
[#23118](https://github.com/google-gemini/gemini-cli/pull/23118)
|
|
221
|
-
- Retry evals on API error. by @gundermanc in
|
|
222
|
-
[#23322](https://github.com/google-gemini/gemini-cli/pull/23322)
|
|
223
|
-
- fix(evals): remove tool restrictions and add compile-time guards by
|
|
92
|
+
[#24502](https://github.com/google-gemini/gemini-cli/pull/24502)
|
|
93
|
+
- feat(core): Land ContextCompressionService by @joshualitt in
|
|
94
|
+
[#24483](https://github.com/google-gemini/gemini-cli/pull/24483)
|
|
95
|
+
- feat(core): scope subagent workspace directories via AsyncLocalStorage by
|
|
224
96
|
@SandyTao520 in
|
|
225
|
-
[#
|
|
226
|
-
-
|
|
227
|
-
[#
|
|
228
|
-
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
-
|
|
235
|
-
|
|
236
|
-
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
[#
|
|
241
|
-
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
- fix(plan): add state transition override to prevent plan mode freeze by
|
|
245
|
-
@Adib234 in [#23020](https://github.com/google-gemini/gemini-cli/pull/23020)
|
|
246
|
-
- fix(cli): record skill activation tool calls in chat history by @NTaylorMullen
|
|
247
|
-
in [#23203](https://github.com/google-gemini/gemini-cli/pull/23203)
|
|
248
|
-
- fix(core): ensure subagent tool updates apply configuration overrides
|
|
249
|
-
immediately by @abhipatel12 in
|
|
250
|
-
[#23161](https://github.com/google-gemini/gemini-cli/pull/23161)
|
|
251
|
-
- fix(cli): resolve flicker at boundaries of list in BaseSelectionList by
|
|
97
|
+
[#24445](https://github.com/google-gemini/gemini-cli/pull/24445)
|
|
98
|
+
- Update ink version to 6.6.7 by @jacob314 in
|
|
99
|
+
[#24514](https://github.com/google-gemini/gemini-cli/pull/24514)
|
|
100
|
+
- fix(acp): handle all InvalidStreamError types gracefully in prompt by @sripasg
|
|
101
|
+
in [#24540](https://github.com/google-gemini/gemini-cli/pull/24540)
|
|
102
|
+
- Fix crash when vim editor is not found in PATH on Windows by
|
|
103
|
+
@Nagajyothi-tammisetti in
|
|
104
|
+
[#22423](https://github.com/google-gemini/gemini-cli/pull/22423)
|
|
105
|
+
- fix(core): move project memory dir under tmp directory by @SandyTao520 in
|
|
106
|
+
[#24542](https://github.com/google-gemini/gemini-cli/pull/24542)
|
|
107
|
+
- Enable 'Other' option for yesno question type by @ruomengz in
|
|
108
|
+
[#24545](https://github.com/google-gemini/gemini-cli/pull/24545)
|
|
109
|
+
- fix(cli): clear stale retry/loading state after cancellation (#21096) by
|
|
110
|
+
@Aaxhirrr in [#21960](https://github.com/google-gemini/gemini-cli/pull/21960)
|
|
111
|
+
- Changelog for v0.37.0-preview.0 by @gemini-cli-robot in
|
|
112
|
+
[#24464](https://github.com/google-gemini/gemini-cli/pull/24464)
|
|
113
|
+
- feat(core): implement context-aware persistent policy approvals by @jerop in
|
|
114
|
+
[#23257](https://github.com/google-gemini/gemini-cli/pull/23257)
|
|
115
|
+
- docs: move agent disabling instructions and update remote agent status by
|
|
252
116
|
@jackwotherspoon in
|
|
253
|
-
[#
|
|
254
|
-
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
[#
|
|
259
|
-
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
-
|
|
263
|
-
|
|
264
|
-
-
|
|
265
|
-
|
|
266
|
-
-
|
|
267
|
-
|
|
268
|
-
-
|
|
269
|
-
|
|
270
|
-
[#
|
|
271
|
-
- feat(
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
[#
|
|
278
|
-
-
|
|
279
|
-
|
|
280
|
-
-
|
|
281
|
-
|
|
282
|
-
-
|
|
283
|
-
|
|
284
|
-
-
|
|
285
|
-
|
|
286
|
-
[#
|
|
287
|
-
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
-
|
|
291
|
-
|
|
292
|
-
[#
|
|
293
|
-
- fix(core):
|
|
294
|
-
|
|
295
|
-
-
|
|
296
|
-
|
|
297
|
-
[#
|
|
298
|
-
- fix(
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
-
|
|
303
|
-
|
|
304
|
-
[#
|
|
305
|
-
-
|
|
306
|
-
[#
|
|
307
|
-
-
|
|
308
|
-
[#
|
|
309
|
-
-
|
|
310
|
-
[#
|
|
311
|
-
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
-
|
|
317
|
-
|
|
318
|
-
[#
|
|
319
|
-
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
-
|
|
331
|
-
|
|
332
|
-
[#
|
|
333
|
-
- fix(
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
-
|
|
338
|
-
[#
|
|
339
|
-
-
|
|
340
|
-
@
|
|
341
|
-
[#
|
|
342
|
-
-
|
|
343
|
-
[#
|
|
344
|
-
-
|
|
345
|
-
in
|
|
346
|
-
-
|
|
347
|
-
|
|
348
|
-
-
|
|
349
|
-
|
|
350
|
-
[#
|
|
351
|
-
-
|
|
352
|
-
|
|
353
|
-
- feat(
|
|
354
|
-
|
|
355
|
-
-
|
|
356
|
-
|
|
357
|
-
-
|
|
358
|
-
|
|
359
|
-
-
|
|
360
|
-
|
|
361
|
-
-
|
|
362
|
-
|
|
363
|
-
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
117
|
+
[#24559](https://github.com/google-gemini/gemini-cli/pull/24559)
|
|
118
|
+
- feat(cli): migrate nonInteractiveCli to LegacyAgentSession by @adamfweidman in
|
|
119
|
+
[#22987](https://github.com/google-gemini/gemini-cli/pull/22987)
|
|
120
|
+
- fix(core): unsafe type assertions in Core File System #19712 by
|
|
121
|
+
@aniketsaurav18 in
|
|
122
|
+
[#19739](https://github.com/google-gemini/gemini-cli/pull/19739)
|
|
123
|
+
- fix(ui): hide model quota in /stats and refactor quota display by @danzaharia1
|
|
124
|
+
in [#24206](https://github.com/google-gemini/gemini-cli/pull/24206)
|
|
125
|
+
- Changelog for v0.36.0 by @gemini-cli-robot in
|
|
126
|
+
[#24558](https://github.com/google-gemini/gemini-cli/pull/24558)
|
|
127
|
+
- Changelog for v0.37.0-preview.1 by @gemini-cli-robot in
|
|
128
|
+
[#24568](https://github.com/google-gemini/gemini-cli/pull/24568)
|
|
129
|
+
- docs: add missing .md extensions to internal doc links by @ishaan-arora-1 in
|
|
130
|
+
[#24145](https://github.com/google-gemini/gemini-cli/pull/24145)
|
|
131
|
+
- fix(ui): fixed table styling by @devr0306 in
|
|
132
|
+
[#24565](https://github.com/google-gemini/gemini-cli/pull/24565)
|
|
133
|
+
- fix(core): pass includeDirectories to sandbox configuration by @galz10 in
|
|
134
|
+
[#24573](https://github.com/google-gemini/gemini-cli/pull/24573)
|
|
135
|
+
- feat(ui): enable "TerminalBuffer" mode to solve flicker by @jacob314 in
|
|
136
|
+
[#24512](https://github.com/google-gemini/gemini-cli/pull/24512)
|
|
137
|
+
- docs: clarify release coordination by @scidomino in
|
|
138
|
+
[#24575](https://github.com/google-gemini/gemini-cli/pull/24575)
|
|
139
|
+
- fix(core): remove broken PowerShell translation and fix native \_\_write in
|
|
140
|
+
Windows sandbox by @scidomino in
|
|
141
|
+
[#24571](https://github.com/google-gemini/gemini-cli/pull/24571)
|
|
142
|
+
- Add instructions for how to start react in prod and force react to prod mode
|
|
143
|
+
by @jacob314 in
|
|
144
|
+
[#24590](https://github.com/google-gemini/gemini-cli/pull/24590)
|
|
145
|
+
- feat(cli): minimalist sandbox status labels by @galz10 in
|
|
146
|
+
[#24582](https://github.com/google-gemini/gemini-cli/pull/24582)
|
|
147
|
+
- Feat/browser agent metrics by @kunal-10-cloud in
|
|
148
|
+
[#24210](https://github.com/google-gemini/gemini-cli/pull/24210)
|
|
149
|
+
- test: fix Windows CI execution and resolve exposed platform failures by
|
|
150
|
+
@ehedlund in [#24476](https://github.com/google-gemini/gemini-cli/pull/24476)
|
|
151
|
+
- feat(core,cli): prioritize summary for topics (#24608) by @Abhijit-2592 in
|
|
152
|
+
[#24609](https://github.com/google-gemini/gemini-cli/pull/24609)
|
|
153
|
+
- show color by @jacob314 in
|
|
154
|
+
[#24613](https://github.com/google-gemini/gemini-cli/pull/24613)
|
|
155
|
+
- feat(cli): enable compact tool output by default (#24509) by @jwhelangoog in
|
|
156
|
+
[#24510](https://github.com/google-gemini/gemini-cli/pull/24510)
|
|
157
|
+
- fix(core): inject skill system instructions into subagent prompts if activated
|
|
158
|
+
by @abhipatel12 in
|
|
159
|
+
[#24620](https://github.com/google-gemini/gemini-cli/pull/24620)
|
|
160
|
+
- fix(core): improve windows sandbox reliability and fix integration tests by
|
|
161
|
+
@ehedlund in [#24480](https://github.com/google-gemini/gemini-cli/pull/24480)
|
|
162
|
+
- fix(core): ensure sandbox approvals are correctly persisted and matched for
|
|
163
|
+
proactive expansions by @galz10 in
|
|
164
|
+
[#24577](https://github.com/google-gemini/gemini-cli/pull/24577)
|
|
165
|
+
- feat(cli) Scrollbar for input prompt by @jacob314 in
|
|
166
|
+
[#21992](https://github.com/google-gemini/gemini-cli/pull/21992)
|
|
167
|
+
- Do not run pr-eval workflow when no steering changes detected by @alisa-alisa
|
|
168
|
+
in [#24621](https://github.com/google-gemini/gemini-cli/pull/24621)
|
|
169
|
+
- Fix restoration of topic headers. by @gundermanc in
|
|
170
|
+
[#24650](https://github.com/google-gemini/gemini-cli/pull/24650)
|
|
171
|
+
- feat(core): discourage update topic tool for simple tasks by @Samee24 in
|
|
172
|
+
[#24640](https://github.com/google-gemini/gemini-cli/pull/24640)
|
|
173
|
+
- fix(core): ensure global temp directory is always in sandbox allowed paths by
|
|
174
|
+
@galz10 in [#24638](https://github.com/google-gemini/gemini-cli/pull/24638)
|
|
175
|
+
- fix(core): detect uninitialized lines by @jacob314 in
|
|
176
|
+
[#24646](https://github.com/google-gemini/gemini-cli/pull/24646)
|
|
177
|
+
- docs: update sandboxing documentation and toolSandboxing settings by @galz10
|
|
178
|
+
in [#24655](https://github.com/google-gemini/gemini-cli/pull/24655)
|
|
179
|
+
- feat(cli): enhance tool confirmation UI and selection layout by @galz10 in
|
|
180
|
+
[#24376](https://github.com/google-gemini/gemini-cli/pull/24376)
|
|
181
|
+
- feat(acp): add support for `/about` command by @sripasg in
|
|
182
|
+
[#24649](https://github.com/google-gemini/gemini-cli/pull/24649)
|
|
183
|
+
- feat(cli): add role specific metrics to /stats by @cynthialong0-0 in
|
|
184
|
+
[#24659](https://github.com/google-gemini/gemini-cli/pull/24659)
|
|
185
|
+
- split context by @jacob314 in
|
|
186
|
+
[#24623](https://github.com/google-gemini/gemini-cli/pull/24623)
|
|
187
|
+
- fix(cli): remove -S from shebang to fix Windows and BSD execution by
|
|
188
|
+
@scidomino in [#24756](https://github.com/google-gemini/gemini-cli/pull/24756)
|
|
189
|
+
- Fix issue where topic headers can be posted back to back by @gundermanc in
|
|
190
|
+
[#24759](https://github.com/google-gemini/gemini-cli/pull/24759)
|
|
191
|
+
- fix(core): handle partial llm_request in BeforeModel hook override by
|
|
192
|
+
@krishdef7 in [#22326](https://github.com/google-gemini/gemini-cli/pull/22326)
|
|
193
|
+
- fix(ui): improve narration suppression and reduce flicker by @gundermanc in
|
|
194
|
+
[#24635](https://github.com/google-gemini/gemini-cli/pull/24635)
|
|
195
|
+
- fix(ui): fixed auth race condition causing logo to flicker by @devr0306 in
|
|
196
|
+
[#24652](https://github.com/google-gemini/gemini-cli/pull/24652)
|
|
197
|
+
- fix(browser): remove premature browser cleanup after subagent invocation by
|
|
198
|
+
@gsquared94 in
|
|
199
|
+
[#24753](https://github.com/google-gemini/gemini-cli/pull/24753)
|
|
200
|
+
- Revert "feat(core,cli): prioritize summary for topics (#24608)" by
|
|
201
|
+
@Abhijit-2592 in
|
|
202
|
+
[#24777](https://github.com/google-gemini/gemini-cli/pull/24777)
|
|
203
|
+
- relax tool sandboxing overrides for plan mode to match defaults. by
|
|
204
|
+
@DavidAPierce in
|
|
205
|
+
[#24762](https://github.com/google-gemini/gemini-cli/pull/24762)
|
|
206
|
+
- fix(cli): respect global environment variable allowlist by @scidomino in
|
|
207
|
+
[#24767](https://github.com/google-gemini/gemini-cli/pull/24767)
|
|
208
|
+
- fix(cli): ensure skills list outputs to stdout in non-interactive environments
|
|
209
|
+
by @spencer426 in
|
|
210
|
+
[#24566](https://github.com/google-gemini/gemini-cli/pull/24566)
|
|
211
|
+
- Add an eval for and fix unsafe cloning behavior. by @gundermanc in
|
|
212
|
+
[#24457](https://github.com/google-gemini/gemini-cli/pull/24457)
|
|
213
|
+
- fix(policy): allow complete_task in plan mode by @abhipatel12 in
|
|
214
|
+
[#24771](https://github.com/google-gemini/gemini-cli/pull/24771)
|
|
215
|
+
- feat(telemetry): add browser agent clearcut metrics by @gsquared94 in
|
|
216
|
+
[#24688](https://github.com/google-gemini/gemini-cli/pull/24688)
|
|
217
|
+
- feat(cli): support selective topic expansion and click-to-expand by
|
|
218
|
+
@Abhijit-2592 in
|
|
219
|
+
[#24793](https://github.com/google-gemini/gemini-cli/pull/24793)
|
|
220
|
+
- temporarily disable sandbox integration test on windows by @ehedlund in
|
|
221
|
+
[#24786](https://github.com/google-gemini/gemini-cli/pull/24786)
|
|
222
|
+
- Remove flakey test by @scidomino in
|
|
223
|
+
[#24837](https://github.com/google-gemini/gemini-cli/pull/24837)
|
|
224
|
+
- Alisa/approve button by @alisa-alisa in
|
|
225
|
+
[#24645](https://github.com/google-gemini/gemini-cli/pull/24645)
|
|
226
|
+
- feat(hooks): display hook system messages in UI by @mbleigh in
|
|
227
|
+
[#24616](https://github.com/google-gemini/gemini-cli/pull/24616)
|
|
228
|
+
- fix(core): propagate BeforeModel hook model override end-to-end by @krishdef7
|
|
229
|
+
in [#24784](https://github.com/google-gemini/gemini-cli/pull/24784)
|
|
230
|
+
- chore: fix formatting for behavioral eval skill reference file by @abhipatel12
|
|
231
|
+
in [#24846](https://github.com/google-gemini/gemini-cli/pull/24846)
|
|
232
|
+
- fix: use directory junctions on Windows for skill linking by @enjoykumawat in
|
|
233
|
+
[#24823](https://github.com/google-gemini/gemini-cli/pull/24823)
|
|
234
|
+
- fix(cli): prevent multiple banner increments on remount by @sehoon38 in
|
|
235
|
+
[#24843](https://github.com/google-gemini/gemini-cli/pull/24843)
|
|
236
|
+
- feat(acp): add /help command by @sripasg in
|
|
237
|
+
[#24839](https://github.com/google-gemini/gemini-cli/pull/24839)
|
|
238
|
+
- fix(core): remove tmux alternate buffer warning by @jackwotherspoon in
|
|
239
|
+
[#24852](https://github.com/google-gemini/gemini-cli/pull/24852)
|
|
240
|
+
- Improve sandbox error matching and caching by @DavidAPierce in
|
|
241
|
+
[#24550](https://github.com/google-gemini/gemini-cli/pull/24550)
|
|
242
|
+
- feat(core): add agent protocol UI types and experimental flag by @mbleigh in
|
|
243
|
+
[#24275](https://github.com/google-gemini/gemini-cli/pull/24275)
|
|
244
|
+
- feat(core): use experiment flags for default fetch timeouts by @yunaseoul in
|
|
245
|
+
[#24261](https://github.com/google-gemini/gemini-cli/pull/24261)
|
|
246
|
+
- Revert "fix(ui): improve narration suppression and reduce flicker (#2… by
|
|
247
|
+
@gundermanc in
|
|
248
|
+
[#24857](https://github.com/google-gemini/gemini-cli/pull/24857)
|
|
249
|
+
- refactor(cli): remove duplication in interactive shell awaiting input hint by
|
|
250
|
+
@JayadityaGit in
|
|
251
|
+
[#24801](https://github.com/google-gemini/gemini-cli/pull/24801)
|
|
252
|
+
- refactor(core): make LegacyAgentSession dependencies optional by @mbleigh in
|
|
253
|
+
[#24287](https://github.com/google-gemini/gemini-cli/pull/24287)
|
|
254
|
+
- Changelog for v0.37.0-preview.2 by @gemini-cli-robot in
|
|
255
|
+
[#24848](https://github.com/google-gemini/gemini-cli/pull/24848)
|
|
256
|
+
- fix(cli): always show shell command description or actual command by @jacob314
|
|
257
|
+
in [#24774](https://github.com/google-gemini/gemini-cli/pull/24774)
|
|
258
|
+
- Added flag for ept size and increased default size by @devr0306 in
|
|
259
|
+
[#24859](https://github.com/google-gemini/gemini-cli/pull/24859)
|
|
260
|
+
- fix(core): dispose Scheduler to prevent McpProgress listener leak by
|
|
261
|
+
@Anjaligarhwal in
|
|
262
|
+
[#24870](https://github.com/google-gemini/gemini-cli/pull/24870)
|
|
263
|
+
- fix(cli): switch default back to terminalBuffer=false and fix regressions
|
|
264
|
+
introduced for that mode by @jacob314 in
|
|
265
|
+
[#24873](https://github.com/google-gemini/gemini-cli/pull/24873)
|
|
266
|
+
- feat(cli): switch to ctrl+g from ctrl-x by @jacob314 in
|
|
267
|
+
[#24861](https://github.com/google-gemini/gemini-cli/pull/24861)
|
|
268
|
+
- fix: isolate concurrent browser agent instances by @gsquared94 in
|
|
269
|
+
[#24794](https://github.com/google-gemini/gemini-cli/pull/24794)
|
|
270
|
+
- docs: update MCP server OAuth redirect port documentation by @adamfweidman in
|
|
271
|
+
[#24844](https://github.com/google-gemini/gemini-cli/pull/24844)
|
|
379
272
|
|
|
380
273
|
**Full Changelog**:
|
|
381
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
274
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.38.0...v0.38.2
|