@google/gemini-cli-core 0.25.0-preview.0 → 0.26.0-nightly.20260115.6cb3ae4e0

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.
Files changed (70) hide show
  1. package/dist/docs/architecture.md +3 -3
  2. package/dist/docs/changelogs/index.md +25 -0
  3. package/dist/docs/changelogs/latest.md +150 -138
  4. package/dist/docs/changelogs/preview.md +211 -118
  5. package/dist/docs/changelogs/releases.md +406 -25
  6. package/dist/docs/cli/commands.md +7 -0
  7. package/dist/docs/cli/keyboard-shortcuts.md +18 -16
  8. package/dist/docs/cli/rewind.md +51 -0
  9. package/dist/docs/cli/settings.md +1 -0
  10. package/dist/docs/cli/skills.md +8 -8
  11. package/dist/docs/get-started/configuration.md +12 -1
  12. package/dist/docs/sidebar.json +4 -0
  13. package/dist/docs/tools/mcp-server.md +2 -1
  14. package/dist/docs/troubleshooting.md +2 -1
  15. package/dist/src/agents/a2a-client-manager.js +1 -1
  16. package/dist/src/agents/a2a-client-manager.js.map +1 -1
  17. package/dist/src/agents/registry.js +9 -4
  18. package/dist/src/agents/registry.js.map +1 -1
  19. package/dist/src/config/config.d.ts +9 -1
  20. package/dist/src/config/config.js +16 -0
  21. package/dist/src/config/config.js.map +1 -1
  22. package/dist/src/config/config.test.js +20 -0
  23. package/dist/src/config/config.test.js.map +1 -1
  24. package/dist/src/confirmation-bus/types.d.ts +52 -2
  25. package/dist/src/confirmation-bus/types.js +1 -0
  26. package/dist/src/confirmation-bus/types.js.map +1 -1
  27. package/dist/src/core/contentGenerator.js +2 -1
  28. package/dist/src/core/contentGenerator.js.map +1 -1
  29. package/dist/src/core/coreToolScheduler.test.js +7 -4
  30. package/dist/src/core/coreToolScheduler.test.js.map +1 -1
  31. package/dist/src/generated/git-commit.d.ts +2 -2
  32. package/dist/src/generated/git-commit.js +2 -2
  33. package/dist/src/generated/git-commit.js.map +1 -1
  34. package/dist/src/scheduler/state-manager.d.ts +67 -0
  35. package/dist/src/scheduler/state-manager.js +335 -0
  36. package/dist/src/scheduler/state-manager.js.map +1 -0
  37. package/dist/src/scheduler/state-manager.test.d.ts +6 -0
  38. package/dist/src/scheduler/state-manager.test.js +386 -0
  39. package/dist/src/scheduler/state-manager.test.js.map +1 -0
  40. package/dist/src/scheduler/types.d.ts +10 -1
  41. package/dist/src/skills/builtin/skill-creator/SKILL.md +382 -0
  42. package/dist/src/skills/builtin/skill-creator/scripts/init_skill.cjs +235 -0
  43. package/dist/src/skills/builtin/skill-creator/scripts/package_skill.cjs +87 -0
  44. package/dist/src/skills/builtin/skill-creator/scripts/validate_skill.cjs +127 -0
  45. package/dist/src/skills/skillLoader.js +65 -9
  46. package/dist/src/skills/skillLoader.js.map +1 -1
  47. package/dist/src/skills/skillLoader.test.js +110 -0
  48. package/dist/src/skills/skillLoader.test.js.map +1 -1
  49. package/dist/src/skills/skillManager.d.ts +2 -2
  50. package/dist/src/skills/skillManager.js +17 -6
  51. package/dist/src/skills/skillManager.js.map +1 -1
  52. package/dist/src/skills/skillManager.test.js +91 -4
  53. package/dist/src/skills/skillManager.test.js.map +1 -1
  54. package/dist/src/test-utils/mock-tool.d.ts +1 -0
  55. package/dist/src/test-utils/mock-tool.js +1 -0
  56. package/dist/src/test-utils/mock-tool.js.map +1 -1
  57. package/dist/src/tools/shell.js +1 -0
  58. package/dist/src/tools/shell.js.map +1 -1
  59. package/dist/src/tools/tools.d.ts +1 -0
  60. package/dist/src/tools/tools.js.map +1 -1
  61. package/dist/src/utils/shell-utils.js +18 -2
  62. package/dist/src/utils/shell-utils.js.map +1 -1
  63. package/dist/src/utils/shell-utils.test.js +23 -0
  64. package/dist/src/utils/shell-utils.test.js.map +1 -1
  65. package/dist/src/utils/tokenCalculation.js +10 -2
  66. package/dist/src/utils/tokenCalculation.js.map +1 -1
  67. package/dist/src/utils/tokenCalculation.test.js +20 -0
  68. package/dist/src/utils/tokenCalculation.test.js.map +1 -1
  69. package/dist/tsconfig.tsbuildinfo +1 -1
  70. package/package.json +1 -1
@@ -10,17 +10,398 @@ For the full changelog, including nightly releases, refer to
10
10
  [Releases - google-gemini/gemini-cli](https://github.com/google-gemini/gemini-cli/releases)
11
11
  on GitHub.
12
12
 
13
- ## Current Releases
13
+ ## Current releases
14
14
 
15
15
  | Release channel | Notes |
16
16
  | :---------------------------------------- | :---------------------------------------------- |
17
17
  | Nightly | Nightly release with the most recent changes. |
18
- | [Preview](#release-v0230-preview-preview) | Experimental features ready for early feedback. |
19
- | [Latest](#release-v0220---v0225-latest) | Stable, recommended for general use. |
18
+ | [Preview](#release-v0240-preview-preview) | Experimental features ready for early feedback. |
19
+ | [Latest](#release-v0230-latest) | Stable, recommended for general use. |
20
20
 
21
- ## Release v0.23.0-preview (Preview)
21
+ ## Release v0.24.0-preview (Preview)
22
22
 
23
- ## What's Changed
23
+ ### Highlights
24
+
25
+ - 🎉 **Experimental Agent Skills Support in Preview:** Gemini CLI now supports
26
+ [Agent Skills](https://agentskills.io/home) in our preview builds. This is an
27
+ early preview where we’re looking for feedback!
28
+ - Install Preview: `npm install -g @google/gemini-cli@preview`
29
+ - Enable in `/settings`
30
+ - Docs:
31
+ [https://geminicli.com/docs/cli/skills/](https://geminicli.com/docs/cli/skills/)
32
+
33
+ ### What's changed
34
+
35
+ - chore(core): refactor model resolution and cleanup fallback logic by
36
+ @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15228
37
+ - Add Folder Trust Support To Hooks by @sehoon38 in
38
+ https://github.com/google-gemini/gemini-cli/pull/15325
39
+ - Record timestamp with code assist metrics. by @gundermanc in
40
+ https://github.com/google-gemini/gemini-cli/pull/15439
41
+ - feat(policy): implement dynamic mode-aware policy evaluation by @abhipatel12
42
+ in https://github.com/google-gemini/gemini-cli/pull/15307
43
+ - fix(core): use debugLogger.debug for startup profiler logs by @NTaylorMullen
44
+ in https://github.com/google-gemini/gemini-cli/pull/15443
45
+ - feat(ui): Add security warning and improve layout for Hooks list by
46
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15440
47
+ - fix #15369, prevent crash on unhandled EIO error in readStdin cleanup by
48
+ @ElecTwix in https://github.com/google-gemini/gemini-cli/pull/15410
49
+ - chore: improve error messages for --resume by @jackwotherspoon in
50
+ https://github.com/google-gemini/gemini-cli/pull/15360
51
+ - chore: remove clipboard file by @jackwotherspoon in
52
+ https://github.com/google-gemini/gemini-cli/pull/15447
53
+ - Implemented unified secrets sanitization and env. redaction options by
54
+ @gundermanc in https://github.com/google-gemini/gemini-cli/pull/15348
55
+ - feat: automatic `/model` persistence across Gemini CLI sessions by @niyasrad
56
+ in https://github.com/google-gemini/gemini-cli/pull/13199
57
+ - refactor(core): remove deprecated permission aliases from BeforeToolHookOutput
58
+ by @StoyanD in https://github.com/google-gemini/gemini-cli/pull/14855
59
+ - fix: add missing `type` field to MCPServerConfig by @jackwotherspoon in
60
+ https://github.com/google-gemini/gemini-cli/pull/15465
61
+ - Make schema validation errors non-fatal by @jacob314 in
62
+ https://github.com/google-gemini/gemini-cli/pull/15487
63
+ - chore: limit MCP resources display to 10 by default by @jackwotherspoon in
64
+ https://github.com/google-gemini/gemini-cli/pull/15489
65
+ - Add experimental in-CLI extension install and uninstall subcommands by
66
+ @chrstnb in https://github.com/google-gemini/gemini-cli/pull/15178
67
+ - feat: Add A2A Client Manager and tests by @adamfweidman in
68
+ https://github.com/google-gemini/gemini-cli/pull/15485
69
+ - feat: terse transformations of image paths in text buffer by @psinha40898 in
70
+ https://github.com/google-gemini/gemini-cli/pull/4924
71
+ - Security: Project-level hook warnings by @sehoon38 in
72
+ https://github.com/google-gemini/gemini-cli/pull/15470
73
+ - Added modifyOtherKeys protocol support for tmux by @ved015 in
74
+ https://github.com/google-gemini/gemini-cli/pull/15524
75
+ - chore(core): fix comment typo by @Mapleeeeeeeeeee in
76
+ https://github.com/google-gemini/gemini-cli/pull/15558
77
+ - feat: Show snowfall animation for holiday theme by @sehoon38 in
78
+ https://github.com/google-gemini/gemini-cli/pull/15494
79
+ - do not persist the fallback model by @sehoon38 in
80
+ https://github.com/google-gemini/gemini-cli/pull/15483
81
+ - Resolve unhandled promise rejection in ide-client.ts by @Adib234 in
82
+ https://github.com/google-gemini/gemini-cli/pull/15587
83
+ - fix(core): handle checkIsRepo failure in GitService.initialize by
84
+ @Mapleeeeeeeeeee in https://github.com/google-gemini/gemini-cli/pull/15574
85
+ - fix(cli): add enableShellOutputEfficiency to settings schema by
86
+ @Mapleeeeeeeeeee in https://github.com/google-gemini/gemini-cli/pull/15560
87
+ - Manual nightly version bump to 0.24.0-nightly.20251226.546baf993 by @galz10 in
88
+ https://github.com/google-gemini/gemini-cli/pull/15594
89
+ - refactor(core): extract static concerns from CoreToolScheduler by @abhipatel12
90
+ in https://github.com/google-gemini/gemini-cli/pull/15589
91
+ - fix(core): enable granular shell command allowlisting in policy engine by
92
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15601
93
+ - chore/release: bump version to 0.24.0-nightly.20251227.37be16243 by
94
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15612
95
+ - refactor: deprecate legacy confirmation settings and enforce Policy Engine by
96
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15626
97
+ - Migrate console to coreEvents.emitFeedback or debugLogger by @Adib234 in
98
+ https://github.com/google-gemini/gemini-cli/pull/15219
99
+ - Exponential back-off retries for retryable error without a specified … by
100
+ @sehoon38 in https://github.com/google-gemini/gemini-cli/pull/15684
101
+ - feat(agents): add support for remote agents and multi-agent TOML files by
102
+ @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15437
103
+ - Update wittyPhrases.ts by @segyges in
104
+ https://github.com/google-gemini/gemini-cli/pull/15697
105
+ - refactor(auth): Refactor non-interactive mode auth validation & refresh by
106
+ @skeshive in https://github.com/google-gemini/gemini-cli/pull/15679
107
+ - Revert "Update wittyPhrases.ts (#15697)" by @abhipatel12 in
108
+ https://github.com/google-gemini/gemini-cli/pull/15719
109
+ - fix(hooks): deduplicate agent hooks and add cross-platform integration tests
110
+ by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15701
111
+ - Implement support for tool input modification by @gundermanc in
112
+ https://github.com/google-gemini/gemini-cli/pull/15492
113
+ - Add instructions to the extensions update info notification by @chrstnb in
114
+ https://github.com/google-gemini/gemini-cli/pull/14907
115
+ - Add extension settings info to /extensions list by @chrstnb in
116
+ https://github.com/google-gemini/gemini-cli/pull/14905
117
+ - Agent Skills: Implement Core Skill Infrastructure & Tiered Discovery by
118
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15698
119
+ - chore: remove cot style comments by @abhipatel12 in
120
+ https://github.com/google-gemini/gemini-cli/pull/15735
121
+ - feat(agents): Add remote agents to agent registry by @sehoon38 in
122
+ https://github.com/google-gemini/gemini-cli/pull/15711
123
+ - feat(hooks): implement STOP_EXECUTION and enhance hook decision handling by
124
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15685
125
+ - Fix build issues caused by year-specific linter rule by @gundermanc in
126
+ https://github.com/google-gemini/gemini-cli/pull/15780
127
+ - fix(core): handle unhandled promise rejection in mcp-client-manager by
128
+ @kamja44 in https://github.com/google-gemini/gemini-cli/pull/14701
129
+ - log fallback mode by @sehoon38 in
130
+ https://github.com/google-gemini/gemini-cli/pull/15817
131
+ - Agent Skills: Implement Autonomous Activation Tool & Context Injection by
132
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15725
133
+ - fix(core): improve shell command with redirection detection by @galz10 in
134
+ https://github.com/google-gemini/gemini-cli/pull/15683
135
+ - Add security docs by @abhipatel12 in
136
+ https://github.com/google-gemini/gemini-cli/pull/15739
137
+ - feat: add folder suggestions to `/dir add` command by @jackwotherspoon in
138
+ https://github.com/google-gemini/gemini-cli/pull/15724
139
+ - Agent Skills: Implement Agent Integration and System Prompt Awareness by
140
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15728
141
+ - chore: cleanup old smart edit settings by @abhipatel12 in
142
+ https://github.com/google-gemini/gemini-cli/pull/15832
143
+ - Agent Skills: Status Bar Integration for Skill Counts by @NTaylorMullen in
144
+ https://github.com/google-gemini/gemini-cli/pull/15741
145
+ - fix(core): mock powershell output in shell-utils test by @galz10 in
146
+ https://github.com/google-gemini/gemini-cli/pull/15831
147
+ - Agent Skills: Unify Representation & Centralize Loading by @NTaylorMullen in
148
+ https://github.com/google-gemini/gemini-cli/pull/15833
149
+ - Unify shell security policy and remove legacy logic by @abhipatel12 in
150
+ https://github.com/google-gemini/gemini-cli/pull/15770
151
+ - feat(core): restore MessageBus optionality for soft migration (Phase 1) by
152
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15774
153
+ - feat(core): Standardize Tool and Agent Invocation constructors (Phase 2) by
154
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15775
155
+ - feat(core,cli): enforce mandatory MessageBus injection (Phase 3 Hard
156
+ Migration) by @abhipatel12 in
157
+ https://github.com/google-gemini/gemini-cli/pull/15776
158
+ - Agent Skills: Extension Support & Security Disclosure by @NTaylorMullen in
159
+ https://github.com/google-gemini/gemini-cli/pull/15834
160
+ - feat(hooks): implement granular stop and block behavior for agent hooks by
161
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15824
162
+ - Agent Skills: Add gemini skills CLI management command by @NTaylorMullen in
163
+ https://github.com/google-gemini/gemini-cli/pull/15837
164
+ - refactor: consolidate EditTool and SmartEditTool by @abhipatel12 in
165
+ https://github.com/google-gemini/gemini-cli/pull/15857
166
+ - fix(cli): mock fs.readdir in consent tests for Windows compatibility by
167
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15904
168
+ - refactor(core): Extract and integrate ToolExecutor by @abhipatel12 in
169
+ https://github.com/google-gemini/gemini-cli/pull/15900
170
+ - Fix terminal hang when user exits browser without logging in by @gundermanc in
171
+ https://github.com/google-gemini/gemini-cli/pull/15748
172
+ - fix: avoid SDK warning by not accessing .text getter in logging by @ved015 in
173
+ https://github.com/google-gemini/gemini-cli/pull/15706
174
+ - Make default settings apply by @devr0306 in
175
+ https://github.com/google-gemini/gemini-cli/pull/15354
176
+ - chore: rename smart-edit to edit by @abhipatel12 in
177
+ https://github.com/google-gemini/gemini-cli/pull/15923
178
+ - Opt-in to persist model from /model by @sehoon38 in
179
+ https://github.com/google-gemini/gemini-cli/pull/15820
180
+ - fix: prevent /copy crash on Windows by skipping /dev/tty by @ManojINaik in
181
+ https://github.com/google-gemini/gemini-cli/pull/15657
182
+ - Support context injection via SessionStart hook. by @gundermanc in
183
+ https://github.com/google-gemini/gemini-cli/pull/15746
184
+ - Fix order of preflight by @scidomino in
185
+ https://github.com/google-gemini/gemini-cli/pull/15941
186
+ - Fix failing unit tests by @gundermanc in
187
+ https://github.com/google-gemini/gemini-cli/pull/15940
188
+ - fix(cli): resolve paste issue on Windows terminals. by @scidomino in
189
+ https://github.com/google-gemini/gemini-cli/pull/15932
190
+ - Agent Skills: Implement /skills reload by @NTaylorMullen in
191
+ https://github.com/google-gemini/gemini-cli/pull/15865
192
+ - Add setting to support OSC 52 paste by @scidomino in
193
+ https://github.com/google-gemini/gemini-cli/pull/15336
194
+ - remove manual string when displaying manual model in the footer by @sehoon38
195
+ in https://github.com/google-gemini/gemini-cli/pull/15967
196
+ - fix(core): use correct interactive check for system prompt by @ppergame in
197
+ https://github.com/google-gemini/gemini-cli/pull/15020
198
+ - Inform user of missing settings on extensions update by @chrstnb in
199
+ https://github.com/google-gemini/gemini-cli/pull/15944
200
+ - feat(policy): allow 'modes' in user and admin policies by @NTaylorMullen in
201
+ https://github.com/google-gemini/gemini-cli/pull/15977
202
+ - fix: default folder trust to untrusted for enhanced security by @galz10 in
203
+ https://github.com/google-gemini/gemini-cli/pull/15943
204
+ - Add description for each settings item in /settings by @sehoon38 in
205
+ https://github.com/google-gemini/gemini-cli/pull/15936
206
+ - Use GetOperation to poll for OnboardUser completion by @ishaanxgupta in
207
+ https://github.com/google-gemini/gemini-cli/pull/15827
208
+ - Agent Skills: Add skill directory to WorkspaceContext upon activation by
209
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15870
210
+ - Fix settings command fallback by @chrstnb in
211
+ https://github.com/google-gemini/gemini-cli/pull/15926
212
+ - fix: writeTodo construction by @scidomino in
213
+ https://github.com/google-gemini/gemini-cli/pull/16014
214
+ - properly disable keyboard modes on exit by @scidomino in
215
+ https://github.com/google-gemini/gemini-cli/pull/16006
216
+ - Add workflow to label child issues for rollup by @bdmorgan in
217
+ https://github.com/google-gemini/gemini-cli/pull/16002
218
+ - feat(ui): add visual indicators for hook execution by @abhipatel12 in
219
+ https://github.com/google-gemini/gemini-cli/pull/15408
220
+ - fix: image token estimation by @jackwotherspoon in
221
+ https://github.com/google-gemini/gemini-cli/pull/16004
222
+ - feat(hooks): Add a hooks.enabled setting. by @joshualitt in
223
+ https://github.com/google-gemini/gemini-cli/pull/15933
224
+ - feat(admin): Introduce remote admin settings & implement
225
+ secureModeEnabled/mcpEnabled by @skeshive in
226
+ https://github.com/google-gemini/gemini-cli/pull/15935
227
+ - Remove trailing whitespace in yaml. by @joshualitt in
228
+ https://github.com/google-gemini/gemini-cli/pull/16036
229
+ - feat(agents): add support for remote agents by @adamfweidman in
230
+ https://github.com/google-gemini/gemini-cli/pull/16013
231
+ - fix: limit scheduled issue triage queries to prevent argument list too long
232
+ error by @jerop in https://github.com/google-gemini/gemini-cli/pull/16021
233
+ - ci(github-actions): triage all new issues automatically by @jerop in
234
+ https://github.com/google-gemini/gemini-cli/pull/16018
235
+ - Fix test. by @gundermanc in
236
+ https://github.com/google-gemini/gemini-cli/pull/16011
237
+ - fix: hide broken skills object from settings dialog by @korade-krushna in
238
+ https://github.com/google-gemini/gemini-cli/pull/15766
239
+ - Agent Skills: Initial Documentation & Tutorial by @NTaylorMullen in
240
+ https://github.com/google-gemini/gemini-cli/pull/15869
241
+
242
+ **Full changelog**:
243
+ https://github.com/google-gemini/gemini-cli/compare/v0.23.0-preview.6...v0.24.0-preview.0
244
+
245
+ ## Release v0.23.0 (Latest)
246
+
247
+ ### Highlights
248
+
249
+ - **Gemini CLI wrapped:** Run `npx gemini-wrapped` to visualize your usage
250
+ stats, top models, languages, and more!
251
+ - **Windows clipboard image support:** Windows users can now paste images
252
+ directly from their clipboard into the CLI using `Alt`+`V`.
253
+ ([pr](https://github.com/google-gemini/gemini-cli/pull/13997) by
254
+ [@sgeraldes](https://github.com/sgeraldes))
255
+ - **Terminal background color detection:** Automatically optimizes your
256
+ terminal's background color to select compatible themes and provide
257
+ accessibility warnings.
258
+ ([pr](https://github.com/google-gemini/gemini-cli/pull/15132) by
259
+ [@jacob314](https://github.com/jacob314))
260
+ - **Session logout:** Use the new `/logout` command to instantly clear
261
+ credentials and reset your authentication state for seamless account
262
+ switching. ([pr](https://github.com/google-gemini/gemini-cli/pull/13383) by
263
+ [@CN-Scars](https://github.com/CN-Scars))
264
+
265
+ ### What's changed
266
+
267
+ - Code assist service metrics. by @gundermanc in
268
+ https://github.com/google-gemini/gemini-cli/pull/15024
269
+ - chore/release: bump version to 0.21.0-nightly.20251216.bb0c0d8ee by
270
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15121
271
+ - Docs by @Roaimkhan in https://github.com/google-gemini/gemini-cli/pull/15103
272
+ - Use official ACP SDK and support HTTP/SSE based MCP servers by @SteffenDE in
273
+ https://github.com/google-gemini/gemini-cli/pull/13856
274
+ - Remove foreground for themes other than shades of purple and holiday. by
275
+ @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14606
276
+ - chore: remove repo specific tips by @jackwotherspoon in
277
+ https://github.com/google-gemini/gemini-cli/pull/15164
278
+ - chore: remove user query from footer in debug mode by @jackwotherspoon in
279
+ https://github.com/google-gemini/gemini-cli/pull/15169
280
+ - Disallow unnecessary awaits. by @gundermanc in
281
+ https://github.com/google-gemini/gemini-cli/pull/15172
282
+ - Add one to the padding in settings dialog to avoid flicker. by @jacob314 in
283
+ https://github.com/google-gemini/gemini-cli/pull/15173
284
+ - feat(core): introduce remote agent infrastructure and rename local executor by
285
+ @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15110
286
+ - feat(cli): Add `/auth logout` command to clear credentials and auth state by
287
+ @CN-Scars in https://github.com/google-gemini/gemini-cli/pull/13383
288
+ - (fix) Automated pr labeller by @DaanVersavel in
289
+ https://github.com/google-gemini/gemini-cli/pull/14885
290
+ - feat: launch Gemini 3 Flash in Gemini CLI ⚡️⚡️⚡️ by @scidomino in
291
+ https://github.com/google-gemini/gemini-cli/pull/15196
292
+ - Refactor: Migrate console.error in ripGrep.ts to debugLogger by @Adib234 in
293
+ https://github.com/google-gemini/gemini-cli/pull/15201
294
+ - chore: update a2a-js to 0.3.7 by @adamfweidman in
295
+ https://github.com/google-gemini/gemini-cli/pull/15197
296
+ - chore(core): remove redundant isModelAvailabilityServiceEnabled toggle and
297
+ clean up dead code by @adamfweidman in
298
+ https://github.com/google-gemini/gemini-cli/pull/15207
299
+ - feat(core): Late resolve `GenerateContentConfig`s and reduce mutation. by
300
+ @joshualitt in https://github.com/google-gemini/gemini-cli/pull/14920
301
+ - Respect previewFeatures value from the remote flag if undefined by @sehoon38
302
+ in https://github.com/google-gemini/gemini-cli/pull/15214
303
+ - feat(ui): add Windows clipboard image support and Alt+V paste workaround by
304
+ @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15218
305
+ - chore(core): remove legacy fallback flags and migrate loop detection by
306
+ @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15213
307
+ - fix(ui): Prevent eager slash command completion hiding sibling commands by
308
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15224
309
+ - Docs: Update Changelog for Dec 17, 2025 by @jkcinouye in
310
+ https://github.com/google-gemini/gemini-cli/pull/15204
311
+ - Code Assist backend telemetry for user accept/reject of suggestions by
312
+ @gundermanc in https://github.com/google-gemini/gemini-cli/pull/15206
313
+ - fix(cli): correct initial history length handling for chat commands by
314
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15223
315
+ - chore/release: bump version to 0.21.0-nightly.20251218.739c02bd6 by
316
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15231
317
+ - Change detailed model stats to use a new shared Table class to resolve
318
+ robustness issues. by @jacob314 in
319
+ https://github.com/google-gemini/gemini-cli/pull/15208
320
+ - feat: add agent toml parser by @abhipatel12 in
321
+ https://github.com/google-gemini/gemini-cli/pull/15112
322
+ - Add core tool that adds all context from the core package. by @jacob314 in
323
+ https://github.com/google-gemini/gemini-cli/pull/15238
324
+ - (docs): Add reference section to hooks documentation by @abhipatel12 in
325
+ https://github.com/google-gemini/gemini-cli/pull/15159
326
+ - feat(hooks): add support for friendly names and descriptions by @abhipatel12
327
+ in https://github.com/google-gemini/gemini-cli/pull/15174
328
+ - feat: Detect background color by @jacob314 in
329
+ https://github.com/google-gemini/gemini-cli/pull/15132
330
+ - add 3.0 to allowed sensitive keywords by @scidomino in
331
+ https://github.com/google-gemini/gemini-cli/pull/15276
332
+ - feat: Pass additional environment variables to shell execution by @galz10 in
333
+ https://github.com/google-gemini/gemini-cli/pull/15160
334
+ - Remove unused code by @scidomino in
335
+ https://github.com/google-gemini/gemini-cli/pull/15290
336
+ - Handle all 429 as retryableQuotaError by @sehoon38 in
337
+ https://github.com/google-gemini/gemini-cli/pull/15288
338
+ - Remove unnecessary dependencies by @scidomino in
339
+ https://github.com/google-gemini/gemini-cli/pull/15291
340
+ - fix: prevent infinite loop in prompt completion on error by @galz10 in
341
+ https://github.com/google-gemini/gemini-cli/pull/14548
342
+ - fix(ui): show command suggestions even on perfect match and sort them by
343
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15287
344
+ - feat(hooks): reduce log verbosity and improve error reporting in UI by
345
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15297
346
+ - feat: simplify tool confirmation labels for better UX by @NTaylorMullen in
347
+ https://github.com/google-gemini/gemini-cli/pull/15296
348
+ - chore/release: bump version to 0.21.0-nightly.20251219.70696e364 by
349
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15301
350
+ - feat(core): Implement JIT context memory loading and UI sync by @SandyTao520
351
+ in https://github.com/google-gemini/gemini-cli/pull/14469
352
+ - feat(ui): Put "Allow for all future sessions" behind a setting off by default.
353
+ by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15322
354
+ - fix(cli):change the placeholder of input during the shell mode by
355
+ @JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/15135
356
+ - Validate OAuth resource parameter matches MCP server URL by @galz10 in
357
+ https://github.com/google-gemini/gemini-cli/pull/15289
358
+ - docs(cli): add System Prompt Override (GEMINI_SYSTEM_MD) by @ashmod in
359
+ https://github.com/google-gemini/gemini-cli/pull/9515
360
+ - more robust command parsing logs by @scidomino in
361
+ https://github.com/google-gemini/gemini-cli/pull/15339
362
+ - Introspection agent demo by @scidomino in
363
+ https://github.com/google-gemini/gemini-cli/pull/15232
364
+ - fix(core): sanitize hook command expansion and prevent injection by
365
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15343
366
+ - fix(folder trust): add validation for trusted folder level by @adamfweidman in
367
+ https://github.com/google-gemini/gemini-cli/pull/12215
368
+ - fix(cli): fix right border overflow in trust dialogs by @galz10 in
369
+ https://github.com/google-gemini/gemini-cli/pull/15350
370
+ - fix(policy): fix bug where accepting-edits continued after it was turned off
371
+ by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15351
372
+ - fix: prevent infinite relaunch loop when --resume fails (#14941) by @Ying-xi
373
+ in https://github.com/google-gemini/gemini-cli/pull/14951
374
+ - chore/release: bump version to 0.21.0-nightly.20251220.41a1a3eed by
375
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15352
376
+ - feat(telemetry): add clearcut logging for hooks by @abhipatel12 in
377
+ https://github.com/google-gemini/gemini-cli/pull/15405
378
+ - fix(core): Add `.geminiignore` support to SearchText tool by @xyrolle in
379
+ https://github.com/google-gemini/gemini-cli/pull/13763
380
+ - fix(patch): cherry-pick 0843d9a to release/v0.23.0-preview.0-pr-15443 to patch
381
+ version v0.23.0-preview.0 and create version 0.23.0-preview.1 by
382
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15445
383
+ - fix(patch): cherry-pick 9cdb267 to release/v0.23.0-preview.1-pr-15494 to patch
384
+ version v0.23.0-preview.1 and create version 0.23.0-preview.2 by
385
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15592
386
+ - fix(patch): cherry-pick 37be162 to release/v0.23.0-preview.2-pr-15601 to patch
387
+ version v0.23.0-preview.2 and create version 0.23.0-preview.3 by
388
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15603
389
+ - fix(patch): cherry-pick 07e597d to release/v0.23.0-preview.3-pr-15684
390
+ [CONFLICTS] by @gemini-cli-robot in
391
+ https://github.com/google-gemini/gemini-cli/pull/15734
392
+ - fix(patch): cherry-pick c31f053 to release/v0.23.0-preview.4-pr-16004 to patch
393
+ version v0.23.0-preview.4 and create version 0.23.0-preview.5 by
394
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/16027
395
+ - fix(patch): cherry-pick 788bb04 to release/v0.23.0-preview.5-pr-15817
396
+ [CONFLICTS] by @gemini-cli-robot in
397
+ https://github.com/google-gemini/gemini-cli/pull/16038
398
+
399
+ **Full changelog**:
400
+ https://github.com/google-gemini/gemini-cli/compare/v0.22.5...v0.23.0
401
+
402
+ ## Release v0.23.0-preview
403
+
404
+ ### What's changed
24
405
 
25
406
  - Code assist service metrics. by @gundermanc in
26
407
  https://github.com/google-gemini/gemini-cli/pull/15024
@@ -136,10 +517,10 @@ on GitHub.
136
517
  - fix(core): Add `.geminiignore` support to SearchText tool by @xyrolle in
137
518
  https://github.com/google-gemini/gemini-cli/pull/13763
138
519
 
139
- **Full Changelog**:
520
+ **Full changelog**:
140
521
  https://github.com/google-gemini/gemini-cli/compare/v0.22.0-preview.3...v0.23.0-preview.0
141
522
 
142
- ## Release v0.22.0 - v0.22.5 (Latest)
523
+ ## Release v0.22.0
143
524
 
144
525
  ### Highlights
145
526
 
@@ -161,7 +542,7 @@ https://github.com/google-gemini/gemini-cli/compare/v0.22.0-preview.3...v0.23.0-
161
542
  ([pr](https://github.com/google-gemini/gemini-cli/pull/14832) by
162
543
  [@jackwotherspoon](https://github.com/jackwotherspoon))
163
544
 
164
- ### What's Changed
545
+ ### What's changed
165
546
 
166
547
  - feat(ide): fallback to GEMINI_CLI_IDE_AUTH_TOKEN env var by @skeshive in
167
548
  https://github.com/google-gemini/gemini-cli/pull/14843
@@ -281,10 +662,10 @@ https://github.com/google-gemini/gemini-cli/compare/v0.22.0-preview.3...v0.23.0-
281
662
  version v0.22.0-preview.2 and create version 0.22.0-preview.3 by
282
663
  @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15294
283
664
 
284
- **Full Changelog**:
665
+ **Full changelog**:
285
666
  https://github.com/google-gemini/gemini-cli/compare/v0.21.3...v0.22.0
286
667
 
287
- ## Release v0.21.0 - v0.21.1
668
+ ## Release v0.21.0
288
669
 
289
670
  ### Highlights
290
671
 
@@ -293,7 +674,7 @@ https://github.com/google-gemini/gemini-cli/compare/v0.21.3...v0.22.0
293
674
  Features** to `true` to enable Gemini 3. For more information:
294
675
  [Gemini 3 Flash is now available in Gemini CLI](https://developers.googleblog.com/gemini-3-flash-is-now-available-in-gemini-cli/).
295
676
 
296
- ### What's Changed
677
+ ### What's changed
297
678
 
298
679
  - refactor(stdio): always patch stdout and use createWorkingStdio for clean
299
680
  output by @allenhutchison in
@@ -498,12 +879,12 @@ https://github.com/google-gemini/gemini-cli/compare/v0.21.3...v0.22.0
498
879
  version v0.21.0-preview.5 and create version 0.21.0-preview.6 by
499
880
  @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15153
500
881
 
501
- **Full Changelog**:
882
+ **Full changelog**:
502
883
  https://github.com/google-gemini/gemini-cli/compare/v0.20.2...v0.21.0
503
884
 
504
- ## Release v0.22.0-preview-0 (Preview)
885
+ ## Release v0.22.0-preview-0
505
886
 
506
- ### What's Changed
887
+ ### What's changed
507
888
 
508
889
  - feat(ide): fallback to GEMINI_CLI_IDE_AUTH_TOKEN env var by @skeshive in
509
890
  https://github.com/google-gemini/gemini-cli/pull/14843
@@ -617,12 +998,12 @@ https://github.com/google-gemini/gemini-cli/compare/v0.20.2...v0.21.0
617
998
  take priority over ones using the old format by @jacob314 in
618
999
  https://github.com/google-gemini/gemini-cli/pull/15116
619
1000
 
620
- **Full Changelog**:
1001
+ **Full changelog**:
621
1002
  https://github.com/google-gemini/gemini-cli/compare/v0.21.0-preview.6...v0.22.0-preview.0
622
1003
 
623
- ## Release v0.20.0 - v0.20.2
1004
+ ## Release v0.20.0
624
1005
 
625
- ### What's Changed
1006
+ ### What's changed
626
1007
 
627
1008
  - Update error codes when process exiting the gemini cli by @megha1188 in
628
1009
  https://github.com/google-gemini/gemini-cli/pull/13728
@@ -747,10 +1128,10 @@ https://github.com/google-gemini/gemini-cli/compare/v0.21.0-preview.6...v0.22.0-
747
1128
  version v0.20.0-preview.2 and create version 0.20.0-preview.5 by
748
1129
  @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14752
749
1130
 
750
- **Full Changelog**:
1131
+ **Full changelog**:
751
1132
  https://github.com/google-gemini/gemini-cli/compare/v0.19.4...v0.20.0
752
1133
 
753
- ## Release v0.19.0 - v0.19.4
1134
+ ## Release v0.19.0
754
1135
 
755
1136
  ## Highlights
756
1137
 
@@ -765,7 +1146,7 @@ https://github.com/google-gemini/gemini-cli/compare/v0.19.4...v0.20.0
765
1146
  [pr](https://github.com/google-gemini/gemini-cli/pull/12535) by
766
1147
  [@jackwotherspoon](https://github.com/jackwotherspoon))
767
1148
 
768
- ### What's Changed
1149
+ ### What's changed
769
1150
 
770
1151
  - Use lenient MCP output schema validator by @cornmander in
771
1152
  https://github.com/google-gemini/gemini-cli/pull/13521
@@ -894,12 +1275,12 @@ https://github.com/google-gemini/gemini-cli/compare/v0.19.4...v0.20.0
894
1275
  [CONFLICTS] by @gemini-cli-robot in
895
1276
  https://github.com/google-gemini/gemini-cli/pull/14402
896
1277
 
897
- **Full Changelog**:
1278
+ **Full changelog**:
898
1279
  https://github.com/google-gemini/gemini-cli/compare/v0.18.4...v0.19.0
899
1280
 
900
1281
  ## Release v0.19.0-preview.0
901
1282
 
902
- ### What's Changed
1283
+ ### What's changed
903
1284
 
904
1285
  - Use lenient MCP output schema validator by @cornmander in
905
1286
  https://github.com/google-gemini/gemini-cli/pull/13521
@@ -1025,10 +1406,10 @@ https://github.com/google-gemini/gemini-cli/compare/v0.18.4...v0.19.0
1025
1406
  - Update dependency for modelcontextprotocol/sdk to 1.23.0 by @bbiggs in
1026
1407
  https://github.com/google-gemini/gemini-cli/pull/13827
1027
1408
 
1028
- **Full Changelog**:
1409
+ **Full changelog**:
1029
1410
  https://github.com/google-gemini/gemini-cli/compare/v0.18.0-preview.4...v0.19.0-preview.0
1030
1411
 
1031
- ## Release v0.18.0 - v0.18.4
1412
+ ## Release v0.18.0
1032
1413
 
1033
1414
  ### Highlights
1034
1415
 
@@ -1158,5 +1539,5 @@ https://github.com/google-gemini/gemini-cli/compare/v0.18.0-preview.4...v0.19.0-
1158
1539
  version v0.18.0-preview.3 and create version 0.18.0-preview.4 by
1159
1540
  @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/13826
1160
1541
 
1161
- **Full Changelog**:
1542
+ **Full changelog**:
1162
1543
  https://github.com/google-gemini/gemini-cli/compare/v0.17.1...v0.18.0
@@ -167,6 +167,13 @@ Slash commands provide meta-level control over the CLI itself.
167
167
  - **Note:** Only available if checkpointing is configured via
168
168
  [settings](../get-started/configuration.md). See
169
169
  [Checkpointing documentation](../cli/checkpointing.md) for more details.
170
+
171
+ - [**`/rewind`**](./rewind.md)
172
+ - **Description:** Browse and rewind previous interactions. Allows you to
173
+ rewind the conversation, revert file changes, or both. Provides an
174
+ interactive interface to select the exact point to rewind to.
175
+ - **Keyboard shortcut:** Press **Esc** twice.
176
+
170
177
  - **`/resume`**
171
178
  - **Description:** Browse and resume previous conversation sessions. Opens an
172
179
  interactive session browser where you can search, filter, and select from
@@ -19,6 +19,8 @@ available combinations.
19
19
  | ------------------------------------------- | ------------------------------------------------------------ |
20
20
  | Move the cursor to the start of the line. | `Ctrl + A`<br />`Home` |
21
21
  | Move the cursor to the end of the line. | `Ctrl + E`<br />`End` |
22
+ | Move the cursor up one line. | `Up Arrow (no Ctrl, no Cmd)` |
23
+ | Move the cursor down one line. | `Down Arrow (no Ctrl, no Cmd)` |
22
24
  | Move the cursor one character to the left. | `Left Arrow (no Ctrl, no Cmd)`<br />`Ctrl + B` |
23
25
  | Move the cursor one character to the right. | `Right Arrow (no Ctrl, no Cmd)`<br />`Ctrl + F` |
24
26
  | Move the cursor one word to the left. | `Ctrl + Left Arrow`<br />`Cmd + Left Arrow`<br />`Cmd + B` |
@@ -26,17 +28,17 @@ available combinations.
26
28
 
27
29
  #### Editing
28
30
 
29
- | Action | Keys |
30
- | ------------------------------------------------ | -------------------------------------------------------------------------------------------- |
31
- | Delete from the cursor to the end of the line. | `Ctrl + K` |
32
- | Delete from the cursor to the start of the line. | `Ctrl + U` |
33
- | Clear all text in the input field. | `Ctrl + C` |
34
- | Delete the previous word. | `Ctrl + Backspace`<br />`Cmd + Backspace`<br />`Ctrl + ""`<br />`Cmd + ""`<br />`Ctrl + W` |
35
- | Delete the next word. | `Ctrl + Delete`<br />`Cmd + Delete` |
36
- | Delete the character to the left. | `Backspace`<br />`""`<br />`Ctrl + H` |
37
- | Delete the character to the right. | `Delete`<br />`Ctrl + D` |
38
- | Undo the most recent text edit. | `Ctrl + Z (no Shift)` |
39
- | Redo the most recent undone text edit. | `Ctrl + Shift + Z` |
31
+ | Action | Keys |
32
+ | ------------------------------------------------ | --------------------------------------------------------- |
33
+ | Delete from the cursor to the end of the line. | `Ctrl + K` |
34
+ | Delete from the cursor to the start of the line. | `Ctrl + U` |
35
+ | Clear all text in the input field. | `Ctrl + C` |
36
+ | Delete the previous word. | `Ctrl + Backspace`<br />`Cmd + Backspace`<br />`Ctrl + W` |
37
+ | Delete the next word. | `Ctrl + Delete`<br />`Cmd + Delete` |
38
+ | Delete the character to the left. | `Backspace`<br />`Ctrl + H` |
39
+ | Delete the character to the right. | `Delete`<br />`Ctrl + D` |
40
+ | Undo the most recent text edit. | `Ctrl + Z (no Shift)` |
41
+ | Redo the most recent undone text edit. | `Ctrl + Shift + Z` |
40
42
 
41
43
  #### Screen Control
42
44
 
@@ -86,10 +88,10 @@ available combinations.
86
88
 
87
89
  #### Text Input
88
90
 
89
- | Action | Keys |
90
- | ------------------------------------ | ------------------------------------------------------------------------------------------- |
91
- | Submit the current prompt. | `Enter (no Ctrl, no Shift, no Cmd, not Paste)` |
92
- | Insert a newline without submitting. | `Ctrl + Enter`<br />`Cmd + Enter`<br />`Paste + Enter`<br />`Shift + Enter`<br />`Ctrl + J` |
91
+ | Action | Keys |
92
+ | ------------------------------------ | ---------------------------------------------------------------------- |
93
+ | Submit the current prompt. | `Enter (no Ctrl, no Shift, no Cmd)` |
94
+ | Insert a newline without submitting. | `Ctrl + Enter`<br />`Cmd + Enter`<br />`Shift + Enter`<br />`Ctrl + J` |
93
95
 
94
96
  #### External Tools
95
97
 
@@ -129,7 +131,7 @@ available combinations.
129
131
  - `!` on an empty prompt: Enter or exit shell mode.
130
132
  - `\` (at end of a line) + `Enter`: Insert a newline without leaving single-line
131
133
  mode.
132
- - `Esc` pressed twice quickly: Clear the current input buffer.
134
+ - `Esc` pressed twice quickly: Browse and rewind previous interactions.
133
135
  - `Up Arrow` / `Down Arrow`: When the cursor is at the top or bottom of a
134
136
  single-line input, navigate backward or forward through prompt history.
135
137
  - `Number keys (1-9, multi-digit)` inside selection dialogs: Jump directly to