@google/gemini-cli-core 0.39.0-preview.2 → 0.40.0-preview.0
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/changelogs/index.md +21 -0
- package/dist/docs/changelogs/latest.md +253 -407
- package/dist/docs/changelogs/preview.md +236 -247
- package/dist/docs/cli/auto-memory.md +143 -0
- package/dist/docs/cli/enterprise.md +1 -1
- package/dist/docs/cli/plan-mode.md +3 -1
- package/dist/docs/cli/settings.md +29 -25
- package/dist/docs/cli/system-prompt.md +6 -6
- package/dist/docs/cli/telemetry.md +18 -11
- package/dist/docs/cli/tutorials/memory-management.md +2 -0
- package/dist/docs/get-started/{authentication.md → authentication.mdx} +139 -93
- package/dist/docs/get-started/index.md +3 -2
- package/dist/docs/get-started/installation.mdx +201 -0
- package/dist/docs/index.md +2 -2
- package/dist/docs/reference/configuration.md +88 -12
- package/dist/docs/reference/policy-engine.md +18 -12
- package/dist/docs/reference/tools.md +22 -0
- package/dist/docs/sidebar.json +13 -1
- package/dist/docs/tools/mcp-resources.md +44 -0
- package/dist/docs/tools/mcp-server.md +2 -1
- package/dist/docs/tools/tracker.md +61 -0
- package/dist/src/agents/agent-tool.js +1 -0
- package/dist/src/agents/agent-tool.js.map +1 -1
- package/dist/src/agents/agentLoader.d.ts +4 -4
- package/dist/src/agents/generalist-agent.js +3 -2
- package/dist/src/agents/generalist-agent.js.map +1 -1
- package/dist/src/agents/local-executor.js +4 -1
- package/dist/src/agents/local-executor.js.map +1 -1
- package/dist/src/agents/registry.js +0 -8
- package/dist/src/agents/registry.js.map +1 -1
- package/dist/src/agents/skill-extraction-agent.d.ts +3 -2
- package/dist/src/agents/skill-extraction-agent.js +72 -67
- 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/config/config.d.ts +21 -6
- package/dist/src/config/config.js +103 -19
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +262 -6
- 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/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 +3 -1
- package/dist/src/config/storage.js +6 -0
- 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/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/geminiChat.test.js +1 -0
- 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 +3 -0
- package/dist/src/core/loggingContentGenerator.js.map +1 -1
- package/dist/src/core/loggingContentGenerator.test.js +1 -0
- package/dist/src/core/loggingContentGenerator.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 +2 -2
- 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/ide/ide-client.js +3 -4
- package/dist/src/ide/ide-client.js.map +1 -1
- package/dist/src/policy/policies/read-only.toml +4 -1
- package/dist/src/policy/policy-engine.js +4 -0
- package/dist/src/policy/policy-engine.js.map +1 -1
- package/dist/src/policy/policy-engine.test.js +25 -0
- package/dist/src/policy/policy-engine.test.js.map +1 -1
- package/dist/src/policy/toml-loader.test.js +5 -0
- package/dist/src/policy/toml-loader.test.js.map +1 -1
- package/dist/src/prompts/promptProvider.d.ts +1 -1
- package/dist/src/prompts/promptProvider.js +15 -7
- package/dist/src/prompts/promptProvider.js.map +1 -1
- package/dist/src/prompts/promptProvider.test.js +31 -1
- package/dist/src/prompts/promptProvider.test.js.map +1 -1
- 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 +24 -3
- 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 +10 -3
- package/dist/src/prompts/snippets.legacy.js.map +1 -1
- package/dist/src/sandbox/linux/LinuxSandboxManager.js +16 -2
- package/dist/src/sandbox/linux/LinuxSandboxManager.js.map +1 -1
- package/dist/src/sandbox/linux/bwrapArgsBuilder.js +64 -36
- package/dist/src/sandbox/linux/bwrapArgsBuilder.js.map +1 -1
- package/dist/src/sandbox/linux/bwrapArgsBuilder.test.js +3 -3
- package/dist/src/sandbox/linux/bwrapArgsBuilder.test.js.map +1 -1
- package/dist/src/sandbox/macos/MacOsSandboxManager.js +13 -1
- package/dist/src/sandbox/macos/MacOsSandboxManager.js.map +1 -1
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.js +61 -42
- package/dist/src/sandbox/macos/seatbeltArgsBuilder.js.map +1 -1
- package/dist/src/sandbox/windows/WindowsSandboxManager.js +12 -1
- package/dist/src/sandbox/windows/WindowsSandboxManager.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 +35 -2
- package/dist/src/scheduler/policy.test.js.map +1 -1
- package/dist/src/scheduler/scheduler.js +1 -0
- package/dist/src/scheduler/scheduler.js.map +1 -1
- package/dist/src/scheduler/scheduler.test.js +2 -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 +1 -0
- package/dist/src/scheduler/scheduler_parallel.test.js.map +1 -1
- package/dist/src/scheduler/tool-executor.js +1 -0
- package/dist/src/scheduler/tool-executor.js.map +1 -1
- package/dist/src/services/chatRecordingService.d.ts +1 -0
- package/dist/src/services/chatRecordingService.js +48 -19
- package/dist/src/services/chatRecordingService.js.map +1 -1
- package/dist/src/services/memoryService.d.ts +15 -1
- package/dist/src/services/memoryService.js +276 -57
- package/dist/src/services/memoryService.js.map +1 -1
- package/dist/src/services/memoryService.test.js +296 -2
- package/dist/src/services/memoryService.test.js.map +1 -1
- package/dist/src/services/sandboxManager.integration.test.js +204 -0
- package/dist/src/services/sandboxManager.integration.test.js.map +1 -1
- package/dist/src/services/sandboxManager.js +16 -0
- package/dist/src/services/sandboxManager.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.js +7 -1
- package/dist/src/services/shellExecutionService.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.test.js +1 -0
- package/dist/src/telemetry/conseca-logger.test.js.map +1 -1
- package/dist/src/telemetry/loggers.test.js +72 -4
- 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/trace.d.ts +1 -0
- package/dist/src/telemetry/trace.js +33 -13
- package/dist/src/telemetry/trace.js.map +1 -1
- package/dist/src/telemetry/trace.test.js +50 -10
- package/dist/src/telemetry/trace.test.js.map +1 -1
- package/dist/src/telemetry/types.js +11 -4
- package/dist/src/telemetry/types.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/get-internal-docs.js +5 -2
- package/dist/src/tools/get-internal-docs.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/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/memoryTool.d.ts +2 -1
- package/dist/src/tools/memoryTool.js +42 -13
- package/dist/src/tools/memoryTool.js.map +1 -1
- package/dist/src/tools/memoryTool.test.js +23 -3
- package/dist/src/tools/memoryTool.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 +25 -54
- package/dist/src/tools/ripGrep.js.map +1 -1
- package/dist/src/tools/ripGrep.test.js +73 -131
- package/dist/src/tools/ripGrep.test.js.map +1 -1
- package/dist/src/tools/shell.js +38 -12
- package/dist/src/tools/shell.js.map +1 -1
- package/dist/src/tools/shell.test.js +410 -25
- package/dist/src/tools/shell.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 +4 -4
- package/dist/src/tools/tool-names.js +6 -2
- package/dist/src/tools/tool-names.js.map +1 -1
- package/dist/src/tools/tool-registry.js +8 -1
- package/dist/src/tools/tool-registry.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.d.ts +6 -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/gitIgnoreParser.js +1 -1
- package/dist/src/utils/gitIgnoreParser.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/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/shell-utils.d.ts +1 -0
- package/dist/src/utils/shell-utils.js +106 -0
- package/dist/src/utils/shell-utils.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -3
- package/vendor/ripgrep/rg-darwin-arm64 +0 -0
- package/vendor/ripgrep/rg-darwin-x64 +0 -0
- package/vendor/ripgrep/rg-linux-arm64 +0 -0
- package/vendor/ripgrep/rg-linux-x64 +0 -0
- package/vendor/ripgrep/rg-win32-x64.exe +0 -0
- package/dist/docs/get-started/installation.md +0 -181
- package/dist/google-gemini-cli-core-0.39.0-preview.1.tgz +0 -0
- 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/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 → skill-extraction-agent.test.d.ts} +0 -0
- /package/dist/src/prompts/{snippets-memory-manager.test.d.ts → snippets-memory-v2.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,418 +11,264 @@ npm install -g @google/gemini-cli
|
|
|
11
11
|
|
|
12
12
|
## Highlights
|
|
13
13
|
|
|
14
|
-
- **
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- **
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- **Enhanced
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- **
|
|
24
|
-
|
|
25
|
-
|
|
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.
|
|
26
29
|
|
|
27
30
|
## What's Changed
|
|
28
31
|
|
|
29
|
-
- fix(patch): cherry-pick
|
|
30
|
-
v0.
|
|
31
|
-
[#
|
|
32
|
-
- fix(
|
|
33
|
-
|
|
34
|
-
-
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
[#
|
|
42
|
-
-
|
|
43
|
-
[#
|
|
44
|
-
- fix(core):
|
|
45
|
-
[#
|
|
46
|
-
- feat(
|
|
47
|
-
@cynthialong0-0 in
|
|
48
|
-
[#23216](https://github.com/google-gemini/gemini-cli/pull/23216)
|
|
49
|
-
- fix(core): improve agent loader error formatting for empty paths by
|
|
50
|
-
@adamfweidman in
|
|
51
|
-
[#23690](https://github.com/google-gemini/gemini-cli/pull/23690)
|
|
52
|
-
- fix(cli): only show updating spinner when auto-update is in progress by
|
|
53
|
-
@scidomino in [#23709](https://github.com/google-gemini/gemini-cli/pull/23709)
|
|
54
|
-
- Refine onboarding metrics to log the duration explicitly and use the tier
|
|
55
|
-
name. by @yunaseoul in
|
|
56
|
-
[#23678](https://github.com/google-gemini/gemini-cli/pull/23678)
|
|
57
|
-
- chore(tools): add toJSON to tools and invocations to reduce logging verbosity
|
|
58
|
-
by @alisa-alisa in
|
|
59
|
-
[#22899](https://github.com/google-gemini/gemini-cli/pull/22899)
|
|
60
|
-
- fix(cli): stabilize copy mode to prevent flickering and cursor resets by
|
|
61
|
-
@mattKorwel in
|
|
62
|
-
[#22584](https://github.com/google-gemini/gemini-cli/pull/22584)
|
|
63
|
-
- fix(test): move flaky ctrl-c-exit test to non-blocking suite by @mattKorwel in
|
|
64
|
-
[#23732](https://github.com/google-gemini/gemini-cli/pull/23732)
|
|
65
|
-
- feat(skills): add ci skill for automated failure replication by @mattKorwel in
|
|
66
|
-
[#23720](https://github.com/google-gemini/gemini-cli/pull/23720)
|
|
67
|
-
- feat(sandbox): implement forbiddenPaths for OS-specific sandbox managers by
|
|
68
|
-
@ehedlund in [#23282](https://github.com/google-gemini/gemini-cli/pull/23282)
|
|
69
|
-
- fix(core): conditionally expose additional_permissions in shell tool by
|
|
70
|
-
@galz10 in [#23729](https://github.com/google-gemini/gemini-cli/pull/23729)
|
|
71
|
-
- refactor(core): standardize OS-specific sandbox tests and extract linux helper
|
|
72
|
-
methods by @ehedlund in
|
|
73
|
-
[#23715](https://github.com/google-gemini/gemini-cli/pull/23715)
|
|
74
|
-
- format recently added script by @scidomino in
|
|
75
|
-
[#23739](https://github.com/google-gemini/gemini-cli/pull/23739)
|
|
76
|
-
- fix(ui): prevent over-eager slash subcommand completion by @keithguerin in
|
|
77
|
-
[#20136](https://github.com/google-gemini/gemini-cli/pull/20136)
|
|
78
|
-
- Fix dynamic model routing for gemini 3.1 pro to customtools model by
|
|
79
|
-
@kevinjwang1 in
|
|
80
|
-
[#23641](https://github.com/google-gemini/gemini-cli/pull/23641)
|
|
81
|
-
- feat(core): support inline agentCardJson for remote agents by @adamfweidman in
|
|
82
|
-
[#23743](https://github.com/google-gemini/gemini-cli/pull/23743)
|
|
83
|
-
- fix(cli): skip console log/info in headless mode by @cynthialong0-0 in
|
|
84
|
-
[#22739](https://github.com/google-gemini/gemini-cli/pull/22739)
|
|
85
|
-
- test(core): install bubblewrap on Linux CI for sandbox integration tests by
|
|
86
|
-
@ehedlund in [#23583](https://github.com/google-gemini/gemini-cli/pull/23583)
|
|
87
|
-
- docs(reference): split tools table into category sections by @sheikhlimon in
|
|
88
|
-
[#21516](https://github.com/google-gemini/gemini-cli/pull/21516)
|
|
89
|
-
- fix(browser): detect embedded URLs in query params to prevent allowedDomains
|
|
90
|
-
bypass by @tony-shi in
|
|
91
|
-
[#23225](https://github.com/google-gemini/gemini-cli/pull/23225)
|
|
92
|
-
- fix(browser): add proxy bypass constraint to domain restriction system prompt
|
|
93
|
-
by @tony-shi in
|
|
94
|
-
[#23229](https://github.com/google-gemini/gemini-cli/pull/23229)
|
|
95
|
-
- fix(policy): relax write_file argsPattern in plan mode to allow paths without
|
|
96
|
-
session ID by @Adib234 in
|
|
97
|
-
[#23695](https://github.com/google-gemini/gemini-cli/pull/23695)
|
|
98
|
-
- docs: fix grammar in CONTRIBUTING and numbering in sandbox docs by
|
|
99
|
-
@splint-disk-8i in
|
|
100
|
-
[#23448](https://github.com/google-gemini/gemini-cli/pull/23448)
|
|
101
|
-
- fix(acp): allow attachments by adding a permission prompt by @sripasg in
|
|
102
|
-
[#23680](https://github.com/google-gemini/gemini-cli/pull/23680)
|
|
103
|
-
- fix(core): thread AbortSignal to chat compression requests (#20405) by
|
|
104
|
-
@SH20RAJ in [#20778](https://github.com/google-gemini/gemini-cli/pull/20778)
|
|
105
|
-
- feat(core): implement Windows sandbox dynamic expansion Phase 1 and 2.1 by
|
|
106
|
-
@scidomino in [#23691](https://github.com/google-gemini/gemini-cli/pull/23691)
|
|
107
|
-
- Add note about root privileges in sandbox docs by @diodesign in
|
|
108
|
-
[#23314](https://github.com/google-gemini/gemini-cli/pull/23314)
|
|
109
|
-
- docs(core): document agent_card_json string literal options for remote agents
|
|
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
|
|
43
|
+
@abhipatel12 in
|
|
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
|
|
110
50
|
by @adamfweidman in
|
|
111
|
-
[#
|
|
112
|
-
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
[#
|
|
119
|
-
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
-
|
|
123
|
-
|
|
124
|
-
-
|
|
125
|
-
|
|
126
|
-
-
|
|
127
|
-
|
|
128
|
-
[#
|
|
129
|
-
-
|
|
130
|
-
[#23702](https://github.com/google-gemini/gemini-cli/pull/23702)
|
|
131
|
-
- feat(core,ui): Add experiment-gated support for gemini flash 3.1 lite by
|
|
132
|
-
@chrstnb in [#23794](https://github.com/google-gemini/gemini-cli/pull/23794)
|
|
133
|
-
- Changelog for v0.36.0-preview.3 by @gemini-cli-robot in
|
|
134
|
-
[#23827](https://github.com/google-gemini/gemini-cli/pull/23827)
|
|
135
|
-
- new linting check: github-actions-pinning by @alisa-alisa in
|
|
136
|
-
[#23808](https://github.com/google-gemini/gemini-cli/pull/23808)
|
|
137
|
-
- fix(cli): show helpful guidance when no skills are available by @Niralisj in
|
|
138
|
-
[#23785](https://github.com/google-gemini/gemini-cli/pull/23785)
|
|
139
|
-
- fix: Chat logs and errors handle tail tool calls correctly by @googlestrobe in
|
|
140
|
-
[#22460](https://github.com/google-gemini/gemini-cli/pull/22460)
|
|
141
|
-
- Don't try removing a tag from a non-existent release. by @scidomino in
|
|
142
|
-
[#23830](https://github.com/google-gemini/gemini-cli/pull/23830)
|
|
143
|
-
- fix(cli): allow ask question dialog to take full window height by @jacob314 in
|
|
144
|
-
[#23693](https://github.com/google-gemini/gemini-cli/pull/23693)
|
|
145
|
-
- fix(core): strip leading underscores from error types in telemetry by
|
|
146
|
-
@yunaseoul in [#23824](https://github.com/google-gemini/gemini-cli/pull/23824)
|
|
147
|
-
- Changelog for v0.35.0 by @gemini-cli-robot in
|
|
148
|
-
[#23819](https://github.com/google-gemini/gemini-cli/pull/23819)
|
|
149
|
-
- feat(evals): add reliability harvester and 500/503 retry support by
|
|
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
|
|
150
70
|
@alisa-alisa in
|
|
151
|
-
[#
|
|
152
|
-
-
|
|
153
|
-
|
|
154
|
-
-
|
|
155
|
-
|
|
156
|
-
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
[#
|
|
167
|
-
- fix
|
|
168
|
-
in [#23885](https://github.com/google-gemini/gemini-cli/pull/23885)
|
|
169
|
-
- feat(gcp): add development worker infrastructure by @mattKorwel in
|
|
170
|
-
[#23814](https://github.com/google-gemini/gemini-cli/pull/23814)
|
|
171
|
-
- fix(a2a-server): A2A server should execute ask policies in interactive mode by
|
|
172
|
-
@kschaab in [#23831](https://github.com/google-gemini/gemini-cli/pull/23831)
|
|
173
|
-
- feat(core): define TrajectoryProvider interface by @sehoon38 in
|
|
174
|
-
[#23050](https://github.com/google-gemini/gemini-cli/pull/23050)
|
|
175
|
-
- Docs: Update quotas and pricing by @jkcinouye in
|
|
176
|
-
[#23835](https://github.com/google-gemini/gemini-cli/pull/23835)
|
|
177
|
-
- fix(core): allow disabling environment variable redaction by @galz10 in
|
|
178
|
-
[#23927](https://github.com/google-gemini/gemini-cli/pull/23927)
|
|
179
|
-
- feat(cli): enable notifications cross-platform via terminal bell fallback by
|
|
180
|
-
@genneth in [#21618](https://github.com/google-gemini/gemini-cli/pull/21618)
|
|
181
|
-
- feat(sandbox): implement secret visibility lockdown for env files by
|
|
182
|
-
@DavidAPierce in
|
|
183
|
-
[#23712](https://github.com/google-gemini/gemini-cli/pull/23712)
|
|
184
|
-
- fix(core): remove shell outputChunks buffer caching to prevent memory bloat
|
|
185
|
-
and sanitize prompt input by @spencer426 in
|
|
186
|
-
[#23751](https://github.com/google-gemini/gemini-cli/pull/23751)
|
|
187
|
-
- feat(core): implement persistent browser session management by @kunal-10-cloud
|
|
188
|
-
in [#21306](https://github.com/google-gemini/gemini-cli/pull/21306)
|
|
189
|
-
- refactor(core): delegate sandbox denial parsing to SandboxManager by
|
|
190
|
-
@scidomino in [#23928](https://github.com/google-gemini/gemini-cli/pull/23928)
|
|
191
|
-
- dep(update) Update Ink version to 6.5.0 by @jacob314 in
|
|
192
|
-
[#23843](https://github.com/google-gemini/gemini-cli/pull/23843)
|
|
193
|
-
- Docs: Update 'docs-writer' skill for relative links by @jkcinouye in
|
|
194
|
-
[#21463](https://github.com/google-gemini/gemini-cli/pull/21463)
|
|
195
|
-
- Changelog for v0.36.0-preview.4 by @gemini-cli-robot in
|
|
196
|
-
[#23935](https://github.com/google-gemini/gemini-cli/pull/23935)
|
|
197
|
-
- fix(acp): Update allow approval policy flow for ACP clients to fix config
|
|
198
|
-
persistence and compatible with TUI by @sripasg in
|
|
199
|
-
[#23818](https://github.com/google-gemini/gemini-cli/pull/23818)
|
|
200
|
-
- Changelog for v0.35.2 by @gemini-cli-robot in
|
|
201
|
-
[#23960](https://github.com/google-gemini/gemini-cli/pull/23960)
|
|
202
|
-
- ACP integration documents by @g-samroberts in
|
|
203
|
-
[#22254](https://github.com/google-gemini/gemini-cli/pull/22254)
|
|
204
|
-
- fix(core): explicitly set error names to avoid bundling renaming issues by
|
|
205
|
-
@yunaseoul in [#23913](https://github.com/google-gemini/gemini-cli/pull/23913)
|
|
206
|
-
- feat(core): subagent isolation and cleanup hardening by @abhipatel12 in
|
|
207
|
-
[#23903](https://github.com/google-gemini/gemini-cli/pull/23903)
|
|
208
|
-
- disable extension-reload test by @scidomino in
|
|
209
|
-
[#24018](https://github.com/google-gemini/gemini-cli/pull/24018)
|
|
210
|
-
- feat(core): add forbiddenPaths to GlobalSandboxOptions and refactor
|
|
211
|
-
createSandboxManager by @ehedlund in
|
|
212
|
-
[#23936](https://github.com/google-gemini/gemini-cli/pull/23936)
|
|
213
|
-
- refactor(core): improve ignore resolution and fix directory-matching bug by
|
|
214
|
-
@ehedlund in [#23816](https://github.com/google-gemini/gemini-cli/pull/23816)
|
|
215
|
-
- revert(core): support custom base URL via env vars by @spencer426 in
|
|
216
|
-
[#23976](https://github.com/google-gemini/gemini-cli/pull/23976)
|
|
217
|
-
- Increase memory limited for eslint. by @jacob314 in
|
|
218
|
-
[#24022](https://github.com/google-gemini/gemini-cli/pull/24022)
|
|
219
|
-
- fix(acp): prevent crash on empty response in ACP mode by @sripasg in
|
|
220
|
-
[#23952](https://github.com/google-gemini/gemini-cli/pull/23952)
|
|
221
|
-
- feat(core): Land `AgentHistoryProvider`. by @joshualitt in
|
|
222
|
-
[#23978](https://github.com/google-gemini/gemini-cli/pull/23978)
|
|
223
|
-
- fix(core): switch to subshells for shell tool wrapping to fix heredocs and
|
|
224
|
-
edge cases by @abhipatel12 in
|
|
225
|
-
[#24024](https://github.com/google-gemini/gemini-cli/pull/24024)
|
|
226
|
-
- Debug command. by @jacob314 in
|
|
227
|
-
[#23851](https://github.com/google-gemini/gemini-cli/pull/23851)
|
|
228
|
-
- Changelog for v0.36.0-preview.5 by @gemini-cli-robot in
|
|
229
|
-
[#24046](https://github.com/google-gemini/gemini-cli/pull/24046)
|
|
230
|
-
- Fix test flakes by globally mocking ink-spinner by @jacob314 in
|
|
231
|
-
[#24044](https://github.com/google-gemini/gemini-cli/pull/24044)
|
|
232
|
-
- Enable network access in sandbox configuration by @galz10 in
|
|
233
|
-
[#24055](https://github.com/google-gemini/gemini-cli/pull/24055)
|
|
234
|
-
- feat(context): add configurable memoryBoundaryMarkers setting by @SandyTao520
|
|
235
|
-
in [#24020](https://github.com/google-gemini/gemini-cli/pull/24020)
|
|
236
|
-
- feat(core): implement windows sandbox expansion and denial detection by
|
|
237
|
-
@scidomino in [#24027](https://github.com/google-gemini/gemini-cli/pull/24027)
|
|
238
|
-
- fix(core): resolve ACP Operation Aborted Errors in grep_search by @ivanporty
|
|
239
|
-
in [#23821](https://github.com/google-gemini/gemini-cli/pull/23821)
|
|
240
|
-
- fix(hooks): prevent SessionEnd from firing twice in non-interactive mode by
|
|
241
|
-
@krishdef7 in [#22139](https://github.com/google-gemini/gemini-cli/pull/22139)
|
|
242
|
-
- Re-word intro to Gemini 3 page. by @g-samroberts in
|
|
243
|
-
[#24069](https://github.com/google-gemini/gemini-cli/pull/24069)
|
|
244
|
-
- fix(cli): resolve layout contention and flashing loop in StatusRow by
|
|
245
|
-
@keithguerin in
|
|
246
|
-
[#24065](https://github.com/google-gemini/gemini-cli/pull/24065)
|
|
247
|
-
- fix(sandbox): implement Windows Mandatory Integrity Control for GeminiSandbox
|
|
248
|
-
by @galz10 in [#24057](https://github.com/google-gemini/gemini-cli/pull/24057)
|
|
249
|
-
- feat(core): implement tool-based topic grouping (Chapters) by @Abhijit-2592 in
|
|
250
|
-
[#23150](https://github.com/google-gemini/gemini-cli/pull/23150)
|
|
251
|
-
- feat(cli): support 'tab to queue' for messages while generating by @gundermanc
|
|
252
|
-
in [#24052](https://github.com/google-gemini/gemini-cli/pull/24052)
|
|
253
|
-
- feat(core): agnostic background task UI with CompletionBehavior by
|
|
254
|
-
@adamfweidman in
|
|
255
|
-
[#22740](https://github.com/google-gemini/gemini-cli/pull/22740)
|
|
256
|
-
- UX for topic narration tool by @gundermanc in
|
|
257
|
-
[#24079](https://github.com/google-gemini/gemini-cli/pull/24079)
|
|
258
|
-
- fix: shellcheck warnings in scripts by @scidomino in
|
|
259
|
-
[#24035](https://github.com/google-gemini/gemini-cli/pull/24035)
|
|
260
|
-
- test(evals): add comprehensive subagent delegation evaluations by @abhipatel12
|
|
261
|
-
in [#24132](https://github.com/google-gemini/gemini-cli/pull/24132)
|
|
262
|
-
- fix(a2a-server): prioritize ADC before evaluating headless constraints for
|
|
263
|
-
auth initialization by @spencer426 in
|
|
264
|
-
[#23614](https://github.com/google-gemini/gemini-cli/pull/23614)
|
|
265
|
-
- Text can be added after /plan command by @rambleraptor in
|
|
266
|
-
[#22833](https://github.com/google-gemini/gemini-cli/pull/22833)
|
|
267
|
-
- fix(cli): resolve missing F12 logs via global console store by @scidomino in
|
|
268
|
-
[#24235](https://github.com/google-gemini/gemini-cli/pull/24235)
|
|
269
|
-
- fix broken tests by @scidomino in
|
|
270
|
-
[#24279](https://github.com/google-gemini/gemini-cli/pull/24279)
|
|
271
|
-
- fix(evals): add update_topic behavioral eval by @gundermanc in
|
|
272
|
-
[#24223](https://github.com/google-gemini/gemini-cli/pull/24223)
|
|
273
|
-
- feat(core): Unified Context Management and Tool Distillation. by @joshualitt
|
|
274
|
-
in [#24157](https://github.com/google-gemini/gemini-cli/pull/24157)
|
|
275
|
-
- Default enable narration for the team. by @gundermanc in
|
|
276
|
-
[#24224](https://github.com/google-gemini/gemini-cli/pull/24224)
|
|
277
|
-
- fix(core): ensure default agents provide tools and use model-specific schemas
|
|
278
|
-
by @abhipatel12 in
|
|
279
|
-
[#24268](https://github.com/google-gemini/gemini-cli/pull/24268)
|
|
280
|
-
- feat(cli): show Flash Lite Preview model regardless of user tier by @sehoon38
|
|
281
|
-
in [#23904](https://github.com/google-gemini/gemini-cli/pull/23904)
|
|
282
|
-
- feat(cli): implement compact tool output by @jwhelangoog in
|
|
283
|
-
[#20974](https://github.com/google-gemini/gemini-cli/pull/20974)
|
|
284
|
-
- Add security settings for tool sandboxing by @galz10 in
|
|
285
|
-
[#23923](https://github.com/google-gemini/gemini-cli/pull/23923)
|
|
286
|
-
- chore(test-utils): switch integration tests to use PREVIEW_GEMINI_MODEL by
|
|
287
|
-
@sehoon38 in [#24276](https://github.com/google-gemini/gemini-cli/pull/24276)
|
|
288
|
-
- feat(core): enable topic update narration for legacy models by @Abhijit-2592
|
|
289
|
-
in [#24241](https://github.com/google-gemini/gemini-cli/pull/24241)
|
|
290
|
-
- feat(core): add project-level memory scope to save_memory tool by @SandyTao520
|
|
291
|
-
in [#24161](https://github.com/google-gemini/gemini-cli/pull/24161)
|
|
292
|
-
- test(integration): fix plan mode write denial test false positive by @sehoon38
|
|
293
|
-
in [#24299](https://github.com/google-gemini/gemini-cli/pull/24299)
|
|
294
|
-
- feat(plan): support `Plan` mode in untrusted folders by @Adib234 in
|
|
295
|
-
[#17586](https://github.com/google-gemini/gemini-cli/pull/17586)
|
|
296
|
-
- fix(core): enable mid-stream retries for all models and re-enable compression
|
|
297
|
-
test by @sehoon38 in
|
|
298
|
-
[#24302](https://github.com/google-gemini/gemini-cli/pull/24302)
|
|
299
|
-
- Changelog for v0.36.0-preview.6 by @gemini-cli-robot in
|
|
300
|
-
[#24082](https://github.com/google-gemini/gemini-cli/pull/24082)
|
|
301
|
-
- Changelog for v0.35.3 by @gemini-cli-robot in
|
|
302
|
-
[#24083](https://github.com/google-gemini/gemini-cli/pull/24083)
|
|
303
|
-
- feat(cli): add auth info to footer by @sehoon38 in
|
|
304
|
-
[#24042](https://github.com/google-gemini/gemini-cli/pull/24042)
|
|
305
|
-
- fix(browser): reset action counter for each agent session and let it ignore
|
|
306
|
-
internal actions by @cynthialong0-0 in
|
|
307
|
-
[#24228](https://github.com/google-gemini/gemini-cli/pull/24228)
|
|
308
|
-
- feat(plan): promote planning feature to stable by @ruomengz in
|
|
309
|
-
[#24282](https://github.com/google-gemini/gemini-cli/pull/24282)
|
|
310
|
-
- fix(browser): terminate subagent immediately on domain restriction violations
|
|
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
|
|
311
88
|
by @gsquared94 in
|
|
312
|
-
[#
|
|
313
|
-
-
|
|
314
|
-
[#23682](https://github.com/google-gemini/gemini-cli/pull/23682)
|
|
315
|
-
- Fix(browser): terminate immediately for "browser is already running" error by
|
|
316
|
-
@cynthialong0-0 in
|
|
317
|
-
[#24233](https://github.com/google-gemini/gemini-cli/pull/24233)
|
|
318
|
-
- docs: Add 'plan' option to approval mode in CLI reference by @YifanRuan in
|
|
319
|
-
[#24134](https://github.com/google-gemini/gemini-cli/pull/24134)
|
|
320
|
-
- fix(core): batch macOS seatbelt rules into a profile file to prevent ARG_MAX
|
|
321
|
-
errors by @ehedlund in
|
|
322
|
-
[#24255](https://github.com/google-gemini/gemini-cli/pull/24255)
|
|
323
|
-
- fix(core): fix race condition between browser agent and main closing process
|
|
324
|
-
by @cynthialong0-0 in
|
|
325
|
-
[#24340](https://github.com/google-gemini/gemini-cli/pull/24340)
|
|
326
|
-
- perf(build): optimize build scripts for parallel execution and remove
|
|
327
|
-
redundant checks by @sehoon38 in
|
|
328
|
-
[#24307](https://github.com/google-gemini/gemini-cli/pull/24307)
|
|
329
|
-
- ci: install bubblewrap on Linux for release workflows by @ehedlund in
|
|
330
|
-
[#24347](https://github.com/google-gemini/gemini-cli/pull/24347)
|
|
331
|
-
- chore(release): allow bundling for all builds, including stable by @sehoon38
|
|
332
|
-
in [#24305](https://github.com/google-gemini/gemini-cli/pull/24305)
|
|
333
|
-
- Revert "Add security settings for tool sandboxing" by @jerop in
|
|
334
|
-
[#24357](https://github.com/google-gemini/gemini-cli/pull/24357)
|
|
335
|
-
- docs: update subagents docs to not be experimental by @abhipatel12 in
|
|
336
|
-
[#24343](https://github.com/google-gemini/gemini-cli/pull/24343)
|
|
337
|
-
- fix(core): implement **read and **write commands in sandbox managers by
|
|
338
|
-
@galz10 in [#24283](https://github.com/google-gemini/gemini-cli/pull/24283)
|
|
339
|
-
- don't try to remove tags in dry run by @scidomino in
|
|
340
|
-
[#24356](https://github.com/google-gemini/gemini-cli/pull/24356)
|
|
341
|
-
- fix(config): disable JIT context loading by default by @SandyTao520 in
|
|
342
|
-
[#24364](https://github.com/google-gemini/gemini-cli/pull/24364)
|
|
343
|
-
- test(sandbox): add integration test for dynamic permission expansion by
|
|
344
|
-
@galz10 in [#24359](https://github.com/google-gemini/gemini-cli/pull/24359)
|
|
345
|
-
- docs(policy): remove unsupported mcpName wildcard edge case by @abhipatel12 in
|
|
346
|
-
[#24133](https://github.com/google-gemini/gemini-cli/pull/24133)
|
|
347
|
-
- docs: fix broken GEMINI.md link in CONTRIBUTING.md by @Panchal-Tirth in
|
|
348
|
-
[#24182](https://github.com/google-gemini/gemini-cli/pull/24182)
|
|
349
|
-
- feat(core): infrastructure for event-driven subagent history by @abhipatel12
|
|
350
|
-
in [#23914](https://github.com/google-gemini/gemini-cli/pull/23914)
|
|
351
|
-
- fix(core): resolve Plan Mode deadlock during plan file creation due to sandbox
|
|
352
|
-
restrictions by @DavidAPierce in
|
|
353
|
-
[#24047](https://github.com/google-gemini/gemini-cli/pull/24047)
|
|
354
|
-
- fix(core): fix browser agent UX issues and improve E2E test reliability by
|
|
89
|
+
[#24523](https://github.com/google-gemini/gemini-cli/pull/24523)
|
|
90
|
+
- fix(browser): handle computer-use model detection for analyze_screenshot by
|
|
355
91
|
@gsquared94 in
|
|
356
|
-
[#
|
|
357
|
-
-
|
|
358
|
-
[#
|
|
359
|
-
-
|
|
360
|
-
@
|
|
361
|
-
[#
|
|
362
|
-
-
|
|
363
|
-
|
|
364
|
-
-
|
|
365
|
-
[#
|
|
366
|
-
-
|
|
367
|
-
@
|
|
368
|
-
[#
|
|
369
|
-
-
|
|
370
|
-
[#
|
|
371
|
-
-
|
|
372
|
-
[#
|
|
373
|
-
- fix(
|
|
374
|
-
@
|
|
375
|
-
|
|
376
|
-
-
|
|
377
|
-
|
|
378
|
-
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
-
|
|
382
|
-
|
|
383
|
-
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
[#
|
|
391
|
-
-
|
|
392
|
-
[#
|
|
393
|
-
-
|
|
394
|
-
|
|
395
|
-
- fix(
|
|
396
|
-
[#
|
|
397
|
-
-
|
|
398
|
-
|
|
399
|
-
- feat(
|
|
400
|
-
|
|
401
|
-
-
|
|
402
|
-
[#
|
|
403
|
-
-
|
|
404
|
-
|
|
405
|
-
[#
|
|
406
|
-
-
|
|
407
|
-
|
|
408
|
-
[#
|
|
409
|
-
-
|
|
410
|
-
[#
|
|
411
|
-
-
|
|
412
|
-
[#
|
|
413
|
-
-
|
|
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
|
|
96
|
+
@SandyTao520 in
|
|
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
|
|
116
|
+
@jackwotherspoon in
|
|
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
|
|
414
198
|
@gsquared94 in
|
|
415
|
-
[#
|
|
416
|
-
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
@
|
|
421
|
-
[#
|
|
422
|
-
- fix(
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
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)
|
|
426
272
|
|
|
427
273
|
**Full Changelog**:
|
|
428
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
274
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.38.0...v0.38.2
|