@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
|
-
# Latest stable release: v0.
|
|
1
|
+
# Latest stable release: v0.26.0
|
|
2
2
|
|
|
3
|
-
Released: January
|
|
3
|
+
Released: January 27, 2026
|
|
4
4
|
|
|
5
5
|
For most users, our latest stable release is the recommended release. Install
|
|
6
6
|
the latest stable version with:
|
|
@@ -11,360 +11,328 @@ npm install -g @google/gemini-cli
|
|
|
11
11
|
|
|
12
12
|
## Highlights
|
|
13
13
|
|
|
14
|
-
- **
|
|
15
|
-
`
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
- **
|
|
23
|
-
|
|
24
|
-
|
|
14
|
+
- **Enhanced Agent and Skill Capabilities:** This release introduces the new
|
|
15
|
+
`skill-creator` built-in skill, enables Agent Skills by default, and adds a
|
|
16
|
+
generalist agent to improve task routing. Security for skill installation has
|
|
17
|
+
also been enhanced with new consent prompts.
|
|
18
|
+
- **Improved UI and UX:** A new "Rewind" feature lets you walk back through
|
|
19
|
+
conversation history. We've also added an `/introspect` command for debugging
|
|
20
|
+
and unified various shell confirmation dialogs for a more consistent user
|
|
21
|
+
experience.
|
|
22
|
+
- **Core Stability and Performance:** This release includes significant
|
|
23
|
+
performance improvements, including a fix for PDF token estimation,
|
|
24
|
+
optimizations for large inputs, and prevention of OOM crashes. Key memory
|
|
25
|
+
management components like `LRUCache` have also been updated.
|
|
26
|
+
- **Scheduler and Policy Refactoring:** The core tool scheduler has been
|
|
27
|
+
decoupled into distinct orchestration, policy, and confirmation components,
|
|
28
|
+
and we've added an experimental event-driven scheduler to improve performance
|
|
29
|
+
and reliability.
|
|
25
30
|
|
|
26
31
|
## What's Changed
|
|
27
32
|
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
- Add initiation method telemetry property by @gundermanc in
|
|
32
|
-
[#15818](https://github.com/google-gemini/gemini-cli/pull/15818)
|
|
33
|
-
- chore(release): bump version to 0.25.0-nightly.20260107.59a18e710 by
|
|
33
|
+
- fix: PDF token estimation (#16494) by @korade-krushna in
|
|
34
|
+
[#16527](https://github.com/google-gemini/gemini-cli/pull/16527)
|
|
35
|
+
- chore(release): bump version to 0.26.0-nightly.20260114.bb6c57414 by
|
|
34
36
|
@gemini-cli-robot in
|
|
35
|
-
[#
|
|
36
|
-
-
|
|
37
|
-
[#
|
|
38
|
-
-
|
|
39
|
-
@
|
|
40
|
-
[#
|
|
41
|
-
-
|
|
42
|
-
[#
|
|
43
|
-
-
|
|
44
|
-
[#
|
|
45
|
-
-
|
|
37
|
+
[#16604](https://github.com/google-gemini/gemini-cli/pull/16604)
|
|
38
|
+
- docs: clarify F12 to open debug console by @jackwotherspoon in
|
|
39
|
+
[#16570](https://github.com/google-gemini/gemini-cli/pull/16570)
|
|
40
|
+
- docs: Remove .md extension from internal links in architecture.md by
|
|
41
|
+
@medic-code in
|
|
42
|
+
[#12899](https://github.com/google-gemini/gemini-cli/pull/12899)
|
|
43
|
+
- Add an experimental setting for extension config by @chrstnb in
|
|
44
|
+
[#16506](https://github.com/google-gemini/gemini-cli/pull/16506)
|
|
45
|
+
- feat: add Rewind Confirmation dialog and Rewind Viewer component by @Adib234
|
|
46
|
+
in [#15717](https://github.com/google-gemini/gemini-cli/pull/15717)
|
|
47
|
+
- fix(a2a): Don't throw errors for GeminiEventType Retry and InvalidStream. by
|
|
48
|
+
@ehedlund in [#16541](https://github.com/google-gemini/gemini-cli/pull/16541)
|
|
49
|
+
- prefactor: add rootCommands as array so it can be used for policy parsing by
|
|
46
50
|
@abhipatel12 in
|
|
47
|
-
[#
|
|
48
|
-
-
|
|
49
|
-
[#
|
|
50
|
-
-
|
|
51
|
-
in
|
|
52
|
-
-
|
|
53
|
-
|
|
54
|
-
-
|
|
55
|
-
|
|
56
|
-
- feat(admin): implement extensions disabled by @skeshive in
|
|
57
|
-
[#16024](https://github.com/google-gemini/gemini-cli/pull/16024)
|
|
58
|
-
- Core data structure updates for Rewind functionality by @Adib234 in
|
|
59
|
-
[#15714](https://github.com/google-gemini/gemini-cli/pull/15714)
|
|
60
|
-
- feat(hooks): simplify hook firing with HookSystem wrapper methods by @ved015
|
|
61
|
-
in [#15982](https://github.com/google-gemini/gemini-cli/pull/15982)
|
|
62
|
-
- Add exp.gws_experiment field to LogEventEntry by @gsquared94 in
|
|
63
|
-
[#16062](https://github.com/google-gemini/gemini-cli/pull/16062)
|
|
64
|
-
- Revert "feat(admin): implement extensions disabled" by @chrstnb in
|
|
65
|
-
[#16082](https://github.com/google-gemini/gemini-cli/pull/16082)
|
|
66
|
-
- feat(core): Decouple enabling hooks UI from subsystem. by @joshualitt in
|
|
67
|
-
[#16074](https://github.com/google-gemini/gemini-cli/pull/16074)
|
|
68
|
-
- docs: add docs for hooks + extensions by @abhipatel12 in
|
|
69
|
-
[#16073](https://github.com/google-gemini/gemini-cli/pull/16073)
|
|
70
|
-
- feat(core): Preliminary changes for subagent model routing. by @joshualitt in
|
|
71
|
-
[#16035](https://github.com/google-gemini/gemini-cli/pull/16035)
|
|
72
|
-
- Optimize CI workflow: Parallelize jobs and cache linters by @NTaylorMullen in
|
|
73
|
-
[#16054](https://github.com/google-gemini/gemini-cli/pull/16054)
|
|
74
|
-
- Add option to fallback for capacity errors in ProQuotaDi… by @sehoon38 in
|
|
75
|
-
[#16050](https://github.com/google-gemini/gemini-cli/pull/16050)
|
|
76
|
-
- feat: add confirmation details support + jsonrpc vs http rest support by
|
|
77
|
-
@adamfweidman in
|
|
78
|
-
[#16079](https://github.com/google-gemini/gemini-cli/pull/16079)
|
|
79
|
-
- fix(workflows): fix and limit labels for pr-triage.sh script by @jacob314 in
|
|
80
|
-
[#16096](https://github.com/google-gemini/gemini-cli/pull/16096)
|
|
81
|
-
- Fix and rename introspection agent -> cli help agent by @scidomino in
|
|
82
|
-
[#16097](https://github.com/google-gemini/gemini-cli/pull/16097)
|
|
83
|
-
- Docs: Changelogs update 20260105 by @jkcinouye in
|
|
84
|
-
[#15937](https://github.com/google-gemini/gemini-cli/pull/15937)
|
|
85
|
-
- enable cli_help agent by default by @scidomino in
|
|
86
|
-
[#16100](https://github.com/google-gemini/gemini-cli/pull/16100)
|
|
87
|
-
- Optimize json-output tests with mock responses by @NTaylorMullen in
|
|
88
|
-
[#16102](https://github.com/google-gemini/gemini-cli/pull/16102)
|
|
89
|
-
- Fix CI for forks by @scidomino in
|
|
90
|
-
[#16113](https://github.com/google-gemini/gemini-cli/pull/16113)
|
|
91
|
-
- Reduce nags about PRs that reference issues but don't fix them. by @jacob314
|
|
92
|
-
in [#16112](https://github.com/google-gemini/gemini-cli/pull/16112)
|
|
93
|
-
- feat(cli): add filepath autosuggestion after slash commands by @jasmeetsb in
|
|
94
|
-
[#14738](https://github.com/google-gemini/gemini-cli/pull/14738)
|
|
95
|
-
- Add upgrade option for paid users by @cayden-google in
|
|
96
|
-
[#15978](https://github.com/google-gemini/gemini-cli/pull/15978)
|
|
97
|
-
- [Skills] UX Polishing: Transparent feedback and CLI refinements by
|
|
98
|
-
@NTaylorMullen in
|
|
99
|
-
[#15954](https://github.com/google-gemini/gemini-cli/pull/15954)
|
|
100
|
-
- Polish: Move 'Failed to load skills' warning to debug logs by @NTaylorMullen
|
|
101
|
-
in [#16142](https://github.com/google-gemini/gemini-cli/pull/16142)
|
|
102
|
-
- feat(cli): export chat history in /bug and prefill GitHub issue by
|
|
103
|
-
@NTaylorMullen in
|
|
104
|
-
[#16115](https://github.com/google-gemini/gemini-cli/pull/16115)
|
|
105
|
-
- bug(core): fix issue with overrides to bases. by @joshualitt in
|
|
106
|
-
[#15255](https://github.com/google-gemini/gemini-cli/pull/15255)
|
|
107
|
-
- enableInteractiveShell for external tooling relying on a2a server by
|
|
108
|
-
@DavidAPierce in
|
|
109
|
-
[#16080](https://github.com/google-gemini/gemini-cli/pull/16080)
|
|
110
|
-
- Reapply "feat(admin): implement extensions disabled" (#16082) by @skeshive in
|
|
111
|
-
[#16109](https://github.com/google-gemini/gemini-cli/pull/16109)
|
|
112
|
-
- bug(core): Fix spewie getter in hookTranslator.ts by @joshualitt in
|
|
113
|
-
[#16108](https://github.com/google-gemini/gemini-cli/pull/16108)
|
|
114
|
-
- feat(hooks): add mcp_context to BeforeTool and AfterTool hook inputs by @vrv
|
|
115
|
-
in [#15656](https://github.com/google-gemini/gemini-cli/pull/15656)
|
|
116
|
-
- Add extension linking capabilities in cli by @kevinjwang1 in
|
|
117
|
-
[#16040](https://github.com/google-gemini/gemini-cli/pull/16040)
|
|
118
|
-
- Update the page's title to be consistent and show in site. by @kschaab in
|
|
119
|
-
[#16174](https://github.com/google-gemini/gemini-cli/pull/16174)
|
|
120
|
-
- docs: correct typo in bufferFastReturn JSDoc ("accomodate" → "accommodate") by
|
|
121
|
-
@minglu7 in [#16056](https://github.com/google-gemini/gemini-cli/pull/16056)
|
|
122
|
-
- fix: typo in MCP servers settings description by @alphanota in
|
|
123
|
-
[#15929](https://github.com/google-gemini/gemini-cli/pull/15929)
|
|
124
|
-
- fix: yolo should auto allow redirection by @abhipatel12 in
|
|
125
|
-
[#16183](https://github.com/google-gemini/gemini-cli/pull/16183)
|
|
126
|
-
- fix(cli): disableYoloMode shouldn't enforce default approval mode against args
|
|
127
|
-
by @psinha40898 in
|
|
128
|
-
[#16155](https://github.com/google-gemini/gemini-cli/pull/16155)
|
|
129
|
-
- feat: add native Sublime Text support to IDE detection by @phreakocious in
|
|
130
|
-
[#16083](https://github.com/google-gemini/gemini-cli/pull/16083)
|
|
131
|
-
- refactor(core): extract ToolModificationHandler from scheduler by @abhipatel12
|
|
132
|
-
in [#16118](https://github.com/google-gemini/gemini-cli/pull/16118)
|
|
133
|
-
- Add support for Antigravity terminal in terminal setup utility by @raky291 in
|
|
134
|
-
[#16051](https://github.com/google-gemini/gemini-cli/pull/16051)
|
|
135
|
-
- feat(core): Wire up model routing to subagents. by @joshualitt in
|
|
136
|
-
[#16043](https://github.com/google-gemini/gemini-cli/pull/16043)
|
|
137
|
-
- feat(cli): add /agents slash command to list available agents by @adamfweidman
|
|
138
|
-
in [#16182](https://github.com/google-gemini/gemini-cli/pull/16182)
|
|
139
|
-
- docs(cli): fix includeDirectories nesting in configuration.md by @maru0804 in
|
|
140
|
-
[#15067](https://github.com/google-gemini/gemini-cli/pull/15067)
|
|
141
|
-
- feat: implement file system reversion utilities for rewind by @Adib234 in
|
|
142
|
-
[#15715](https://github.com/google-gemini/gemini-cli/pull/15715)
|
|
143
|
-
- Always enable redaction in GitHub actions. by @gundermanc in
|
|
144
|
-
[#16200](https://github.com/google-gemini/gemini-cli/pull/16200)
|
|
145
|
-
- fix: remove unsupported 'enabled' key from workflow config by @Han5991 in
|
|
146
|
-
[#15611](https://github.com/google-gemini/gemini-cli/pull/15611)
|
|
147
|
-
- docs: Remove redundant and duplicate documentation files by @liqzheng in
|
|
148
|
-
[#14699](https://github.com/google-gemini/gemini-cli/pull/14699)
|
|
149
|
-
- docs: shorten run command and use published version by @dsherret in
|
|
150
|
-
[#16172](https://github.com/google-gemini/gemini-cli/pull/16172)
|
|
151
|
-
- test(command-registry): increase initialization test timeout by @wszqkzqk in
|
|
152
|
-
[#15979](https://github.com/google-gemini/gemini-cli/pull/15979)
|
|
153
|
-
- Ensure TERM is set to xterm-256color by @falouu in
|
|
154
|
-
[#15828](https://github.com/google-gemini/gemini-cli/pull/15828)
|
|
155
|
-
- The telemetry.js script should handle paths that contain spaces by @JohnJAS in
|
|
156
|
-
[#12078](https://github.com/google-gemini/gemini-cli/pull/12078)
|
|
157
|
-
- ci: guard links workflow from running on forks by @wtanaka in
|
|
158
|
-
[#15461](https://github.com/google-gemini/gemini-cli/pull/15461)
|
|
159
|
-
- ci: guard nightly release workflow from running on forks by @wtanaka in
|
|
160
|
-
[#15463](https://github.com/google-gemini/gemini-cli/pull/15463)
|
|
161
|
-
- Support @ suggestions for subagenets by @sehoon38 in
|
|
162
|
-
[#16201](https://github.com/google-gemini/gemini-cli/pull/16201)
|
|
163
|
-
- feat(hooks): Support explicit stop and block execution control in model hooks
|
|
164
|
-
by @SandyTao520 in
|
|
165
|
-
[#15947](https://github.com/google-gemini/gemini-cli/pull/15947)
|
|
166
|
-
- Refine Gemini 3 system instructions to reduce model verbosity by
|
|
167
|
-
@NTaylorMullen in
|
|
168
|
-
[#16139](https://github.com/google-gemini/gemini-cli/pull/16139)
|
|
169
|
-
- chore: clean up unused models and use consts by @sehoon38 in
|
|
170
|
-
[#16246](https://github.com/google-gemini/gemini-cli/pull/16246)
|
|
171
|
-
- Always enable bracketed paste by @scidomino in
|
|
172
|
-
[#16179](https://github.com/google-gemini/gemini-cli/pull/16179)
|
|
173
|
-
- refactor: migrate clearCommand hook calls to HookSystem by @ved015 in
|
|
174
|
-
[#16157](https://github.com/google-gemini/gemini-cli/pull/16157)
|
|
175
|
-
- refactor: migrate app containter hook calls to hook system by @ishaanxgupta in
|
|
176
|
-
[#16161](https://github.com/google-gemini/gemini-cli/pull/16161)
|
|
177
|
-
- Show settings source in extensions lists by @chrstnb in
|
|
178
|
-
[#16207](https://github.com/google-gemini/gemini-cli/pull/16207)
|
|
179
|
-
- feat(skills): add pr-creator skill and enable skills by @NTaylorMullen in
|
|
180
|
-
[#16232](https://github.com/google-gemini/gemini-cli/pull/16232)
|
|
181
|
-
- fix: handle Shift+Space in Kitty keyboard protocol terminals by @tt-a1i in
|
|
182
|
-
[#15767](https://github.com/google-gemini/gemini-cli/pull/15767)
|
|
183
|
-
- feat(core, ui): Add /agents refresh command. by @joshualitt in
|
|
184
|
-
[#16204](https://github.com/google-gemini/gemini-cli/pull/16204)
|
|
185
|
-
- feat(core): add local experiments override via GEMINI_EXP by @kevin-ramdass in
|
|
186
|
-
[#16181](https://github.com/google-gemini/gemini-cli/pull/16181)
|
|
187
|
-
- feat(ui): reduce home directory warning noise and add opt-out setting by
|
|
51
|
+
[#16640](https://github.com/google-gemini/gemini-cli/pull/16640)
|
|
52
|
+
- remove unnecessary \x7f key bindings by @scidomino in
|
|
53
|
+
[#16646](https://github.com/google-gemini/gemini-cli/pull/16646)
|
|
54
|
+
- docs(skills): use body-file in pr-creator skill for better reliability by
|
|
55
|
+
@abhipatel12 in
|
|
56
|
+
[#16642](https://github.com/google-gemini/gemini-cli/pull/16642)
|
|
57
|
+
- chore(automation): recursive labeling for workstream descendants by @bdmorgan
|
|
58
|
+
in [#16609](https://github.com/google-gemini/gemini-cli/pull/16609)
|
|
59
|
+
- feat: introduce 'skill-creator' built-in skill and CJS management tools by
|
|
188
60
|
@NTaylorMullen in
|
|
189
|
-
[#
|
|
190
|
-
-
|
|
191
|
-
[#
|
|
192
|
-
-
|
|
193
|
-
[#
|
|
194
|
-
-
|
|
195
|
-
[#
|
|
196
|
-
-
|
|
197
|
-
[#
|
|
198
|
-
-
|
|
199
|
-
[#
|
|
200
|
-
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
-
|
|
206
|
-
|
|
207
|
-
-
|
|
208
|
-
|
|
209
|
-
-
|
|
210
|
-
|
|
211
|
-
-
|
|
212
|
-
|
|
213
|
-
-
|
|
214
|
-
|
|
215
|
-
[#
|
|
216
|
-
-
|
|
217
|
-
[#
|
|
218
|
-
-
|
|
219
|
-
[#
|
|
220
|
-
-
|
|
221
|
-
[#
|
|
222
|
-
-
|
|
223
|
-
@bdmorgan in [#16338](https://github.com/google-gemini/gemini-cli/pull/16338)
|
|
224
|
-
- docs: add note about experimental hooks by @abhipatel12 in
|
|
225
|
-
[#16337](https://github.com/google-gemini/gemini-cli/pull/16337)
|
|
226
|
-
- feat(cli): implement passive activity logger for session analysis by
|
|
227
|
-
@SandyTao520 in
|
|
228
|
-
[#15829](https://github.com/google-gemini/gemini-cli/pull/15829)
|
|
229
|
-
- feat(cli): add /chat debug command for nightly builds by @abhipatel12 in
|
|
230
|
-
[#16339](https://github.com/google-gemini/gemini-cli/pull/16339)
|
|
231
|
-
- style: format pr-creator skill by @NTaylorMullen in
|
|
232
|
-
[#16381](https://github.com/google-gemini/gemini-cli/pull/16381)
|
|
233
|
-
- feat(cli): Hooks enable-all/disable-all feature with dynamic status by
|
|
234
|
-
@AbdulTawabJuly in
|
|
235
|
-
[#15552](https://github.com/google-gemini/gemini-cli/pull/15552)
|
|
236
|
-
- fix(core): ensure silent local subagent delegation while allowing remote
|
|
237
|
-
confirmation by @adamfweidman in
|
|
238
|
-
[#16395](https://github.com/google-gemini/gemini-cli/pull/16395)
|
|
239
|
-
- Markdown w/ Frontmatter Agent Parser by @sehoon38 in
|
|
240
|
-
[#16094](https://github.com/google-gemini/gemini-cli/pull/16094)
|
|
241
|
-
- Fix crash on unicode character by @chrstnb in
|
|
242
|
-
[#16420](https://github.com/google-gemini/gemini-cli/pull/16420)
|
|
243
|
-
- Attempt to resolve OOM w/ useMemo on history items by @chrstnb in
|
|
244
|
-
[#16424](https://github.com/google-gemini/gemini-cli/pull/16424)
|
|
245
|
-
- fix(core): ensure sub-agent schema and prompt refresh during runtime by
|
|
246
|
-
@adamfweidman in
|
|
247
|
-
[#16409](https://github.com/google-gemini/gemini-cli/pull/16409)
|
|
248
|
-
- Update extension examples by @chrstnb in
|
|
249
|
-
[#16274](https://github.com/google-gemini/gemini-cli/pull/16274)
|
|
250
|
-
- revert the change that was recently added from a fix by @sehoon38 in
|
|
251
|
-
[#16390](https://github.com/google-gemini/gemini-cli/pull/16390)
|
|
252
|
-
- Add other hook wrapper methods to hooksystem by @ved015 in
|
|
253
|
-
[#16361](https://github.com/google-gemini/gemini-cli/pull/16361)
|
|
254
|
-
- feat: introduce useRewindLogic hook for conversation history navigation by
|
|
255
|
-
@Adib234 in [#15716](https://github.com/google-gemini/gemini-cli/pull/15716)
|
|
256
|
-
- docs: Fix formatting issue in memport documentation by @wanglc02 in
|
|
257
|
-
[#14774](https://github.com/google-gemini/gemini-cli/pull/14774)
|
|
258
|
-
- fix(policy): enhance shell command safety and parsing by @allenhutchison in
|
|
259
|
-
[#15034](https://github.com/google-gemini/gemini-cli/pull/15034)
|
|
260
|
-
- fix(core): avoid 'activate_skill' re-registration warning by @NTaylorMullen in
|
|
261
|
-
[#16398](https://github.com/google-gemini/gemini-cli/pull/16398)
|
|
262
|
-
- perf(workflows): optimize PR triage script for faster execution by @bdmorgan
|
|
263
|
-
in [#16355](https://github.com/google-gemini/gemini-cli/pull/16355)
|
|
264
|
-
- feat(admin): prompt user to restart the CLI if they change auth to oauth
|
|
265
|
-
mid-session or don't have auth type selected at start of session by @skeshive
|
|
266
|
-
in [#16426](https://github.com/google-gemini/gemini-cli/pull/16426)
|
|
267
|
-
- Update cli-help agent's system prompt in sub-agents section by @sehoon38 in
|
|
268
|
-
[#16441](https://github.com/google-gemini/gemini-cli/pull/16441)
|
|
269
|
-
- Revert "Update extension examples" by @chrstnb in
|
|
270
|
-
[#16442](https://github.com/google-gemini/gemini-cli/pull/16442)
|
|
271
|
-
- Fix: add back fastreturn support by @scidomino in
|
|
272
|
-
[#16440](https://github.com/google-gemini/gemini-cli/pull/16440)
|
|
273
|
-
- feat(a2a): Introduce /memory command for a2a server by @cocosheng-g in
|
|
274
|
-
[#14456](https://github.com/google-gemini/gemini-cli/pull/14456)
|
|
275
|
-
- docs: fix broken internal link by using relative path by @Gong-Mi in
|
|
276
|
-
[#15371](https://github.com/google-gemini/gemini-cli/pull/15371)
|
|
277
|
-
- migrate yolo/auto-edit keybindings by @scidomino in
|
|
278
|
-
[#16457](https://github.com/google-gemini/gemini-cli/pull/16457)
|
|
279
|
-
- feat(cli): add install and uninstall commands for skills by @NTaylorMullen in
|
|
280
|
-
[#16377](https://github.com/google-gemini/gemini-cli/pull/16377)
|
|
281
|
-
- feat(ui): use Tab to switch focus between shell and input by @jacob314 in
|
|
282
|
-
[#14332](https://github.com/google-gemini/gemini-cli/pull/14332)
|
|
283
|
-
- feat(core): support shipping built-in skills with the CLI by @NTaylorMullen in
|
|
284
|
-
[#16300](https://github.com/google-gemini/gemini-cli/pull/16300)
|
|
285
|
-
- Collect hardware details telemetry. by @gundermanc in
|
|
286
|
-
[#16119](https://github.com/google-gemini/gemini-cli/pull/16119)
|
|
287
|
-
- feat(agents): improve UI feedback and parser reliability by @NTaylorMullen in
|
|
288
|
-
[#16459](https://github.com/google-gemini/gemini-cli/pull/16459)
|
|
289
|
-
- Migrate keybindings by @scidomino in
|
|
290
|
-
[#16460](https://github.com/google-gemini/gemini-cli/pull/16460)
|
|
291
|
-
- feat(cli): cleanup activity logs alongside session files by @SandyTao520 in
|
|
292
|
-
[#16399](https://github.com/google-gemini/gemini-cli/pull/16399)
|
|
293
|
-
- feat(cli): implement dynamic terminal tab titles for CLI status by
|
|
61
|
+
[#16394](https://github.com/google-gemini/gemini-cli/pull/16394)
|
|
62
|
+
- chore(automation): remove automated PR size and complexity labeler by
|
|
63
|
+
@bdmorgan in [#16648](https://github.com/google-gemini/gemini-cli/pull/16648)
|
|
64
|
+
- refactor(skills): replace 'project' with 'workspace' scope by @NTaylorMullen
|
|
65
|
+
in [#16380](https://github.com/google-gemini/gemini-cli/pull/16380)
|
|
66
|
+
- Docs: Update release notes for 1/13/2026 by @jkcinouye in
|
|
67
|
+
[#16583](https://github.com/google-gemini/gemini-cli/pull/16583)
|
|
68
|
+
- Simplify paste handling by @scidomino in
|
|
69
|
+
[#16654](https://github.com/google-gemini/gemini-cli/pull/16654)
|
|
70
|
+
- chore(automation): improve scheduled issue triage discovery and throughput by
|
|
71
|
+
@bdmorgan in [#16652](https://github.com/google-gemini/gemini-cli/pull/16652)
|
|
72
|
+
- fix(acp): run exit cleanup when stdin closes by @codefromthecrypt in
|
|
73
|
+
[#14953](https://github.com/google-gemini/gemini-cli/pull/14953)
|
|
74
|
+
- feat(scheduler): add types needed for event driven scheduler by @abhipatel12
|
|
75
|
+
in [#16641](https://github.com/google-gemini/gemini-cli/pull/16641)
|
|
76
|
+
- Remove unused rewind key binding by @scidomino in
|
|
77
|
+
[#16659](https://github.com/google-gemini/gemini-cli/pull/16659)
|
|
78
|
+
- Remove sequence binding by @scidomino in
|
|
79
|
+
[#16664](https://github.com/google-gemini/gemini-cli/pull/16664)
|
|
80
|
+
- feat(cli): undeprecate the --prompt flag by @alexaustin007 in
|
|
81
|
+
[#13981](https://github.com/google-gemini/gemini-cli/pull/13981)
|
|
82
|
+
- chore: update dependabot configuration by @cosmopax in
|
|
83
|
+
[#13507](https://github.com/google-gemini/gemini-cli/pull/13507)
|
|
84
|
+
- feat(config): add 'auto' alias for default model selection by @sehoon38 in
|
|
85
|
+
[#16661](https://github.com/google-gemini/gemini-cli/pull/16661)
|
|
86
|
+
- Enable & disable agents by @sehoon38 in
|
|
87
|
+
[#16225](https://github.com/google-gemini/gemini-cli/pull/16225)
|
|
88
|
+
- cleanup: Improve keybindings by @scidomino in
|
|
89
|
+
[#16672](https://github.com/google-gemini/gemini-cli/pull/16672)
|
|
90
|
+
- Add timeout for shell-utils to prevent hangs. by @jacob314 in
|
|
91
|
+
[#16667](https://github.com/google-gemini/gemini-cli/pull/16667)
|
|
92
|
+
- feat(plan): add experimental plan flag by @jerop in
|
|
93
|
+
[#16650](https://github.com/google-gemini/gemini-cli/pull/16650)
|
|
94
|
+
- feat(cli): add security consent prompts for skill installation by
|
|
294
95
|
@NTaylorMullen in
|
|
295
|
-
[#
|
|
296
|
-
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
96
|
+
[#16549](https://github.com/google-gemini/gemini-cli/pull/16549)
|
|
97
|
+
- fix: replace 3 consecutive periods with ellipsis character by @Vist233 in
|
|
98
|
+
[#16587](https://github.com/google-gemini/gemini-cli/pull/16587)
|
|
99
|
+
- chore(automation): ensure status/need-triage is applied and never cleared
|
|
100
|
+
automatically by @bdmorgan in
|
|
101
|
+
[#16657](https://github.com/google-gemini/gemini-cli/pull/16657)
|
|
102
|
+
- fix: Handle colons in skill description frontmatter by @maru0804 in
|
|
103
|
+
[#16345](https://github.com/google-gemini/gemini-cli/pull/16345)
|
|
104
|
+
- refactor(core): harden skill frontmatter parsing by @NTaylorMullen in
|
|
105
|
+
[#16705](https://github.com/google-gemini/gemini-cli/pull/16705)
|
|
106
|
+
- feat(skills): add conflict detection and warnings for skill overrides by
|
|
300
107
|
@NTaylorMullen in
|
|
301
|
-
[#
|
|
302
|
-
-
|
|
303
|
-
|
|
304
|
-
[#
|
|
305
|
-
-
|
|
306
|
-
in
|
|
307
|
-
-
|
|
308
|
-
|
|
309
|
-
-
|
|
108
|
+
[#16709](https://github.com/google-gemini/gemini-cli/pull/16709)
|
|
109
|
+
- feat(scheduler): add SchedulerStateManager for reactive tool state by
|
|
110
|
+
@abhipatel12 in
|
|
111
|
+
[#16651](https://github.com/google-gemini/gemini-cli/pull/16651)
|
|
112
|
+
- chore(automation): enforce 'help wanted' label permissions and update
|
|
113
|
+
guidelines by @bdmorgan in
|
|
114
|
+
[#16707](https://github.com/google-gemini/gemini-cli/pull/16707)
|
|
115
|
+
- fix(core): resolve circular dependency via tsconfig paths by @sehoon38 in
|
|
116
|
+
[#16730](https://github.com/google-gemini/gemini-cli/pull/16730)
|
|
117
|
+
- chore/release: bump version to 0.26.0-nightly.20260115.6cb3ae4e0 by
|
|
118
|
+
@gemini-cli-robot in
|
|
119
|
+
[#16738](https://github.com/google-gemini/gemini-cli/pull/16738)
|
|
120
|
+
- fix(automation): correct status/need-issue label matching wildcard by
|
|
121
|
+
@bdmorgan in [#16727](https://github.com/google-gemini/gemini-cli/pull/16727)
|
|
122
|
+
- fix(automation): prevent label-enforcer loop by ignoring all bots by @bdmorgan
|
|
123
|
+
in [#16746](https://github.com/google-gemini/gemini-cli/pull/16746)
|
|
124
|
+
- Add links to supported locations and minor fixes by @g-samroberts in
|
|
125
|
+
[#16476](https://github.com/google-gemini/gemini-cli/pull/16476)
|
|
126
|
+
- feat(policy): add source tracking to policy rules by @allenhutchison in
|
|
127
|
+
[#16670](https://github.com/google-gemini/gemini-cli/pull/16670)
|
|
128
|
+
- feat(automation): enforce '🔒 maintainer only' and fix bot loop by @bdmorgan
|
|
129
|
+
in [#16751](https://github.com/google-gemini/gemini-cli/pull/16751)
|
|
130
|
+
- Make merged settings non-nullable and fix all lints related to that. by
|
|
131
|
+
@jacob314 in [#16647](https://github.com/google-gemini/gemini-cli/pull/16647)
|
|
132
|
+
- fix(core): prevent ModelInfo event emission on aborted signal by @sehoon38 in
|
|
133
|
+
[#16752](https://github.com/google-gemini/gemini-cli/pull/16752)
|
|
134
|
+
- Replace relative paths to fix website build by @chrstnb in
|
|
135
|
+
[#16755](https://github.com/google-gemini/gemini-cli/pull/16755)
|
|
136
|
+
- Restricting to localhost by @cocosheng-g in
|
|
137
|
+
[#16548](https://github.com/google-gemini/gemini-cli/pull/16548)
|
|
138
|
+
- fix(cli): add explicit dependency on color-convert by @sehoon38 in
|
|
139
|
+
[#16757](https://github.com/google-gemini/gemini-cli/pull/16757)
|
|
140
|
+
- fix(automation): robust label enforcement with permission checks by @bdmorgan
|
|
141
|
+
in [#16762](https://github.com/google-gemini/gemini-cli/pull/16762)
|
|
142
|
+
- fix(cli): prevent OOM crash by limiting file search traversal and adding
|
|
143
|
+
timeout by @galz10 in
|
|
144
|
+
[#16696](https://github.com/google-gemini/gemini-cli/pull/16696)
|
|
145
|
+
- fix(cli): safely handle /dev/tty access on macOS by @korade-krushna in
|
|
146
|
+
[#16531](https://github.com/google-gemini/gemini-cli/pull/16531)
|
|
147
|
+
- docs: clarify workspace test execution in GEMINI.md by @mattKorwel in
|
|
148
|
+
[#16764](https://github.com/google-gemini/gemini-cli/pull/16764)
|
|
149
|
+
- Add support for running available commands prior to MCP servers loading by
|
|
150
|
+
@Adib234 in [#15596](https://github.com/google-gemini/gemini-cli/pull/15596)
|
|
151
|
+
- feat(plan): add experimental 'plan' approval mode by @jerop in
|
|
152
|
+
[#16753](https://github.com/google-gemini/gemini-cli/pull/16753)
|
|
153
|
+
- feat(scheduler): add functional awaitConfirmation utility by @abhipatel12 in
|
|
154
|
+
[#16721](https://github.com/google-gemini/gemini-cli/pull/16721)
|
|
155
|
+
- fix(infra): update maintainer rollup label to 'workstream-rollup' by @bdmorgan
|
|
156
|
+
in [#16809](https://github.com/google-gemini/gemini-cli/pull/16809)
|
|
157
|
+
- fix(infra): use GraphQL to detect direct parents in rollup workflow by
|
|
158
|
+
@bdmorgan in [#16811](https://github.com/google-gemini/gemini-cli/pull/16811)
|
|
159
|
+
- chore(workflows): rename label-workstream-rollup workflow by @bdmorgan in
|
|
160
|
+
[#16818](https://github.com/google-gemini/gemini-cli/pull/16818)
|
|
161
|
+
- skip simple-mcp-server.test.ts by @scidomino in
|
|
162
|
+
[#16842](https://github.com/google-gemini/gemini-cli/pull/16842)
|
|
163
|
+
- Steer outer agent to use expert subagents when present by @gundermanc in
|
|
164
|
+
[#16763](https://github.com/google-gemini/gemini-cli/pull/16763)
|
|
165
|
+
- Fix race condition by awaiting scheduleToolCalls by @chrstnb in
|
|
166
|
+
[#16759](https://github.com/google-gemini/gemini-cli/pull/16759)
|
|
167
|
+
- cleanup: Organize key bindings by @scidomino in
|
|
168
|
+
[#16798](https://github.com/google-gemini/gemini-cli/pull/16798)
|
|
169
|
+
- feat(core): Add generalist agent. by @joshualitt in
|
|
170
|
+
[#16638](https://github.com/google-gemini/gemini-cli/pull/16638)
|
|
171
|
+
- perf(ui): optimize text buffer and highlighting for large inputs by
|
|
310
172
|
@NTaylorMullen in
|
|
311
|
-
[#
|
|
312
|
-
-
|
|
313
|
-
|
|
314
|
-
-
|
|
315
|
-
[#
|
|
316
|
-
-
|
|
317
|
-
|
|
318
|
-
-
|
|
319
|
-
[#
|
|
320
|
-
-
|
|
321
|
-
[#16433](https://github.com/google-gemini/gemini-cli/pull/16433)
|
|
322
|
-
- fix(cli): fix 'gemini skills install' unknown argument error by @NTaylorMullen
|
|
323
|
-
in [#16537](https://github.com/google-gemini/gemini-cli/pull/16537)
|
|
324
|
-
- chore(ui): optimize AgentsStatus layout with dense list style and group
|
|
325
|
-
separation by @adamfweidman in
|
|
326
|
-
[#16545](https://github.com/google-gemini/gemini-cli/pull/16545)
|
|
327
|
-
- fix(cli): allow @ file selector on slash command lines by @galz10 in
|
|
328
|
-
[#16370](https://github.com/google-gemini/gemini-cli/pull/16370)
|
|
329
|
-
- fix(ui): resolve sticky header regression in tool messages by @jacob314 in
|
|
330
|
-
[#16514](https://github.com/google-gemini/gemini-cli/pull/16514)
|
|
331
|
-
- feat(core): Align internal agent settings with configs exposed through
|
|
332
|
-
settings.json by @joshualitt in
|
|
333
|
-
[#16458](https://github.com/google-gemini/gemini-cli/pull/16458)
|
|
334
|
-
- fix(cli): copy uses OSC52 only in SSH/WSL by @assagman in
|
|
335
|
-
[#16554](https://github.com/google-gemini/gemini-cli/pull/16554)
|
|
336
|
-
- docs(skills): clarify skill directory structure and file location by
|
|
173
|
+
[#16782](https://github.com/google-gemini/gemini-cli/pull/16782)
|
|
174
|
+
- fix(core): fix PTY descriptor shell leak by @galz10 in
|
|
175
|
+
[#16773](https://github.com/google-gemini/gemini-cli/pull/16773)
|
|
176
|
+
- feat(plan): enforce strict read-only policy and halt execution on violation by
|
|
177
|
+
@jerop in [#16849](https://github.com/google-gemini/gemini-cli/pull/16849)
|
|
178
|
+
- remove need-triage label from bug_report template by @sehoon38 in
|
|
179
|
+
[#16864](https://github.com/google-gemini/gemini-cli/pull/16864)
|
|
180
|
+
- fix(core): truncate large telemetry log entries by @sehoon38 in
|
|
181
|
+
[#16769](https://github.com/google-gemini/gemini-cli/pull/16769)
|
|
182
|
+
- docs(extensions): add Agent Skills support and mark feature as experimental by
|
|
337
183
|
@NTaylorMullen in
|
|
338
|
-
[#
|
|
339
|
-
-
|
|
340
|
-
|
|
341
|
-
-
|
|
342
|
-
|
|
343
|
-
-
|
|
344
|
-
|
|
345
|
-
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
[#
|
|
351
|
-
-
|
|
352
|
-
[#
|
|
353
|
-
-
|
|
354
|
-
[#
|
|
355
|
-
-
|
|
184
|
+
[#16859](https://github.com/google-gemini/gemini-cli/pull/16859)
|
|
185
|
+
- fix(core): surface warnings for invalid hook event names in configuration
|
|
186
|
+
(#16788) by @sehoon38 in
|
|
187
|
+
[#16873](https://github.com/google-gemini/gemini-cli/pull/16873)
|
|
188
|
+
- feat(plan): remove read_many_files from approval mode policies by @jerop in
|
|
189
|
+
[#16876](https://github.com/google-gemini/gemini-cli/pull/16876)
|
|
190
|
+
- feat(admin): implement admin controls polling and restart prompt by @skeshive
|
|
191
|
+
in [#16627](https://github.com/google-gemini/gemini-cli/pull/16627)
|
|
192
|
+
- Remove LRUCache class migrating to mnemoist by @jacob314 in
|
|
193
|
+
[#16872](https://github.com/google-gemini/gemini-cli/pull/16872)
|
|
194
|
+
- feat(settings): rename negative settings to positive naming (disable* ->
|
|
195
|
+
enable*) by @afarber in
|
|
196
|
+
[#14142](https://github.com/google-gemini/gemini-cli/pull/14142)
|
|
197
|
+
- refactor(cli): unify shell confirmation dialogs by @NTaylorMullen in
|
|
198
|
+
[#16828](https://github.com/google-gemini/gemini-cli/pull/16828)
|
|
199
|
+
- feat(agent): enable agent skills by default by @NTaylorMullen in
|
|
200
|
+
[#16736](https://github.com/google-gemini/gemini-cli/pull/16736)
|
|
201
|
+
- refactor(core): foundational truncation refactoring and token estimation
|
|
202
|
+
optimization by @NTaylorMullen in
|
|
203
|
+
[#16824](https://github.com/google-gemini/gemini-cli/pull/16824)
|
|
204
|
+
- fix(hooks): enable /hooks disable to reliably stop single hooks by
|
|
205
|
+
@abhipatel12 in
|
|
206
|
+
[#16804](https://github.com/google-gemini/gemini-cli/pull/16804)
|
|
207
|
+
- Don't commit unless user asks us to. by @gundermanc in
|
|
208
|
+
[#16902](https://github.com/google-gemini/gemini-cli/pull/16902)
|
|
209
|
+
- chore: remove a2a-adapter and bump @a2a-js/sdk to 0.3.8 by @adamfweidman in
|
|
210
|
+
[#16800](https://github.com/google-gemini/gemini-cli/pull/16800)
|
|
211
|
+
- fix: Show experiment values in settings UI for compressionThreshold by
|
|
212
|
+
@ishaanxgupta in
|
|
213
|
+
[#16267](https://github.com/google-gemini/gemini-cli/pull/16267)
|
|
214
|
+
- feat(cli): replace relative keyboard shortcuts link with web URL by
|
|
215
|
+
@imaliabbas in
|
|
216
|
+
[#16479](https://github.com/google-gemini/gemini-cli/pull/16479)
|
|
217
|
+
- fix(core): resolve PKCE length issue and stabilize OAuth redirect port by
|
|
218
|
+
@sehoon38 in [#16815](https://github.com/google-gemini/gemini-cli/pull/16815)
|
|
219
|
+
- Delete rewind documentation for now by @Adib234 in
|
|
220
|
+
[#16932](https://github.com/google-gemini/gemini-cli/pull/16932)
|
|
221
|
+
- Stabilize skill-creator CI and package format by @NTaylorMullen in
|
|
222
|
+
[#17001](https://github.com/google-gemini/gemini-cli/pull/17001)
|
|
223
|
+
- Stabilize the git evals by @gundermanc in
|
|
224
|
+
[#16989](https://github.com/google-gemini/gemini-cli/pull/16989)
|
|
225
|
+
- fix(core): attempt compression before context overflow check by @NTaylorMullen
|
|
226
|
+
in [#16914](https://github.com/google-gemini/gemini-cli/pull/16914)
|
|
227
|
+
- Fix inverted logic. by @gundermanc in
|
|
228
|
+
[#17007](https://github.com/google-gemini/gemini-cli/pull/17007)
|
|
229
|
+
- chore(scripts): add duplicate issue closer script and fix lint errors by
|
|
230
|
+
@bdmorgan in [#16997](https://github.com/google-gemini/gemini-cli/pull/16997)
|
|
231
|
+
- docs: update README and config guide to reference Gemini 3 by @JayadityaGit in
|
|
232
|
+
[#15806](https://github.com/google-gemini/gemini-cli/pull/15806)
|
|
233
|
+
- fix(cli): correct Homebrew installation detection by @kij in
|
|
234
|
+
[#14727](https://github.com/google-gemini/gemini-cli/pull/14727)
|
|
235
|
+
- Demote git evals to nightly run. by @gundermanc in
|
|
236
|
+
[#17030](https://github.com/google-gemini/gemini-cli/pull/17030)
|
|
237
|
+
- fix(cli): use OSC-52 clipboard copy in Windows Terminal by @Thomas-Shephard in
|
|
238
|
+
[#16920](https://github.com/google-gemini/gemini-cli/pull/16920)
|
|
239
|
+
- Fix: Process all parts in response chunks when thought is first by @pyrytakala
|
|
240
|
+
in [#13539](https://github.com/google-gemini/gemini-cli/pull/13539)
|
|
241
|
+
- fix(automation): fix jq quoting error in pr-triage.sh by @Kimsoo0119 in
|
|
242
|
+
[#16958](https://github.com/google-gemini/gemini-cli/pull/16958)
|
|
243
|
+
- refactor(core): decouple scheduler into orchestration, policy, and
|
|
244
|
+
confirmation by @abhipatel12 in
|
|
245
|
+
[#16895](https://github.com/google-gemini/gemini-cli/pull/16895)
|
|
246
|
+
- feat: add /introspect slash command by @NTaylorMullen in
|
|
247
|
+
[#17048](https://github.com/google-gemini/gemini-cli/pull/17048)
|
|
248
|
+
- refactor(cli): centralize tool mapping and decouple legacy scheduler by
|
|
249
|
+
@abhipatel12 in
|
|
250
|
+
[#17044](https://github.com/google-gemini/gemini-cli/pull/17044)
|
|
251
|
+
- fix(ui): ensure rationale renders before tool calls by @NTaylorMullen in
|
|
252
|
+
[#17043](https://github.com/google-gemini/gemini-cli/pull/17043)
|
|
253
|
+
- fix(workflows): use author_association for maintainer check by @bdmorgan in
|
|
254
|
+
[#17060](https://github.com/google-gemini/gemini-cli/pull/17060)
|
|
255
|
+
- fix return type of fireSessionStartEvent to defaultHookOutput by @ved015 in
|
|
256
|
+
[#16833](https://github.com/google-gemini/gemini-cli/pull/16833)
|
|
257
|
+
- feat(cli): add experiment gate for event-driven scheduler by @abhipatel12 in
|
|
258
|
+
[#17055](https://github.com/google-gemini/gemini-cli/pull/17055)
|
|
259
|
+
- feat(core): improve shell redirection transparency and security by
|
|
356
260
|
@NTaylorMullen in
|
|
357
|
-
[#
|
|
358
|
-
- fix(
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
[#
|
|
362
|
-
-
|
|
363
|
-
[#
|
|
364
|
-
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
261
|
+
[#16486](https://github.com/google-gemini/gemini-cli/pull/16486)
|
|
262
|
+
- fix(core): deduplicate ModelInfo emission in GeminiClient by @NTaylorMullen in
|
|
263
|
+
[#17075](https://github.com/google-gemini/gemini-cli/pull/17075)
|
|
264
|
+
- docs(themes): remove unsupported DiffModified color key by @jw409 in
|
|
265
|
+
[#17073](https://github.com/google-gemini/gemini-cli/pull/17073)
|
|
266
|
+
- fix: update currentSequenceModel when modelChanged by @adamfweidman in
|
|
267
|
+
[#17051](https://github.com/google-gemini/gemini-cli/pull/17051)
|
|
268
|
+
- feat(core): enhanced anchored iterative context compression with
|
|
269
|
+
self-verification by @rmedranollamas in
|
|
270
|
+
[#15710](https://github.com/google-gemini/gemini-cli/pull/15710)
|
|
271
|
+
- Fix mcp instructions by @chrstnb in
|
|
272
|
+
[#16439](https://github.com/google-gemini/gemini-cli/pull/16439)
|
|
273
|
+
- [A2A] Disable checkpointing if git is not installed by @cocosheng-g in
|
|
274
|
+
[#16896](https://github.com/google-gemini/gemini-cli/pull/16896)
|
|
275
|
+
- feat(admin): set admin.skills.enabled based on advancedFeaturesEnabled setting
|
|
276
|
+
by @skeshive in
|
|
277
|
+
[#17095](https://github.com/google-gemini/gemini-cli/pull/17095)
|
|
278
|
+
- Test coverage for hook exit code cases by @gundermanc in
|
|
279
|
+
[#17041](https://github.com/google-gemini/gemini-cli/pull/17041)
|
|
280
|
+
- Revert "Revert "Update extension examples"" by @chrstnb in
|
|
281
|
+
[#16445](https://github.com/google-gemini/gemini-cli/pull/16445)
|
|
282
|
+
- fix(core): Provide compact, actionable errors for agent delegation failures by
|
|
283
|
+
@SandyTao520 in
|
|
284
|
+
[#16493](https://github.com/google-gemini/gemini-cli/pull/16493)
|
|
285
|
+
- fix: migrate BeforeModel and AfterModel hooks to HookSystem by @ved015 in
|
|
286
|
+
[#16599](https://github.com/google-gemini/gemini-cli/pull/16599)
|
|
287
|
+
- feat(admin): apply admin settings to gemini skills/mcp/extensions commands by
|
|
288
|
+
@skeshive in [#17102](https://github.com/google-gemini/gemini-cli/pull/17102)
|
|
289
|
+
- fix(core): update telemetry token count after session resume by @psinha40898
|
|
290
|
+
in [#15491](https://github.com/google-gemini/gemini-cli/pull/15491)
|
|
291
|
+
- Demote the subagent test to nightly by @gundermanc in
|
|
292
|
+
[#17105](https://github.com/google-gemini/gemini-cli/pull/17105)
|
|
293
|
+
- feat(plan): telemetry to track adoption and usage of plan mode by @Adib234 in
|
|
294
|
+
[#16863](https://github.com/google-gemini/gemini-cli/pull/16863)
|
|
295
|
+
- feat: Add flash lite utility fallback chain by @adamfweidman in
|
|
296
|
+
[#17056](https://github.com/google-gemini/gemini-cli/pull/17056)
|
|
297
|
+
- Fixes Windows crash: "Cannot resize a pty that has already exited" by @dzammit
|
|
298
|
+
in [#15757](https://github.com/google-gemini/gemini-cli/pull/15757)
|
|
299
|
+
- feat(core): Add initial eval for generalist agent. by @joshualitt in
|
|
300
|
+
[#16856](https://github.com/google-gemini/gemini-cli/pull/16856)
|
|
301
|
+
- feat(core): unify agent enabled and disabled flags by @SandyTao520 in
|
|
302
|
+
[#17127](https://github.com/google-gemini/gemini-cli/pull/17127)
|
|
303
|
+
- fix(core): resolve auto model in default strategy by @sehoon38 in
|
|
304
|
+
[#17116](https://github.com/google-gemini/gemini-cli/pull/17116)
|
|
305
|
+
- docs: update project context and pr-creator workflow by @NTaylorMullen in
|
|
306
|
+
[#17119](https://github.com/google-gemini/gemini-cli/pull/17119)
|
|
307
|
+
- fix(cli): send gemini-cli version as mcp client version by @dsp in
|
|
308
|
+
[#13407](https://github.com/google-gemini/gemini-cli/pull/13407)
|
|
309
|
+
- fix(cli): resolve Ctrl+Enter and Ctrl+J newline issues by @imadraude in
|
|
310
|
+
[#17021](https://github.com/google-gemini/gemini-cli/pull/17021)
|
|
311
|
+
- Remove missing sidebar item by @chrstnb in
|
|
312
|
+
[#17145](https://github.com/google-gemini/gemini-cli/pull/17145)
|
|
313
|
+
- feat(core): Ensure all properties in hooks object are event names. by
|
|
314
|
+
@joshualitt in
|
|
315
|
+
[#16870](https://github.com/google-gemini/gemini-cli/pull/16870)
|
|
316
|
+
- fix(cli): fix newline support broken in previous PR by @scidomino in
|
|
317
|
+
[#17159](https://github.com/google-gemini/gemini-cli/pull/17159)
|
|
318
|
+
- Add interactive ValidationDialog for handling 403 VALIDATION_REQUIRED errors.
|
|
319
|
+
by @gsquared94 in
|
|
320
|
+
[#16231](https://github.com/google-gemini/gemini-cli/pull/16231)
|
|
321
|
+
- Add Esc-Esc to clear prompt when it's not empty by @Adib234 in
|
|
322
|
+
[#17131](https://github.com/google-gemini/gemini-cli/pull/17131)
|
|
323
|
+
- Avoid spurious warnings about unexpected renders triggered by appEvents and
|
|
324
|
+
coreEvents. by @jacob314 in
|
|
325
|
+
[#17160](https://github.com/google-gemini/gemini-cli/pull/17160)
|
|
326
|
+
- fix(cli): resolve home/end keybinding conflict by @scidomino in
|
|
327
|
+
[#17124](https://github.com/google-gemini/gemini-cli/pull/17124)
|
|
328
|
+
- fix(cli): display 'http' type on mcp list by @pamanta in
|
|
329
|
+
[#16915](https://github.com/google-gemini/gemini-cli/pull/16915)
|
|
330
|
+
- fix bad fallback logic external editor logic by @scidomino in
|
|
331
|
+
[#17166](https://github.com/google-gemini/gemini-cli/pull/17166)
|
|
332
|
+
- Fix bug where System scopes weren't migrated. by @jacob314 in
|
|
333
|
+
[#17174](https://github.com/google-gemini/gemini-cli/pull/17174)
|
|
334
|
+
- Fix mcp tool lookup in tool registry by @werdnum in
|
|
335
|
+
[#17054](https://github.com/google-gemini/gemini-cli/pull/17054)
|
|
368
336
|
|
|
369
337
|
**Full changelog**:
|
|
370
|
-
https://github.com/google-gemini/gemini-cli/compare/v0.
|
|
338
|
+
https://github.com/google-gemini/gemini-cli/compare/v0.25.2...v0.26.0
|