@google/gemini-cli-core 0.27.0-preview.3 → 0.28.0-nightly.20260130.d43d772e6
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 +17 -0
- package/dist/docs/changelogs/latest.md +314 -346
- package/dist/docs/changelogs/preview.md +412 -307
- package/dist/docs/cli/cli-reference.md +101 -0
- package/dist/docs/cli/commands.md +135 -83
- package/dist/docs/cli/creating-skills.md +80 -0
- package/dist/docs/cli/keyboard-shortcuts.md +12 -11
- package/dist/docs/cli/rewind.md +51 -0
- package/dist/docs/cli/settings.md +1 -0
- package/dist/docs/cli/skills.md +5 -77
- package/dist/docs/core/policy-engine.md +8 -3
- package/dist/docs/core/subagents.md +34 -29
- package/dist/docs/get-started/configuration.md +8 -5
- package/dist/docs/sidebar.json +14 -2
- package/dist/docs/tools/mcp-server.md +13 -2
- package/dist/google-gemini-cli-core-0.28.0-nightly.20260128.adc8e11bb.tgz +0 -0
- package/dist/src/code_assist/admin/admin_controls.test.js +17 -17
- package/dist/src/code_assist/admin/admin_controls.test.js.map +1 -1
- package/dist/src/code_assist/types.d.ts +8 -5
- package/dist/src/code_assist/types.js +3 -1
- package/dist/src/code_assist/types.js.map +1 -1
- package/dist/src/config/config.d.ts +52 -0
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +25 -1
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/core/contentGenerator.js +2 -0
- package/dist/src/core/contentGenerator.js.map +1 -1
- package/dist/src/core/contentGenerator.test.js +112 -0
- package/dist/src/core/contentGenerator.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/generated/git-commit.js.map +1 -1
- package/dist/src/hooks/hookEventHandler.d.ts +6 -0
- package/dist/src/hooks/hookEventHandler.js +30 -7
- package/dist/src/hooks/hookEventHandler.js.map +1 -1
- package/dist/src/hooks/hookEventHandler.test.js +43 -0
- package/dist/src/hooks/hookEventHandler.test.js.map +1 -1
- package/dist/src/ide/detect-ide.d.ts +4 -0
- package/dist/src/ide/detect-ide.js +4 -0
- package/dist/src/ide/detect-ide.js.map +1 -1
- package/dist/src/ide/detect-ide.test.js +14 -0
- package/dist/src/ide/detect-ide.test.js.map +1 -1
- package/dist/src/ide/ide-installer.js +74 -3
- package/dist/src/ide/ide-installer.js.map +1 -1
- package/dist/src/ide/ide-installer.test.js +29 -0
- package/dist/src/ide/ide-installer.test.js.map +1 -1
- package/dist/src/policy/policies/agent.toml +0 -4
- package/dist/src/policy/toml-loader.js +2 -0
- package/dist/src/policy/toml-loader.js.map +1 -1
- package/dist/src/policy/toml-loader.test.js +14 -0
- package/dist/src/policy/toml-loader.test.js.map +1 -1
- package/dist/src/policy/types.d.ts +5 -0
- package/dist/src/scheduler/policy.d.ts +2 -2
- package/dist/src/scheduler/policy.js +8 -3
- package/dist/src/scheduler/policy.js.map +1 -1
- package/dist/src/scheduler/policy.test.js +6 -6
- package/dist/src/scheduler/policy.test.js.map +1 -1
- package/dist/src/scheduler/scheduler.js +3 -2
- package/dist/src/scheduler/scheduler.js.map +1 -1
- package/dist/src/scheduler/scheduler.test.js +58 -8
- package/dist/src/scheduler/scheduler.test.js.map +1 -1
- package/dist/src/scheduler/tool-executor.js +10 -6
- package/dist/src/scheduler/tool-executor.js.map +1 -1
- package/dist/src/services/chatCompressionService.test.js +4 -2
- package/dist/src/services/chatCompressionService.test.js.map +1 -1
- package/dist/src/services/chatRecordingService.d.ts +7 -0
- package/dist/src/services/chatRecordingService.js +17 -0
- package/dist/src/services/chatRecordingService.js.map +1 -1
- package/dist/src/services/chatRecordingService.test.js +56 -0
- package/dist/src/services/chatRecordingService.test.js.map +1 -1
- package/dist/src/services/environmentSanitization.js +3 -0
- package/dist/src/services/environmentSanitization.js.map +1 -1
- package/dist/src/services/environmentSanitization.test.js +3 -0
- package/dist/src/services/environmentSanitization.test.js.map +1 -1
- package/dist/src/services/gitService.d.ts +1 -0
- package/dist/src/services/gitService.js +13 -4
- package/dist/src/services/gitService.js.map +1 -1
- package/dist/src/services/gitService.test.js +11 -0
- package/dist/src/services/gitService.test.js.map +1 -1
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js +11 -0
- package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js.map +1 -1
- package/dist/src/tools/mcp-client.js +20 -3
- package/dist/src/tools/mcp-client.js.map +1 -1
- package/dist/src/tools/mcp-client.test.js +65 -2
- package/dist/src/tools/mcp-client.test.js.map +1 -1
- package/dist/src/utils/fileUtils.d.ts +1 -0
- package/dist/src/utils/fileUtils.js +11 -6
- package/dist/src/utils/fileUtils.js.map +1 -1
- package/dist/src/utils/fileUtils.test.js +35 -6
- package/dist/src/utils/fileUtils.test.js.map +1 -1
- package/dist/src/utils/terminal.d.ts +4 -0
- package/dist/src/utils/terminal.js +12 -0
- package/dist/src/utils/terminal.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/google-gemini-cli-core-0.27.0-preview.2.tgz +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Preview release: Release v0.
|
|
1
|
+
# Preview release: Release v0.27.0-preview.0
|
|
2
2
|
|
|
3
|
-
Released: January
|
|
3
|
+
Released: January 27, 2026
|
|
4
4
|
|
|
5
5
|
Our preview release includes the latest, new, and experimental features. This
|
|
6
6
|
release may not be as stable as our [latest weekly release](latest.md).
|
|
@@ -13,320 +13,425 @@ npm install -g @google/gemini-cli@preview
|
|
|
13
13
|
|
|
14
14
|
## Highlights
|
|
15
15
|
|
|
16
|
-
- **
|
|
17
|
-
|
|
18
|
-
- **
|
|
19
|
-
- **
|
|
20
|
-
- **
|
|
21
|
-
scheduled issue triage.
|
|
16
|
+
- **Event-Driven Architecture:** The tool execution scheduler is now
|
|
17
|
+
event-driven, improving performance and reliability.
|
|
18
|
+
- **System Prompt Override:** Now supports dynamic variable substitution.
|
|
19
|
+
- **Rewind Command:** The `/rewind` command has been implemented.
|
|
20
|
+
- **Linux Clipboard:** Image pasting capabilities for Wayland and X11 on Linux.
|
|
22
21
|
|
|
23
22
|
## What's Changed
|
|
24
23
|
|
|
25
|
-
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
[#
|
|
29
|
-
-
|
|
24
|
+
- remove fireAgent and beforeAgent hook by @ishaanxgupta in
|
|
25
|
+
[#16919](https://github.com/google-gemini/gemini-cli/pull/16919)
|
|
26
|
+
- Remove unused modelHooks and toolHooks by @ved015 in
|
|
27
|
+
[#17115](https://github.com/google-gemini/gemini-cli/pull/17115)
|
|
28
|
+
- feat(cli): sanitize ANSI escape sequences in non-interactive output by
|
|
29
|
+
@sehoon38 in [#17172](https://github.com/google-gemini/gemini-cli/pull/17172)
|
|
30
|
+
- Update Attempt text to Retry when showing the retry happening to the … by
|
|
31
|
+
@sehoon38 in [#17178](https://github.com/google-gemini/gemini-cli/pull/17178)
|
|
32
|
+
- chore(skills): update pr-creator skill workflow by @sehoon38 in
|
|
33
|
+
[#17180](https://github.com/google-gemini/gemini-cli/pull/17180)
|
|
34
|
+
- feat(cli): implement event-driven tool execution scheduler by @abhipatel12 in
|
|
35
|
+
[#17078](https://github.com/google-gemini/gemini-cli/pull/17078)
|
|
36
|
+
- chore(release): bump version to 0.27.0-nightly.20260121.97aac696f by
|
|
30
37
|
@gemini-cli-robot in
|
|
31
|
-
[#
|
|
32
|
-
-
|
|
33
|
-
[#
|
|
34
|
-
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
-
|
|
42
|
-
@
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
[#
|
|
56
|
-
-
|
|
57
|
-
|
|
58
|
-
-
|
|
59
|
-
in [#16380](https://github.com/google-gemini/gemini-cli/pull/16380)
|
|
60
|
-
- Docs: Update release notes for 1/13/2026 by @jkcinouye in
|
|
61
|
-
[#16583](https://github.com/google-gemini/gemini-cli/pull/16583)
|
|
62
|
-
- Simplify paste handling by @scidomino in
|
|
63
|
-
[#16654](https://github.com/google-gemini/gemini-cli/pull/16654)
|
|
64
|
-
- chore(automation): improve scheduled issue triage discovery and throughput by
|
|
65
|
-
@bdmorgan in [#16652](https://github.com/google-gemini/gemini-cli/pull/16652)
|
|
66
|
-
- fix(acp): run exit cleanup when stdin closes by @codefromthecrypt in
|
|
67
|
-
[#14953](https://github.com/google-gemini/gemini-cli/pull/14953)
|
|
68
|
-
- feat(scheduler): add types needed for event driven scheduler by @abhipatel12
|
|
69
|
-
in [#16641](https://github.com/google-gemini/gemini-cli/pull/16641)
|
|
70
|
-
- Remove unused rewind key binding by @scidomino in
|
|
71
|
-
[#16659](https://github.com/google-gemini/gemini-cli/pull/16659)
|
|
72
|
-
- Remove sequence binding by @scidomino in
|
|
73
|
-
[#16664](https://github.com/google-gemini/gemini-cli/pull/16664)
|
|
74
|
-
- feat(cli): undeprecate the --prompt flag by @alexaustin007 in
|
|
75
|
-
[#13981](https://github.com/google-gemini/gemini-cli/pull/13981)
|
|
76
|
-
- chore: update dependabot configuration by @cosmopax in
|
|
77
|
-
[#13507](https://github.com/google-gemini/gemini-cli/pull/13507)
|
|
78
|
-
- feat(config): add 'auto' alias for default model selection by @sehoon38 in
|
|
79
|
-
[#16661](https://github.com/google-gemini/gemini-cli/pull/16661)
|
|
80
|
-
- Enable & disable agents by @sehoon38 in
|
|
81
|
-
[#16225](https://github.com/google-gemini/gemini-cli/pull/16225)
|
|
82
|
-
- cleanup: Improve keybindings by @scidomino in
|
|
83
|
-
[#16672](https://github.com/google-gemini/gemini-cli/pull/16672)
|
|
84
|
-
- Add timeout for shell-utils to prevent hangs. by @jacob314 in
|
|
85
|
-
[#16667](https://github.com/google-gemini/gemini-cli/pull/16667)
|
|
86
|
-
- feat(plan): add experimental plan flag by @jerop in
|
|
87
|
-
[#16650](https://github.com/google-gemini/gemini-cli/pull/16650)
|
|
88
|
-
- feat(cli): add security consent prompts for skill installation by
|
|
38
|
+
[#17181](https://github.com/google-gemini/gemini-cli/pull/17181)
|
|
39
|
+
- Remove other rewind reference in docs by @chrstnb in
|
|
40
|
+
[#17149](https://github.com/google-gemini/gemini-cli/pull/17149)
|
|
41
|
+
- feat(skills): add code-reviewer skill by @sehoon38 in
|
|
42
|
+
[#17187](httpshttps://github.com/google-gemini/gemini-cli/pull/17187)
|
|
43
|
+
- feat(plan): Extend Shift+Tab Mode Cycling to include Plan Mode by @Adib234 in
|
|
44
|
+
[#17177](https://github.com/google-gemini/gemini-cli/pull/17177)
|
|
45
|
+
- feat(plan): refactor TestRig and eval helper to support configurable approval
|
|
46
|
+
modes by @jerop in
|
|
47
|
+
[#17171](https://github.com/google-gemini/gemini-cli/pull/17171)
|
|
48
|
+
- feat(workflows): support recursive workstream labeling and new IDs by
|
|
49
|
+
@bdmorgan in [#17207](https://github.com/google-gemini/gemini-cli/pull/17207)
|
|
50
|
+
- Run evals for all models. by @gundermanc in
|
|
51
|
+
[#17123](https://github.com/google-gemini/gemini-cli/pull/17123)
|
|
52
|
+
- fix(github): improve label-workstream-rollup efficiency with GraphQL by
|
|
53
|
+
@bdmorgan in [#17217](https://github.com/google-gemini/gemini-cli/pull/17217)
|
|
54
|
+
- Docs: Update changelogs for v.0.25.0 and v0.26.0-preview.0 releases. by
|
|
55
|
+
@g-samroberts in
|
|
56
|
+
[#17215](https://github.com/google-gemini/gemini-cli/pull/17215)
|
|
57
|
+
- Migrate beforeTool and afterTool hooks to hookSystem by @ved015 in
|
|
58
|
+
[#17204](https://github.com/google-gemini/gemini-cli/pull/17204)
|
|
59
|
+
- fix(github): improve label-workstream-rollup efficiency and fix bugs by
|
|
60
|
+
@bdmorgan in [#17219](https://github.com/google-gemini/gemini-cli/pull/17219)
|
|
61
|
+
- feat(cli): improve skill enablement/disablement verbiage by @NTaylorMullen in
|
|
62
|
+
[#17192](https://github.com/google-gemini/gemini-cli/pull/17192)
|
|
63
|
+
- fix(admin): Ensure CLI commands run in non-interactive mode by @skeshive in
|
|
64
|
+
[#17218](https://github.com/google-gemini/gemini-cli/pull/17218)
|
|
65
|
+
- feat(core): support dynamic variable substitution in system prompt override by
|
|
89
66
|
@NTaylorMullen in
|
|
90
|
-
[#
|
|
91
|
-
- fix:
|
|
92
|
-
[#
|
|
93
|
-
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
-
|
|
97
|
-
|
|
98
|
-
-
|
|
99
|
-
|
|
100
|
-
-
|
|
101
|
-
|
|
102
|
-
[#
|
|
103
|
-
-
|
|
67
|
+
[#17042](https://github.com/google-gemini/gemini-cli/pull/17042)
|
|
68
|
+
- fix(core,cli): enable recursive directory access for by @galz10 in
|
|
69
|
+
[#17094](https://github.com/google-gemini/gemini-cli/pull/17094)
|
|
70
|
+
- Docs: Marking for experimental features by @jkcinouye in
|
|
71
|
+
[#16760](https://github.com/google-gemini/gemini-cli/pull/16760)
|
|
72
|
+
- Support command/ctrl/alt backspace correctly by @scidomino in
|
|
73
|
+
[#17175](https://github.com/google-gemini/gemini-cli/pull/17175)
|
|
74
|
+
- feat(plan): add approval mode instructions to system prompt by @jerop in
|
|
75
|
+
[#17151](https://github.com/google-gemini/gemini-cli/pull/17151)
|
|
76
|
+
- feat(core): enable disableLLMCorrection by default by @SandyTao520 in
|
|
77
|
+
[#17223](https://github.com/google-gemini/gemini-cli/pull/17223)
|
|
78
|
+
- Remove unused slug from sidebar by @chrstnb in
|
|
79
|
+
[#17229](https://github.com/google-gemini/gemini-cli/pull/17229)
|
|
80
|
+
- drain stdin on exit by @scidomino in
|
|
81
|
+
[#17241](https://github.com/google-gemini/gemini-cli/pull/17241)
|
|
82
|
+
- refactor(cli): decouple UI from live tool execution via ToolActionsContext by
|
|
104
83
|
@abhipatel12 in
|
|
105
|
-
[#
|
|
106
|
-
-
|
|
107
|
-
|
|
108
|
-
[#
|
|
109
|
-
- fix
|
|
110
|
-
[#
|
|
111
|
-
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
- fix(automation): correct status/need-issue label matching wildcard by
|
|
115
|
-
@bdmorgan in [#16727](https://github.com/google-gemini/gemini-cli/pull/16727)
|
|
116
|
-
- fix(automation): prevent label-enforcer loop by ignoring all bots by @bdmorgan
|
|
117
|
-
in [#16746](https://github.com/google-gemini/gemini-cli/pull/16746)
|
|
118
|
-
- Add links to supported locations and minor fixes by @g-samroberts in
|
|
119
|
-
[#16476](https://github.com/google-gemini/gemini-cli/pull/16476)
|
|
120
|
-
- feat(policy): add source tracking to policy rules by @allenhutchison in
|
|
121
|
-
[#16670](https://github.com/google-gemini/gemini-cli/pull/16670)
|
|
122
|
-
- feat(automation): enforce '🔒 maintainer only' and fix bot loop by @bdmorgan
|
|
123
|
-
in [#16751](https://github.com/google-gemini/gemini-cli/pull/16751)
|
|
124
|
-
- Make merged settings non-nullable and fix all lints related to that. by
|
|
125
|
-
@jacob314 in [#16647](https://github.com/google-gemini/gemini-cli/pull/16647)
|
|
126
|
-
- fix(core): prevent ModelInfo event emission on aborted signal by @sehoon38 in
|
|
127
|
-
[#16752](https://github.com/google-gemini/gemini-cli/pull/16752)
|
|
128
|
-
- Replace relative paths to fix website build by @chrstnb in
|
|
129
|
-
[#16755](https://github.com/google-gemini/gemini-cli/pull/16755)
|
|
130
|
-
- Restricting to localhost by @cocosheng-g in
|
|
131
|
-
[#16548](https://github.com/google-gemini/gemini-cli/pull/16548)
|
|
132
|
-
- fix(cli): add explicit dependency on color-convert by @sehoon38 in
|
|
133
|
-
[#16757](https://github.com/google-gemini/gemini-cli/pull/16757)
|
|
134
|
-
- fix(automation): robust label enforcement with permission checks by @bdmorgan
|
|
135
|
-
in [#16762](https://github.com/google-gemini/gemini-cli/pull/16762)
|
|
136
|
-
- fix(cli): prevent OOM crash by limiting file search traversal and adding
|
|
137
|
-
timeout by @galz10 in
|
|
138
|
-
[#16696](https://github.com/google-gemini/gemini-cli/pull/16696)
|
|
139
|
-
- fix(cli): safely handle /dev/tty access on macOS by @korade-krushna in
|
|
140
|
-
[#16531](https://github.com/google-gemini/gemini-cli/pull/16531)
|
|
141
|
-
- docs: clarify workspace test execution in GEMINI.md by @mattKorwel in
|
|
142
|
-
[#16764](https://github.com/google-gemini/gemini-cli/pull/16764)
|
|
143
|
-
- Add support for running available commands prior to MCP servers loading by
|
|
144
|
-
@Adib234 in [#15596](https://github.com/google-gemini/gemini-cli/pull/15596)
|
|
145
|
-
- feat(plan): add experimental 'plan' approval mode by @jerop in
|
|
146
|
-
[#16753](https://github.com/google-gemini/gemini-cli/pull/16753)
|
|
147
|
-
- feat(scheduler): add functional awaitConfirmation utility by @abhipatel12 in
|
|
148
|
-
[#16721](https://github.com/google-gemini/gemini-cli/pull/16721)
|
|
149
|
-
- fix(infra): update maintainer rollup label to 'workstream-rollup' by @bdmorgan
|
|
150
|
-
in [#16809](https://github.com/google-gemini/gemini-cli/pull/16809)
|
|
151
|
-
- fix(infra): use GraphQL to detect direct parents in rollup workflow by
|
|
152
|
-
@bdmorgan in [#16811](https://github.com/google-gemini/gemini-cli/pull/16811)
|
|
153
|
-
- chore(workflows): rename label-workstream-rollup workflow by @bdmorgan in
|
|
154
|
-
[#16818](https://github.com/google-gemini/gemini-cli/pull/16818)
|
|
155
|
-
- skip simple-mcp-server.test.ts by @scidomino in
|
|
156
|
-
[#16842](https://github.com/google-gemini/gemini-cli/pull/16842)
|
|
157
|
-
- Steer outer agent to use expert subagents when present by @gundermanc in
|
|
158
|
-
[#16763](https://github.com/google-gemini/gemini-cli/pull/16763)
|
|
159
|
-
- Fix race condition by awaiting scheduleToolCalls by @chrstnb in
|
|
160
|
-
[#16759](https://github.com/google-gemini/gemini-cli/pull/16759)
|
|
161
|
-
- cleanup: Organize key bindings by @scidomino in
|
|
162
|
-
[#16798](https://github.com/google-gemini/gemini-cli/pull/16798)
|
|
163
|
-
- feat(core): Add generalist agent. by @joshualitt in
|
|
164
|
-
[#16638](https://github.com/google-gemini/gemini-cli/pull/16638)
|
|
165
|
-
- perf(ui): optimize text buffer and highlighting for large inputs by
|
|
84
|
+
[#17183](https://github.com/google-gemini/gemini-cli/pull/17183)
|
|
85
|
+
- fix(core): update token count and telemetry on /chat resume history load by
|
|
86
|
+
@psinha40898 in
|
|
87
|
+
[#16279](https://github.com/google-gemini/gemini-cli/pull/16279)
|
|
88
|
+
- fix: /policy to display policies according to mode by @ishaanxgupta in
|
|
89
|
+
[#16772](https://github.com/google-gemini/gemini-cli/pull/16772)
|
|
90
|
+
- fix(core): simplify replace tool error message by @SandyTao520 in
|
|
91
|
+
[#17246](https://github.com/google-gemini/gemini-cli/pull/17246)
|
|
92
|
+
- feat(cli): consolidate shell inactivity and redirection monitoring by
|
|
166
93
|
@NTaylorMullen in
|
|
167
|
-
[#
|
|
168
|
-
- fix(
|
|
169
|
-
[#16773](https://github.com/google-gemini/gemini-cli/pull/16773)
|
|
170
|
-
- feat(plan): enforce strict read-only policy and halt execution on violation by
|
|
171
|
-
@jerop in [#16849](https://github.com/google-gemini/gemini-cli/pull/16849)
|
|
172
|
-
- remove need-triage label from bug_report template by @sehoon38 in
|
|
173
|
-
[#16864](https://github.com/google-gemini/gemini-cli/pull/16864)
|
|
174
|
-
- fix(core): truncate large telemetry log entries by @sehoon38 in
|
|
175
|
-
[#16769](https://github.com/google-gemini/gemini-cli/pull/16769)
|
|
176
|
-
- docs(extensions): add Agent Skills support and mark feature as experimental by
|
|
177
|
-
@NTaylorMullen in
|
|
178
|
-
[#16859](https://github.com/google-gemini/gemini-cli/pull/16859)
|
|
179
|
-
- fix(core): surface warnings for invalid hook event names in configuration
|
|
180
|
-
([#16788](https://github.com/google-gemini/gemini-cli/pull/16788)) by
|
|
181
|
-
@sehoon38 in [#16873](https://github.com/google-gemini/gemini-cli/pull/16873)
|
|
182
|
-
- feat(plan): remove read_many_files from approval mode policies by @jerop in
|
|
183
|
-
[#16876](https://github.com/google-gemini/gemini-cli/pull/16876)
|
|
184
|
-
- feat(admin): implement admin controls polling and restart prompt by @skeshive
|
|
185
|
-
in [#16627](https://github.com/google-gemini/gemini-cli/pull/16627)
|
|
186
|
-
- Remove LRUCache class migrating to mnemoist by @jacob314 in
|
|
187
|
-
[#16872](https://github.com/google-gemini/gemini-cli/pull/16872)
|
|
188
|
-
- feat(settings): rename negative settings to positive naming (disable* ->
|
|
189
|
-
enable*) by @afarber in
|
|
190
|
-
[#14142](https://github.com/google-gemini/gemini-cli/pull/14142)
|
|
191
|
-
- refactor(cli): unify shell confirmation dialogs by @NTaylorMullen in
|
|
192
|
-
[#16828](https://github.com/google-gemini/gemini-cli/pull/16828)
|
|
193
|
-
- feat(agent): enable agent skills by default by @NTaylorMullen in
|
|
194
|
-
[#16736](https://github.com/google-gemini/gemini-cli/pull/16736)
|
|
195
|
-
- refactor(core): foundational truncation refactoring and token estimation
|
|
196
|
-
optimization by @NTaylorMullen in
|
|
197
|
-
[#16824](https://github.com/google-gemini/gemini-cli/pull/16824)
|
|
198
|
-
- fix(hooks): enable /hooks disable to reliably stop single hooks by
|
|
94
|
+
[#17086](https://github.com/google-gemini/gemini-cli/pull/17086)
|
|
95
|
+
- fix(scheduler): prevent stale tool re-publication and fix stuck UI state by
|
|
199
96
|
@abhipatel12 in
|
|
200
|
-
[#
|
|
201
|
-
-
|
|
202
|
-
[#
|
|
203
|
-
-
|
|
204
|
-
[#
|
|
205
|
-
-
|
|
206
|
-
@
|
|
207
|
-
[#
|
|
208
|
-
- feat(
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
-
|
|
214
|
-
[#
|
|
215
|
-
-
|
|
216
|
-
[#
|
|
217
|
-
-
|
|
218
|
-
[#16989](https://github.com/google-gemini/gemini-cli/pull/16989)
|
|
219
|
-
- fix(core): attempt compression before context overflow check by @NTaylorMullen
|
|
220
|
-
in [#16914](https://github.com/google-gemini/gemini-cli/pull/16914)
|
|
221
|
-
- Fix inverted logic. by @gundermanc in
|
|
222
|
-
[#17007](https://github.com/google-gemini/gemini-cli/pull/17007)
|
|
223
|
-
- chore(scripts): add duplicate issue closer script and fix lint errors by
|
|
224
|
-
@bdmorgan in [#16997](https://github.com/google-gemini/gemini-cli/pull/16997)
|
|
225
|
-
- docs: update README and config guide to reference Gemini 3 by @JayadityaGit in
|
|
226
|
-
[#15806](https://github.com/google-gemini/gemini-cli/pull/15806)
|
|
227
|
-
- fix(cli): correct Homebrew installation detection by @kij in
|
|
228
|
-
[#14727](https://github.com/google-gemini/gemini-cli/pull/14727)
|
|
229
|
-
- Demote git evals to nightly run. by @gundermanc in
|
|
230
|
-
[#17030](https://github.com/google-gemini/gemini-cli/pull/17030)
|
|
231
|
-
- fix(cli): use OSC-52 clipboard copy in Windows Terminal by @Thomas-Shephard in
|
|
232
|
-
[#16920](https://github.com/google-gemini/gemini-cli/pull/16920)
|
|
233
|
-
- Fix: Process all parts in response chunks when thought is first by @pyrytakala
|
|
234
|
-
in [#13539](https://github.com/google-gemini/gemini-cli/pull/13539)
|
|
235
|
-
- fix(automation): fix jq quoting error in pr-triage.sh by @Kimsoo0119 in
|
|
236
|
-
[#16958](https://github.com/google-gemini/gemini-cli/pull/16958)
|
|
237
|
-
- refactor(core): decouple scheduler into orchestration, policy, and
|
|
238
|
-
confirmation by @abhipatel12 in
|
|
239
|
-
[#16895](https://github.com/google-gemini/gemini-cli/pull/16895)
|
|
240
|
-
- feat: add /introspect slash command by @NTaylorMullen in
|
|
241
|
-
[#17048](https://github.com/google-gemini/gemini-cli/pull/17048)
|
|
242
|
-
- refactor(cli): centralize tool mapping and decouple legacy scheduler by
|
|
97
|
+
[#17227](https://github.com/google-gemini/gemini-cli/pull/17227)
|
|
98
|
+
- feat(config): default enableEventDrivenScheduler to true by @abhipatel12 in
|
|
99
|
+
[#17211](https://github.com/google-gemini/gemini-cli/pull/17211)
|
|
100
|
+
- feat(hooks): enable hooks system by default by @abhipatel12 in
|
|
101
|
+
[#17247](https://github.com/google-gemini/gemini-cli/pull/17247)
|
|
102
|
+
- feat(core): Enable AgentRegistry to track all discovered subagents by
|
|
103
|
+
@SandyTao520 in
|
|
104
|
+
[#17253](https://github.com/google-gemini/gemini-cli/pull/17253)
|
|
105
|
+
- feat(core): Have subagents use a JSON schema type for input. by @joshualitt in
|
|
106
|
+
[#17152](https://github.com/google-gemini/gemini-cli/pull/17152)
|
|
107
|
+
- feat: replace large text pastes with [Pasted Text: X lines] placeholder by
|
|
108
|
+
@jackwotherspoon in
|
|
109
|
+
[#16422](https://github.com/google-gemini/gemini-cli/pull/16422)
|
|
110
|
+
- security(hooks): Wrap hook-injected context in distinct XML tags by @yunaseoul
|
|
111
|
+
in [#17237](https://github.com/google-gemini/gemini-cli/pull/17237)
|
|
112
|
+
- Enable the ability to queue specific nightly eval tests by @gundermanc in
|
|
113
|
+
[#17262](https://github.com/google-gemini/gemini-cli/pull/17262)
|
|
114
|
+
- docs(hooks): comprehensive update of hook documentation and specs by
|
|
243
115
|
@abhipatel12 in
|
|
244
|
-
[#
|
|
245
|
-
-
|
|
246
|
-
[#
|
|
247
|
-
-
|
|
248
|
-
[#
|
|
249
|
-
-
|
|
250
|
-
[#
|
|
251
|
-
-
|
|
252
|
-
[#
|
|
253
|
-
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
-
|
|
257
|
-
|
|
258
|
-
-
|
|
259
|
-
|
|
260
|
-
-
|
|
261
|
-
|
|
262
|
-
-
|
|
263
|
-
|
|
264
|
-
[#
|
|
265
|
-
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
-
|
|
270
|
-
|
|
271
|
-
[#17095](https://github.com/google-gemini/gemini-cli/pull/17095)
|
|
272
|
-
- Test coverage for hook exit code cases by @gundermanc in
|
|
273
|
-
[#17041](https://github.com/google-gemini/gemini-cli/pull/17041)
|
|
274
|
-
- Revert "Revert "Update extension examples"" by @chrstnb in
|
|
275
|
-
[#16445](https://github.com/google-gemini/gemini-cli/pull/16445)
|
|
276
|
-
- fix(core): Provide compact, actionable errors for agent delegation failures by
|
|
116
|
+
[#16816](https://github.com/google-gemini/gemini-cli/pull/16816)
|
|
117
|
+
- refactor: improve large text paste placeholder by @jacob314 in
|
|
118
|
+
[#17269](https://github.com/google-gemini/gemini-cli/pull/17269)
|
|
119
|
+
- feat: implement /rewind command by @Adib234 in
|
|
120
|
+
[#15720](https://github.com/google-gemini/gemini-cli/pull/15720)
|
|
121
|
+
- Feature/jetbrains ide detection by @SoLoHiC in
|
|
122
|
+
[#16243](https://github.com/google-gemini/gemini-cli/pull/16243)
|
|
123
|
+
- docs: update typo in mcp-server.md file by @schifferl in
|
|
124
|
+
[#17099](https://github.com/google-gemini/gemini-cli/pull/17099)
|
|
125
|
+
- Sanitize command names and descriptions by @ehedlund in
|
|
126
|
+
[#17228](https://github.com/google-gemini/gemini-cli/pull/17228)
|
|
127
|
+
- fix(auth): don't crash when initial auth fails by @skeshive in
|
|
128
|
+
[#17308](https://github.com/google-gemini/gemini-cli/pull/17308)
|
|
129
|
+
- Added image pasting capabilities for Wayland and X11 on Linux by @devr0306 in
|
|
130
|
+
[#17144](https://github.com/google-gemini/gemini-cli/pull/17144)
|
|
131
|
+
- feat: add AskUser tool schema by @jackwotherspoon in
|
|
132
|
+
[#16988](https://github.com/google-gemini/gemini-cli/pull/16988)
|
|
133
|
+
- fix cli settings: resolve layout jitter in settings bar by @Mag1ck in
|
|
134
|
+
[#16256](https://github.com/google-gemini/gemini-cli/pull/16256)
|
|
135
|
+
- fix: show whitespace changes in edit tool diffs by @Ujjiyara in
|
|
136
|
+
[#17213](https://github.com/google-gemini/gemini-cli/pull/17213)
|
|
137
|
+
- Remove redundant calls setting linuxClipboardTool. getUserLinuxClipboardTool()
|
|
138
|
+
now handles the caching internally by @jacob314 in
|
|
139
|
+
[#17320](https://github.com/google-gemini/gemini-cli/pull/17320)
|
|
140
|
+
- ci: allow failure in evals-nightly run step by @gundermanc in
|
|
141
|
+
[#17319](https://github.com/google-gemini/gemini-cli/pull/17319)
|
|
142
|
+
- feat(cli): Add state management and plumbing for agent configuration dialog by
|
|
277
143
|
@SandyTao520 in
|
|
278
|
-
[#
|
|
279
|
-
-
|
|
280
|
-
|
|
281
|
-
-
|
|
282
|
-
|
|
283
|
-
-
|
|
284
|
-
|
|
285
|
-
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
[#
|
|
289
|
-
-
|
|
290
|
-
[#
|
|
291
|
-
-
|
|
292
|
-
in
|
|
293
|
-
-
|
|
294
|
-
|
|
295
|
-
-
|
|
296
|
-
|
|
297
|
-
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
[#
|
|
301
|
-
-
|
|
302
|
-
[#
|
|
303
|
-
- fix(
|
|
304
|
-
[#
|
|
305
|
-
-
|
|
306
|
-
|
|
307
|
-
-
|
|
308
|
-
|
|
309
|
-
[#
|
|
310
|
-
- fix(cli)
|
|
311
|
-
|
|
312
|
-
-
|
|
313
|
-
|
|
314
|
-
[#
|
|
315
|
-
-
|
|
316
|
-
[#
|
|
317
|
-
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
[#
|
|
322
|
-
-
|
|
323
|
-
[#
|
|
324
|
-
- fix
|
|
325
|
-
[#
|
|
326
|
-
- Fix
|
|
327
|
-
|
|
328
|
-
-
|
|
329
|
-
|
|
144
|
+
[#17259](https://github.com/google-gemini/gemini-cli/pull/17259)
|
|
145
|
+
- bug: fix ide-client connection to ide-companion when inside docker via
|
|
146
|
+
ssh/devcontainer by @kapsner in
|
|
147
|
+
[#15049](https://github.com/google-gemini/gemini-cli/pull/15049)
|
|
148
|
+
- Emit correct newline type return by @scidomino in
|
|
149
|
+
[#17331](https://github.com/google-gemini/gemini-cli/pull/17331)
|
|
150
|
+
- New skill: docs-writer by @g-samroberts in
|
|
151
|
+
[#17268](https://github.com/google-gemini/gemini-cli/pull/17268)
|
|
152
|
+
- fix(core): Resolve AbortSignal MaxListenersExceededWarning (#5950) by
|
|
153
|
+
@spencer426 in
|
|
154
|
+
[#16735](https://github.com/google-gemini/gemini-cli/pull/16735)
|
|
155
|
+
- Disable tips after 10 runs by @Adib234 in
|
|
156
|
+
[#17101](https://github.com/google-gemini/gemini-cli/pull/17101)
|
|
157
|
+
- Fix so rewind starts at the bottom and loadHistory refreshes static content.
|
|
158
|
+
by @jacob314 in
|
|
159
|
+
[#17335](https://github.com/google-gemini/gemini-cli/pull/17335)
|
|
160
|
+
- feat(core): Remove legacy settings. by @joshualitt in
|
|
161
|
+
[#17244](https://github.com/google-gemini/gemini-cli/pull/17244)
|
|
162
|
+
- feat(plan): add 'communicate' tool kind by @jerop in
|
|
163
|
+
[#17341](https://github.com/google-gemini/gemini-cli/pull/17341)
|
|
164
|
+
- feat(routing): A/B Test Numerical Complexity Scoring for Gemini 3 by
|
|
165
|
+
@mattKorwel in
|
|
166
|
+
[#16041](https://github.com/google-gemini/gemini-cli/pull/16041)
|
|
167
|
+
- feat(plan): update UI Theme for Plan Mode by @Adib234 in
|
|
168
|
+
[#17243](https://github.com/google-gemini/gemini-cli/pull/17243)
|
|
169
|
+
- fix(ui): stabilize rendering during terminal resize in alternate buffer by
|
|
170
|
+
@lkk214 in [#15783](https://github.com/google-gemini/gemini-cli/pull/15783)
|
|
171
|
+
- feat(cli): add /agents config command and improve agent discovery by
|
|
172
|
+
@SandyTao520 in
|
|
173
|
+
[#17342](https://github.com/google-gemini/gemini-cli/pull/17342)
|
|
174
|
+
- feat(mcp): add enable/disable commands for MCP servers (#11057) by @jasmeetsb
|
|
175
|
+
in [#16299](https://github.com/google-gemini/gemini-cli/pull/16299)
|
|
176
|
+
- fix(cli)!: Default to interactive mode for positional arguments by
|
|
177
|
+
@ishaanxgupta in
|
|
178
|
+
[#16329](https://github.com/google-gemini/gemini-cli/pull/16329)
|
|
179
|
+
- Fix issue #17080 by @jacob314 in
|
|
180
|
+
[#17100](https://github.com/google-gemini/gemini-cli/pull/17100)
|
|
181
|
+
- feat(core): Refresh agents after loading an extension. by @joshualitt in
|
|
182
|
+
[#17355](https://github.com/google-gemini/gemini-cli/pull/17355)
|
|
183
|
+
- fix(cli): include source in policy rule display by @allenhutchison in
|
|
184
|
+
[#17358](https://github.com/google-gemini/gemini-cli/pull/17358)
|
|
185
|
+
- fix: remove obsolete CloudCode PerDay quota and 120s terminal threshold by
|
|
186
|
+
@gsquared94 in
|
|
187
|
+
[#17236](https://github.com/google-gemini/gemini-cli/pull/17236)
|
|
188
|
+
- Refactor subagent delegation to be one tool per agent by @gundermanc in
|
|
189
|
+
[#17346](https://github.com/google-gemini/gemini-cli/pull/17346)
|
|
190
|
+
- fix(core): Include MCP server name in OAuth message by @jerop in
|
|
191
|
+
[#17351](https://github.com/google-gemini/gemini-cli/pull/17351)
|
|
192
|
+
- Fix pr-triage.sh script to update pull requests with tags "help wanted" and
|
|
193
|
+
"maintainer only" by @jacob314 in
|
|
194
|
+
[#17324](https://github.com/google-gemini/gemini-cli/pull/17324)
|
|
195
|
+
- feat(plan): implement simple workflow for planning in main agent by @jerop in
|
|
196
|
+
[#17326](https://github.com/google-gemini/gemini-cli/pull/17326)
|
|
197
|
+
- fix: exit with non-zero code when esbuild is missing by @yuvrajangadsingh in
|
|
198
|
+
[#16967](https://github.com/google-gemini/gemini-cli/pull/16967)
|
|
199
|
+
- fix: ensure @docs/cli/custom-commands.md UI message ordering and test by
|
|
200
|
+
@medic-code in
|
|
201
|
+
[#12038](https://github.com/google-gemini/gemini-cli/pull/12038)
|
|
202
|
+
- fix(core): add alternative command names for Antigravity editor detec… by
|
|
203
|
+
@BaeSeokJae in
|
|
204
|
+
[#16829](https://github.com/google-gemini/gemini-cli/pull/16829)
|
|
205
|
+
- Refactor: Migrate CLI appEvents to Core coreEvents by @Adib234 in
|
|
206
|
+
[#15737](https://github.com/google-gemini/gemini-cli/pull/15737)
|
|
207
|
+
- fix(core): await MCP initialization in non-interactive mode by @Ratish1 in
|
|
208
|
+
[#17390](https://github.com/google-gemini/gemini-cli/pull/17390)
|
|
209
|
+
- Fix modifyOtherKeys enablement on unsupported terminals by @seekskyworld in
|
|
210
|
+
[#16714](https://github.com/google-gemini/gemini-cli/pull/16714)
|
|
211
|
+
- fix(core): gracefully handle disk full errors in chat recording by
|
|
212
|
+
@godwiniheuwa in
|
|
213
|
+
[#17305](https://github.com/google-gemini/gemini-cli/pull/17305)
|
|
214
|
+
- fix(oauth): update oauth to use 127.0.0.1 instead of localhost by @skeshive in
|
|
215
|
+
[#17388](https://github.com/google-gemini/gemini-cli/pull/17388)
|
|
216
|
+
- fix(core): use RFC 9728 compliant path-based OAuth protected resource
|
|
217
|
+
discovery by @vrv in
|
|
218
|
+
[#15756](https://github.com/google-gemini/gemini-cli/pull/15756)
|
|
219
|
+
- Update Code Wiki README badge by @PatoBeltran in
|
|
220
|
+
[#15229](https://github.com/google-gemini/gemini-cli/pull/15229)
|
|
221
|
+
- Add conda installation instructions for Gemini CLI by @ishaanxgupta in
|
|
222
|
+
[#16921](https://github.com/google-gemini/gemini-cli/pull/16921)
|
|
223
|
+
- chore(refactor): extract BaseSettingsDialog component by @SandyTao520 in
|
|
224
|
+
[#17369](https://github.com/google-gemini/gemini-cli/pull/17369)
|
|
225
|
+
- fix(cli): preserve input text when declining tool approval (#15624) by
|
|
226
|
+
@ManojINaik in
|
|
227
|
+
[#15659](https://github.com/google-gemini/gemini-cli/pull/15659)
|
|
228
|
+
- chore: upgrade dep: diff 7.0.0-> 8.0.3 by @scidomino in
|
|
229
|
+
[#17403](https://github.com/google-gemini/gemini-cli/pull/17403)
|
|
230
|
+
- feat: add AskUserDialog for UI component of AskUser tool by @jackwotherspoon
|
|
231
|
+
in [#17344](https://github.com/google-gemini/gemini-cli/pull/17344)
|
|
232
|
+
- feat(ui): display user tier in about command by @sehoon38 in
|
|
233
|
+
[#17400](https://github.com/google-gemini/gemini-cli/pull/17400)
|
|
234
|
+
- feat: add clearContext to AfterAgent hooks by @jackwotherspoon in
|
|
235
|
+
[#16574](https://github.com/google-gemini/gemini-cli/pull/16574)
|
|
236
|
+
- fix(cli): change image paste location to global temp directory (#17396) by
|
|
237
|
+
@devr0306 in [#17396](https://github.com/google-gemini/gemini-cli/pull/17396)
|
|
238
|
+
- Fix line endings issue with Notice file by @scidomino in
|
|
239
|
+
[#17417](https://github.com/google-gemini/gemini-cli/pull/17417)
|
|
240
|
+
- feat(plan): implement persistent approvalMode setting by @Adib234 in
|
|
241
|
+
[#17350](https://github.com/google-gemini/gemini-cli/pull/17350)
|
|
242
|
+
- feat(ui): Move keyboard handling into BaseSettingsDialog by @SandyTao520 in
|
|
243
|
+
[#17404](https://github.com/google-gemini/gemini-cli/pull/17404)
|
|
244
|
+
- Allow prompt queueing during MCP initialization by @Adib234 in
|
|
245
|
+
[#17395](https://github.com/google-gemini/gemini-cli/pull/17395)
|
|
246
|
+
- feat: implement AgentConfigDialog for /agents config command by @SandyTao520
|
|
247
|
+
in [#17370](https://github.com/google-gemini/gemini-cli/pull/17370)
|
|
248
|
+
- fix(agents): default to all tools when tool list is omitted in subagents by
|
|
249
|
+
@gundermanc in
|
|
250
|
+
[#17422](https://github.com/google-gemini/gemini-cli/pull/17422)
|
|
251
|
+
- feat(cli): Moves tool confirmations to a queue UX by @abhipatel12 in
|
|
252
|
+
[#17276](https://github.com/google-gemini/gemini-cli/pull/17276)
|
|
253
|
+
- fix(core): hide user tier name by @sehoon38 in
|
|
254
|
+
[#17418](https://github.com/google-gemini/gemini-cli/pull/17418)
|
|
255
|
+
- feat: Enforce unified folder trust for /directory add by @galz10 in
|
|
256
|
+
[#17359](https://github.com/google-gemini/gemini-cli/pull/17359)
|
|
257
|
+
- migrate fireToolNotificationHook to hookSystem by @ved015 in
|
|
258
|
+
[#17398](https://github.com/google-gemini/gemini-cli/pull/17398)
|
|
259
|
+
- Clean up dead code by @scidomino in
|
|
260
|
+
[#17443](https://github.com/google-gemini/gemini-cli/pull/17443)
|
|
261
|
+
- feat(workflow): add stale pull request closer with linked-issue enforcement by
|
|
262
|
+
@bdmorgan in [#17449](https://github.com/google-gemini/gemini-cli/pull/17449)
|
|
263
|
+
- feat(workflow): expand stale-exempt labels to include help wanted and Public
|
|
264
|
+
Roadmap by @bdmorgan in
|
|
265
|
+
[#17459](https://github.com/google-gemini/gemini-cli/pull/17459)
|
|
266
|
+
- chore(workflow): remove redundant label-enforcer workflow by @bdmorgan in
|
|
267
|
+
[#17460](https://github.com/google-gemini/gemini-cli/pull/17460)
|
|
268
|
+
- Resolves the confusing error message `ripgrep exited with code null that
|
|
269
|
+
occurs when a search operation is cancelled or aborted by @maximmasiutin in
|
|
270
|
+
[#14267](https://github.com/google-gemini/gemini-cli/pull/14267)
|
|
271
|
+
- fix: detect pnpm/pnpx in ~/.local by @rwakulszowa in
|
|
272
|
+
[#15254](https://github.com/google-gemini/gemini-cli/pull/15254)
|
|
273
|
+
- docs: Add instructions for MacPorts and uninstall instructions for Homebrew by
|
|
274
|
+
@breun in [#17412](https://github.com/google-gemini/gemini-cli/pull/17412)
|
|
275
|
+
- docs(hooks): clarify mandatory 'type' field and update hook schema
|
|
276
|
+
documentation by @abhipatel12 in
|
|
277
|
+
[#17499](https://github.com/google-gemini/gemini-cli/pull/17499)
|
|
278
|
+
- Improve error messages on failed onboarding by @gsquared94 in
|
|
279
|
+
[#17357](https://github.com/google-gemini/gemini-cli/pull/17357)
|
|
280
|
+
- Follow up to "enableInteractiveShell for external tooling relying on a2a
|
|
281
|
+
server" by @DavidAPierce in
|
|
282
|
+
[#17130](https://github.com/google-gemini/gemini-cli/pull/17130)
|
|
283
|
+
- Fix/issue 17070 by @alih552 in
|
|
284
|
+
[#17242](https://github.com/google-gemini/gemini-cli/pull/17242)
|
|
285
|
+
- fix(core): handle URI-encoded workspace paths in IdeClient by @dong-jun-shin
|
|
286
|
+
in [#17476](https://github.com/google-gemini/gemini-cli/pull/17476)
|
|
287
|
+
- feat(cli): add quick clear input shortcuts in vim mode by @harshanadim in
|
|
288
|
+
[#17470](https://github.com/google-gemini/gemini-cli/pull/17470)
|
|
289
|
+
- feat(core): optimize shell tool llmContent output format by @SandyTao520 in
|
|
290
|
+
[#17538](https://github.com/google-gemini/gemini-cli/pull/17538)
|
|
291
|
+
- Fix bug in detecting already added paths. by @jacob314 in
|
|
292
|
+
[#17430](https://github.com/google-gemini/gemini-cli/pull/17430)
|
|
293
|
+
- feat(scheduler): support multi-scheduler tool aggregation and nested call IDs
|
|
294
|
+
by @abhipatel12 in
|
|
295
|
+
[#17429](https://github.com/google-gemini/gemini-cli/pull/17429)
|
|
296
|
+
- feat(agents): implement first-run experience for project-level sub-agents by
|
|
297
|
+
@gundermanc in
|
|
298
|
+
[#17266](https://github.com/google-gemini/gemini-cli/pull/17266)
|
|
299
|
+
- Update extensions docs by @chrstnb in
|
|
300
|
+
[#16093](https://github.com/google-gemini/gemini-cli/pull/16093)
|
|
301
|
+
- Docs: Refactor left nav on the website by @jkcinouye in
|
|
302
|
+
[#17558](https://github.com/google-gemini/gemini-cli/pull/17558)
|
|
303
|
+
- fix(core): stream grep/ripgrep output to prevent OOM by @adamfweidman in
|
|
304
|
+
[#17146](https://github.com/google-gemini/gemini-cli/pull/17146)
|
|
305
|
+
- feat(plan): add persistent plan file storage by @jerop in
|
|
306
|
+
[#17563](https://github.com/google-gemini/gemini-cli/pull/17563)
|
|
307
|
+
- feat(agents): migrate subagents to event-driven scheduler by @abhipatel12 in
|
|
308
|
+
[#17567](https://github.com/google-gemini/gemini-cli/pull/17567)
|
|
309
|
+
- Fix extensions config error by @chrstnb in
|
|
310
|
+
[#17580](https://github.com/google-gemini/gemini-cli/pull/17580)
|
|
311
|
+
- fix(plan): remove subagent invocation from plan mode by @jerop in
|
|
312
|
+
[#17593](https://github.com/google-gemini/gemini-cli/pull/17593)
|
|
313
|
+
- feat(ui): add solid background color option for input prompt by @jacob314 in
|
|
314
|
+
[#16563](https://github.com/google-gemini/gemini-cli/pull/16563)
|
|
315
|
+
- feat(plan): refresh system prompt when approval mode changes (Shift+Tab) by
|
|
316
|
+
@jerop in [#17585](https://github.com/google-gemini/gemini-cli/pull/17585)
|
|
317
|
+
- feat(cli): add global setting to disable UI spinners by @galz10 in
|
|
318
|
+
[#17234](https://github.com/google-gemini/gemini-cli/pull/17234)
|
|
319
|
+
- fix(security): enforce strict policy directory permissions by @yunaseoul in
|
|
320
|
+
[#17353](https://github.com/google-gemini/gemini-cli/pull/17353)
|
|
321
|
+
- test(core): fix tests in windows by @scidomino in
|
|
322
|
+
[#17592](https://github.com/google-gemini/gemini-cli/pull/17592)
|
|
323
|
+
- feat(mcp/extensions): Allow users to selectively enable/disable MCP servers
|
|
324
|
+
included in an extension( Issue #11057 & #17402) by @jasmeetsb in
|
|
325
|
+
[#17434](https://github.com/google-gemini/gemini-cli/pull/17434)
|
|
326
|
+
- Always map mac keys, even on other platforms by @scidomino in
|
|
327
|
+
[#17618](https://github.com/google-gemini/gemini-cli/pull/17618)
|
|
328
|
+
- Ctrl-O by @jacob314 in
|
|
329
|
+
[#17617](https://github.com/google-gemini/gemini-cli/pull/17617)
|
|
330
|
+
- feat(plan): update cycling order of approval modes by @Adib234 in
|
|
331
|
+
[#17622](https://github.com/google-gemini/gemini-cli/pull/17622)
|
|
332
|
+
- fix(cli): restore 'Modify with editor' option in external terminals by
|
|
333
|
+
@abhipatel12 in
|
|
334
|
+
[#17621](https://github.com/google-gemini/gemini-cli/pull/17621)
|
|
335
|
+
- Slash command for helping in debugging by @gundermanc in
|
|
336
|
+
[#17609](https://github.com/google-gemini/gemini-cli/pull/17609)
|
|
337
|
+
- feat: add double-click to expand/collapse large paste placeholders by
|
|
338
|
+
@jackwotherspoon in
|
|
339
|
+
[#17471](https://github.com/google-gemini/gemini-cli/pull/17471)
|
|
340
|
+
- refactor(cli): migrate non-interactive flow to event-driven scheduler by
|
|
341
|
+
@abhipatel12 in
|
|
342
|
+
[#17572](https://github.com/google-gemini/gemini-cli/pull/17572)
|
|
343
|
+
- fix: loadcodeassist eligible tiers getting ignored for unlicensed users
|
|
344
|
+
(regression) by @gsquared94 in
|
|
345
|
+
[#17581](https://github.com/google-gemini/gemini-cli/pull/17581)
|
|
346
|
+
- chore(core): delete legacy nonInteractiveToolExecutor by @abhipatel12 in
|
|
347
|
+
[#17573](https://github.com/google-gemini/gemini-cli/pull/17573)
|
|
348
|
+
- feat(core): enforce server prefixes for MCP tools in agent definitions by
|
|
349
|
+
@abhipatel12 in
|
|
350
|
+
[#17574](https://github.com/google-gemini/gemini-cli/pull/17574)
|
|
351
|
+
- feat (mcp): Refresh MCP prompts on list changed notification by @MrLesk in
|
|
352
|
+
[#14863](https://github.com/google-gemini/gemini-cli/pull/14863)
|
|
353
|
+
- feat(ui): pretty JSON rendering tool outputs by @medic-code in
|
|
354
|
+
[#9767](https://github.com/google-gemini/gemini-cli/pull/9767)
|
|
355
|
+
- Fix iterm alternate buffer mode issue rendering backgrounds by @jacob314 in
|
|
356
|
+
[#17634](https://github.com/google-gemini/gemini-cli/pull/17634)
|
|
357
|
+
- feat(cli): add gemini extensions list --output-format=json by @AkihiroSuda in
|
|
358
|
+
[#14479](https://github.com/google-gemini/gemini-cli/pull/14479)
|
|
359
|
+
- fix(extensions): add .gitignore to extension templates by @godwiniheuwa in
|
|
360
|
+
[#17293](https://github.com/google-gemini/gemini-cli/pull/17293)
|
|
361
|
+
- paste transform followup by @jacob314 in
|
|
362
|
+
[#17624](https://github.com/google-gemini/gemini-cli/pull/17624)
|
|
363
|
+
- refactor: rename formatMemoryUsage to formatBytes by @Nubebuster in
|
|
364
|
+
[#14997](https://github.com/google-gemini/gemini-cli/pull/14997)
|
|
365
|
+
- chore: remove extra top margin from /hooks and /extensions by @jackwotherspoon
|
|
366
|
+
in [#17663](https://github.com/google-gemini/gemini-cli/pull/17663)
|
|
367
|
+
- feat(cli): add oncall command for issue triage by @sehoon38 in
|
|
368
|
+
[#17661](https://github.com/google-gemini/gemini-cli/pull/17661)
|
|
369
|
+
- Fix sidebar issue for extensions link by @chrstnb in
|
|
370
|
+
[#17668](https://github.com/google-gemini/gemini-cli/pull/17668)
|
|
371
|
+
- Change formatting to prevent UI redressing attacks by @scidomino in
|
|
372
|
+
[#17611](https://github.com/google-gemini/gemini-cli/pull/17611)
|
|
373
|
+
- Fix cluster of bugs in the settings dialog. by @jacob314 in
|
|
374
|
+
[#17628](https://github.com/google-gemini/gemini-cli/pull/17628)
|
|
375
|
+
- Update sidebar to resolve site build issues by @chrstnb in
|
|
376
|
+
[#17674](https://github.com/google-gemini/gemini-cli/pull/17674)
|
|
377
|
+
- fix(admin): fix a few bugs related to admin controls by @skeshive in
|
|
378
|
+
[#17590](https://github.com/google-gemini/gemini-cli/pull/17590)
|
|
379
|
+
- revert bad changes to tests by @scidomino in
|
|
380
|
+
[#17673](https://github.com/google-gemini/gemini-cli/pull/17673)
|
|
381
|
+
- feat(cli): show candidate issue state reason and duplicate status in triage by
|
|
382
|
+
@sehoon38 in [#17676](https://github.com/google-gemini/gemini-cli/pull/17676)
|
|
383
|
+
- Fix missing slash commands when Gemini CLI is in a project with a package.json
|
|
384
|
+
that doesn't follow semantic versioning by @Adib234 in
|
|
385
|
+
[#17561](https://github.com/google-gemini/gemini-cli/pull/17561)
|
|
386
|
+
- feat(core): Model family-specific system prompts by @joshualitt in
|
|
387
|
+
[#17614](https://github.com/google-gemini/gemini-cli/pull/17614)
|
|
388
|
+
- Sub-agents documentation. by @gundermanc in
|
|
389
|
+
[#16639](https://github.com/google-gemini/gemini-cli/pull/16639)
|
|
390
|
+
- feat: wire up AskUserTool with dialog by @jackwotherspoon in
|
|
391
|
+
[#17411](https://github.com/google-gemini/gemini-cli/pull/17411)
|
|
392
|
+
- Load extension settings for hooks, agents, skills by @chrstnb in
|
|
393
|
+
[#17245](https://github.com/google-gemini/gemini-cli/pull/17245)
|
|
394
|
+
- Fix issue where Gemini CLI can make changes when simply asked a question by
|
|
395
|
+
@gundermanc in
|
|
396
|
+
[#17608](https://github.com/google-gemini/gemini-cli/pull/17608)
|
|
397
|
+
- Update docs-writer skill for editing and add style guide for reference. by
|
|
398
|
+
@g-samroberts in
|
|
399
|
+
[#17669](https://github.com/google-gemini/gemini-cli/pull/17669)
|
|
400
|
+
- fix(ux): have user message display a short path for pasted images by @devr0306
|
|
401
|
+
in [#17613](https://github.com/google-gemini/gemini-cli/pull/17613)
|
|
402
|
+
- feat(plan): enable AskUser tool in Plan mode for clarifying questions by
|
|
403
|
+
@jerop in [#17694](https://github.com/google-gemini/gemini-cli/pull/17694)
|
|
404
|
+
- GEMINI.md polish by @jacob314 in
|
|
405
|
+
[#17680](https://github.com/google-gemini/gemini-cli/pull/17680)
|
|
406
|
+
- refactor(core): centralize path validation and allow temp dir access for tools
|
|
407
|
+
by @NTaylorMullen in
|
|
408
|
+
[#17185](https://github.com/google-gemini/gemini-cli/pull/17185)
|
|
409
|
+
- feat(skills): promote Agent Skills to stable by @abhipatel12 in
|
|
410
|
+
[#17693](https://github.com/google-gemini/gemini-cli/pull/17693)
|
|
411
|
+
- refactor(cli): keyboard handling and AskUserDialog by @jacob314 in
|
|
412
|
+
[#17414](https://github.com/google-gemini/gemini-cli/pull/17414)
|
|
413
|
+
- docs: Add Experimental Remote Agent Docs by @adamfweidman in
|
|
414
|
+
[#17697](https://github.com/google-gemini/gemini-cli/pull/17697)
|
|
415
|
+
- revert: promote Agent Skills to stable (#17693) by @abhipatel12 in
|
|
416
|
+
[#17712](https://github.com/google-gemini/gemini-cli/pull/17712)
|
|
417
|
+
- feat(ux) Expandable (ctrl-O) and scrollable approvals in alternate buffer
|
|
418
|
+
mode. by @jacob314 in
|
|
419
|
+
[#17640](https://github.com/google-gemini/gemini-cli/pull/17640)
|
|
420
|
+
- feat(skills): promote skills settings to stable by @abhipatel12 in
|
|
421
|
+
[#17713](https://github.com/google-gemini/gemini-cli/pull/17713)
|
|
422
|
+
- fix(cli): Preserve settings dialog focus when searching by @SandyTao520 in
|
|
423
|
+
[#17701](https://github.com/google-gemini/gemini-cli/pull/17701)
|
|
424
|
+
- feat(ui): add terminal cursor support by @jacob314 in
|
|
425
|
+
[#17711](https://github.com/google-gemini/gemini-cli/pull/17711)
|
|
426
|
+
- docs(skills): remove experimental labels and update tutorials by @abhipatel12
|
|
427
|
+
in [#17714](https://github.com/google-gemini/gemini-cli/pull/17714)
|
|
428
|
+
- docs: remove 'experimental' syntax for hooks in docs by @abhipatel12 in
|
|
429
|
+
[#17660](https://github.com/google-gemini/gemini-cli/pull/17660)
|
|
430
|
+
- Add support for an additional exclusion file besides .gitignore and
|
|
431
|
+
.geminiignore by @alisa-alisa in
|
|
432
|
+
[#16487](https://github.com/google-gemini/gemini-cli/pull/16487)
|
|
433
|
+
- feat: add review-frontend-and-fix command by @galz10 in
|
|
434
|
+
[#17707](https://github.com/google-gemini/gemini-cli/pull/17707)
|
|
330
435
|
|
|
331
436
|
**Full changelog**:
|
|
332
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
437
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.26.0-preview.5...v0.27.0-preview.0
|