@google/gemini-cli-core 0.28.0-preview.5 → 0.29.0-nightly.20260206.4ffc349c1

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