@google/gemini-cli-core 0.40.0-preview.4 → 0.41.0-nightly.20260427.g42587de73
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/README.md +2 -0
- package/dist/docs/changelogs/index.md +18 -0
- package/dist/docs/changelogs/latest.md +243 -255
- package/dist/docs/cli/settings.md +19 -13
- package/dist/docs/reference/configuration.md +71 -0
- package/dist/docs/reference/keyboard-shortcuts.md +1 -0
- package/dist/{google-gemini-cli-core-0.40.0-preview.3.tgz → google-gemini-cli-core-0.41.0-nightly.20260423.gaa05b4583.tgz} +0 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/agents/local-executor.js +8 -0
- package/dist/src/agents/local-executor.js.map +1 -1
- package/dist/src/agents/skill-extraction-agent.js +5 -4
- package/dist/src/agents/skill-extraction-agent.js.map +1 -1
- package/dist/src/agents/skill-extraction-agent.test.js +4 -2
- package/dist/src/agents/skill-extraction-agent.test.js.map +1 -1
- package/dist/src/agents/types.d.ts +2 -0
- package/dist/src/agents/types.js.map +1 -1
- package/dist/src/config/config.d.ts +6 -0
- package/dist/src/config/config.js +26 -8
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +39 -1
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/defaultModelConfigs.js +34 -0
- package/dist/src/config/defaultModelConfigs.js.map +1 -1
- package/dist/src/config/models.d.ts +3 -1
- package/dist/src/config/models.js +12 -1
- package/dist/src/config/models.js.map +1 -1
- package/dist/src/config/models.test.js +9 -1
- package/dist/src/config/models.test.js.map +1 -1
- package/dist/src/core/client.js +3 -7
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/client.test.js +0 -3
- package/dist/src/core/client.test.js.map +1 -1
- package/dist/src/core/tokenLimits.d.ts +1 -0
- package/dist/src/core/tokenLimits.js +5 -1
- package/dist/src/core/tokenLimits.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/generated/git-commit.js.map +1 -1
- package/dist/src/index.d.ts +7 -0
- package/dist/src/index.js +8 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/policy/policy-engine.js +8 -2
- package/dist/src/policy/policy-engine.js.map +1 -1
- package/dist/src/policy/policy-engine.test.js +52 -1
- package/dist/src/policy/policy-engine.test.js.map +1 -1
- package/dist/src/services/chatRecordingService.d.ts +1 -0
- package/dist/src/services/chatRecordingService.js +23 -0
- package/dist/src/services/chatRecordingService.js.map +1 -1
- package/dist/src/services/chatRecordingTypes.d.ts +13 -0
- package/dist/src/services/memoryService.d.ts +5 -0
- package/dist/src/services/memoryService.js +76 -53
- package/dist/src/services/memoryService.js.map +1 -1
- package/dist/src/services/memoryService.test.js +256 -12
- package/dist/src/services/memoryService.test.js.map +1 -1
- package/dist/src/services/sessionScratchpadUtils.d.ts +7 -0
- package/dist/src/services/sessionScratchpadUtils.js +121 -0
- package/dist/src/services/sessionScratchpadUtils.js.map +1 -0
- package/dist/src/services/sessionScratchpadUtils.test.d.ts +6 -0
- package/dist/src/services/sessionScratchpadUtils.test.js +27 -0
- package/dist/src/services/sessionScratchpadUtils.test.js.map +1 -0
- package/dist/src/services/sessionSummaryUtils.d.ts +3 -3
- package/dist/src/services/sessionSummaryUtils.js +232 -27
- package/dist/src/services/sessionSummaryUtils.js.map +1 -1
- package/dist/src/services/sessionSummaryUtils.test.js +449 -10
- package/dist/src/services/sessionSummaryUtils.test.js.map +1 -1
- package/dist/src/services/test-data/resolved-aliases-retry.golden.json +24 -0
- package/dist/src/services/test-data/resolved-aliases.golden.json +24 -0
- package/dist/src/tools/trackerTools.test.js +7 -2
- package/dist/src/tools/trackerTools.test.js.map +1 -1
- package/dist/src/utils/binaryCheck.d.ts +9 -0
- package/dist/src/utils/binaryCheck.js +13 -0
- package/dist/src/utils/binaryCheck.js.map +1 -0
- package/dist/src/voice/audioRecorder.d.ts +27 -0
- package/dist/src/voice/audioRecorder.js +95 -0
- package/dist/src/voice/audioRecorder.js.map +1 -0
- package/dist/src/voice/geminiLiveTranscriptionProvider.d.ts +20 -0
- package/dist/src/voice/geminiLiveTranscriptionProvider.js +140 -0
- package/dist/src/voice/geminiLiveTranscriptionProvider.js.map +1 -0
- package/dist/src/voice/transcriptionFactory.d.ts +12 -0
- package/dist/src/voice/transcriptionFactory.js +32 -0
- package/dist/src/voice/transcriptionFactory.js.map +1 -0
- package/dist/src/voice/transcriptionProvider.d.ts +29 -0
- package/dist/src/voice/transcriptionProvider.js +7 -0
- package/dist/src/voice/transcriptionProvider.js.map +1 -0
- package/dist/src/voice/whisperModelManager.d.ts +26 -0
- package/dist/src/voice/whisperModelManager.js +79 -0
- package/dist/src/voice/whisperModelManager.js.map +1 -0
- package/dist/src/voice/whisperTranscriptionProvider.d.ts +34 -0
- package/dist/src/voice/whisperTranscriptionProvider.js +151 -0
- package/dist/src/voice/whisperTranscriptionProvider.js.map +1 -0
- package/dist/src/voice/whisperTranscriptionProvider.test.d.ts +6 -0
- package/dist/src/voice/whisperTranscriptionProvider.test.js +24 -0
- package/dist/src/voice/whisperTranscriptionProvider.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -371,6 +371,8 @@ for planned features and priorities.
|
|
|
371
371
|
|
|
372
372
|
## 📖 Resources
|
|
373
373
|
|
|
374
|
+
- **[Free Course](https://learn.deeplearning.ai/courses/gemini-cli-code-and-create-with-an-open-source-agent/information)** -
|
|
375
|
+
Learn the basics.
|
|
374
376
|
- **[Official Roadmap](./ROADMAP.md)** - See what's coming next.
|
|
375
377
|
- **[Changelog](https://www.geminicli.com/docs/changelogs)** - See recent
|
|
376
378
|
notable updates.
|
|
@@ -18,6 +18,24 @@ on GitHub.
|
|
|
18
18
|
| [Preview](preview.md) | Experimental features ready for early feedback. |
|
|
19
19
|
| [Stable](latest.md) | Stable, recommended for general use. |
|
|
20
20
|
|
|
21
|
+
## Announcements: v0.39.0 - 2026-04-23
|
|
22
|
+
|
|
23
|
+
- **Skill Management:** Added a new `/memory` inbox command for reviewing and
|
|
24
|
+
patching skills extracted during sessions
|
|
25
|
+
([#24544](https://github.com/google-gemini/gemini-cli/pull/24544) by
|
|
26
|
+
@SandyTao520, [#25148](https://github.com/google-gemini/gemini-cli/pull/25148)
|
|
27
|
+
by @SandyTao520).
|
|
28
|
+
- **Improved Transparency:** Plan Mode now requires confirmation for skill
|
|
29
|
+
activation and allows plan inspection
|
|
30
|
+
([#24946](https://github.com/google-gemini/gemini-cli/pull/24946),
|
|
31
|
+
[#25058](https://github.com/google-gemini/gemini-cli/pull/25058) by
|
|
32
|
+
@ruomengz).
|
|
33
|
+
- **Architecture & Reliability:** Introduced a decoupled `ContextManager`
|
|
34
|
+
architecture and resolved several critical memory leaks and PTY exhaustion
|
|
35
|
+
issues ([#24752](https://github.com/google-gemini/gemini-cli/pull/24752) by
|
|
36
|
+
@joshualitt, [#25079](https://github.com/google-gemini/gemini-cli/pull/25079)
|
|
37
|
+
by @spencer426).
|
|
38
|
+
|
|
21
39
|
## Announcements: v0.38.0 - 2026-04-14
|
|
22
40
|
|
|
23
41
|
- **Chapters Narrative Flow:** Group agent interactions into "Chapters" based on
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Latest stable release: v0.
|
|
1
|
+
# Latest stable release: v0.39.0
|
|
2
2
|
|
|
3
|
-
Released: April
|
|
3
|
+
Released: April 23, 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,264 +11,252 @@ npm install -g @google/gemini-cli
|
|
|
11
11
|
|
|
12
12
|
## Highlights
|
|
13
13
|
|
|
14
|
-
- **
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- **
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- **
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- **
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
tasks.
|
|
14
|
+
- **Skill Extractor & Memory Inbox:** Introduced the `/memory` command to review
|
|
15
|
+
and patch skills extracted during agent sessions, streamlining the continuous
|
|
16
|
+
learning workflow.
|
|
17
|
+
- **Enhanced Plan Mode Security:** Increased transparency in Plan Mode by
|
|
18
|
+
requiring user confirmation for skill activation and allowing users to view
|
|
19
|
+
the full content of generated plans.
|
|
20
|
+
- **Advanced Display Protocol:** Implemented a tool-controlled display protocol,
|
|
21
|
+
enabling agents to provide richer, more structured visual feedback during
|
|
22
|
+
execution.
|
|
23
|
+
- **Core Architecture Refactor:** Introduced a decoupled `ContextManager` and
|
|
24
|
+
`Sidecar` architecture to improve state management and session resilience.
|
|
25
|
+
- **Streamlined Agent Feedback:** Restored the display of model thoughts and raw
|
|
26
|
+
text in responses, ensuring full visibility into the agent's reasoning
|
|
27
|
+
process.
|
|
29
28
|
|
|
30
29
|
## What's Changed
|
|
31
30
|
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
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
|
|
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
|
|
91
|
-
@gsquared94 in
|
|
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
|
|
31
|
+
- refactor(plan): simplify policy priorities and consolidate read-only rules by
|
|
32
|
+
@ruomengz in [#24849](https://github.com/google-gemini/gemini-cli/pull/24849)
|
|
33
|
+
- feat(test-utils): add memory usage integration test harness by @sripasg in
|
|
34
|
+
[#24876](https://github.com/google-gemini/gemini-cli/pull/24876)
|
|
35
|
+
- feat(memory): add /memory inbox command for reviewing extracted skills by
|
|
96
36
|
@SandyTao520 in
|
|
97
|
-
[#
|
|
98
|
-
-
|
|
99
|
-
|
|
100
|
-
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
[#
|
|
105
|
-
-
|
|
106
|
-
[#
|
|
107
|
-
-
|
|
108
|
-
[#
|
|
109
|
-
-
|
|
110
|
-
|
|
111
|
-
-
|
|
112
|
-
[#
|
|
113
|
-
- feat(
|
|
114
|
-
[#
|
|
115
|
-
-
|
|
116
|
-
@
|
|
117
|
-
[#
|
|
118
|
-
-
|
|
119
|
-
[#
|
|
120
|
-
- fix(core):
|
|
121
|
-
@
|
|
122
|
-
[#
|
|
123
|
-
- fix(
|
|
124
|
-
in
|
|
125
|
-
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
[#
|
|
135
|
-
-
|
|
136
|
-
[#
|
|
137
|
-
-
|
|
138
|
-
|
|
139
|
-
-
|
|
140
|
-
|
|
141
|
-
[#
|
|
142
|
-
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
-
|
|
152
|
-
|
|
153
|
-
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
[#
|
|
157
|
-
- fix(
|
|
158
|
-
|
|
159
|
-
[#
|
|
160
|
-
-
|
|
161
|
-
|
|
162
|
-
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
-
|
|
166
|
-
|
|
167
|
-
-
|
|
168
|
-
|
|
169
|
-
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
[#
|
|
173
|
-
-
|
|
174
|
-
|
|
175
|
-
-
|
|
176
|
-
[#
|
|
177
|
-
-
|
|
178
|
-
in
|
|
179
|
-
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
[#
|
|
183
|
-
- feat(
|
|
184
|
-
[#
|
|
185
|
-
-
|
|
186
|
-
[#
|
|
187
|
-
-
|
|
188
|
-
|
|
189
|
-
-
|
|
190
|
-
[#
|
|
191
|
-
-
|
|
192
|
-
|
|
193
|
-
-
|
|
194
|
-
[#
|
|
195
|
-
- fix
|
|
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
|
|
37
|
+
[#24544](https://github.com/google-gemini/gemini-cli/pull/24544)
|
|
38
|
+
- chore(release): bump version to 0.39.0-nightly.20260408.e77b22e63 by
|
|
39
|
+
@gemini-cli-robot in
|
|
40
|
+
[#24939](https://github.com/google-gemini/gemini-cli/pull/24939)
|
|
41
|
+
- fix(core): ensure robust sandbox cleanup in all process execution paths by
|
|
42
|
+
@ehedlund in [#24763](https://github.com/google-gemini/gemini-cli/pull/24763)
|
|
43
|
+
- chore: update ink version to 6.6.8 by @jacob314 in
|
|
44
|
+
[#24934](https://github.com/google-gemini/gemini-cli/pull/24934)
|
|
45
|
+
- Changelog for v0.38.0-preview.0 by @gemini-cli-robot in
|
|
46
|
+
[#24938](https://github.com/google-gemini/gemini-cli/pull/24938)
|
|
47
|
+
- chore: ignore conductor directory by @JayadityaGit in
|
|
48
|
+
[#22128](https://github.com/google-gemini/gemini-cli/pull/22128)
|
|
49
|
+
- Changelog for v0.37.0 by @gemini-cli-robot in
|
|
50
|
+
[#24940](https://github.com/google-gemini/gemini-cli/pull/24940)
|
|
51
|
+
- feat(plan): require user confirmation for activate_skill in Plan Mode by
|
|
52
|
+
@ruomengz in [#24946](https://github.com/google-gemini/gemini-cli/pull/24946)
|
|
53
|
+
- feat(test-utils): add CPU performance integration test harness by @sripasg in
|
|
54
|
+
[#24951](https://github.com/google-gemini/gemini-cli/pull/24951)
|
|
55
|
+
- fix(cli-ui): enable Ctrl+Backspace for word deletion in Windows Terminal by
|
|
56
|
+
@dogukanozen in
|
|
57
|
+
[#21447](https://github.com/google-gemini/gemini-cli/pull/21447)
|
|
58
|
+
- test(sdk): add unit tests for GeminiCliSession by @AdamyaSingh7 in
|
|
59
|
+
[#21897](https://github.com/google-gemini/gemini-cli/pull/21897)
|
|
60
|
+
- fix(core): resolve windows symlink bypass and stabilize sandbox integration
|
|
61
|
+
tests by @ehedlund in
|
|
62
|
+
[#24834](https://github.com/google-gemini/gemini-cli/pull/24834)
|
|
63
|
+
- fix(cli): restore file path display in edit and write tool confirmations by
|
|
64
|
+
@jwhelangoog in
|
|
65
|
+
[#24974](https://github.com/google-gemini/gemini-cli/pull/24974)
|
|
66
|
+
- feat(core): refine shell tool description display logic by @jwhelangoog in
|
|
67
|
+
[#24903](https://github.com/google-gemini/gemini-cli/pull/24903)
|
|
68
|
+
- fix(core): dynamic session ID injection to resolve resume bugs by @scidomino
|
|
69
|
+
in [#24972](https://github.com/google-gemini/gemini-cli/pull/24972)
|
|
70
|
+
- Update ink version to 6.6.9 by @jacob314 in
|
|
71
|
+
[#24980](https://github.com/google-gemini/gemini-cli/pull/24980)
|
|
72
|
+
- Generalize evals infra to support more types of evals, organization and
|
|
73
|
+
queuing of named suites by @gundermanc in
|
|
74
|
+
[#24941](https://github.com/google-gemini/gemini-cli/pull/24941)
|
|
75
|
+
- fix(cli): optimize startup with lightweight parent process by @sehoon38 in
|
|
76
|
+
[#24667](https://github.com/google-gemini/gemini-cli/pull/24667)
|
|
77
|
+
- refactor(sandbox): use centralized sandbox paths in macOS Seatbelt
|
|
78
|
+
implementation by @ehedlund in
|
|
79
|
+
[#24984](https://github.com/google-gemini/gemini-cli/pull/24984)
|
|
80
|
+
- feat(cli): refine tool output formatting for compact mode by @jwhelangoog in
|
|
81
|
+
[#24677](https://github.com/google-gemini/gemini-cli/pull/24677)
|
|
82
|
+
- fix(sdk): skip broken sendStream tests to unblock nightly by @SandyTao520 in
|
|
83
|
+
[#25000](https://github.com/google-gemini/gemini-cli/pull/25000)
|
|
84
|
+
- refactor(core): use centralized path resolution for Linux sandbox by @ehedlund
|
|
85
|
+
in [#24985](https://github.com/google-gemini/gemini-cli/pull/24985)
|
|
86
|
+
- Support ctrl+shift+g by @jacob314 in
|
|
87
|
+
[#25035](https://github.com/google-gemini/gemini-cli/pull/25035)
|
|
88
|
+
- feat(core): refactor subagent tool to unified invoke_subagent tool by
|
|
89
|
+
@abhipatel12 in
|
|
90
|
+
[#24489](https://github.com/google-gemini/gemini-cli/pull/24489)
|
|
91
|
+
- fix(core): add explicit git identity env vars to prevent sandbox checkpointing
|
|
92
|
+
error by @mrpmohiburrahman in
|
|
93
|
+
[#19775](https://github.com/google-gemini/gemini-cli/pull/19775)
|
|
94
|
+
- fix: respect hideContextPercentage when FooterConfigDialog is closed without
|
|
95
|
+
changes by @chernistry in
|
|
96
|
+
[#24773](https://github.com/google-gemini/gemini-cli/pull/24773)
|
|
97
|
+
- fix(cli): suppress unhandled AbortError logs during request cancellation by
|
|
98
|
+
@euxaristia in
|
|
99
|
+
[#22621](https://github.com/google-gemini/gemini-cli/pull/22621)
|
|
100
|
+
- Automated documentation audit by @g-samroberts in
|
|
101
|
+
[#24567](https://github.com/google-gemini/gemini-cli/pull/24567)
|
|
102
|
+
- feat(cli): implement useAgentStream hook by @mbleigh in
|
|
103
|
+
[#24292](https://github.com/google-gemini/gemini-cli/pull/24292)
|
|
104
|
+
- refactor(plan) Clean default plan toml by @ruomengz in
|
|
105
|
+
[#25037](https://github.com/google-gemini/gemini-cli/pull/25037)
|
|
106
|
+
- refactor(core): remove legacy subagent wrapping tools by @abhipatel12 in
|
|
107
|
+
[#25053](https://github.com/google-gemini/gemini-cli/pull/25053)
|
|
108
|
+
- fix(core): honor retryDelay in RetryInfo for 503 errors by @yunaseoul in
|
|
109
|
+
[#25057](https://github.com/google-gemini/gemini-cli/pull/25057)
|
|
110
|
+
- fix(core): remediate subagent memory leaks using AbortSignal in MessageBus by
|
|
111
|
+
@abhipatel12 in
|
|
112
|
+
[#25048](https://github.com/google-gemini/gemini-cli/pull/25048)
|
|
113
|
+
- feat(cli): wire up useAgentStream in AppContainer by @mbleigh in
|
|
114
|
+
[#24297](https://github.com/google-gemini/gemini-cli/pull/24297)
|
|
115
|
+
- feat(core): migrate chat recording to JSONL streaming by @spencer426 in
|
|
116
|
+
[#23749](https://github.com/google-gemini/gemini-cli/pull/23749)
|
|
117
|
+
- fix(core): clear 5-minute timeouts in oauth flow to prevent memory leaks by
|
|
118
|
+
@spencer426 in
|
|
119
|
+
[#24968](https://github.com/google-gemini/gemini-cli/pull/24968)
|
|
120
|
+
- fix(sandbox): centralize async git worktree resolution and enforce read-only
|
|
121
|
+
security by @ehedlund in
|
|
122
|
+
[#25040](https://github.com/google-gemini/gemini-cli/pull/25040)
|
|
123
|
+
- feat(test): add high-volume shell test and refine perf harness by @sripasg in
|
|
124
|
+
[#24983](https://github.com/google-gemini/gemini-cli/pull/24983)
|
|
125
|
+
- fix(core): silently handle EPERM when listing dir structure by @scidomino in
|
|
126
|
+
[#25066](https://github.com/google-gemini/gemini-cli/pull/25066)
|
|
127
|
+
- Changelog for v0.37.1 by @gemini-cli-robot in
|
|
128
|
+
[#25055](https://github.com/google-gemini/gemini-cli/pull/25055)
|
|
129
|
+
- fix: decode Uint8Array and multi-byte UTF-8 in API error messages by
|
|
130
|
+
@kimjune01 in [#23341](https://github.com/google-gemini/gemini-cli/pull/23341)
|
|
131
|
+
- Automated documentation audit results by @g-samroberts in
|
|
132
|
+
[#22755](https://github.com/google-gemini/gemini-cli/pull/22755)
|
|
133
|
+
- debugging(ui): add optional debugRainbow setting by @jacob314 in
|
|
134
|
+
[#25088](https://github.com/google-gemini/gemini-cli/pull/25088)
|
|
135
|
+
- fix: resolve lifecycle memory leaks by cleaning up listeners and root closures
|
|
209
136
|
by @spencer426 in
|
|
210
|
-
[#
|
|
211
|
-
-
|
|
212
|
-
[#
|
|
213
|
-
- fix(
|
|
214
|
-
[#
|
|
215
|
-
-
|
|
216
|
-
|
|
217
|
-
-
|
|
218
|
-
|
|
219
|
-
[#
|
|
220
|
-
-
|
|
221
|
-
[#
|
|
222
|
-
-
|
|
223
|
-
[#
|
|
224
|
-
-
|
|
225
|
-
|
|
226
|
-
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
-
|
|
231
|
-
|
|
232
|
-
- fix:
|
|
233
|
-
|
|
234
|
-
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
[#
|
|
238
|
-
-
|
|
239
|
-
[#
|
|
240
|
-
-
|
|
241
|
-
|
|
242
|
-
-
|
|
243
|
-
|
|
244
|
-
-
|
|
245
|
-
|
|
246
|
-
|
|
137
|
+
[#25049](https://github.com/google-gemini/gemini-cli/pull/25049)
|
|
138
|
+
- docs(cli): updates f12 description to be more precise by @JayadityaGit in
|
|
139
|
+
[#15816](https://github.com/google-gemini/gemini-cli/pull/15816)
|
|
140
|
+
- fix(cli): mark /settings as unsafe to run concurrently by @jacob314 in
|
|
141
|
+
[#25061](https://github.com/google-gemini/gemini-cli/pull/25061)
|
|
142
|
+
- fix(core): remove buffer slice to prevent OOM on large output streams by
|
|
143
|
+
@spencer426 in
|
|
144
|
+
[#25094](https://github.com/google-gemini/gemini-cli/pull/25094)
|
|
145
|
+
- feat(core): persist subagent agentId in tool call records by @abhipatel12 in
|
|
146
|
+
[#25092](https://github.com/google-gemini/gemini-cli/pull/25092)
|
|
147
|
+
- chore(core): increase codebase investigator turn limits to 50 by @abhipatel12
|
|
148
|
+
in [#25125](https://github.com/google-gemini/gemini-cli/pull/25125)
|
|
149
|
+
- refactor(core): consolidate execute() arguments into ExecuteOptions by
|
|
150
|
+
@mbleigh in [#25101](https://github.com/google-gemini/gemini-cli/pull/25101)
|
|
151
|
+
- feat(core): add Strategic Re-evaluation guidance to system prompt by
|
|
152
|
+
@aishaneeshah in
|
|
153
|
+
[#25062](https://github.com/google-gemini/gemini-cli/pull/25062)
|
|
154
|
+
- fix(core): preserve shell execution config fields on update by
|
|
155
|
+
@jasonmatthewsuhari in
|
|
156
|
+
[#25113](https://github.com/google-gemini/gemini-cli/pull/25113)
|
|
157
|
+
- docs: add vi shortcuts and clarify MCP sandbox setup by @chrisjcthomas in
|
|
158
|
+
[#21679](https://github.com/google-gemini/gemini-cli/pull/21679)
|
|
159
|
+
- fix(cli): pass session id to interactive shell executions by
|
|
160
|
+
@jasonmatthewsuhari in
|
|
161
|
+
[#25114](https://github.com/google-gemini/gemini-cli/pull/25114)
|
|
162
|
+
- fix(cli): resolve text sanitization data loss due to C1 control characters by
|
|
163
|
+
@euxaristia in
|
|
164
|
+
[#22624](https://github.com/google-gemini/gemini-cli/pull/22624)
|
|
165
|
+
- feat(core): add large memory regression test by @cynthialong0-0 in
|
|
166
|
+
[#25059](https://github.com/google-gemini/gemini-cli/pull/25059)
|
|
167
|
+
- fix(core): resolve PTY exhaustion and orphan MCP subprocess leaks by
|
|
168
|
+
@spencer426 in
|
|
169
|
+
[#25079](https://github.com/google-gemini/gemini-cli/pull/25079)
|
|
170
|
+
- chore(deps): update vulnerable dependencies via npm audit fix by @scidomino in
|
|
171
|
+
[#25140](https://github.com/google-gemini/gemini-cli/pull/25140)
|
|
172
|
+
- perf(sandbox): optimize Windows sandbox initialization via native ACL
|
|
173
|
+
application by @ehedlund in
|
|
174
|
+
[#25077](https://github.com/google-gemini/gemini-cli/pull/25077)
|
|
175
|
+
- chore: switch from keytar to @github/keytar by @cocosheng-g in
|
|
176
|
+
[#25143](https://github.com/google-gemini/gemini-cli/pull/25143)
|
|
177
|
+
- fix: improve audio MIME normalization and validation in file reads by
|
|
178
|
+
@junaiddshaukat in
|
|
179
|
+
[#21636](https://github.com/google-gemini/gemini-cli/pull/21636)
|
|
180
|
+
- docs: Update docs-audit to include changes in PR body by @g-samroberts in
|
|
181
|
+
[#25153](https://github.com/google-gemini/gemini-cli/pull/25153)
|
|
182
|
+
- docs: correct documentation for enforced authentication type by @cocosheng-g
|
|
183
|
+
in [#25142](https://github.com/google-gemini/gemini-cli/pull/25142)
|
|
184
|
+
- fix(cli): exclude update_topic from confirmation queue count by @Abhijit-2592
|
|
185
|
+
in [#24945](https://github.com/google-gemini/gemini-cli/pull/24945)
|
|
186
|
+
- Memory fix for trace's streamWrapper. by @anthraxmilkshake in
|
|
187
|
+
[#25089](https://github.com/google-gemini/gemini-cli/pull/25089)
|
|
188
|
+
- fix(core): fix quota footer for non-auto models and improve display by
|
|
189
|
+
@jackwotherspoon in
|
|
190
|
+
[#25121](https://github.com/google-gemini/gemini-cli/pull/25121)
|
|
191
|
+
- docs(contributing): clarify self-assignment policy for issues by @jmr in
|
|
192
|
+
[#23087](https://github.com/google-gemini/gemini-cli/pull/23087)
|
|
193
|
+
- feat(core): add skill patching support with /memory inbox integration by
|
|
194
|
+
@SandyTao520 in
|
|
195
|
+
[#25148](https://github.com/google-gemini/gemini-cli/pull/25148)
|
|
196
|
+
- Stop suppressing thoughts and text in model response by @gundermanc in
|
|
197
|
+
[#25073](https://github.com/google-gemini/gemini-cli/pull/25073)
|
|
198
|
+
- fix(release): prefix git hash in nightly versions to prevent semver
|
|
199
|
+
normalization by @SandyTao520 in
|
|
200
|
+
[#25304](https://github.com/google-gemini/gemini-cli/pull/25304)
|
|
201
|
+
- feat(cli): extract QuotaContext and resolve infinite render loop by @Adib234
|
|
202
|
+
in [#24959](https://github.com/google-gemini/gemini-cli/pull/24959)
|
|
203
|
+
- refactor(core): extract and centralize sandbox path utilities by @ehedlund in
|
|
204
|
+
[#25305](https://github.com/google-gemini/gemini-cli/pull/25305)
|
|
205
|
+
- feat(ui): added enhancements to scroll momentum by @devr0306 in
|
|
206
|
+
[#24447](https://github.com/google-gemini/gemini-cli/pull/24447)
|
|
207
|
+
- fix(core): replace custom binary detection with isbinaryfile to correctly
|
|
208
|
+
handle UTF-8 (U+FFFD) by @Anjaligarhwal in
|
|
209
|
+
[#25297](https://github.com/google-gemini/gemini-cli/pull/25297)
|
|
210
|
+
- feat(agent): implement tool-controlled display protocol (Steps 2-3) by
|
|
211
|
+
@mbleigh in [#25134](https://github.com/google-gemini/gemini-cli/pull/25134)
|
|
212
|
+
- Stop showing scrollbar unless we are in terminalBuffer mode by @jacob314 in
|
|
213
|
+
[#25320](https://github.com/google-gemini/gemini-cli/pull/25320)
|
|
214
|
+
- feat: support auth block in MCP servers config in agents by @TanmayVartak in
|
|
215
|
+
[#24770](https://github.com/google-gemini/gemini-cli/pull/24770)
|
|
216
|
+
- fix(core): expose GEMINI_PLANS_DIR to hook environment by @Adib234 in
|
|
217
|
+
[#25296](https://github.com/google-gemini/gemini-cli/pull/25296)
|
|
218
|
+
- feat(core): implement silent fallback for Plan Mode model routing by @jerop in
|
|
219
|
+
[#25317](https://github.com/google-gemini/gemini-cli/pull/25317)
|
|
220
|
+
- fix: correct redirect count increment in fetchJson by @KevinZhao in
|
|
221
|
+
[#24896](https://github.com/google-gemini/gemini-cli/pull/24896)
|
|
222
|
+
- fix(core): prevent secondary crash in ModelRouterService finally block by
|
|
247
223
|
@gundermanc in
|
|
248
|
-
[#
|
|
249
|
-
-
|
|
250
|
-
@
|
|
251
|
-
[#
|
|
252
|
-
-
|
|
253
|
-
[#
|
|
254
|
-
-
|
|
255
|
-
[#
|
|
256
|
-
-
|
|
257
|
-
in [#
|
|
258
|
-
-
|
|
259
|
-
|
|
260
|
-
-
|
|
261
|
-
|
|
262
|
-
[#
|
|
263
|
-
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
[#
|
|
268
|
-
- fix:
|
|
269
|
-
[#
|
|
270
|
-
-
|
|
271
|
-
[#
|
|
224
|
+
[#25333](https://github.com/google-gemini/gemini-cli/pull/25333)
|
|
225
|
+
- feat(core): introduce decoupled ContextManager and Sidecar architecture by
|
|
226
|
+
@joshualitt in
|
|
227
|
+
[#24752](https://github.com/google-gemini/gemini-cli/pull/24752)
|
|
228
|
+
- docs(core): update generalist agent documentation by @abhipatel12 in
|
|
229
|
+
[#25325](https://github.com/google-gemini/gemini-cli/pull/25325)
|
|
230
|
+
- chore(mcp): check MCP error code over brittle string match by @jackwotherspoon
|
|
231
|
+
in [#25381](https://github.com/google-gemini/gemini-cli/pull/25381)
|
|
232
|
+
- feat(plan): update plan mode prompt to allow showing plan content by @ruomengz
|
|
233
|
+
in [#25058](https://github.com/google-gemini/gemini-cli/pull/25058)
|
|
234
|
+
- test(core): improve sandbox integration test coverage and fix OS-specific
|
|
235
|
+
failures by @ehedlund in
|
|
236
|
+
[#25307](https://github.com/google-gemini/gemini-cli/pull/25307)
|
|
237
|
+
- fix(core): use debug level for keychain fallback logging by @ehedlund in
|
|
238
|
+
[#25398](https://github.com/google-gemini/gemini-cli/pull/25398)
|
|
239
|
+
- feat(test): add a performance test in asian language by @cynthialong0-0 in
|
|
240
|
+
[#25392](https://github.com/google-gemini/gemini-cli/pull/25392)
|
|
241
|
+
- feat(cli): enable mouse clicking for cursor positioning in AskUser multi-line
|
|
242
|
+
answers by @Adib234 in
|
|
243
|
+
[#24630](https://github.com/google-gemini/gemini-cli/pull/24630)
|
|
244
|
+
- fix(core): detect kmscon terminal as supporting true color by @claygeo in
|
|
245
|
+
[#25282](https://github.com/google-gemini/gemini-cli/pull/25282)
|
|
246
|
+
- ci: add agent session drift check workflow by @adamfweidman in
|
|
247
|
+
[#25389](https://github.com/google-gemini/gemini-cli/pull/25389)
|
|
248
|
+
- use macos-latest-large runner where applicable. by @scidomino in
|
|
249
|
+
[#25413](https://github.com/google-gemini/gemini-cli/pull/25413)
|
|
250
|
+
- Changelog for v0.37.2 by @gemini-cli-robot in
|
|
251
|
+
[#25336](https://github.com/google-gemini/gemini-cli/pull/25336)
|
|
252
|
+
- fix(patch): cherry-pick a4e98c0 to release/v0.39.0-preview.0-pr-25138 to patch
|
|
253
|
+
version v0.39.0-preview.0 and create version 0.39.0-preview.1 by
|
|
254
|
+
@gemini-cli-robot in
|
|
255
|
+
[#25766](https://github.com/google-gemini/gemini-cli/pull/25766)
|
|
256
|
+
- fix(patch): cherry-pick d6f88f8 to release/v0.39.0-preview.1-pr-25670 to patch
|
|
257
|
+
version v0.39.0-preview.1 and create version 0.39.0-preview.2 by
|
|
258
|
+
@gemini-cli-robot in
|
|
259
|
+
[#25776](https://github.com/google-gemini/gemini-cli/pull/25776)
|
|
272
260
|
|
|
273
261
|
**Full Changelog**:
|
|
274
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.38.
|
|
262
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.38.2...v0.39.0
|