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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/dist/docs/architecture.md +3 -3
  2. package/dist/docs/changelogs/index.md +25 -0
  3. package/dist/docs/changelogs/latest.md +150 -138
  4. package/dist/docs/changelogs/preview.md +211 -118
  5. package/dist/docs/changelogs/releases.md +406 -25
  6. package/dist/docs/cli/commands.md +7 -0
  7. package/dist/docs/cli/keyboard-shortcuts.md +18 -16
  8. package/dist/docs/cli/rewind.md +51 -0
  9. package/dist/docs/cli/settings.md +1 -0
  10. package/dist/docs/cli/skills.md +8 -8
  11. package/dist/docs/get-started/configuration.md +12 -1
  12. package/dist/docs/sidebar.json +4 -0
  13. package/dist/docs/tools/mcp-server.md +2 -1
  14. package/dist/docs/troubleshooting.md +2 -1
  15. package/dist/src/agents/a2a-client-manager.js +1 -1
  16. package/dist/src/agents/a2a-client-manager.js.map +1 -1
  17. package/dist/src/agents/registry.js +9 -4
  18. package/dist/src/agents/registry.js.map +1 -1
  19. package/dist/src/config/config.d.ts +9 -1
  20. package/dist/src/config/config.js +16 -0
  21. package/dist/src/config/config.js.map +1 -1
  22. package/dist/src/config/config.test.js +20 -0
  23. package/dist/src/config/config.test.js.map +1 -1
  24. package/dist/src/confirmation-bus/types.d.ts +52 -2
  25. package/dist/src/confirmation-bus/types.js +1 -0
  26. package/dist/src/confirmation-bus/types.js.map +1 -1
  27. package/dist/src/core/contentGenerator.js +2 -1
  28. package/dist/src/core/contentGenerator.js.map +1 -1
  29. package/dist/src/core/coreToolScheduler.test.js +7 -4
  30. package/dist/src/core/coreToolScheduler.test.js.map +1 -1
  31. package/dist/src/generated/git-commit.d.ts +2 -2
  32. package/dist/src/generated/git-commit.js +2 -2
  33. package/dist/src/generated/git-commit.js.map +1 -1
  34. package/dist/src/scheduler/state-manager.d.ts +67 -0
  35. package/dist/src/scheduler/state-manager.js +335 -0
  36. package/dist/src/scheduler/state-manager.js.map +1 -0
  37. package/dist/src/scheduler/state-manager.test.d.ts +6 -0
  38. package/dist/src/scheduler/state-manager.test.js +386 -0
  39. package/dist/src/scheduler/state-manager.test.js.map +1 -0
  40. package/dist/src/scheduler/types.d.ts +10 -1
  41. package/dist/src/skills/builtin/skill-creator/SKILL.md +382 -0
  42. package/dist/src/skills/builtin/skill-creator/scripts/init_skill.cjs +235 -0
  43. package/dist/src/skills/builtin/skill-creator/scripts/package_skill.cjs +87 -0
  44. package/dist/src/skills/builtin/skill-creator/scripts/validate_skill.cjs +127 -0
  45. package/dist/src/skills/skillLoader.js +65 -9
  46. package/dist/src/skills/skillLoader.js.map +1 -1
  47. package/dist/src/skills/skillLoader.test.js +110 -0
  48. package/dist/src/skills/skillLoader.test.js.map +1 -1
  49. package/dist/src/skills/skillManager.d.ts +2 -2
  50. package/dist/src/skills/skillManager.js +17 -6
  51. package/dist/src/skills/skillManager.js.map +1 -1
  52. package/dist/src/skills/skillManager.test.js +91 -4
  53. package/dist/src/skills/skillManager.test.js.map +1 -1
  54. package/dist/src/test-utils/mock-tool.d.ts +1 -0
  55. package/dist/src/test-utils/mock-tool.js +1 -0
  56. package/dist/src/test-utils/mock-tool.js.map +1 -1
  57. package/dist/src/tools/shell.js +1 -0
  58. package/dist/src/tools/shell.js.map +1 -1
  59. package/dist/src/tools/tools.d.ts +1 -0
  60. package/dist/src/tools/tools.js.map +1 -1
  61. package/dist/src/utils/shell-utils.js +18 -2
  62. package/dist/src/utils/shell-utils.js.map +1 -1
  63. package/dist/src/utils/shell-utils.test.js +23 -0
  64. package/dist/src/utils/shell-utils.test.js.map +1 -1
  65. package/dist/src/utils/tokenCalculation.js +10 -2
  66. package/dist/src/utils/tokenCalculation.js.map +1 -1
  67. package/dist/src/utils/tokenCalculation.test.js +20 -0
  68. package/dist/src/utils/tokenCalculation.test.js.map +1 -1
  69. package/dist/tsconfig.tsbuildinfo +1 -1
  70. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
- # Preview release: Release v0.23.0-preview.0
1
+ # Preview release: Release v0.24.0-preview.0
2
2
 
3
- Released: December 22, 2025
3
+ Released: January 6, 2026
4
4
 
5
5
  Our preview release includes the latest, new, and experimental features. This
6
6
  release may not be as stable as our [latest weekly release](latest.md).
@@ -11,121 +11,214 @@ To install the preview release:
11
11
  npm install -g @google/gemini-cli@preview
12
12
  ```
13
13
 
14
- ## What's Changed
14
+ ## What's changed
15
15
 
16
- - Code assist service metrics. by @gundermanc in
17
- https://github.com/google-gemini/gemini-cli/pull/15024
18
- - chore/release: bump version to 0.21.0-nightly.20251216.bb0c0d8ee by
19
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15121
20
- - Docs by @Roaimkhan in https://github.com/google-gemini/gemini-cli/pull/15103
21
- - Use official ACP SDK and support HTTP/SSE based MCP servers by @SteffenDE in
22
- https://github.com/google-gemini/gemini-cli/pull/13856
23
- - Remove foreground for themes other than shades of purple and holiday. by
24
- @jacob314 in https://github.com/google-gemini/gemini-cli/pull/14606
25
- - chore: remove repo specific tips by @jackwotherspoon in
26
- https://github.com/google-gemini/gemini-cli/pull/15164
27
- - chore: remove user query from footer in debug mode by @jackwotherspoon in
28
- https://github.com/google-gemini/gemini-cli/pull/15169
29
- - Disallow unnecessary awaits. by @gundermanc in
30
- https://github.com/google-gemini/gemini-cli/pull/15172
31
- - Add one to the padding in settings dialog to avoid flicker. by @jacob314 in
32
- https://github.com/google-gemini/gemini-cli/pull/15173
33
- - feat(core): introduce remote agent infrastructure and rename local executor by
34
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15110
35
- - feat(cli): Add `/auth logout` command to clear credentials and auth state by
36
- @CN-Scars in https://github.com/google-gemini/gemini-cli/pull/13383
37
- - (fix) Automated pr labeler by @DaanVersavel in
38
- https://github.com/google-gemini/gemini-cli/pull/14885
39
- - feat: launch Gemini 3 Flash in Gemini CLI ⚡️⚡️⚡️ by @scidomino in
40
- https://github.com/google-gemini/gemini-cli/pull/15196
41
- - Refactor: Migrate console.error in ripGrep.ts to debugLogger by @Adib234 in
42
- https://github.com/google-gemini/gemini-cli/pull/15201
43
- - chore: update a2a-js to 0.3.7 by @adamfweidman in
44
- https://github.com/google-gemini/gemini-cli/pull/15197
45
- - chore(core): remove redundant isModelAvailabilityServiceEnabled toggle and
46
- clean up dead code by @adamfweidman in
47
- https://github.com/google-gemini/gemini-cli/pull/15207
48
- - feat(core): Late resolve `GenerateContentConfig`s and reduce mutation. by
49
- @joshualitt in https://github.com/google-gemini/gemini-cli/pull/14920
50
- - Respect previewFeatures value from the remote flag if undefined by @sehoon38
51
- in https://github.com/google-gemini/gemini-cli/pull/15214
52
- - feat(ui): add Windows clipboard image support and Alt+V paste workaround by
53
- @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15218
54
- - chore(core): remove legacy fallback flags and migrate loop detection by
55
- @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15213
56
- - fix(ui): Prevent eager slash command completion hiding sibling commands by
57
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15224
58
- - Docs: Update Changelog for Dec 17, 2025 by @jkcinouye in
59
- https://github.com/google-gemini/gemini-cli/pull/15204
60
- - Code Assist backend telemetry for user accept/reject of suggestions by
61
- @gundermanc in https://github.com/google-gemini/gemini-cli/pull/15206
62
- - fix(cli): correct initial history length handling for chat commands by
63
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15223
64
- - chore/release: bump version to 0.21.0-nightly.20251218.739c02bd6 by
65
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15231
66
- - Change detailed model stats to use a new shared Table class to resolve
67
- robustness issues. by @jacob314 in
68
- https://github.com/google-gemini/gemini-cli/pull/15208
69
- - feat: add agent toml parser by @abhipatel12 in
70
- https://github.com/google-gemini/gemini-cli/pull/15112
71
- - Add core tool that adds all context from the core package. by @jacob314 in
72
- https://github.com/google-gemini/gemini-cli/pull/15238
73
- - (docs): Add reference section to hooks documentation by @abhipatel12 in
74
- https://github.com/google-gemini/gemini-cli/pull/15159
75
- - feat(hooks): add support for friendly names and descriptions by @abhipatel12
76
- in https://github.com/google-gemini/gemini-cli/pull/15174
77
- - feat: Detect background color by @jacob314 in
78
- https://github.com/google-gemini/gemini-cli/pull/15132
79
- - add 3.0 to allowed sensitive keywords by @scidomino in
80
- https://github.com/google-gemini/gemini-cli/pull/15276
81
- - feat: Pass additional environment variables to shell execution by @galz10 in
82
- https://github.com/google-gemini/gemini-cli/pull/15160
83
- - Remove unused code by @scidomino in
84
- https://github.com/google-gemini/gemini-cli/pull/15290
85
- - Handle all 429 as retryableQuotaError by @sehoon38 in
86
- https://github.com/google-gemini/gemini-cli/pull/15288
87
- - Remove unnecessary dependencies by @scidomino in
88
- https://github.com/google-gemini/gemini-cli/pull/15291
89
- - fix: prevent infinite loop in prompt completion on error by @galz10 in
90
- https://github.com/google-gemini/gemini-cli/pull/14548
91
- - fix(ui): show command suggestions even on perfect match and sort them by
92
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15287
93
- - feat(hooks): reduce log verbosity and improve error reporting in UI by
94
- @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15297
95
- - feat: simplify tool confirmation labels for better UX by @NTaylorMullen in
96
- https://github.com/google-gemini/gemini-cli/pull/15296
97
- - chore/release: bump version to 0.21.0-nightly.20251219.70696e364 by
98
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15301
99
- - feat(core): Implement JIT context memory loading and UI sync by @SandyTao520
100
- in https://github.com/google-gemini/gemini-cli/pull/14469
101
- - feat(ui): Put "Allow for all future sessions" behind a setting off by default.
102
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15322
103
- - fix(cli):change the placeholder of input during the shell mode by
104
- @JayadityaGit in https://github.com/google-gemini/gemini-cli/pull/15135
105
- - Validate OAuth resource parameter matches MCP server URL by @galz10 in
106
- https://github.com/google-gemini/gemini-cli/pull/15289
107
- - docs(cli): add System Prompt Override (GEMINI_SYSTEM_MD) by @ashmod in
108
- https://github.com/google-gemini/gemini-cli/pull/9515
109
- - more robust command parsing logs by @scidomino in
110
- https://github.com/google-gemini/gemini-cli/pull/15339
111
- - Introspection agent demo by @scidomino in
112
- https://github.com/google-gemini/gemini-cli/pull/15232
113
- - fix(core): sanitize hook command expansion and prevent injection by
114
- @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15343
115
- - fix(folder trust): add validation for trusted folder level by @adamfweidman in
116
- https://github.com/google-gemini/gemini-cli/pull/12215
117
- - fix(cli): fix right border overflow in trust dialogs by @galz10 in
118
- https://github.com/google-gemini/gemini-cli/pull/15350
119
- - fix(policy): fix bug where accepting-edits continued after it was turned off
120
- by @jacob314 in https://github.com/google-gemini/gemini-cli/pull/15351
121
- - fix: prevent infinite relaunch loop when --resume fails (#14941) by @Ying-xi
122
- in https://github.com/google-gemini/gemini-cli/pull/14951
123
- - chore/release: bump version to 0.21.0-nightly.20251220.41a1a3eed by
124
- @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15352
125
- - feat(telemetry): add clearcut logging for hooks by @abhipatel12 in
126
- https://github.com/google-gemini/gemini-cli/pull/15405
127
- - fix(core): Add `.geminiignore` support to SearchText tool by @xyrolle in
128
- https://github.com/google-gemini/gemini-cli/pull/13763
16
+ - chore(core): refactor model resolution and cleanup fallback logic by
17
+ @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15228
18
+ - Add Folder Trust Support To Hooks by @sehoon38 in
19
+ https://github.com/google-gemini/gemini-cli/pull/15325
20
+ - Record timestamp with code assist metrics. by @gundermanc in
21
+ https://github.com/google-gemini/gemini-cli/pull/15439
22
+ - feat(policy): implement dynamic mode-aware policy evaluation by @abhipatel12
23
+ in https://github.com/google-gemini/gemini-cli/pull/15307
24
+ - fix(core): use debugLogger.debug for startup profiler logs by @NTaylorMullen
25
+ in https://github.com/google-gemini/gemini-cli/pull/15443
26
+ - feat(ui): Add security warning and improve layout for Hooks list by
27
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15440
28
+ - fix #15369, prevent crash on unhandled EIO error in readStdin cleanup by
29
+ @ElecTwix in https://github.com/google-gemini/gemini-cli/pull/15410
30
+ - chore: improve error messages for --resume by @jackwotherspoon in
31
+ https://github.com/google-gemini/gemini-cli/pull/15360
32
+ - chore: remove clipboard file by @jackwotherspoon in
33
+ https://github.com/google-gemini/gemini-cli/pull/15447
34
+ - Implemented unified secrets sanitization and env. redaction options by
35
+ @gundermanc in https://github.com/google-gemini/gemini-cli/pull/15348
36
+ - feat: automatic `/model` persistence across Gemini CLI sessions by @niyasrad
37
+ in https://github.com/google-gemini/gemini-cli/pull/13199
38
+ - refactor(core): remove deprecated permission aliases from BeforeToolHookOutput
39
+ by @StoyanD in https://github.com/google-gemini/gemini-cli/pull/14855
40
+ - fix: add missing `type` field to MCPServerConfig by @jackwotherspoon in
41
+ https://github.com/google-gemini/gemini-cli/pull/15465
42
+ - Make schema validation errors non-fatal by @jacob314 in
43
+ https://github.com/google-gemini/gemini-cli/pull/15487
44
+ - chore: limit MCP resources display to 10 by default by @jackwotherspoon in
45
+ https://github.com/google-gemini/gemini-cli/pull/15489
46
+ - Add experimental in-CLI extension install and uninstall subcommands by
47
+ @chrstnb in https://github.com/google-gemini/gemini-cli/pull/15178
48
+ - feat: Add A2A Client Manager and tests by @adamfweidman in
49
+ https://github.com/google-gemini/gemini-cli/pull/15485
50
+ - feat: terse transformations of image paths in text buffer by @psinha40898 in
51
+ https://github.com/google-gemini/gemini-cli/pull/4924
52
+ - Security: Project-level hook warnings by @sehoon38 in
53
+ https://github.com/google-gemini/gemini-cli/pull/15470
54
+ - Added modifyOtherKeys protocol support for tmux by @ved015 in
55
+ https://github.com/google-gemini/gemini-cli/pull/15524
56
+ - chore(core): fix comment typo by @Mapleeeeeeeeeee in
57
+ https://github.com/google-gemini/gemini-cli/pull/15558
58
+ - feat: Show snowfall animation for holiday theme by @sehoon38 in
59
+ https://github.com/google-gemini/gemini-cli/pull/15494
60
+ - do not persist the fallback model by @sehoon38 in
61
+ https://github.com/google-gemini/gemini-cli/pull/15483
62
+ - Resolve unhandled promise rejection in ide-client.ts by @Adib234 in
63
+ https://github.com/google-gemini/gemini-cli/pull/15587
64
+ - fix(core): handle checkIsRepo failure in GitService.initialize by
65
+ @Mapleeeeeeeeeee in https://github.com/google-gemini/gemini-cli/pull/15574
66
+ - fix(cli): add enableShellOutputEfficiency to settings schema by
67
+ @Mapleeeeeeeeeee in https://github.com/google-gemini/gemini-cli/pull/15560
68
+ - Manual nightly version bump to 0.24.0-nightly.20251226.546baf993 by @galz10 in
69
+ https://github.com/google-gemini/gemini-cli/pull/15594
70
+ - refactor(core): extract static concerns from CoreToolScheduler by @abhipatel12
71
+ in https://github.com/google-gemini/gemini-cli/pull/15589
72
+ - fix(core): enable granular shell command allowlisting in policy engine by
73
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15601
74
+ - chore/release: bump version to 0.24.0-nightly.20251227.37be16243 by
75
+ @gemini-cli-robot in https://github.com/google-gemini/gemini-cli/pull/15612
76
+ - refactor: deprecate legacy confirmation settings and enforce Policy Engine by
77
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15626
78
+ - Migrate console to coreEvents.emitFeedback or debugLogger by @Adib234 in
79
+ https://github.com/google-gemini/gemini-cli/pull/15219
80
+ - Exponential back-off retries for retryable error without a specified … by
81
+ @sehoon38 in https://github.com/google-gemini/gemini-cli/pull/15684
82
+ - feat(agents): add support for remote agents and multi-agent TOML files by
83
+ @adamfweidman in https://github.com/google-gemini/gemini-cli/pull/15437
84
+ - Update wittyPhrases.ts by @segyges in
85
+ https://github.com/google-gemini/gemini-cli/pull/15697
86
+ - refactor(auth): Refactor non-interactive mode auth validation & refresh by
87
+ @skeshive in https://github.com/google-gemini/gemini-cli/pull/15679
88
+ - Revert "Update wittyPhrases.ts (#15697)" by @abhipatel12 in
89
+ https://github.com/google-gemini/gemini-cli/pull/15719
90
+ - fix(hooks): deduplicate agent hooks and add cross-platform integration tests
91
+ by @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15701
92
+ - Implement support for tool input modification by @gundermanc in
93
+ https://github.com/google-gemini/gemini-cli/pull/15492
94
+ - Add instructions to the extensions update info notification by @chrstnb in
95
+ https://github.com/google-gemini/gemini-cli/pull/14907
96
+ - Add extension settings info to /extensions list by @chrstnb in
97
+ https://github.com/google-gemini/gemini-cli/pull/14905
98
+ - Agent Skills: Implement Core Skill Infrastructure & Tiered Discovery by
99
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15698
100
+ - chore: remove cot style comments by @abhipatel12 in
101
+ https://github.com/google-gemini/gemini-cli/pull/15735
102
+ - feat(agents): Add remote agents to agent registry by @sehoon38 in
103
+ https://github.com/google-gemini/gemini-cli/pull/15711
104
+ - feat(hooks): implement STOP_EXECUTION and enhance hook decision handling by
105
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15685
106
+ - Fix build issues caused by year-specific linter rule by @gundermanc in
107
+ https://github.com/google-gemini/gemini-cli/pull/15780
108
+ - fix(core): handle unhandled promise rejection in mcp-client-manager by
109
+ @kamja44 in https://github.com/google-gemini/gemini-cli/pull/14701
110
+ - log fallback mode by @sehoon38 in
111
+ https://github.com/google-gemini/gemini-cli/pull/15817
112
+ - Agent Skills: Implement Autonomous Activation Tool & Context Injection by
113
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15725
114
+ - fix(core): improve shell command with redirection detection by @galz10 in
115
+ https://github.com/google-gemini/gemini-cli/pull/15683
116
+ - Add security docs by @abhipatel12 in
117
+ https://github.com/google-gemini/gemini-cli/pull/15739
118
+ - feat: add folder suggestions to `/dir add` command by @jackwotherspoon in
119
+ https://github.com/google-gemini/gemini-cli/pull/15724
120
+ - Agent Skills: Implement Agent Integration and System Prompt Awareness by
121
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15728
122
+ - chore: cleanup old smart edit settings by @abhipatel12 in
123
+ https://github.com/google-gemini/gemini-cli/pull/15832
124
+ - Agent Skills: Status Bar Integration for Skill Counts by @NTaylorMullen in
125
+ https://github.com/google-gemini/gemini-cli/pull/15741
126
+ - fix(core): mock powershell output in shell-utils test by @galz10 in
127
+ https://github.com/google-gemini/gemini-cli/pull/15831
128
+ - Agent Skills: Unify Representation & Centralize Loading by @NTaylorMullen in
129
+ https://github.com/google-gemini/gemini-cli/pull/15833
130
+ - Unify shell security policy and remove legacy logic by @abhipatel12 in
131
+ https://github.com/google-gemini/gemini-cli/pull/15770
132
+ - feat(core): restore MessageBus optionality for soft migration (Phase 1) by
133
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15774
134
+ - feat(core): Standardize Tool and Agent Invocation constructors (Phase 2) by
135
+ @abhipatel12 in https://github.com/google-gemini/gemini-cli/pull/15775
136
+ - feat(core,cli): enforce mandatory MessageBus injection (Phase 3 Hard
137
+ Migration) by @abhipatel12 in
138
+ https://github.com/google-gemini/gemini-cli/pull/15776
139
+ - Agent Skills: Extension Support & Security Disclosure by @NTaylorMullen in
140
+ https://github.com/google-gemini/gemini-cli/pull/15834
141
+ - feat(hooks): implement granular stop and block behavior for agent hooks by
142
+ @SandyTao520 in https://github.com/google-gemini/gemini-cli/pull/15824
143
+ - Agent Skills: Add gemini skills CLI management command by @NTaylorMullen in
144
+ https://github.com/google-gemini/gemini-cli/pull/15837
145
+ - refactor: consolidate EditTool and SmartEditTool by @abhipatel12 in
146
+ https://github.com/google-gemini/gemini-cli/pull/15857
147
+ - fix(cli): mock fs.readdir in consent tests for Windows compatibility by
148
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15904
149
+ - refactor(core): Extract and integrate ToolExecutor by @abhipatel12 in
150
+ https://github.com/google-gemini/gemini-cli/pull/15900
151
+ - Fix terminal hang when user exits browser without logging in by @gundermanc in
152
+ https://github.com/google-gemini/gemini-cli/pull/15748
153
+ - fix: avoid SDK warning by not accessing .text getter in logging by @ved015 in
154
+ https://github.com/google-gemini/gemini-cli/pull/15706
155
+ - Make default settings apply by @devr0306 in
156
+ https://github.com/google-gemini/gemini-cli/pull/15354
157
+ - chore: rename smart-edit to edit by @abhipatel12 in
158
+ https://github.com/google-gemini/gemini-cli/pull/15923
159
+ - Opt-in to persist model from /model by @sehoon38 in
160
+ https://github.com/google-gemini/gemini-cli/pull/15820
161
+ - fix: prevent /copy crash on Windows by skipping /dev/tty by @ManojINaik in
162
+ https://github.com/google-gemini/gemini-cli/pull/15657
163
+ - Support context injection via SessionStart hook. by @gundermanc in
164
+ https://github.com/google-gemini/gemini-cli/pull/15746
165
+ - Fix order of preflight by @scidomino in
166
+ https://github.com/google-gemini/gemini-cli/pull/15941
167
+ - Fix failing unit tests by @gundermanc in
168
+ https://github.com/google-gemini/gemini-cli/pull/15940
169
+ - fix(cli): resolve paste issue on Windows terminals. by @scidomino in
170
+ https://github.com/google-gemini/gemini-cli/pull/15932
171
+ - Agent Skills: Implement /skills reload by @NTaylorMullen in
172
+ https://github.com/google-gemini/gemini-cli/pull/15865
173
+ - Add setting to support OSC 52 paste by @scidomino in
174
+ https://github.com/google-gemini/gemini-cli/pull/15336
175
+ - remove manual string when displaying manual model in the footer by @sehoon38
176
+ in https://github.com/google-gemini/gemini-cli/pull/15967
177
+ - fix(core): use correct interactive check for system prompt by @ppergame in
178
+ https://github.com/google-gemini/gemini-cli/pull/15020
179
+ - Inform user of missing settings on extensions update by @chrstnb in
180
+ https://github.com/google-gemini/gemini-cli/pull/15944
181
+ - feat(policy): allow 'modes' in user and admin policies by @NTaylorMullen in
182
+ https://github.com/google-gemini/gemini-cli/pull/15977
183
+ - fix: default folder trust to untrusted for enhanced security by @galz10 in
184
+ https://github.com/google-gemini/gemini-cli/pull/15943
185
+ - Add description for each settings item in /settings by @sehoon38 in
186
+ https://github.com/google-gemini/gemini-cli/pull/15936
187
+ - Use GetOperation to poll for OnboardUser completion by @ishaanxgupta in
188
+ https://github.com/google-gemini/gemini-cli/pull/15827
189
+ - Agent Skills: Add skill directory to WorkspaceContext upon activation by
190
+ @NTaylorMullen in https://github.com/google-gemini/gemini-cli/pull/15870
191
+ - Fix settings command fallback by @chrstnb in
192
+ https://github.com/google-gemini/gemini-cli/pull/15926
193
+ - fix: writeTodo construction by @scidomino in
194
+ https://github.com/google-gemini/gemini-cli/pull/16014
195
+ - properly disable keyboard modes on exit by @scidomino in
196
+ https://github.com/google-gemini/gemini-cli/pull/16006
197
+ - Add workflow to label child issues for rollup by @bdmorgan in
198
+ https://github.com/google-gemini/gemini-cli/pull/16002
199
+ - feat(ui): add visual indicators for hook execution by @abhipatel12 in
200
+ https://github.com/google-gemini/gemini-cli/pull/15408
201
+ - fix: image token estimation by @jackwotherspoon in
202
+ https://github.com/google-gemini/gemini-cli/pull/16004
203
+ - feat(hooks): Add a hooks.enabled setting. by @joshualitt in
204
+ https://github.com/google-gemini/gemini-cli/pull/15933
205
+ - feat(admin): Introduce remote admin settings & implement
206
+ secureModeEnabled/mcpEnabled by @skeshive in
207
+ https://github.com/google-gemini/gemini-cli/pull/15935
208
+ - Remove trailing whitespace in yaml. by @joshualitt in
209
+ https://github.com/google-gemini/gemini-cli/pull/16036
210
+ - feat(agents): add support for remote agents by @adamfweidman in
211
+ https://github.com/google-gemini/gemini-cli/pull/16013
212
+ - fix: limit scheduled issue triage queries to prevent argument list too long
213
+ error by @jerop in https://github.com/google-gemini/gemini-cli/pull/16021
214
+ - ci(github-actions): triage all new issues automatically by @jerop in
215
+ https://github.com/google-gemini/gemini-cli/pull/16018
216
+ - Fix test. by @gundermanc in
217
+ https://github.com/google-gemini/gemini-cli/pull/16011
218
+ - fix: hide broken skills object from settings dialog by @korade-krushna in
219
+ https://github.com/google-gemini/gemini-cli/pull/15766
220
+ - Agent Skills: Initial Documentation & Tutorial by @NTaylorMullen in
221
+ https://github.com/google-gemini/gemini-cli/pull/15869
129
222
 
130
- **Full Changelog**:
131
- https://github.com/google-gemini/gemini-cli/compare/v0.22.0-preview.3...v0.23.0-preview.0
223
+ **Full changelog**:
224
+ https://github.com/google-gemini/gemini-cli/compare/v0.23.0-preview.6...v0.24.0-preview.0