@google/gemini-cli-core 0.26.0-preview.0 → 0.27.0-nightly.20260122.61040d0eb

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 (88) hide show
  1. package/dist/docs/changelogs/index.md +87 -0
  2. package/dist/docs/changelogs/latest.md +355 -150
  3. package/dist/docs/changelogs/preview.md +318 -210
  4. package/dist/docs/cli/commands.md +0 -6
  5. package/dist/docs/cli/keyboard-shortcuts.md +31 -31
  6. package/dist/docs/cli/settings.md +1 -1
  7. package/dist/docs/cli/system-prompt.md +32 -0
  8. package/dist/docs/get-started/configuration.md +3 -3
  9. package/dist/docs/hooks/index.md +2 -2
  10. package/dist/docs/sidebar.json +1 -5
  11. package/dist/google-gemini-cli-core-0.27.0-nightly.20260121.97aac696f.tgz +0 -0
  12. package/dist/src/config/config.d.ts +6 -0
  13. package/dist/src/config/config.js +17 -4
  14. package/dist/src/config/config.js.map +1 -1
  15. package/dist/src/config/config.test.js +2 -2
  16. package/dist/src/config/config.test.js.map +1 -1
  17. package/dist/src/confirmation-bus/types.d.ts +2 -0
  18. package/dist/src/core/client.js +1 -0
  19. package/dist/src/core/client.js.map +1 -1
  20. package/dist/src/core/client.test.js +9 -0
  21. package/dist/src/core/client.test.js.map +1 -1
  22. package/dist/src/core/coreToolHookTriggers.d.ts +1 -29
  23. package/dist/src/core/coreToolHookTriggers.js +7 -70
  24. package/dist/src/core/coreToolHookTriggers.js.map +1 -1
  25. package/dist/src/core/coreToolHookTriggers.test.js +62 -94
  26. package/dist/src/core/coreToolHookTriggers.test.js.map +1 -1
  27. package/dist/src/core/coreToolScheduler.test.js +3 -0
  28. package/dist/src/core/coreToolScheduler.test.js.map +1 -1
  29. package/dist/src/core/geminiChat.js +1 -0
  30. package/dist/src/core/geminiChat.js.map +1 -1
  31. package/dist/src/core/geminiChat.test.js +21 -0
  32. package/dist/src/core/geminiChat.test.js.map +1 -1
  33. package/dist/src/core/prompts-substitution.test.js +101 -0
  34. package/dist/src/core/prompts-substitution.test.js.map +1 -0
  35. package/dist/src/core/prompts.js +55 -20
  36. package/dist/src/core/prompts.js.map +1 -1
  37. package/dist/src/core/prompts.test.js +16 -0
  38. package/dist/src/core/prompts.test.js.map +1 -1
  39. package/dist/src/generated/git-commit.d.ts +2 -2
  40. package/dist/src/generated/git-commit.js +2 -2
  41. package/dist/src/generated/git-commit.js.map +1 -1
  42. package/dist/src/hooks/hookSystem.d.ts +45 -3
  43. package/dist/src/hooks/hookSystem.js +20 -3
  44. package/dist/src/hooks/hookSystem.js.map +1 -1
  45. package/dist/src/hooks/hookSystem.test.js +19 -8
  46. package/dist/src/hooks/hookSystem.test.js.map +1 -1
  47. package/dist/src/index.d.ts +1 -0
  48. package/dist/src/index.js +1 -0
  49. package/dist/src/index.js.map +1 -1
  50. package/dist/src/scheduler/state-manager.js +4 -0
  51. package/dist/src/scheduler/state-manager.js.map +1 -1
  52. package/dist/src/scheduler/state-manager.test.js +11 -0
  53. package/dist/src/scheduler/state-manager.test.js.map +1 -1
  54. package/dist/src/scheduler/tool-executor.js +2 -4
  55. package/dist/src/scheduler/tool-executor.js.map +1 -1
  56. package/dist/src/scheduler/tool-executor.test.js +1 -1
  57. package/dist/src/scheduler/tool-executor.test.js.map +1 -1
  58. package/dist/src/tools/confirmation-policy.test.js +1 -1
  59. package/dist/src/tools/confirmation-policy.test.js.map +1 -1
  60. package/dist/src/tools/edit.js +1 -1
  61. package/dist/src/tools/edit.js.map +1 -1
  62. package/dist/src/tools/edit.test.js +11 -3
  63. package/dist/src/tools/edit.test.js.map +1 -1
  64. package/dist/src/tools/write-file.test.js +7 -7
  65. package/dist/src/tools/write-file.test.js.map +1 -1
  66. package/dist/src/utils/editCorrector.js +1 -1
  67. package/dist/src/utils/editCorrector.js.map +1 -1
  68. package/dist/src/utils/editor.test.js +2 -0
  69. package/dist/src/utils/editor.test.js.map +1 -1
  70. package/dist/src/utils/memoryImportProcessor.js +7 -24
  71. package/dist/src/utils/memoryImportProcessor.js.map +1 -1
  72. package/dist/src/utils/workspaceContext.d.ts +15 -0
  73. package/dist/src/utils/workspaceContext.js +32 -11
  74. package/dist/src/utils/workspaceContext.js.map +1 -1
  75. package/dist/src/utils/workspaceContext.test.js +55 -0
  76. package/dist/src/utils/workspaceContext.test.js.map +1 -1
  77. package/dist/tsconfig.tsbuildinfo +1 -1
  78. package/package.json +1 -1
  79. package/dist/docs/changelogs/releases.md +0 -1543
  80. package/dist/src/core/clientHookTriggers.d.ts +0 -36
  81. package/dist/src/core/clientHookTriggers.js +0 -76
  82. package/dist/src/core/clientHookTriggers.js.map +0 -1
  83. package/dist/src/core/geminiChatHookTriggers.d.ts +0 -68
  84. package/dist/src/core/geminiChatHookTriggers.js +0 -158
  85. package/dist/src/core/geminiChatHookTriggers.js.map +0 -1
  86. package/dist/src/core/geminiChatHookTriggers.test.js +0 -153
  87. package/dist/src/core/geminiChatHookTriggers.test.js.map +0 -1
  88. /package/dist/src/core/{geminiChatHookTriggers.test.d.ts → prompts-substitution.test.d.ts} +0 -0
@@ -1,6 +1,6 @@
1
- # Preview release: Release v0.24.0-preview.0
1
+ # Preview release: Release v0.26.0-preview.0
2
2
 
3
- Released: January 6, 2026
3
+ Released: January 21, 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).
@@ -11,214 +11,322 @@ To install the preview release:
11
11
  npm install -g @google/gemini-cli@preview
12
12
  ```
13
13
 
14
- ## What's changed
14
+ ## Highlights
15
15
 
16
- - chore(core): refactor model resolution and cleanup fallback logic by
17
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15228
18
- - Add Folder Trust Support To Hooks by @sehoon38 in
19
- https://github.com/google-gemini/gemini-cli/pull/15325
20
- - Record timestamp with code assist metrics. by @gundermanc in
21
- https://github.com/google-gemini/gemini-cli/pull/15439
22
- - feat(policy): implement dynamic mode-aware policy evaluation by @abhipatel12
23
- in https://github.com/google-gemini/gemini-cli/pull/15307
24
- - fix(core): use debugLogger.debug for startup profiler logs by @NTaylorMullen
25
- in https://github.com/google-gemini/gemini-cli/pull/15443
26
- - feat(ui): Add security warning and improve layout for Hooks list by
27
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15440
28
- - fix #15369, prevent crash on unhandled EIO error in readStdin cleanup by
29
- @ElecTwix in https://github.com/google-gemini/gemini-cli/pull/15410
30
- - chore: improve error messages for --resume by @jackwotherspoon in
31
- https://github.com/google-gemini/gemini-cli/pull/15360
32
- - chore: remove clipboard file by @jackwotherspoon in
33
- https://github.com/google-gemini/gemini-cli/pull/15447
34
- - Implemented unified secrets sanitization and env. redaction options by
35
- @gundermanc in https://github.com/google-gemini/gemini-cli/pull/15348
36
- - feat: automatic `/model` persistence across Gemini CLI sessions by @niyasrad
37
- in https://github.com/google-gemini/gemini-cli/pull/13199
38
- - refactor(core): remove deprecated permission aliases from BeforeToolHookOutput
39
- by @StoyanD in https://github.com/google-gemini/gemini-cli/pull/14855
40
- - fix: add missing `type` field to MCPServerConfig by @jackwotherspoon in
41
- https://github.com/google-gemini/gemini-cli/pull/15465
42
- - Make schema validation errors non-fatal by @jacob314 in
43
- https://github.com/google-gemini/gemini-cli/pull/15487
44
- - chore: limit MCP resources display to 10 by default by @jackwotherspoon in
45
- https://github.com/google-gemini/gemini-cli/pull/15489
46
- - Add experimental in-CLI extension install and uninstall subcommands by
47
- @chrstnb in https://github.com/google-gemini/gemini-cli/pull/15178
48
- - feat: Add A2A Client Manager and tests by @adamfweidman in
49
- https://github.com/google-gemini/gemini-cli/pull/15485
50
- - feat: terse transformations of image paths in text buffer by @psinha40898 in
51
- https://github.com/google-gemini/gemini-cli/pull/4924
52
- - Security: Project-level hook warnings by @sehoon38 in
53
- https://github.com/google-gemini/gemini-cli/pull/15470
54
- - Added modifyOtherKeys protocol support for tmux by @ved015 in
55
- https://github.com/google-gemini/gemini-cli/pull/15524
56
- - chore(core): fix comment typo by @Mapleeeeeeeeeee in
57
- https://github.com/google-gemini/gemini-cli/pull/15558
58
- - feat: Show snowfall animation for holiday theme by @sehoon38 in
59
- https://github.com/google-gemini/gemini-cli/pull/15494
60
- - do not persist the fallback model by @sehoon38 in
61
- https://github.com/google-gemini/gemini-cli/pull/15483
62
- - Resolve unhandled promise rejection in ide-client.ts by @Adib234 in
63
- https://github.com/google-gemini/gemini-cli/pull/15587
64
- - fix(core): handle checkIsRepo failure in GitService.initialize by
65
- @Mapleeeeeeeeeee in https://github.com/google-gemini/gemini-cli/pull/15574
66
- - fix(cli): add enableShellOutputEfficiency to settings schema by
67
- @Mapleeeeeeeeeee in https://github.com/google-gemini/gemini-cli/pull/15560
68
- - Manual nightly version bump to 0.24.0-nightly.20251226.546baf993 by @galz10 in
69
- https://github.com/google-gemini/gemini-cli/pull/15594
70
- - refactor(core): extract static concerns from CoreToolScheduler by @abhipatel12
71
- in https://github.com/google-gemini/gemini-cli/pull/15589
72
- - fix(core): enable granular shell command allowlisting in policy engine by
73
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15601
74
- - chore/release: bump version to 0.24.0-nightly.20251227.37be16243 by
75
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15612
76
- - refactor: deprecate legacy confirmation settings and enforce Policy Engine by
77
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15626
78
- - Migrate console to coreEvents.emitFeedback or debugLogger by @Adib234 in
79
- https://github.com/google-gemini/gemini-cli/pull/15219
80
- - Exponential back-off retries for retryable error without a specified … by
81
- @sehoon38 in https://github.com/google-gemini/gemini-cli/pull/15684
82
- - feat(agents): add support for remote agents and multi-agent TOML files by
83
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15437
84
- - Update wittyPhrases.ts by @segyges in
85
- https://github.com/google-gemini/gemini-cli/pull/15697
86
- - refactor(auth): Refactor non-interactive mode auth validation & refresh by
87
- @skeshive in https://github.com/google-gemini/gemini-cli/pull/15679
88
- - Revert "Update wittyPhrases.ts (#15697)" by @abhipatel12 in
89
- https://github.com/google-gemini/gemini-cli/pull/15719
90
- - fix(hooks): deduplicate agent hooks and add cross-platform integration tests
91
- by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15701
92
- - Implement support for tool input modification by @gundermanc in
93
- https://github.com/google-gemini/gemini-cli/pull/15492
94
- - Add instructions to the extensions update info notification by @chrstnb in
95
- https://github.com/google-gemini/gemini-cli/pull/14907
96
- - Add extension settings info to /extensions list by @chrstnb in
97
- https://github.com/google-gemini/gemini-cli/pull/14905
98
- - Agent Skills: Implement Core Skill Infrastructure & Tiered Discovery by
99
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15698
100
- - chore: remove cot style comments by @abhipatel12 in
101
- https://github.com/google-gemini/gemini-cli/pull/15735
102
- - feat(agents): Add remote agents to agent registry by @sehoon38 in
103
- https://github.com/google-gemini/gemini-cli/pull/15711
104
- - feat(hooks): implement STOP_EXECUTION and enhance hook decision handling by
105
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15685
106
- - Fix build issues caused by year-specific linter rule by @gundermanc in
107
- https://github.com/google-gemini/gemini-cli/pull/15780
108
- - fix(core): handle unhandled promise rejection in mcp-client-manager by
109
- @kamja44 in https://github.com/google-gemini/gemini-cli/pull/14701
110
- - log fallback mode by @sehoon38 in
111
- https://github.com/google-gemini/gemini-cli/pull/15817
112
- - Agent Skills: Implement Autonomous Activation Tool & Context Injection by
113
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15725
114
- - fix(core): improve shell command with redirection detection by @galz10 in
115
- https://github.com/google-gemini/gemini-cli/pull/15683
116
- - Add security docs by @abhipatel12 in
117
- https://github.com/google-gemini/gemini-cli/pull/15739
118
- - feat: add folder suggestions to `/dir add` command by @jackwotherspoon in
119
- https://github.com/google-gemini/gemini-cli/pull/15724
120
- - Agent Skills: Implement Agent Integration and System Prompt Awareness by
121
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15728
122
- - chore: cleanup old smart edit settings by @abhipatel12 in
123
- https://github.com/google-gemini/gemini-cli/pull/15832
124
- - Agent Skills: Status Bar Integration for Skill Counts by @NTaylorMullen in
125
- https://github.com/google-gemini/gemini-cli/pull/15741
126
- - fix(core): mock powershell output in shell-utils test by @galz10 in
127
- https://github.com/google-gemini/gemini-cli/pull/15831
128
- - Agent Skills: Unify Representation & Centralize Loading by @NTaylorMullen in
129
- https://github.com/google-gemini/gemini-cli/pull/15833
130
- - Unify shell security policy and remove legacy logic by @abhipatel12 in
131
- https://github.com/google-gemini/gemini-cli/pull/15770
132
- - feat(core): restore MessageBus optionality for soft migration (Phase 1) by
133
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15774
134
- - feat(core): Standardize Tool and Agent Invocation constructors (Phase 2) by
135
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15775
136
- - feat(core,cli): enforce mandatory MessageBus injection (Phase 3 Hard
137
- Migration) by @abhipatel12 in
138
- https://github.com/google-gemini/gemini-cli/pull/15776
139
- - Agent Skills: Extension Support & Security Disclosure by @NTaylorMullen in
140
- https://github.com/google-gemini/gemini-cli/pull/15834
141
- - feat(hooks): implement granular stop and block behavior for agent hooks by
142
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15824
143
- - Agent Skills: Add gemini skills CLI management command by @NTaylorMullen in
144
- https://github.com/google-gemini/gemini-cli/pull/15837
145
- - refactor: consolidate EditTool and SmartEditTool by @abhipatel12 in
146
- https://github.com/google-gemini/gemini-cli/pull/15857
147
- - fix(cli): mock fs.readdir in consent tests for Windows compatibility by
148
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15904
149
- - refactor(core): Extract and integrate ToolExecutor by @abhipatel12 in
150
- https://github.com/google-gemini/gemini-cli/pull/15900
151
- - Fix terminal hang when user exits browser without logging in by @gundermanc in
152
- https://github.com/google-gemini/gemini-cli/pull/15748
153
- - fix: avoid SDK warning by not accessing .text getter in logging by @ved015 in
154
- https://github.com/google-gemini/gemini-cli/pull/15706
155
- - Make default settings apply by @devr0306 in
156
- https://github.com/google-gemini/gemini-cli/pull/15354
157
- - chore: rename smart-edit to edit by @abhipatel12 in
158
- https://github.com/google-gemini/gemini-cli/pull/15923
159
- - Opt-in to persist model from /model by @sehoon38 in
160
- https://github.com/google-gemini/gemini-cli/pull/15820
161
- - fix: prevent /copy crash on Windows by skipping /dev/tty by @ManojINaik in
162
- https://github.com/google-gemini/gemini-cli/pull/15657
163
- - Support context injection via SessionStart hook. by @gundermanc in
164
- https://github.com/google-gemini/gemini-cli/pull/15746
165
- - Fix order of preflight by @scidomino in
166
- https://github.com/google-gemini/gemini-cli/pull/15941
167
- - Fix failing unit tests by @gundermanc in
168
- https://github.com/google-gemini/gemini-cli/pull/15940
169
- - fix(cli): resolve paste issue on Windows terminals. by @scidomino in
170
- https://github.com/google-gemini/gemini-cli/pull/15932
171
- - Agent Skills: Implement /skills reload by @NTaylorMullen in
172
- https://github.com/google-gemini/gemini-cli/pull/15865
173
- - Add setting to support OSC 52 paste by @scidomino in
174
- https://github.com/google-gemini/gemini-cli/pull/15336
175
- - remove manual string when displaying manual model in the footer by @sehoon38
176
- in https://github.com/google-gemini/gemini-cli/pull/15967
177
- - fix(core): use correct interactive check for system prompt by @ppergame in
178
- https://github.com/google-gemini/gemini-cli/pull/15020
179
- - Inform user of missing settings on extensions update by @chrstnb in
180
- https://github.com/google-gemini/gemini-cli/pull/15944
181
- - feat(policy): allow 'modes' in user and admin policies by @NTaylorMullen in
182
- https://github.com/google-gemini/gemini-cli/pull/15977
183
- - fix: default folder trust to untrusted for enhanced security by @galz10 in
184
- https://github.com/google-gemini/gemini-cli/pull/15943
185
- - Add description for each settings item in /settings by @sehoon38 in
186
- https://github.com/google-gemini/gemini-cli/pull/15936
187
- - Use GetOperation to poll for OnboardUser completion by @ishaanxgupta in
188
- https://github.com/google-gemini/gemini-cli/pull/15827
189
- - Agent Skills: Add skill directory to WorkspaceContext upon activation by
190
- @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15870
191
- - Fix settings command fallback by @chrstnb in
192
- https://github.com/google-gemini/gemini-cli/pull/15926
193
- - fix: writeTodo construction by @scidomino in
194
- https://github.com/google-gemini/gemini-cli/pull/16014
195
- - properly disable keyboard modes on exit by @scidomino in
196
- https://github.com/google-gemini/gemini-cli/pull/16006
197
- - Add workflow to label child issues for rollup by @bdmorgan in
198
- https://github.com/google-gemini/gemini-cli/pull/16002
199
- - feat(ui): add visual indicators for hook execution by @abhipatel12 in
200
- https://github.com/google-gemini/gemini-cli/pull/15408
201
- - fix: image token estimation by @jackwotherspoon in
202
- https://github.com/google-gemini/gemini-cli/pull/16004
203
- - feat(hooks): Add a hooks.enabled setting. by @joshualitt in
204
- https://github.com/google-gemini/gemini-cli/pull/15933
205
- - feat(admin): Introduce remote admin settings & implement
206
- secureModeEnabled/mcpEnabled by @skeshive in
207
- https://github.com/google-gemini/gemini-cli/pull/15935
208
- - Remove trailing whitespace in yaml. by @joshualitt in
209
- https://github.com/google-gemini/gemini-cli/pull/16036
210
- - feat(agents): add support for remote agents by @adamfweidman in
211
- https://github.com/google-gemini/gemini-cli/pull/16013
212
- - fix: limit scheduled issue triage queries to prevent argument list too long
213
- error by @jerop in https://github.com/google-gemini/gemini-cli/pull/16021
214
- - ci(github-actions): triage all new issues automatically by @jerop in
215
- https://github.com/google-gemini/gemini-cli/pull/16018
216
- - Fix test. by @gundermanc in
217
- https://github.com/google-gemini/gemini-cli/pull/16011
218
- - fix: hide broken skills object from settings dialog by @korade-krushna in
219
- https://github.com/google-gemini/gemini-cli/pull/15766
220
- - Agent Skills: Initial Documentation & Tutorial by @NTaylorMullen in
221
- https://github.com/google-gemini/gemini-cli/pull/15869
16
+ - **Skills and Agents:** Improvements to the `activate_skill` tool and skill
17
+ management. Experimental Agent Skills support.
18
+ - **UI/UX:** Addition of a Rewind Confirmation dialog and Viewer component.
19
+ - **Extensions:** Experimental setting for extension configuration.
20
+ - **Bug Fixes and Stability:** PDF token estimation fix and improvements to
21
+ scheduled issue triage.
22
+
23
+ ## What's Changed
24
+
25
+ - fix: PDF token estimation
26
+ ([#16494](https://github.com/google-gemini/gemini-cli/pull/16494)) by
27
+ @korade-krushna in
28
+ [#16527](https://github.com/google-gemini/gemini-cli/pull/16527)
29
+ - chore(release): bump version to 0.26.0-nightly.20260114.bb6c57414 by
30
+ @gemini-cli-robot in
31
+ [#16604](https://github.com/google-gemini/gemini-cli/pull/16604)
32
+ - docs: clarify F12 to open debug console by @jackwotherspoon in
33
+ [#16570](https://github.com/google-gemini/gemini-cli/pull/16570)
34
+ - docs: Remove .md extension from internal links in architecture.md by
35
+ @medic-code in
36
+ [#12899](https://github.com/google-gemini/gemini-cli/pull/12899)
37
+ - Add an experimental setting for extension config by @chrstnb in
38
+ [#16506](https://github.com/google-gemini/gemini-cli/pull/16506)
39
+ - feat: add Rewind Confirmation dialog and Rewind Viewer component by @Adib234
40
+ in [#15717](https://github.com/google-gemini/gemini-cli/pull/15717)
41
+ - fix(a2a): Don't throw errors for GeminiEventType Retry and InvalidStream. by
42
+ @ehedlund in [#16541](https://github.com/google-gemini/gemini-cli/pull/16541)
43
+ - prefactor: add rootCommands as array so it can be used for policy parsing by
44
+ @abhipatel12 in
45
+ [#16640](https://github.com/google-gemini/gemini-cli/pull/16640)
46
+ - remove unnecessary \x7f key bindings by @scidomino in
47
+ [#16646](https://github.com/google-gemini/gemini-cli/pull/16646)
48
+ - docs(skills): use body-file in pr-creator skill for better reliability by
49
+ @abhipatel12 in
50
+ [#16642](https://github.com/google-gemini/gemini-cli/pull/16642)
51
+ - chore(automation): recursive labeling for workstream descendants by @bdmorgan
52
+ in [#16609](https://github.com/google-gemini/gemini-cli/pull/16609)
53
+ - feat: introduce 'skill-creator' built-in skill and CJS management tools by
54
+ @NTaylorMullen in
55
+ [#16394](https://github.com/google-gemini/gemini-cli/pull/16394)
56
+ - chore(automation): remove automated PR size and complexity labeler by
57
+ @bdmorgan in [#16648](https://github.com/google-gemini/gemini-cli/pull/16648)
58
+ - refactor(skills): replace 'project' with 'workspace' scope by @NTaylorMullen
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
89
+ @NTaylorMullen in
90
+ [#16549](https://github.com/google-gemini/gemini-cli/pull/16549)
91
+ - fix: replace 3 consecutive periods with ellipsis character by @Vist233 in
92
+ [#16587](https://github.com/google-gemini/gemini-cli/pull/16587)
93
+ - chore(automation): ensure status/need-triage is applied and never cleared
94
+ automatically by @bdmorgan in
95
+ [#16657](https://github.com/google-gemini/gemini-cli/pull/16657)
96
+ - fix: Handle colons in skill description frontmatter by @maru0804 in
97
+ [#16345](https://github.com/google-gemini/gemini-cli/pull/16345)
98
+ - refactor(core): harden skill frontmatter parsing by @NTaylorMullen in
99
+ [#16705](https://github.com/google-gemini/gemini-cli/pull/16705)
100
+ - feat(skills): add conflict detection and warnings for skill overrides by
101
+ @NTaylorMullen in
102
+ [#16709](https://github.com/google-gemini/gemini-cli/pull/16709)
103
+ - feat(scheduler): add SchedulerStateManager for reactive tool state by
104
+ @abhipatel12 in
105
+ [#16651](https://github.com/google-gemini/gemini-cli/pull/16651)
106
+ - chore(automation): enforce 'help wanted' label permissions and update
107
+ guidelines by @bdmorgan in
108
+ [#16707](https://github.com/google-gemini/gemini-cli/pull/16707)
109
+ - fix(core): resolve circular dependency via tsconfig paths by @sehoon38 in
110
+ [#16730](https://github.com/google-gemini/gemini-cli/pull/16730)
111
+ - chore/release: bump version to 0.26.0-nightly.20260115.6cb3ae4e0 by
112
+ @gemini-cli-robot in
113
+ [#16738](https://github.com/google-gemini/gemini-cli/pull/16738)
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
166
+ @NTaylorMullen in
167
+ [#16782](https://github.com/google-gemini/gemini-cli/pull/16782)
168
+ - fix(core): fix PTY descriptor shell leak by @galz10 in
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
199
+ @abhipatel12 in
200
+ [#16804](https://github.com/google-gemini/gemini-cli/pull/16804)
201
+ - Don't commit unless user asks us to. by @gundermanc in
202
+ [#16902](https://github.com/google-gemini/gemini-cli/pull/16902)
203
+ - chore: remove a2a-adapter and bump @a2a-js/sdk to 0.3.8 by @adamfweidman in
204
+ [#16800](https://github.com/google-gemini/gemini-cli/pull/16800)
205
+ - fix: Show experiment values in settings UI for compressionThreshold by
206
+ @ishaanxgupta in
207
+ [#16267](https://github.com/google-gemini/gemini-cli/pull/16267)
208
+ - feat(cli): replace relative keyboard shortcuts link with web URL by
209
+ @imaliabbas in
210
+ [#16479](https://github.com/google-gemini/gemini-cli/pull/16479)
211
+ - fix(core): resolve PKCE length issue and stabilize OAuth redirect port by
212
+ @sehoon38 in [#16815](https://github.com/google-gemini/gemini-cli/pull/16815)
213
+ - Delete rewind documentation for now by @Adib234 in
214
+ [#16932](https://github.com/google-gemini/gemini-cli/pull/16932)
215
+ - Stabilize skill-creator CI and package format by @NTaylorMullen in
216
+ [#17001](https://github.com/google-gemini/gemini-cli/pull/17001)
217
+ - Stabilize the git evals by @gundermanc in
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
243
+ @abhipatel12 in
244
+ [#17044](https://github.com/google-gemini/gemini-cli/pull/17044)
245
+ - fix(ui): ensure rationale renders before tool calls by @NTaylorMullen in
246
+ [#17043](https://github.com/google-gemini/gemini-cli/pull/17043)
247
+ - fix(workflows): use author_association for maintainer check by @bdmorgan in
248
+ [#17060](https://github.com/google-gemini/gemini-cli/pull/17060)
249
+ - fix return type of fireSessionStartEvent to defaultHookOutput by @ved015 in
250
+ [#16833](https://github.com/google-gemini/gemini-cli/pull/16833)
251
+ - feat(cli): add experiment gate for event-driven scheduler by @abhipatel12 in
252
+ [#17055](https://github.com/google-gemini/gemini-cli/pull/17055)
253
+ - feat(core): improve shell redirection transparency and security by
254
+ @NTaylorMullen in
255
+ [#16486](https://github.com/google-gemini/gemini-cli/pull/16486)
256
+ - fix(core): deduplicate ModelInfo emission in GeminiClient by @NTaylorMullen in
257
+ [#17075](https://github.com/google-gemini/gemini-cli/pull/17075)
258
+ - docs(themes): remove unsupported DiffModified color key by @jw409 in
259
+ [#17073](https://github.com/google-gemini/gemini-cli/pull/17073)
260
+ - fix: update currentSequenceModel when modelChanged by @adamfweidman in
261
+ [#17051](https://github.com/google-gemini/gemini-cli/pull/17051)
262
+ - feat(core): enhanced anchored iterative context compression with
263
+ self-verification by @rmedranollamas in
264
+ [#15710](https://github.com/google-gemini/gemini-cli/pull/15710)
265
+ - Fix mcp instructions by @chrstnb in
266
+ [#16439](https://github.com/google-gemini/gemini-cli/pull/16439)
267
+ - [A2A] Disable checkpointing if git is not installed by @cocosheng-g in
268
+ [#16896](https://github.com/google-gemini/gemini-cli/pull/16896)
269
+ - feat(admin): set admin.skills.enabled based on advancedFeaturesEnabled setting
270
+ by @skeshive in
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
277
+ @SandyTao520 in
278
+ [#16493](https://github.com/google-gemini/gemini-cli/pull/16493)
279
+ - fix: migrate BeforeModel and AfterModel hooks to HookSystem by @ved015 in
280
+ [#16599](https://github.com/google-gemini/gemini-cli/pull/16599)
281
+ - feat(admin): apply admin settings to gemini skills/mcp/extensions commands by
282
+ @skeshive in [#17102](https://github.com/google-gemini/gemini-cli/pull/17102)
283
+ - fix(core): update telemetry token count after session resume by @psinha40898
284
+ in [#15491](https://github.com/google-gemini/gemini-cli/pull/15491)
285
+ - Demote the subagent test to nightly by @gundermanc in
286
+ [#17105](https://github.com/google-gemini/gemini-cli/pull/17105)
287
+ - feat(plan): telemetry to track adoption and usage of plan mode by @Adib234 in
288
+ [#16863](https://github.com/google-gemini/gemini-cli/pull/16863)
289
+ - feat: Add flash lite utility fallback chain by @adamfweidman in
290
+ [#17056](https://github.com/google-gemini/gemini-cli/pull/17056)
291
+ - Fixes Windows crash: "Cannot resize a pty that has already exited" by @dzammit
292
+ in [#15757](https://github.com/google-gemini/gemini-cli/pull/15757)
293
+ - feat(core): Add initial eval for generalist agent. by @joshualitt in
294
+ [#16856](https://github.com/google-gemini/gemini-cli/pull/16856)
295
+ - feat(core): unify agent enabled and disabled flags by @SandyTao520 in
296
+ [#17127](https://github.com/google-gemini/gemini-cli/pull/17127)
297
+ - fix(core): resolve auto model in default strategy by @sehoon38 in
298
+ [#17116](https://github.com/google-gemini/gemini-cli/pull/17116)
299
+ - docs: update project context and pr-creator workflow by @NTaylorMullen in
300
+ [#17119](https://github.com/google-gemini/gemini-cli/pull/17119)
301
+ - fix(cli): send gemini-cli version as mcp client version by @dsp in
302
+ [#13407](https://github.com/google-gemini/gemini-cli/pull/13407)
303
+ - fix(cli): resolve Ctrl+Enter and Ctrl+J newline issues by @imadraude in
304
+ [#17021](https://github.com/google-gemini/gemini-cli/pull/17021)
305
+ - Remove missing sidebar item by @chrstnb in
306
+ [#17145](https://github.com/google-gemini/gemini-cli/pull/17145)
307
+ - feat(core): Ensure all properties in hooks object are event names. by
308
+ @joshualitt in
309
+ [#16870](https://github.com/google-gemini/gemini-cli/pull/16870)
310
+ - fix(cli): fix newline support broken in previous PR by @scidomino in
311
+ [#17159](https://github.com/google-gemini/gemini-cli/pull/17159)
312
+ - Add interactive ValidationDialog for handling 403 VALIDATION_REQUIRED errors.
313
+ by @gsquared94 in
314
+ [#16231](https://github.com/google-gemini/gemini-cli/pull/16231)
315
+ - Add Esc-Esc to clear prompt when it's not empty by @Adib234 in
316
+ [#17131](https://github.com/google-gemini/gemini-cli/pull/17131)
317
+ - Avoid spurious warnings about unexpected renders triggered by appEvents and
318
+ coreEvents. by @jacob314 in
319
+ [#17160](https://github.com/google-gemini/gemini-cli/pull/17160)
320
+ - fix(cli): resolve home/end keybinding conflict by @scidomino in
321
+ [#17124](https://github.com/google-gemini/gemini-cli/pull/17124)
322
+ - fix(cli): display 'http' type on mcp list by @pamanta in
323
+ [#16915](https://github.com/google-gemini/gemini-cli/pull/16915)
324
+ - fix bad fallback logic external editor logic by @scidomino in
325
+ [#17166](https://github.com/google-gemini/gemini-cli/pull/17166)
326
+ - Fix bug where System scopes weren't migrated. by @jacob314 in
327
+ [#17174](https://github.com/google-gemini/gemini-cli/pull/17174)
328
+ - Fix mcp tool lookup in tool registry by @werdnum in
329
+ [#17054](https://github.com/google-gemini/gemini-cli/pull/17054)
222
330
 
223
331
  **Full changelog**:
224
- https://github.com/google-gemini/gemini-cli/compare/v0.23.0-preview.6...v0.24.0-preview.0
332
+ https://github.com/google-gemini/gemini-cli/compare/v0.25.0-preview.4...v0.26.0-preview.0
@@ -168,12 +168,6 @@ Slash commands provide meta-level control over the CLI itself.
168
168
  [settings](../get-started/configuration.md). See
169
169
  [Checkpointing documentation](../cli/checkpointing.md) for more details.
170
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
-
177
171
  - **`/resume`**
178
172
  - **Description:** Browse and resume previous conversation sessions. Opens an
179
173
  interactive session browser where you can search, filter, and select from