@codeflyai/codefly 0.24.0 → 0.24.2

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 (51) hide show
  1. package/README.md +3 -1
  2. package/bundle/builtin/skill-creator/SKILL.md +382 -0
  3. package/bundle/builtin/skill-creator/scripts/init_skill.cjs +235 -0
  4. package/bundle/builtin/skill-creator/scripts/package_skill.cjs +102 -0
  5. package/bundle/builtin/skill-creator/scripts/validate_skill.cjs +127 -0
  6. package/bundle/codefly.js +318024 -294904
  7. package/bundle/docs/architecture.md +3 -3
  8. package/bundle/docs/assets/monitoring-dashboard-logs.png +0 -0
  9. package/bundle/docs/assets/monitoring-dashboard-metrics.png +0 -0
  10. package/bundle/docs/assets/monitoring-dashboard-overview.png +0 -0
  11. package/bundle/docs/changelogs/index.md +134 -0
  12. package/bundle/docs/changelogs/latest.md +355 -210
  13. package/bundle/docs/changelogs/preview.md +318 -115
  14. package/bundle/docs/cli/commands.md +21 -0
  15. package/bundle/docs/cli/custom-commands.md +9 -9
  16. package/bundle/docs/cli/index.md +6 -2
  17. package/bundle/docs/cli/keyboard-shortcuts.md +61 -78
  18. package/bundle/docs/cli/model-routing.md +7 -2
  19. package/bundle/docs/cli/model.md +1 -1
  20. package/bundle/docs/cli/openspec.md +164 -0
  21. package/bundle/docs/cli/sandbox.md +1 -1
  22. package/bundle/docs/cli/settings.md +80 -60
  23. package/bundle/docs/cli/skills.md +188 -0
  24. package/bundle/docs/cli/system-prompt.md +32 -0
  25. package/bundle/docs/cli/telemetry.md +38 -3
  26. package/bundle/docs/cli/themes.md +0 -2
  27. package/bundle/docs/cli/tutorials/skills-getting-started.md +124 -0
  28. package/bundle/docs/cli/tutorials.md +4 -0
  29. package/bundle/docs/core/index.md +4 -0
  30. package/bundle/docs/core/memport.md +2 -0
  31. package/bundle/docs/core/policy-engine.md +3 -2
  32. package/bundle/docs/extensions/getting-started-extensions.md +39 -2
  33. package/bundle/docs/get-started/configuration.md +127 -71
  34. package/bundle/docs/get-started/gemini-3.md +2 -17
  35. package/bundle/docs/hooks/reference.md +245 -116
  36. package/bundle/docs/index.md +2 -0
  37. package/bundle/docs/local-development.md +1 -1
  38. package/bundle/docs/releases.md +1 -1
  39. package/bundle/docs/sidebar.json +5 -5
  40. package/bundle/docs/tools/database-schema.md +231 -0
  41. package/bundle/docs/tools/index.md +7 -0
  42. package/bundle/docs/tools/mcp-server.md +26 -2
  43. package/bundle/docs/tools/shell.md +1 -1
  44. package/bundle/docs/tools/swagger-schema.md +236 -0
  45. package/bundle/docs/troubleshooting.md +23 -5
  46. package/bundle/policies/agent.toml +1 -1
  47. package/bundle/policies/plan.toml +70 -0
  48. package/bundle/policies/read-only.toml +0 -5
  49. package/bundle/policies/yolo.toml +1 -0
  50. package/package.json +12 -5
  51. package/bundle/docs/get-started/deployment.md +0 -143
@@ -1,6 +1,6 @@
1
- # Latest stable release: v0.21.0 - v0.21.1
1
+ # Latest stable release: v0.25.0
2
2
 
3
- Released: December 16, 2025
3
+ Released: January 20, 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,215 +11,360 @@ npm install -g @google/gemini-cli
11
11
 
12
12
  ## Highlights
13
13
 
14
- - **⚡️⚡️⚡️ Gemini 3 Flash + Gemini CLI:** If you are a paid user, you can now
15
- enable Gemini 3 Pro and Gemini 3 Flash. Go to `/settings` and set **Preview
16
- Features** to `true` to enable Gemini 3. For more information:
17
- [Gemini 3 Flash is now available in Gemini CLI](https://developers.googleblog.com/gemini-3-flash-is-now-available-in-gemini-cli/).
14
+ - **Skills and Agents Improvements:** Enhanced `activate_skill` tool, new
15
+ `pr-creator` skill, default enablement of skills, improved `cli_help` agent,
16
+ and a new `/agents refresh` command.
17
+ - **UI/UX Refinements:** Transparent feedback for skills, ability to switch
18
+ focus between shell and input with Tab, and dynamic terminal tab titles.
19
+ - **Core Functionality & Performance:** Support for built-in agent skills,
20
+ refined Gemini 3 system instructions, caching ignore instances for
21
+ performance, and improved retry mechanisms.
22
+ - **Bug Fixes and Stability:** Numerous bug fixes across the CLI, core, and
23
+ workflows, including issues with subagent delegation, unicode character
24
+ crashes, and sticky header regressions.
18
25
 
19
26
  ## What's Changed
20
27
 
21
- - refactor(stdio): always patch stdout and use createWorkingStdio for clean
22
- output by @allenhutchison in
23
- https://github.com/google-gemini/gemini-cli/pull/14159
24
- - chore(release): bump version to 0.21.0-nightly.20251202.2d935b379 by
25
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14409
26
- - implement fuzzy search inside settings by @sehoon38 in
27
- https://github.com/google-gemini/gemini-cli/pull/13864
28
- - feat: enable message bus integration by default by @allenhutchison in
29
- https://github.com/google-gemini/gemini-cli/pull/14329
30
- - docs: Recommend using --debug intead of --verbose for CLI debugging by @bbiggs
31
- in https://github.com/google-gemini/gemini-cli/pull/14334
32
- - feat: consolidate remote MCP servers to use `url` in config by
33
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/13762
34
- - Restrict integration tests tools by @scidomino in
35
- https://github.com/google-gemini/gemini-cli/pull/14403
36
- - track github repository names in telemetry events by @IamRiddhi in
37
- https://github.com/google-gemini/gemini-cli/pull/13670
38
- - Allow telemetry exporters to GCP to utilize user's login credentials, if
39
- requested by @mboshernitsan in
40
- https://github.com/google-gemini/gemini-cli/pull/13778
41
- - refactor(editor): use const assertion for editor types with single source of
42
- truth by @amsminn in https://github.com/google-gemini/gemini-cli/pull/8604
43
- - fix(security): Fix npm audit vulnerabilities in glob and body-parser by
44
- @afarber in https://github.com/google-gemini/gemini-cli/pull/14090
45
- - Add new enterprise instructions by @chrstnb in
46
- https://github.com/google-gemini/gemini-cli/pull/8641
47
- - feat(hooks): Hook Session Lifecycle & Compression Integration by @Edilmo in
48
- https://github.com/google-gemini/gemini-cli/pull/14151
49
- - Avoid triggering refreshStatic unless there really is a banner to display. by
50
- @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14328
51
- - feat(hooks): Hooks Commands Panel, Enable/Disable, and Migrate by @Edilmo in
52
- https://github.com/google-gemini/gemini-cli/pull/14225
53
- - fix: Bundle default policies for npx distribution by @allenhutchison in
54
- https://github.com/google-gemini/gemini-cli/pull/14457
55
- - feat(hooks): Hook System Documentation by @Edilmo in
56
- https://github.com/google-gemini/gemini-cli/pull/14307
57
- - Fix tests by @scidomino in
58
- https://github.com/google-gemini/gemini-cli/pull/14458
59
- - feat: add scheduled workflow to close stale issues by @galz10 in
60
- https://github.com/google-gemini/gemini-cli/pull/14404
61
- - feat: Support Extension Hooks with Security Warning by @abhipatel12 in
62
- https://github.com/google-gemini/gemini-cli/pull/14460
63
- - feat: Add enableAgents experimental flag by @adamfweidman in
64
- https://github.com/google-gemini/gemini-cli/pull/14371
65
- - docs: fix typo 'socus' to 'focus' in todos.md by @Viktor286 in
66
- https://github.com/google-gemini/gemini-cli/pull/14374
67
- - Markdown export: move the emoji to the end of the line by @mhansen in
68
- https://github.com/google-gemini/gemini-cli/pull/12278
69
- - fix(acp): prevent unnecessary credential cache clearing on re-authent… by
70
- @h-michael in https://github.com/google-gemini/gemini-cli/pull/9410
71
- - fix(cli): Fix word navigation for CJK characters by @SandyTao520 in
72
- https://github.com/google-gemini/gemini-cli/pull/14475
73
- - Remove example extension by @chrstnb in
74
- https://github.com/google-gemini/gemini-cli/pull/14376
75
- - Add commands for listing and updating per-extension settings by @chrstnb in
76
- https://github.com/google-gemini/gemini-cli/pull/12664
77
- - chore(tests): remove obsolete test for hierarchical memory by @pareshjoshij in
78
- https://github.com/google-gemini/gemini-cli/pull/13122
79
- - feat(cli): support /copy in remote sessions using OSC52 by @ismellpillows in
80
- https://github.com/google-gemini/gemini-cli/pull/13471
81
- - Update setting search UX by @Adib234 in
82
- https://github.com/google-gemini/gemini-cli/pull/14451
83
- - Fix(cli): Improve Homebrew update instruction to specify gemini-cli by
84
- @DaanVersavel in https://github.com/google-gemini/gemini-cli/pull/14502
85
- - do not toggle the setting item when entering space by @sehoon38 in
86
- https://github.com/google-gemini/gemini-cli/pull/14489
87
- - fix: improve retry logic for fetch errors and network codes by @megha1188 in
88
- https://github.com/google-gemini/gemini-cli/pull/14439
89
- - remove unused isSearching field by @sehoon38 in
90
- https://github.com/google-gemini/gemini-cli/pull/14509
91
- - feat(mcp): add `--type` alias for `--transport` flag in gemini mcp add by
92
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14503
93
- - feat(cli): Move key restore logic to core by @cocosheng-g in
94
- https://github.com/google-gemini/gemini-cli/pull/13013
95
- - feat: add auto-execute on Enter behavior to argumentless MCP prompts by
96
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14510
97
- - fix(shell): cursor visibility when using interactive mode by @aswinashok44 in
98
- https://github.com/google-gemini/gemini-cli/pull/14095
99
- - Adding session id as part of json o/p by @MJjainam in
100
- https://github.com/google-gemini/gemini-cli/pull/14504
101
- - fix(extensions): resolve GitHub API 415 error for source tarballs by
102
- @jpoehnelt in https://github.com/google-gemini/gemini-cli/pull/13319
103
- - fix(client): Correctly latch hasFailedCompressionAttempt flag by @pareshjoshij
104
- in https://github.com/google-gemini/gemini-cli/pull/13002
105
- - Disable flaky extension reloading test on linux by @chrstnb in
106
- https://github.com/google-gemini/gemini-cli/pull/14528
107
- - Add support for MCP dynamic tool update by `notifications/tools/list_changed`
108
- by @Adib234 in https://github.com/google-gemini/gemini-cli/pull/14375
109
- - Fix privacy screen for legacy tier users by @scidomino in
110
- https://github.com/google-gemini/gemini-cli/pull/14522
111
- - feat: Exclude maintainer labeled issues from stale issue closer by @galz10 in
112
- https://github.com/google-gemini/gemini-cli/pull/14532
113
- - Grant chained workflows proper permission. by @scidomino in
114
- https://github.com/google-gemini/gemini-cli/pull/14534
115
- - Make trigger_e2e manually fireable. by @scidomino in
116
- https://github.com/google-gemini/gemini-cli/pull/14547
117
- - Write e2e status to local repo not forked repo by @scidomino in
118
- https://github.com/google-gemini/gemini-cli/pull/14549
119
- - Fixes [API Error: Cannot read properties of undefined (reading 'error')] by
120
- @silviojr in https://github.com/google-gemini/gemini-cli/pull/14553
121
- - Trigger chained e2e tests on all pull requests by @scidomino in
122
- https://github.com/google-gemini/gemini-cli/pull/14551
123
- - Fix bug in the shellExecutionService resulting in both truncation and 3X bloat
124
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14545
125
- - Fix issue where we were passing the model content reflecting terminal line
126
- wrapping. by @jacob314 in
127
- https://github.com/google-gemini/gemini-cli/pull/14566
128
- - chore/release: bump version to 0.21.0-nightly.20251204.3da4fd5f7 by
129
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14476
130
- - feat(sessions): use 1-line generated session summary to describe sessions by
131
- @jackwotherspoon in https://github.com/google-gemini/gemini-cli/pull/14467
132
- - Use Robot PAT for chained e2e merge queue skipper by @scidomino in
133
- https://github.com/google-gemini/gemini-cli/pull/14585
134
- - fix(core): improve API response error handling and retry logic by @mattKorwel
135
- in https://github.com/google-gemini/gemini-cli/pull/14563
136
- - Docs: Model routing clarification by @jkcinouye in
137
- https://github.com/google-gemini/gemini-cli/pull/14373
138
- - expose previewFeatures flag in a2a by @sehoon38 in
139
- https://github.com/google-gemini/gemini-cli/pull/14550
140
- - Fix emoji width in debug console. by @jacob314 in
141
- https://github.com/google-gemini/gemini-cli/pull/14593
142
- - Fully detach autoupgrade process by @scidomino in
143
- https://github.com/google-gemini/gemini-cli/pull/14595
144
- - Docs: Update Gemini 3 on Gemini CLI documentation by @jkcinouye in
145
- https://github.com/google-gemini/gemini-cli/pull/14601
146
- - Disallow floating promises. by @gundermanc in
147
- https://github.com/google-gemini/gemini-cli/pull/14605
148
- - chore/release: bump version to 0.21.0-nightly.20251207.025e450ac by
149
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14662
150
- - feat(modelAvailabilityService): integrate model availability service into
151
- backend logic by @adamfweidman in
152
- https://github.com/google-gemini/gemini-cli/pull/14470
153
- - Add prompt_id propagation in a2a-server task by @koxkox111 in
154
- https://github.com/google-gemini/gemini-cli/pull/14581
155
- - Fix: Prevent freezing in non-interactive Gemini CLI when debug mode is enabled
156
- by @parthasaradhie in https://github.com/google-gemini/gemini-cli/pull/14580
157
- - fix(audio): improve reading of audio files by @jackwotherspoon in
158
- https://github.com/google-gemini/gemini-cli/pull/14658
159
- - Update automated triage workflow to stop assigning priority labels by
160
- @skeshive in https://github.com/google-gemini/gemini-cli/pull/14717
161
- - set failed status when chained e2e fails by @scidomino in
162
- https://github.com/google-gemini/gemini-cli/pull/14725
163
- - feat(github action) Triage and Label Pull Requests by Size and Comple… by
164
- @DaanVersavel in https://github.com/google-gemini/gemini-cli/pull/5571
165
- - refactor(telemetry): Improve previous PR that allows telemetry to use the CLI
166
- auth and add testing by @mboshernitsan in
167
- https://github.com/google-gemini/gemini-cli/pull/14589
168
- - Always set status in chained_e2e workflow by @scidomino in
169
- https://github.com/google-gemini/gemini-cli/pull/14730
170
- - feat: Add OTEL log event `gemini_cli.startup_stats` for startup stats. by
171
- @kevin-ramdass in https://github.com/google-gemini/gemini-cli/pull/14734
172
- - feat: auto-execute on slash command completion functions by @jackwotherspoon
173
- in https://github.com/google-gemini/gemini-cli/pull/14584
174
- - Docs: Proper release notes by @jkcinouye in
175
- https://github.com/google-gemini/gemini-cli/pull/14405
176
- - Add support for user-scoped extension settings by @chrstnb in
177
- https://github.com/google-gemini/gemini-cli/pull/13748
178
- - refactor(core): Improve environment variable handling in shell execution by
179
- @galz10 in https://github.com/google-gemini/gemini-cli/pull/14742
180
- - Remove old E2E Workflows by @scidomino in
181
- https://github.com/google-gemini/gemini-cli/pull/14749
182
- - fix: handle missing local extension config and skip hooks when disabled by
183
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/14744
184
- - chore/release: bump version to 0.21.0-nightly.20251209.ec9a8c7a7 by
185
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14751
186
- - feat: Add support for MCP Resources by @MrLesk in
187
- https://github.com/google-gemini/gemini-cli/pull/13178
188
- - Always set pending status in E2E tests by @scidomino in
189
- https://github.com/google-gemini/gemini-cli/pull/14756
190
- - fix(lint): upgrade pip and use public pypi for yamllint by @allenhutchison in
191
- https://github.com/google-gemini/gemini-cli/pull/14746
192
- - fix: use Gemini API supported image formats for clipboard by @jackwotherspoon
193
- in https://github.com/google-gemini/gemini-cli/pull/14762
194
- - feat(a2a): Introduce restore command for a2a server by @cocosheng-g in
195
- https://github.com/google-gemini/gemini-cli/pull/13015
196
- - allow final:true to be returned on a2a server edit calls. by @DavidAPierce in
197
- https://github.com/google-gemini/gemini-cli/pull/14747
198
- - (fix) Automated pr labeller by @DaanVersavel in
199
- https://github.com/google-gemini/gemini-cli/pull/14788
200
- - Update CODEOWNERS by @kklashtorny1 in
201
- https://github.com/google-gemini/gemini-cli/pull/14830
202
- - Docs: Fix errors preventing site rebuild. by @jkcinouye in
203
- https://github.com/google-gemini/gemini-cli/pull/14842
204
- - chore(deps): bump express from 5.1.0 to 5.2.0 by @dependabot[bot] in
205
- https://github.com/google-gemini/gemini-cli/pull/14325
206
- - fix(patch): cherry-pick 3f5f030 to release/v0.21.0-preview.0-pr-14843 to patch
207
- version v0.21.0-preview.0 and create version 0.21.0-preview.1 by
208
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14851
209
- - fix(patch): cherry-pick ee6556c to release/v0.21.0-preview.1-pr-14691 to patch
210
- version v0.21.0-preview.1 and create version 0.21.0-preview.2 by
211
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14908
212
- - fix(patch): cherry-pick 54de675 to release/v0.21.0-preview.2-pr-14961 by
213
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/14968
214
- - fix(patch): cherry-pick 12cbe32 to release/v0.21.0-preview.3-pr-15000 to patch
215
- version v0.21.0-preview.3 and create version 0.21.0-preview.4 by
216
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15003
217
- - fix(patch): cherry-pick edbe548 to release/v0.21.0-preview.4-pr-15007 to patch
218
- version v0.21.0-preview.4 and create version 0.21.0-preview.5 by
219
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15015
220
- - fix(patch): cherry-pick 2995af6 to release/v0.21.0-preview.5-pr-15131 to patch
221
- version v0.21.0-preview.5 and create version 0.21.0-preview.6 by
222
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15153
28
+ - feat(core): improve activate_skill tool and use lowercase XML tags by
29
+ @NTaylorMullen in
30
+ [#16009](https://github.com/google-gemini/gemini-cli/pull/16009)
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
34
+ @gemini-cli-robot in
35
+ [#16048](https://github.com/google-gemini/gemini-cli/pull/16048)
36
+ - Hx support by @kevinfjiang in
37
+ [#16032](https://github.com/google-gemini/gemini-cli/pull/16032)
38
+ - [Skills] Foundation: Centralize management logic and feedback rendering by
39
+ @NTaylorMullen in
40
+ [#15952](https://github.com/google-gemini/gemini-cli/pull/15952)
41
+ - Introduce GEMINI_CLI_HOME for strict test isolation by @NTaylorMullen in
42
+ [#15907](https://github.com/google-gemini/gemini-cli/pull/15907)
43
+ - [Skills] Multi-scope skill enablement and shadowing fix by @NTaylorMullen in
44
+ [#15953](https://github.com/google-gemini/gemini-cli/pull/15953)
45
+ - policy: extract legacy policy from core tool scheduler to policy engine by
46
+ @abhipatel12 in
47
+ [#15902](https://github.com/google-gemini/gemini-cli/pull/15902)
48
+ - Enhance TestRig with process management and timeouts by @NTaylorMullen in
49
+ [#15908](https://github.com/google-gemini/gemini-cli/pull/15908)
50
+ - Update troubleshooting doc for UNABLE_TO_GET_ISSUER_CERT_LOCALLY by @sehoon38
51
+ in [#16069](https://github.com/google-gemini/gemini-cli/pull/16069)
52
+ - Add keytar to dependencies by @chrstnb in
53
+ [#15928](https://github.com/google-gemini/gemini-cli/pull/15928)
54
+ - Simplify extension settings command by @chrstnb in
55
+ [#16001](https://github.com/google-gemini/gemini-cli/pull/16001)
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
188
+ @NTaylorMullen in
189
+ [#16229](https://github.com/google-gemini/gemini-cli/pull/16229)
190
+ - refactor: migrate chatCompressionService to use HookSystem by @ved015 in
191
+ [#16259](https://github.com/google-gemini/gemini-cli/pull/16259)
192
+ - fix: properly use systemMessage for hooks in UI by @jackwotherspoon in
193
+ [#16250](https://github.com/google-gemini/gemini-cli/pull/16250)
194
+ - Infer modifyOtherKeys support by @scidomino in
195
+ [#16270](https://github.com/google-gemini/gemini-cli/pull/16270)
196
+ - feat(core): Cache ignore instances for performance by @EricRahm in
197
+ [#16185](https://github.com/google-gemini/gemini-cli/pull/16185)
198
+ - feat: apply remote admin settings (no-op) by @skeshive in
199
+ [#16106](https://github.com/google-gemini/gemini-cli/pull/16106)
200
+ - Autogenerate docs/cli/settings.md docs/getting-started/configuration.md was
201
+ already autogenerated but settings.md was not. by @jacob314 in
202
+ [#14408](https://github.com/google-gemini/gemini-cli/pull/14408)
203
+ - refactor(config): remove legacy V1 settings migration logic by @galz10 in
204
+ [#16252](https://github.com/google-gemini/gemini-cli/pull/16252)
205
+ - Fix an issue where the agent stops prematurely by @gundermanc in
206
+ [#16269](https://github.com/google-gemini/gemini-cli/pull/16269)
207
+ - Update system prompt to prefer non-interactive commands by @NTaylorMullen in
208
+ [#16117](https://github.com/google-gemini/gemini-cli/pull/16117)
209
+ - Update ink version to 6.4.7 by @jacob314 in
210
+ [#16284](https://github.com/google-gemini/gemini-cli/pull/16284)
211
+ - Support for Built-in Agent Skills by @NTaylorMullen in
212
+ [#16045](https://github.com/google-gemini/gemini-cli/pull/16045)
213
+ - fix(skills): remove "Restart required" message from non-interactive commands
214
+ by @NTaylorMullen in
215
+ [#16307](https://github.com/google-gemini/gemini-cli/pull/16307)
216
+ - remove unused sessionHookTriggers and exports by @ved015 in
217
+ [#16324](https://github.com/google-gemini/gemini-cli/pull/16324)
218
+ - Triage action cleanup by @bdmorgan in
219
+ [#16319](https://github.com/google-gemini/gemini-cli/pull/16319)
220
+ - fix: Add event-driven trigger to issue triage workflow by @bdmorgan in
221
+ [#16334](https://github.com/google-gemini/gemini-cli/pull/16334)
222
+ - fix(workflows): resolve triage workflow failures and actionlint errors by
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
294
+ @NTaylorMullen in
295
+ [#16378](https://github.com/google-gemini/gemini-cli/pull/16378)
296
+ - feat(core): add disableLLMCorrection setting to skip auto-correction in edit
297
+ tools by @SandyTao520 in
298
+ [#16000](https://github.com/google-gemini/gemini-cli/pull/16000)
299
+ - fix: Set both tab and window title instead of just window title by
300
+ @NTaylorMullen in
301
+ [#16464](https://github.com/google-gemini/gemini-cli/pull/16464)
302
+ - fix(policy): ensure MCP policies match unqualified names in non-interactive
303
+ mode by @NTaylorMullen in
304
+ [#16490](https://github.com/google-gemini/gemini-cli/pull/16490)
305
+ - fix(cli): refine 'Action Required' indicator and focus hints by @NTaylorMullen
306
+ in [#16497](https://github.com/google-gemini/gemini-cli/pull/16497)
307
+ - Refactor beforeAgent and afterAgent hookEvents to follow desired output by
308
+ @ved015 in [#16495](https://github.com/google-gemini/gemini-cli/pull/16495)
309
+ - feat(agents): clarify mandatory YAML frontmatter for sub-agents by
310
+ @NTaylorMullen in
311
+ [#16515](https://github.com/google-gemini/gemini-cli/pull/16515)
312
+ - docs(telemetry): add Google Cloud Monitoring dashboard documentation by @jerop
313
+ in [#16520](https://github.com/google-gemini/gemini-cli/pull/16520)
314
+ - Implement support for subagents as extensions. by @gundermanc in
315
+ [#16473](https://github.com/google-gemini/gemini-cli/pull/16473)
316
+ - refactor: make baseTimestamp optional in addItem and remove redundant calls by
317
+ @sehoon38 in [#16471](https://github.com/google-gemini/gemini-cli/pull/16471)
318
+ - Improve key binding names and descriptions by @scidomino in
319
+ [#16529](https://github.com/google-gemini/gemini-cli/pull/16529)
320
+ - feat(core, cli): Add support for agents in settings.json. by @joshualitt in
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
337
+ @NTaylorMullen in
338
+ [#16532](https://github.com/google-gemini/gemini-cli/pull/16532)
339
+ - Fix: make ctrl+x use preferred editor by @scidomino in
340
+ [#16556](https://github.com/google-gemini/gemini-cli/pull/16556)
341
+ - fix(core): Resolve race condition in tool response reporting by @abhipatel12
342
+ in [#16557](https://github.com/google-gemini/gemini-cli/pull/16557)
343
+ - feat(ui): highlight persist mode status in ModelDialog by @sehoon38 in
344
+ [#16483](https://github.com/google-gemini/gemini-cli/pull/16483)
345
+ - refactor: clean up A2A task output for users and LLMs by @adamfweidman in
346
+ [#16561](https://github.com/google-gemini/gemini-cli/pull/16561)
347
+ - feat(core/ui): enhance retry mechanism and UX by @sehoon38 in
348
+ [#16489](https://github.com/google-gemini/gemini-cli/pull/16489)
349
+ - Modernize MaxSizedBox to use and ResizeObservers by @jacob314 in
350
+ [#16565](https://github.com/google-gemini/gemini-cli/pull/16565)
351
+ - Behavioral evals framework. by @gundermanc in
352
+ [#16047](https://github.com/google-gemini/gemini-cli/pull/16047)
353
+ - Aggregate test results. by @gundermanc in
354
+ [#16581](https://github.com/google-gemini/gemini-cli/pull/16581)
355
+ - feat(admin): support admin-enforced settings for Agent Skills by
356
+ @NTaylorMullen in
357
+ [#16406](https://github.com/google-gemini/gemini-cli/pull/16406)
358
+ - fix(patch): cherry-pick cfdc4cf to release/v0.25.0-preview.0-pr-16759 to patch
359
+ version v0.25.0-preview.0 and create version 0.25.0-preview.1 by
360
+ @gemini-cli-robot in
361
+ [#16866](https://github.com/google-gemini/gemini-cli/pull/16866)
362
+ - Patch #16730 into v0.25.0 preview by @chrstnb in
363
+ [#16882](https://github.com/google-gemini/gemini-cli/pull/16882)
364
+ - fix(patch): cherry-pick 3b55581 to release/v0.25.0-preview.2-pr-16506 to patch
365
+ version v0.25.0-preview.2 and create version 0.25.0-preview.3 by
366
+ @gemini-cli-robot in
367
+ [#17098](https://github.com/google-gemini/gemini-cli/pull/17098)
223
368
 
224
- **Full Changelog**:
225
- https://github.com/google-gemini/gemini-cli/compare/v0.20.2...v0.21.0
369
+ **Full changelog**:
370
+ https://github.com/google-gemini/gemini-cli/compare/v0.24.5...v0.25.0