@dgxo/mashadevcli 1.1.0

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 (140) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +393 -0
  3. package/bundle/builtin/skill-creator/SKILL.md +382 -0
  4. package/bundle/builtin/skill-creator/scripts/init_skill.cjs +239 -0
  5. package/bundle/builtin/skill-creator/scripts/package_skill.cjs +131 -0
  6. package/bundle/builtin/skill-creator/scripts/validate_skill.cjs +131 -0
  7. package/bundle/docs/CONTRIBUTING.md +1 -0
  8. package/bundle/docs/admin/enterprise-controls.md +115 -0
  9. package/bundle/docs/assets/connected_devtools.png +0 -0
  10. package/bundle/docs/assets/gemini-screenshot.png +0 -0
  11. package/bundle/docs/assets/monitoring-dashboard-logs.png +0 -0
  12. package/bundle/docs/assets/monitoring-dashboard-metrics.png +0 -0
  13. package/bundle/docs/assets/monitoring-dashboard-overview.png +0 -0
  14. package/bundle/docs/assets/release_patch.png +0 -0
  15. package/bundle/docs/assets/theme-ansi-light.png +0 -0
  16. package/bundle/docs/assets/theme-ansi.png +0 -0
  17. package/bundle/docs/assets/theme-atom-one.png +0 -0
  18. package/bundle/docs/assets/theme-ayu-light.png +0 -0
  19. package/bundle/docs/assets/theme-ayu.png +0 -0
  20. package/bundle/docs/assets/theme-custom.png +0 -0
  21. package/bundle/docs/assets/theme-default-light.png +0 -0
  22. package/bundle/docs/assets/theme-default.png +0 -0
  23. package/bundle/docs/assets/theme-dracula.png +0 -0
  24. package/bundle/docs/assets/theme-github-light.png +0 -0
  25. package/bundle/docs/assets/theme-github.png +0 -0
  26. package/bundle/docs/assets/theme-google-light.png +0 -0
  27. package/bundle/docs/assets/theme-xcode-light.png +0 -0
  28. package/bundle/docs/changelogs/index.md +867 -0
  29. package/bundle/docs/changelogs/latest.md +208 -0
  30. package/bundle/docs/changelogs/preview.md +187 -0
  31. package/bundle/docs/cli/checkpointing.md +93 -0
  32. package/bundle/docs/cli/cli-reference.md +115 -0
  33. package/bundle/docs/cli/creating-skills.md +80 -0
  34. package/bundle/docs/cli/custom-commands.md +327 -0
  35. package/bundle/docs/cli/enterprise.md +604 -0
  36. package/bundle/docs/cli/gemini-ignore.md +71 -0
  37. package/bundle/docs/cli/gemini-md.md +116 -0
  38. package/bundle/docs/cli/generation-settings.md +210 -0
  39. package/bundle/docs/cli/headless.md +50 -0
  40. package/bundle/docs/cli/model-routing.md +42 -0
  41. package/bundle/docs/cli/model.md +53 -0
  42. package/bundle/docs/cli/plan-mode.md +375 -0
  43. package/bundle/docs/cli/rewind.md +51 -0
  44. package/bundle/docs/cli/sandbox.md +257 -0
  45. package/bundle/docs/cli/session-management.md +184 -0
  46. package/bundle/docs/cli/settings.md +165 -0
  47. package/bundle/docs/cli/skills.md +134 -0
  48. package/bundle/docs/cli/system-prompt.md +125 -0
  49. package/bundle/docs/cli/telemetry.md +922 -0
  50. package/bundle/docs/cli/themes.md +269 -0
  51. package/bundle/docs/cli/token-caching.md +20 -0
  52. package/bundle/docs/cli/trusted-folders.md +126 -0
  53. package/bundle/docs/cli/tutorials/automation.md +283 -0
  54. package/bundle/docs/cli/tutorials/file-management.md +142 -0
  55. package/bundle/docs/cli/tutorials/mcp-setup.md +113 -0
  56. package/bundle/docs/cli/tutorials/memory-management.md +126 -0
  57. package/bundle/docs/cli/tutorials/session-management.md +105 -0
  58. package/bundle/docs/cli/tutorials/shell-commands.md +107 -0
  59. package/bundle/docs/cli/tutorials/skills-getting-started.md +110 -0
  60. package/bundle/docs/cli/tutorials/task-planning.md +93 -0
  61. package/bundle/docs/cli/tutorials/web-tools.md +78 -0
  62. package/bundle/docs/core/index.md +107 -0
  63. package/bundle/docs/core/remote-agents.md +84 -0
  64. package/bundle/docs/core/subagents.md +307 -0
  65. package/bundle/docs/examples/proxy-script.md +83 -0
  66. package/bundle/docs/extensions/best-practices.md +188 -0
  67. package/bundle/docs/extensions/index.md +61 -0
  68. package/bundle/docs/extensions/reference.md +333 -0
  69. package/bundle/docs/extensions/releasing.md +154 -0
  70. package/bundle/docs/extensions/writing-extensions.md +308 -0
  71. package/bundle/docs/get-started/authentication.md +402 -0
  72. package/bundle/docs/get-started/examples.md +139 -0
  73. package/bundle/docs/get-started/gemini-3.md +115 -0
  74. package/bundle/docs/get-started/index.md +82 -0
  75. package/bundle/docs/get-started/installation.md +174 -0
  76. package/bundle/docs/hooks/best-practices.md +709 -0
  77. package/bundle/docs/hooks/index.md +164 -0
  78. package/bundle/docs/hooks/reference.md +330 -0
  79. package/bundle/docs/hooks/writing-hooks.md +474 -0
  80. package/bundle/docs/ide-integration/ide-companion-spec.md +267 -0
  81. package/bundle/docs/ide-integration/index.md +224 -0
  82. package/bundle/docs/index.md +141 -0
  83. package/bundle/docs/integration-tests.md +211 -0
  84. package/bundle/docs/issue-and-pr-automation.md +172 -0
  85. package/bundle/docs/local-development.md +134 -0
  86. package/bundle/docs/mermaid/context.mmd +103 -0
  87. package/bundle/docs/mermaid/render-path.mmd +64 -0
  88. package/bundle/docs/npm.md +62 -0
  89. package/bundle/docs/redirects.json +20 -0
  90. package/bundle/docs/reference/commands.md +526 -0
  91. package/bundle/docs/reference/configuration.md +1786 -0
  92. package/bundle/docs/reference/keyboard-shortcuts.md +164 -0
  93. package/bundle/docs/reference/memport.md +246 -0
  94. package/bundle/docs/reference/policy-engine.md +364 -0
  95. package/bundle/docs/reference/tools.md +106 -0
  96. package/bundle/docs/release-confidence.md +164 -0
  97. package/bundle/docs/releases.md +540 -0
  98. package/bundle/docs/resources/faq.md +175 -0
  99. package/bundle/docs/resources/quota-and-pricing.md +165 -0
  100. package/bundle/docs/resources/tos-privacy.md +102 -0
  101. package/bundle/docs/resources/troubleshooting.md +176 -0
  102. package/bundle/docs/resources/uninstall.md +56 -0
  103. package/bundle/docs/sidebar.json +233 -0
  104. package/bundle/docs/tools/activate-skill.md +43 -0
  105. package/bundle/docs/tools/ask-user.md +95 -0
  106. package/bundle/docs/tools/file-system.md +129 -0
  107. package/bundle/docs/tools/internal-docs.md +46 -0
  108. package/bundle/docs/tools/mcp-server.md +1150 -0
  109. package/bundle/docs/tools/memory.md +35 -0
  110. package/bundle/docs/tools/planning.md +58 -0
  111. package/bundle/docs/tools/shell.md +216 -0
  112. package/bundle/docs/tools/todos.md +35 -0
  113. package/bundle/docs/tools/web-fetch.md +35 -0
  114. package/bundle/docs/tools/web-search.md +32 -0
  115. package/bundle/docs/update/update-guide.md +111 -0
  116. package/bundle/masha.js +563471 -0
  117. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/client/main.js +89 -0
  118. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/src/_client-assets.d.ts +7 -0
  119. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/src/_client-assets.js +9 -0
  120. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/src/_client-assets.js.map +1 -0
  121. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/src/index.d.ts +48 -0
  122. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/src/index.js +299 -0
  123. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/src/index.js.map +1 -0
  124. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/src/types.d.ts +36 -0
  125. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/src/types.js +7 -0
  126. package/bundle/node_modules/@dgxo/mashadevcli-devtools/dist/src/types.js.map +1 -0
  127. package/bundle/node_modules/@dgxo/mashadevcli-devtools/package.json +32 -0
  128. package/bundle/policies/conseca.toml +6 -0
  129. package/bundle/policies/discovered.toml +8 -0
  130. package/bundle/policies/plan.toml +109 -0
  131. package/bundle/policies/read-only.toml +53 -0
  132. package/bundle/policies/write.toml +80 -0
  133. package/bundle/policies/yolo.toml +54 -0
  134. package/bundle/sandbox-macos-permissive-open.sb +27 -0
  135. package/bundle/sandbox-macos-permissive-proxied.sb +37 -0
  136. package/bundle/sandbox-macos-restrictive-open.sb +96 -0
  137. package/bundle/sandbox-macos-restrictive-proxied.sb +98 -0
  138. package/bundle/sandbox-macos-strict-open.sb +131 -0
  139. package/bundle/sandbox-macos-strict-proxied.sb +133 -0
  140. package/package.json +169 -0
@@ -0,0 +1,867 @@
1
+ # Gemini CLI release notes
2
+
3
+ Gemini CLI has three major release channels: nightly, preview, and stable. For
4
+ most users, we recommend the stable release.
5
+
6
+ On this page, you can find information regarding the current releases and
7
+ announcements from each release.
8
+
9
+ For the full changelog, refer to
10
+ [Releases - DGameGT/mashadev-cli](https://github.com/DGameGT/mashadev-cli/releases)
11
+ on GitHub.
12
+
13
+ ## Current releases
14
+
15
+ | Release channel | Notes |
16
+ | :-------------------- | :---------------------------------------------- |
17
+ | Nightly | Nightly release with the most recent changes. |
18
+ | [Preview](preview.md) | Experimental features ready for early feedback. |
19
+ | [Stable](latest.md) | Stable, recommended for general use. |
20
+
21
+ ## Announcements: v0.32.0 - 2026-03-03
22
+
23
+ - **Generalist Agent:** The generalist agent is now enabled to improve task
24
+ delegation and routing
25
+ ([#19665](https://github.com/DGameGT/mashadev-cli/pull/19665) by
26
+ @joshualitt).
27
+ - **Model Steering in Workspace:** Added support for model steering directly in
28
+ the workspace
29
+ ([#20343](https://github.com/DGameGT/mashadev-cli/pull/20343) by
30
+ @joshualitt).
31
+ - **Plan Mode Enhancements:** Users can now open and modify plans in an external
32
+ editor, and the planning workflow has been adapted to handle complex tasks
33
+ more effectively with multi-select options
34
+ ([#20348](https://github.com/DGameGT/mashadev-cli/pull/20348) by @Adib234,
35
+ [#20465](https://github.com/DGameGT/mashadev-cli/pull/20465) by @jerop).
36
+ - **Interactive Shell Autocompletion:** Introduced interactive shell
37
+ autocompletion for a more seamless experience
38
+ ([#20082](https://github.com/DGameGT/mashadev-cli/pull/20082) by
39
+ @mrpmohiburrahman).
40
+ - **Parallel Extension Loading:** Extensions are now loaded in parallel to
41
+ improve startup times
42
+ ([#20229](https://github.com/DGameGT/mashadev-cli/pull/20229) by
43
+ @scidomino).
44
+
45
+ ## Announcements: v0.31.0 - 2026-02-27
46
+
47
+ - **Gemini 3.1 Pro Preview:** Gemini CLI now supports the new Gemini 3.1 Pro
48
+ Preview model
49
+ ([#19676](https://github.com/DGameGT/mashadev-cli/pull/19676) by
50
+ @sehoon38).
51
+ - **Experimental Browser Agent:** We've introduced a new experimental browser
52
+ agent to interact with web pages
53
+ ([#19284](https://github.com/DGameGT/mashadev-cli/pull/19284) by
54
+ @gsquared94).
55
+ - **Policy Engine Updates:** The policy engine now supports project-level
56
+ policies, MCP server wildcards, and tool annotation matching
57
+ ([#18682](https://github.com/DGameGT/mashadev-cli/pull/18682) by
58
+ @Abhijit-2592,
59
+ [#20024](https://github.com/DGameGT/mashadev-cli/pull/20024) by @jerop).
60
+ - **Web Fetch Improvements:** We've implemented an experimental direct web fetch
61
+ feature and added rate limiting to mitigate DDoS risks
62
+ ([#19557](https://github.com/DGameGT/mashadev-cli/pull/19557) by @mbleigh,
63
+ [#19567](https://github.com/DGameGT/mashadev-cli/pull/19567) by
64
+ @mattKorwel).
65
+
66
+ ## Announcements: v0.30.0 - 2026-02-25
67
+
68
+ - **SDK & Custom Skills:** Introduced the initial SDK package, enabling dynamic
69
+ system instructions, `SessionContext` for SDK tool calls, and support for
70
+ custom skills
71
+ ([#18861](https://github.com/DGameGT/mashadev-cli/pull/18861) by
72
+ @mbleigh).
73
+ - **Policy Engine Enhancements:** Added a new `--policy` flag for user-defined
74
+ policies, introduced strict seatbelt profiles, and deprecated
75
+ `--allowed-tools` in favor of the policy engine
76
+ ([#18500](https://github.com/DGameGT/mashadev-cli/pull/18500) by
77
+ @allenhutchison).
78
+ - **UI & Themes:** Added a generic searchable list for settings and extensions,
79
+ new Solarized themes, text wrapping for markdown tables, and a clean UI toggle
80
+ prototype ([#19064](https://github.com/DGameGT/mashadev-cli/pull/19064) by
81
+ @rmedranollamas).
82
+ - **Vim & Terminal Interaction:** Improved Vim support to feel more complete and
83
+ added support for Ctrl-Z terminal suspension
84
+ ([#18755](https://github.com/DGameGT/mashadev-cli/pull/18755) by
85
+ @ppgranger, [#18931](https://github.com/DGameGT/mashadev-cli/pull/18931)
86
+ by @scidomino).
87
+
88
+ ## Announcements: v0.29.0 - 2026-02-17
89
+
90
+ - **Plan Mode:** A new comprehensive planning capability with `/plan`,
91
+ `enter_plan_mode` tool, and dedicated documentation
92
+ ([#17698](https://github.com/DGameGT/mashadev-cli/pull/17698) by @Adib234,
93
+ [#18324](https://github.com/DGameGT/mashadev-cli/pull/18324) by @jerop).
94
+ - **Gemini 3 Default:** We've removed the preview flag and enabled Gemini 3 by
95
+ default for all users
96
+ ([#18414](https://github.com/DGameGT/mashadev-cli/pull/18414) by
97
+ @sehoon38).
98
+ - **Extension Exploration:** New UI and settings to explore and manage
99
+ extensions more easily
100
+ ([#18686](https://github.com/DGameGT/mashadev-cli/pull/18686) by
101
+ @sripasg).
102
+ - **Admin Control:** Administrators can now allowlist specific MCP server
103
+ configurations
104
+ ([#18311](https://github.com/DGameGT/mashadev-cli/pull/18311) by
105
+ @skeshive).
106
+
107
+ ## Announcements: v0.28.0 - 2026-02-10
108
+
109
+ - **Slash Command:** We've added a new `/prompt-suggest` slash command to help
110
+ you generate prompt suggestions
111
+ ([#17264](https://github.com/DGameGT/mashadev-cli/pull/17264) by
112
+ @NTaylorMullen).
113
+ - **IDE Support:** Gemini CLI now supports the Positron IDE
114
+ ([#15047](https://github.com/DGameGT/mashadev-cli/pull/15047) by
115
+ @kapsner).
116
+ - **Customization:** You can now use custom themes in extensions, and we've
117
+ implemented automatic theme switching based on your terminal's background
118
+ ([#17327](https://github.com/DGameGT/mashadev-cli/pull/17327) by
119
+ @spencer426, [#17976](https://github.com/DGameGT/mashadev-cli/pull/17976)
120
+ by @Abhijit-2592).
121
+ - **Authentication:** We've added interactive and non-interactive consent for
122
+ OAuth, and you can now include your auth method in bug reports
123
+ ([#17699](https://github.com/DGameGT/mashadev-cli/pull/17699) by
124
+ @ehedlund, [#17569](https://github.com/DGameGT/mashadev-cli/pull/17569) by
125
+ @erikus).
126
+
127
+ ## Announcements: v0.27.0 - 2026-02-03
128
+
129
+ - **Event-Driven Architecture:** The CLI now uses a new event-driven scheduler
130
+ for tool execution, resulting in a more responsive and performant experience
131
+ ([#17078](https://github.com/DGameGT/mashadev-cli/pull/17078) by
132
+ @abhipatel12).
133
+ - **Enhanced User Experience:** This release includes queued tool confirmations,
134
+ and expandable large text pastes for a smoother workflow.
135
+ - **New `/rewind` Command:** Easily navigate your session history with the new
136
+ `/rewind` command
137
+ ([#15720](https://github.com/DGameGT/mashadev-cli/pull/15720) by
138
+ @Adib234).
139
+ - **Linux Clipboard Support:** You can now paste images on Linux with Wayland
140
+ and X11 ([#17144](https://github.com/DGameGT/mashadev-cli/pull/17144) by
141
+ @devr0306).
142
+
143
+ ## Announcements: v0.26.0 - 2026-01-27
144
+
145
+ - **Agents and Skills:** We've introduced a new `skill-creator` skill
146
+ ([#16394](https://github.com/DGameGT/mashadev-cli/pull/16394) by
147
+ @NTaylorMullen), enabled agent skills by default, and added a generalist agent
148
+ to improve task routing
149
+ ([#16638](https://github.com/DGameGT/mashadev-cli/pull/16638) by
150
+ @joshualitt).
151
+ - **UI/UX Improvements:** You can now "Rewind" through your conversation history
152
+ ([#15717](https://github.com/DGameGT/mashadev-cli/pull/15717) by @Adib234)
153
+ and use a new `/introspect` command for debugging.
154
+ - **Core and Scheduler Refactoring:** The core scheduler has been significantly
155
+ refactored to improve performance and reliability
156
+ ([#16895](https://github.com/DGameGT/mashadev-cli/pull/16895) by
157
+ @abhipatel12), and numerous performance and stability fixes have been
158
+ included.
159
+
160
+ ## Announcements: v0.25.0 - 2026-01-20
161
+
162
+ - **Skills and Agents Improvements:** We've enhanced the `activate_skill` tool,
163
+ added a new `pr-creator` skill
164
+ ([#16232](https://github.com/DGameGT/mashadev-cli/pull/16232) by
165
+ [@NTaylorMullen](https://github.com/NTaylorMullen)), enabled skills by
166
+ default, improved the `cli_help` agent
167
+ ([#16100](https://github.com/DGameGT/mashadev-cli/pull/16100) by
168
+ [@scidomino](https://github.com/scidomino)), and added a new `/agents refresh`
169
+ command ([#16204](https://github.com/DGameGT/mashadev-cli/pull/16204) by
170
+ [@joshualitt](https://github.com/joshualitt)).
171
+ - **UI/UX Refinements:** You'll notice more transparent feedback for skills
172
+ ([#15954](https://github.com/DGameGT/mashadev-cli/pull/15954) by
173
+ [@NTaylorMullen](https://github.com/NTaylorMullen)), the ability to switch
174
+ focus between the shell and input with Tab
175
+ ([#14332](https://github.com/DGameGT/mashadev-cli/pull/14332) by
176
+ [@jacob314](https://github.com/jacob314)), and dynamic terminal tab titles
177
+ ([#16378](https://github.com/DGameGT/mashadev-cli/pull/16378) by
178
+ [@NTaylorMullen](https://github.com/NTaylorMullen)).
179
+ - **Core Functionality & Performance:** This release includes support for
180
+ built-in agent skills
181
+ ([#16045](https://github.com/DGameGT/mashadev-cli/pull/16045) by
182
+ [@NTaylorMullen](https://github.com/NTaylorMullen)), refined Gemini 3 system
183
+ instructions ([#16139](https://github.com/DGameGT/mashadev-cli/pull/16139)
184
+ by [@NTaylorMullen](https://github.com/NTaylorMullen)), caching for ignore
185
+ instances to improve performance
186
+ ([#16185](https://github.com/DGameGT/mashadev-cli/pull/16185) by
187
+ [@EricRahm](https://github.com/EricRahm)), and enhanced retry mechanisms
188
+ ([#16489](https://github.com/DGameGT/mashadev-cli/pull/16489) by
189
+ [@sehoon38](https://github.com/sehoon38)).
190
+ - **Bug Fixes and Stability:** We've squashed numerous bugs across the CLI,
191
+ core, and workflows, addressing issues with subagent delegation, unicode
192
+ character crashes, and sticky header regressions.
193
+
194
+ ## Announcements: v0.24.0 - 2026-01-14
195
+
196
+ - **Agent Skills:** We've introduced significant advancements in Agent Skills.
197
+ This includes initial documentation and tutorials to help you get started,
198
+ alongside enhanced support for remote agents, allowing for more distributed
199
+ and powerful automation within Gemini CLI.
200
+ ([#15869](https://github.com/DGameGT/mashadev-cli/pull/15869) by
201
+ [@NTaylorMullen](https://github.com/NTaylorMullen)),
202
+ ([#16013](https://github.com/DGameGT/mashadev-cli/pull/16013) by
203
+ [@adamweidman](https://github.com/adamweidman))
204
+ - **Improved UI/UX:** The user interface has received several updates, featuring
205
+ visual indicators for hook execution, a more refined display for settings, and
206
+ the ability to use the Tab key to effortlessly switch focus between the shell
207
+ and input areas.
208
+ ([#15408](https://github.com/DGameGT/mashadev-cli/pull/15408) by
209
+ [@abhipatel12](https://github.com/abhipatel12)),
210
+ ([#14332](https://github.com/DGameGT/mashadev-cli/pull/14332) by
211
+ [@galz10](https://github.com/galz10))
212
+ - **Enhanced Security:** Security has been a major focus, with default folder
213
+ trust now set to untrusted for increased safety. The Policy Engine has been
214
+ improved to allow specific modes in user and administrator policies, and
215
+ granular allowlisting for shell commands has been implemented, providing finer
216
+ control over tool execution.
217
+ ([#15943](https://github.com/DGameGT/mashadev-cli/pull/15943) by
218
+ [@galz10](https://github.com/galz10)),
219
+ ([#15977](https://github.com/DGameGT/mashadev-cli/pull/15977) by
220
+ [@NTaylorMullen](https://github.com/NTaylorMullen))
221
+ - **Core Functionality:** This release includes a mandatory MessageBus
222
+ injection, marking Phase 3 of a hard migration to a more robust internal
223
+ communication system. We've also added support for built-in skills with the
224
+ CLI itself, and enhanced model routing to effectively utilize subagents.
225
+ ([#15776](https://github.com/DGameGT/mashadev-cli/pull/15776) by
226
+ [@abhipatel12](https://github.com/abhipatel12)),
227
+ ([#16300](https://github.com/DGameGT/mashadev-cli/pull/16300) by
228
+ [@NTaylorMullen](https://github.com/NTaylorMullen))
229
+ - **Terminal Features:** Terminal interactions are more seamless with new
230
+ features like OSC 52 paste support, along with fixes for Windows clipboard
231
+ paste issues and general improvements to pasting in Windows terminals.
232
+ ([#15336](https://github.com/DGameGT/mashadev-cli/pull/15336) by
233
+ [@scidomino](https://github.com/scidomino)),
234
+ ([#15932](https://github.com/DGameGT/mashadev-cli/pull/15932) by
235
+ [@scidomino](https://github.com/scidomino))
236
+ - **New Commands:** To manage the new features, we've added several new
237
+ commands: `/agents refresh` to update agent configurations, `/skills reload`
238
+ to refresh skill definitions, and `/skills install/uninstall` for easier
239
+ management of your Agent Skills.
240
+ ([#16204](https://github.com/DGameGT/mashadev-cli/pull/16204) by
241
+ [@NTaylorMullen](https://github.com/NTaylorMullen)),
242
+ ([#15865](https://github.com/DGameGT/mashadev-cli/pull/15865) by
243
+ [@NTaylorMullen](https://github.com/NTaylorMullen)),
244
+ ([#16377](https://github.com/DGameGT/mashadev-cli/pull/16377) by
245
+ [@NTaylorMullen](https://github.com/NTaylorMullen))
246
+
247
+ ## Announcements: v0.23.0 - 2026-01-07
248
+
249
+ - 🎉 **Experimental Agent Skills Support in Preview:** Gemini CLI now supports
250
+ [Agent Skills](https://agentskills.io/home) in our preview builds. This is an
251
+ early preview where we’re looking for feedback!
252
+ - Install Preview: `npm install -g @dgxo/mashadevcli@preview`
253
+ - Enable in `/settings`
254
+ - Docs:
255
+ [https://geminicli.com/docs/cli/skills/](https://geminicli.com/docs/cli/skills/)
256
+ - **Gemini CLI wrapped:** Run `npx gemini-wrapped` to visualize your usage
257
+ stats, top models, languages, and more!
258
+ - **Windows clipboard image support:** Windows users can now paste images
259
+ directly from their clipboard into the CLI using `Alt`+`V`.
260
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/13997) by
261
+ [@sgeraldes](https://github.com/sgeraldes))
262
+ - **Terminal background color detection:** Automatically optimizes your
263
+ terminal's background color to select compatible themes and provide
264
+ accessibility warnings.
265
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/15132) by
266
+ [@jacob314](https://github.com/jacob314))
267
+ - **Session logout:** Use the new `/logout` command to instantly clear
268
+ credentials and reset your authentication state for seamless account
269
+ switching. ([pr](https://github.com/DGameGT/mashadev-cli/pull/13383) by
270
+ [@CN-Scars](https://github.com/CN-Scars))
271
+
272
+ ## Announcements: v0.22.0 - 2025-12-22
273
+
274
+ - 🎉**Free Tier + Gemini 3:** Free tier users now all have access to Gemini 3
275
+ Pro & Flash. Enable in `/settings` by toggling "Preview Features" to `true`.
276
+ - 🎉**Gemini CLI + Colab:** Gemini CLI is now pre-installed. Can be used
277
+ headlessly in notebook cells or interactively in the built-in terminal
278
+ ([pic](https://imgur.com/a/G0Tn7vi))
279
+ - 🎉**Gemini CLI Extensions:**
280
+ - **Conductor:** Planning++, Gemini works with you to build out a detailed
281
+ plan, pull in extra details as needed, ultimately to give the LLM guardrails
282
+ with artifacts. Measure twice, implement once!
283
+
284
+ `gemini extensions install https://github.com/gemini-cli-extensions/conductor`
285
+
286
+ Blog:
287
+ [https://developers.googleblog.com/conductor-introducing-context-driven-development-for-gemini-cli/](https://developers.googleblog.com/conductor-introducing-context-driven-development-for-gemini-cli/)
288
+
289
+ - **Endor Labs:** Perform code analysis, vulnerability scanning, and
290
+ dependency checks using natural language.
291
+
292
+ `gemini extensions install https://github.com/endorlabs/gemini-extension`
293
+
294
+ ## Announcements: v0.21.0 - 2025-12-15
295
+
296
+ - **⚡️⚡️⚡️ Gemini 3 Flash + Gemini CLI:** Better, faster and cheaper than 2.5
297
+ Pro - and in some scenarios better than 3 Pro! For paid tiers + free tier
298
+ users who were on the wait list enable **Preview Features** in `/settings.`
299
+ - For more information:
300
+ [Gemini 3 Flash is now available in Gemini CLI](https://developers.googleblog.com/gemini-3-flash-is-now-available-in-gemini-cli/).
301
+ - 🎉 Gemini CLI Extensions:
302
+ - Rill: Utilize natural language to analyze Rill data, enabling the
303
+ exploration of metrics and trends without the need for manual queries.
304
+ `gemini extensions install https://github.com/rilldata/rill-gemini-extension`
305
+ - Browserbase: Interact with web pages, take screenshots, extract information,
306
+ and perform automated actions with atomic precision.
307
+ `gemini extensions install https://github.com/browserbase/mcp-server-browserbase`
308
+ - Quota Visibility: The `/stats` command now displays quota information for all
309
+ available models, including those not used in the current session. (@sehoon38)
310
+ - Fuzzy Setting Search: Users can now quickly find settings using fuzzy search
311
+ within the settings dialog. (@sehoon38)
312
+ - MCP Resource Support: Users can now discover, view, and search through
313
+ resources using the @ command. (@MrLesk)
314
+ - Auto-execute Simple Slash Commands: Simple slash commands are now executed
315
+ immediately on enter. (@jackwotherspoon)
316
+
317
+ ## Announcements: v0.20.0 - 2025-12-01
318
+
319
+ - **Multi-file Drag & Drop:** Users can now drag and drop multiple files into
320
+ the terminal, and the CLI will automatically prefix each valid path with `@`.
321
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/14832) by
322
+ [@jackwotherspoon](https://github.com/jackwotherspoon))
323
+ - **Persistent "Always Allow" Policies:** Users can now save "Always Allow"
324
+ decisions for tool executions, with granular control over specific shell
325
+ commands and multi-cloud platform tools.
326
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/14737) by
327
+ [@allenhutchison](https://github.com/allenhutchison))
328
+
329
+ ## Announcements: v0.19.0 - 2025-11-24
330
+
331
+ - 🎉 **New extensions:**
332
+ - **Eleven Labs:** Create, play, manage your audio play tracks with the Eleven
333
+ Labs Gemini CLI extension:
334
+ `gemini extensions install https://github.com/elevenlabs/elevenlabs-mcp`
335
+ - **Zed integration:** Users can now leverage Gemini 3 within the Zed
336
+ integration after enabling "Preview Features" in their CLI’s `/settings`.
337
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/13398) by
338
+ [@benbrandt](https://github.com/benbrandt))
339
+ - **Interactive shell:**
340
+ - **Click-to-Focus:** When "Use Alternate Buffer" setting is enabled, users
341
+ can click within the embedded shell output to focus it for input.
342
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/13341) by
343
+ [@galz10](https://github.com/galz10))
344
+ - **Loading phrase:** Clearly indicates when the interactive shell is awaiting
345
+ user input. ([vid](https://imgur.com/a/kjK8bUK),
346
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/12535) by
347
+ [@jackwotherspoon](https://github.com/jackwotherspoon))
348
+
349
+ ## Announcements: v0.18.0 - 2025-11-17
350
+
351
+ - 🎉 **New extensions:**
352
+ - **Google Workspace**: Integrate Gemini CLI with your Workspace data. Write
353
+ docs, build slides, chat with others or even get your calc on in sheets:
354
+ `gemini extensions install https://github.com/gemini-cli-extensions/workspace`
355
+ - Blog:
356
+ [https://allen.hutchison.org/2025/11/19/bringing-the-office-to-the-terminal/](https://allen.hutchison.org/2025/11/19/bringing-the-office-to-the-terminal/)
357
+ - **Redis:** Manage and search data in Redis with natural language:
358
+ `gemini extensions install https://github.com/redis/mcp-redis`
359
+ - **Anomalo:** Query your data warehouse table metadata and quality status
360
+ through commands and natural language:
361
+ `gemini extensions install https://github.com/datagravity-ai/anomalo-gemini-extension`
362
+ - **Experimental permission improvements:** We are now experimenting with a new
363
+ policy engine in Gemini CLI. This allows users and administrators to create
364
+ fine-grained policy for tool calls. Currently behind a flag. See
365
+ [policy engine documentation](../reference/policy-engine.md) for more
366
+ information.
367
+ - Blog:
368
+ [https://allen.hutchison.org/2025/11/26/the-guardrails-of-autonomy/](https://allen.hutchison.org/2025/11/26/the-guardrails-of-autonomy/)
369
+ - **Gemini 3 support for paid:** Gemini 3 support has been rolled out to all API
370
+ key, Google AI Pro or Google AI Ultra (for individuals, not businesses) and
371
+ Gemini Code Assist Enterprise users. Enable it via `/settings` and toggling on
372
+ **Preview Features**.
373
+ - **Updated UI rollback:** We’ve temporarily rolled back our updated UI to give
374
+ it more time to bake. This means for a time you won’t have embedded scrolling
375
+ or mouse support. You can re-enable with `/settings` -> **Use Alternate Screen
376
+ Buffer** -> `true`.
377
+ - **Model in history:** Users can now toggle in `/settings` to display model in
378
+ their chat history. ([gif](https://imgur.com/a/uEmNKnQ),
379
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/13034) by
380
+ [@scidomino](https://github.com/scidomino))
381
+ - **Multi-uninstall:** Users can now uninstall multiple extensions with a single
382
+ command. ([pic](https://imgur.com/a/9Dtq8u2),
383
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/13016) by
384
+ [@JayadityaGit](https://github.com/JayadityaGit))
385
+
386
+ ## Announcements: v0.16.0 - 2025-11-10
387
+
388
+ - **Gemini 3 + Gemini CLI:** launch 🚀🚀🚀
389
+ - **Data Commons Gemini CLI Extension** - A new Data Commons Gemini CLI
390
+ extension that lets you query open-source statistical data from
391
+ datacommons.org. **To get started, you'll need a Data Commons API key and uv
392
+ installed**. These and other details to get you started with the extension can
393
+ be found at
394
+ [https://github.com/gemini-cli-extensions/datacommons](https://github.com/gemini-cli-extensions/datacommons).
395
+
396
+ ## Announcements: v0.15.0 - 2025-11-03
397
+
398
+ - **🎉 Seamless scrollable UI and mouse support:** We’ve given Gemini CLI a
399
+ major facelift to make your terminal experience smoother and much more
400
+ polished. You now get a flicker-free display with sticky headers that keep
401
+ important context visible and a stable input prompt that doesn't jump around.
402
+ We even added mouse support so you can click right where you need to type!
403
+ ([gif](https://imgur.com/a/O6qc7bx),
404
+ [@jacob314](https://github.com/jacob314)).
405
+ - **Announcement:**
406
+ [https://developers.googleblog.com/en/making-the-terminal-beautiful-one-pixel-at-a-time/](https://developers.googleblog.com/en/making-the-terminal-beautiful-one-pixel-at-a-time/)
407
+ - **🎉 New partner extensions:**
408
+ - **Arize:** Seamlessly instrument AI applications with Arize AX and grant
409
+ direct access to Arize support:
410
+
411
+ `gemini extensions install https://github.com/Arize-ai/arize-tracing-assistant`
412
+
413
+ - **Chronosphere:** Retrieve logs, metrics, traces, events, and specific
414
+ entities:
415
+
416
+ `gemini extensions install https://github.com/chronosphereio/chronosphere-mcp`
417
+
418
+ - **Transmit:** Comprehensive context, validation, and automated fixes for
419
+ creating production-ready authentication and identity workflows:
420
+
421
+ `gemini extensions install https://github.com/TransmitSecurity/transmit-security-journey-builder`
422
+
423
+ - **Todo planning:** Complex questions now get broken down into todo lists that
424
+ the model can manage and check off. ([gif](https://imgur.com/a/EGDfNlZ),
425
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/12905) by
426
+ [@anj-s](https://github.com/anj-s))
427
+ - **Disable GitHub extensions:** Users can now prevent the installation and
428
+ loading of extensions from GitHub.
429
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/12838) by
430
+ [@kevinjwang1](https://github.com/kevinjwang1)).
431
+ - **Extensions restart:** Users can now explicitly restart extensions using the
432
+ `/extensions restart` command.
433
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/12739) by
434
+ [@jakemac53](https://github.com/jakemac53)).
435
+ - **Better Angular support:** Angular workflows should now be more seamless
436
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/10252) by
437
+ [@MarkTechson](https://github.com/MarkTechson)).
438
+ - **Validate command:** Users can now check that local extensions are formatted
439
+ correctly. ([pr](https://github.com/DGameGT/mashadev-cli/pull/12186) by
440
+ [@kevinjwang1](https://github.com/kevinjwang1)).
441
+
442
+ ## Announcements: v0.12.0 - 2025-10-27
443
+
444
+ ![Codebase investigator subagent in Gemini CLI.](https://i.imgur.com/4J1njsx.png)
445
+
446
+ - **🎉 New partner extensions:**
447
+ - **🤗 Hugging Face extension:** Access the Hugging Face hub.
448
+ ([gif](https://drive.google.com/file/d/1LEzIuSH6_igFXq96_tWev11svBNyPJEB/view?usp=sharing&resourcekey=0-LtPTzR1woh-rxGtfPzjjfg))
449
+
450
+ `gemini extensions install https://github.com/huggingface/hf-mcp-server`
451
+
452
+ - **Monday.com extension**: Analyze your sprints, update your task boards,
453
+ etc.
454
+ ([gif](https://drive.google.com/file/d/1cO0g6kY1odiBIrZTaqu5ZakaGZaZgpQv/view?usp=sharing&resourcekey=0-xEr67SIjXmAXRe1PKy7Jlw))
455
+
456
+ `gemini extensions install https://github.com/mondaycom/mcp`
457
+
458
+ - **Data Commons extension:** Query public datasets or ground responses on
459
+ data from Data Commons
460
+ ([gif](https://drive.google.com/file/d/1cuj-B-vmUkeJnoBXrO_Y1CuqphYc6p-O/view?usp=sharing&resourcekey=0-0adXCXDQEd91ZZW63HbW-Q)).
461
+
462
+ `gemini extensions install https://github.com/gemini-cli-extensions/datacommons`
463
+
464
+ - **Model selection:** Choose the Gemini model for your session with `/model`.
465
+ ([pic](https://imgur.com/a/ABFcWWw),
466
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/8940) by
467
+ [@abhipatel12](https://github.com/abhipatel12)).
468
+ - **Model routing:** Gemini CLI will now intelligently pick the best model for
469
+ the task. Simple queries will be sent to Flash while complex analytical or
470
+ creative tasks will still use the power of Pro. This ensures your quota will
471
+ last for a longer period of time. You can always opt-out of this via `/model`.
472
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/9262) by
473
+ [@abhipatel12](https://github.com/abhipatel12)).
474
+ - Discussion:
475
+ [https://github.com/DGameGT/mashadev-cli/discussions/12375](https://github.com/DGameGT/mashadev-cli/discussions/12375)
476
+ - **Codebase investigator subagent:** We now have a new built-in subagent that
477
+ will explore your workspace and resolve relevant information to improve
478
+ overall performance.
479
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/9988) by
480
+ [@abhipatel12](https://github.com/abhipatel12),
481
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/10282) by
482
+ [@silviojr](https://github.com/silviojr)).
483
+ - Enable, disable, or limit turns in `/settings`, plus advanced configs in
484
+ `settings.json` ([pic](https://imgur.com/a/yJiggNO),
485
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/10844) by
486
+ [@silviojr](https://github.com/silviojr)).
487
+ - **Explore extensions with `/extension`:** Users can now open the extensions
488
+ page in their default browser directly from the CLI using the `/extension`
489
+ explore command. ([pr](https://github.com/DGameGT/mashadev-cli/pull/11846)
490
+ by [@JayadityaGit](https://github.com/JayadityaGit)).
491
+ - **Configurable compression:** Users can modify the context compression
492
+ threshold in `/settings` (decimal with percentage display). The default has
493
+ been made more proactive
494
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/12317) by
495
+ [@scidomino](https://github.com/scidomino)).
496
+ - **API key authentication:** Users can now securely enter and store their
497
+ Gemini API key via a new dialog, eliminating the need for environment
498
+ variables and repeated entry.
499
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/11760) by
500
+ [@galz10](https://github.com/galz10)).
501
+ - **Sequential approval:** Users can now approve multiple tool calls
502
+ sequentially during execution.
503
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/11593) by
504
+ [@joshualitt](https://github.com/joshualitt)).
505
+
506
+ ## Announcements: v0.11.0 - 2025-10-20
507
+
508
+ ![Gemini CLI and Jules](https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/Jules_Extension_-_Blog_Header_O346JNt.original.png)
509
+
510
+ - 🎉 **Gemini CLI Jules Extension:** Use Gemini CLI to orchestrate Jules. Spawn
511
+ remote workers, delegate tedious tasks, or check in on running jobs!
512
+ - Install:
513
+ `gemini extensions install https://github.com/gemini-cli-extensions/jules`
514
+ - Announcement:
515
+ [https://developers.googleblog.com/en/introducing-the-jules-extension-for-gemini-cli/](https://developers.googleblog.com/en/introducing-the-jules-extension-for-gemini-cli/)
516
+ - **Stream JSON output:** Stream real-time JSONL events with
517
+ `--output-format stream-json` to monitor AI agent progress when run
518
+ headlessly. ([gif](https://imgur.com/a/0UCE81X),
519
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/10883) by
520
+ [@anj-s](https://github.com/anj-s))
521
+ - **Markdown toggle:** Users can now switch between rendered and raw markdown
522
+ display using `alt+m `or` ctrl+m`. ([gif](https://imgur.com/a/lDNdLqr),
523
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/10383) by
524
+ [@srivatsj](https://github.com/srivatsj))
525
+ - **Queued message editing:** Users can now quickly edit queued messages by
526
+ pressing the up arrow key when the input is empty.
527
+ ([gif](https://imgur.com/a/ioRslLd),
528
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/10392) by
529
+ [@akhil29](https://github.com/akhil29))
530
+ - **JSON web fetch**: Non-HTML content like JSON APIs or raw source code are now
531
+ properly shown to the model (previously only supported HTML)
532
+ ([gif](https://imgur.com/a/Q58U4qJ),
533
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/11284) by
534
+ [@abhipatel12](https://github.com/abhipatel12))
535
+ - **Non-interactive MCP commands:** Users can now run MCP slash commands in
536
+ non-interactive mode `gemini "/some-mcp-prompt"`.
537
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/10194) by
538
+ [@capachino](https://github.com/capachino))
539
+ - **Removal of deprecated flags:** We’ve finally removed a number of deprecated
540
+ flags to cleanup Gemini CLI’s invocation profile:
541
+ - `--all-files` / `-a` in favor of `@` from within Gemini CLI.
542
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/11228) by
543
+ [@allenhutchison](https://github.com/allenhutchison))
544
+ - `--telemetry-*` flags in favor of
545
+ [environment variables](https://github.com/DGameGT/mashadev-cli/pull/11318)
546
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/11318) by
547
+ [@allenhutchison](https://github.com/allenhutchison))
548
+
549
+ ## Announcements: v0.10.0 - 2025-10-13
550
+
551
+ - **Polish:** The team has been heads down bug fixing and investing heavily into
552
+ polishing existing flows, tools, and interactions.
553
+ - **Interactive Shell Tool calling:** Gemini CLI can now also execute
554
+ interactive tools if needed
555
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/11225) by
556
+ [@galz10](https://github.com/galz10)).
557
+ - **Alt+Key support:** Enables broader support for Alt+Key keyboard shortcuts
558
+ across different terminals.
559
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/10767) by
560
+ [@srivatsj](https://github.com/srivatsj)).
561
+ - **Telemetry Diff stats:** Track line changes made by the model and user during
562
+ file operations via OTEL.
563
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/10819) by
564
+ [@jerop](https://github.com/jerop)).
565
+
566
+ ## Announcements: v0.9.0 - 2025-10-06
567
+
568
+ - 🎉 **Interactive Shell:** Run interactive commands like `vim`, `rebase -i`, or
569
+ even `gemini` 😎 directly in Gemini CLI:
570
+ - Blog:
571
+ [https://developers.googleblog.com/en/say-hello-to-a-new-level-of-interactivity-in-gemini-cli/](https://developers.googleblog.com/en/say-hello-to-a-new-level-of-interactivity-in-gemini-cli/)
572
+ - **Install pre-release extensions:** Install the latest `--pre-release`
573
+ versions of extensions. Used for when an extension’s release hasn’t been
574
+ marked as "latest".
575
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/10752) by
576
+ [@jakemac53](https://github.com/jakemac53))
577
+ - **Simplified extension creation:** Create a new, empty extension. Templates
578
+ are no longer required.
579
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/10629) by
580
+ [@chrstnb](https://github.com/chrstnb))
581
+ - **OpenTelemetry GenAI metrics:** Aligns telemetry with industry-standard
582
+ semantic conventions for improved interoperability.
583
+ ([spec](https://opentelemetry.io/docs/concepts/semantic-conventions/),
584
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/10343) by
585
+ [@jerop](https://github.com/jerop))
586
+ - **List memory files:** Quickly find the location of your long-term memory
587
+ files with `/memory list`.
588
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/10108) by
589
+ [@sgnagnarella](https://github.com/sgnagnarella))
590
+
591
+ ## Announcements: v0.8.0 - 2025-09-29
592
+
593
+ - 🎉 **Announcing Gemini CLI Extensions** 🎉
594
+ - Completely customize your Gemini CLI experience to fit your workflow.
595
+ - Build and share your own Gemini CLI extensions with the world.
596
+ - Launching with a growing catalog of community, partner, and Google-built
597
+ extensions.
598
+ - Check extensions from
599
+ [key launch partners](https://github.com/DGameGT/mashadev-cli/discussions/10718).
600
+ - Easy install:
601
+ - `gemini extensions install <github url|folder path>`
602
+ - Easy management:
603
+ - `gemini extensions install|uninstall|link`
604
+ - `gemini extensions enable|disable`
605
+ - `gemini extensions list|update|new`
606
+ - Or use commands while running with `/extensions list|update`.
607
+ - Everything you need to know:
608
+ [Now open for building: Introducing Gemini CLI extensions](https://blog.google/technology/developers/gemini-cli-extensions/).
609
+ - 🎉 **Our New Home Page & Better Documentation** 🎉
610
+ - Check out our new home page for better getting started material, reference
611
+ documentation, extensions and more!
612
+ - _Homepage:_ [https://geminicli.com](https://geminicli.com)
613
+ - ‼️*NEW documentation:*
614
+ [https://geminicli.com/docs](https://geminicli.com/docs) (Have any
615
+ [suggestions](https://github.com/DGameGT/mashadev-cli/discussions/8722)?)
616
+ - _Extensions:_
617
+ [https://geminicli.com/extensions](https://geminicli.com/extensions)
618
+ - **Non-Interactive Allowed Tools:** `--allowed-tools` will now also work in
619
+ non-interactive mode.
620
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/9114) by
621
+ [@mistergarrison](https://github.com/mistergarrison))
622
+ - **Terminal Title Status:** See the CLI's real-time status and thoughts
623
+ directly in the terminal window's title by setting `showStatusInTitle: true`.
624
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/4386) by
625
+ [@Fridayxiao](https://github.com/Fridayxiao))
626
+ - **Small features, polish, reliability & bug fixes:** A large amount of
627
+ changes, smaller features, UI updates, reliability and bug fixes + general
628
+ polish made it in this week!
629
+
630
+ ## Announcements: v0.7.0 - 2025-09-22
631
+
632
+ - 🎉**Build your own Gemini CLI IDE plugin:** We've published a spec for
633
+ creating IDE plugins to enable rich context-aware experiences and native
634
+ in-editor diffing in your IDE of choice.
635
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/8479) by
636
+ [@skeshive](https://github.com/skeshive))
637
+ - 🎉 **Gemini CLI extensions**
638
+ - **Flutter:** An early version to help you create, build, test, and run
639
+ Flutter apps with Gemini CLI
640
+ ([extension](https://github.com/gemini-cli-extensions/flutter))
641
+ - **nanobanana:** Integrate nanobanana into Gemini CLI
642
+ ([extension](https://github.com/gemini-cli-extensions/nanobanana))
643
+ - **Telemetry config via environment:** Manage telemetry settings using
644
+ environment variables for a more flexible setup.
645
+ ([docs](https://github.com/DGameGT/mashadev-cli/blob/main/docs/cli/telemetry.md#configuration),
646
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/9113) by
647
+ [@jerop](https://github.com/jerop))
648
+ - **​​Experimental todos:** Track and display progress on complex tasks with a
649
+ managed checklist. Off by default but can be enabled via
650
+ `"useWriteTodos": true`
651
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/8761) by
652
+ [@anj-s](https://github.com/anj-s))
653
+ - **Share chat support for tools:** Using `/chat share` will now also render
654
+ function calls and responses in the final markdown file.
655
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/8693) by
656
+ [@rramkumar1](https://github.com/rramkumar1))
657
+ - **Citations:** Now enabled for all users
658
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/8570) by
659
+ [@scidomino](https://github.com/scidomino))
660
+ - **Custom commands in Headless Mode:** Run custom slash commands directly from
661
+ the command line in non-interactive mode: `gemini "/joke Chuck Norris"`
662
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/8305) by
663
+ [@capachino](https://github.com/capachino))
664
+ - **Small features, polish, reliability & bug fixes:** A large amount of
665
+ changes, smaller features, UI updates, reliability and bug fixes + general
666
+ polish made it in this week!
667
+
668
+ ## Announcements: v0.6.0 - 2025-09-15
669
+
670
+ - 🎉 **Higher limits for Google AI Pro and Ultra subscribers:** We’re psyched to
671
+ finally announce that Google AI Pro and AI Ultra subscribers now get access to
672
+ significantly higher 2.5 quota limits for Gemini CLI!
673
+ - **Announcement:**
674
+ [https://blog.google/technology/developers/gemini-cli-code-assist-higher-limits/](https://blog.google/technology/developers/gemini-cli-code-assist-higher-limits/)
675
+ - 🎉**Gemini CLI Databases and BigQuery Extensions:** Connect Gemini CLI to all
676
+ of your cloud data with Gemini CLI.
677
+ - Announcement and how to get started with each of the below extensions:
678
+ [https://cloud.google.com/blog/products/databases/gemini-cli-extensions-for-google-data-cloud?e=48754805](https://cloud.google.com/blog/products/databases/gemini-cli-extensions-for-google-data-cloud?e=48754805)
679
+ - **AlloyDB:** Interact, manage and observe AlloyDB for PostgreSQL databases
680
+ ([manage](https://github.com/gemini-cli-extensions/alloydb#configuration),
681
+ [observe](https://github.com/gemini-cli-extensions/alloydb-observability#configuration))
682
+ - **BigQuery:** Connect and query your BigQuery datasets or utilize a
683
+ sub-agent for contextual insights
684
+ ([query](https://github.com/gemini-cli-extensions/bigquery-data-analytics#configuration),
685
+ [sub-agent](https://github.com/gemini-cli-extensions/bigquery-conversational-analytics))
686
+ - **Cloud SQL:** Interact, manage and observe Cloud SQL for PostgreSQL
687
+ ([manage](https://github.com/gemini-cli-extensions/cloud-sql-postgresql#configuration),[ observe](https://github.com/gemini-cli-extensions/cloud-sql-postgresql-observability#configuration)),
688
+ Cloud SQL for MySQL
689
+ ([manage](https://github.com/gemini-cli-extensions/cloud-sql-mysql#configuration),[ observe](https://github.com/gemini-cli-extensions/cloud-sql-mysql-observability#configuration))
690
+ and Cloud SQL for SQL Server
691
+ ([manage](https://github.com/gemini-cli-extensions/cloud-sql-sqlserver#configuration),[ observe](https://github.com/gemini-cli-extensions/cloud-sql-sqlserver-observability#configuration))
692
+ databases.
693
+ - **Dataplex:** Discover, manage, and govern data and AI artifacts
694
+ ([extension](https://github.com/gemini-cli-extensions/dataplex#configuration))
695
+ - **Firestore:** Interact with Firestore databases, collections and documents
696
+ ([extension](https://github.com/gemini-cli-extensions/firestore-native#configuration))
697
+ - **Looker:** Query data, run Looks and create dashboards
698
+ ([extension](https://github.com/gemini-cli-extensions/looker#configuration))
699
+ - **MySQL:** Interact with MySQL databases
700
+ ([extension](https://github.com/gemini-cli-extensions/mysql#configuration))
701
+ - **Postgres:** Interact with PostgreSQL databases
702
+ ([extension](https://github.com/gemini-cli-extensions/postgres#configuration))
703
+ - **Spanner:** Interact with Spanner databases
704
+ ([extension](https://github.com/gemini-cli-extensions/spanner#configuration))
705
+ - **SQL Server:** Interact with SQL Server databases
706
+ ([extension](https://github.com/gemini-cli-extensions/sql-server#configuration))
707
+ - **MCP Toolbox:** Configure and load custom tools for more than 30+ data
708
+ sources
709
+ ([extension](https://github.com/gemini-cli-extensions/mcp-toolbox#configuration))
710
+ - **JSON output mode:** Have Gemini CLI output JSON with `--output-format json`
711
+ when invoked headlessly for easy parsing and post-processing. Includes
712
+ response, stats and errors.
713
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/8119) by
714
+ [@jerop](https://github.com/jerop))
715
+ - **Keybinding triggered approvals:** When you use shortcuts (`shift+y` or
716
+ `shift+tab`) to activate YOLO/auto-edit modes any pending confirmation dialogs
717
+ will now approve. ([pr](https://github.com/DGameGT/mashadev-cli/pull/6665)
718
+ by [@bulkypanda](https://github.com/bulkypanda))
719
+ - **Chat sharing:** Convert the current conversation to a Markdown or JSON file
720
+ with _/chat share &lt;file.md|file.json>_
721
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/8139) by
722
+ [@rramkumar1](https://github.com/rramkumar1))
723
+ - **Prompt search:** Search your prompt history using `ctrl+r`.
724
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/5539) by
725
+ [@Aisha630](https://github.com/Aisha630))
726
+ - **Input undo/redo:** Recover accidentally deleted text in the input prompt
727
+ using `ctrl+z` (undo) and `ctrl+shift+z` (redo).
728
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/4625) by
729
+ [@masiafrest](https://github.com/masiafrest))
730
+ - **Loop detection confirmation:** When loops are detected you are now presented
731
+ with a dialog to disable detection for the current session.
732
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/8231) by
733
+ [@SandyTao520](https://github.com/SandyTao520))
734
+ - **Direct to Google Cloud Telemetry:** Directly send telemetry to Google Cloud
735
+ for a simpler and more streamlined setup.
736
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/8541) by
737
+ [@jerop](https://github.com/jerop))
738
+ - **Visual Mode Indicator Revamp:** ‘shell’, 'accept edits' and 'yolo' modes now
739
+ have colors to match their impact / usage. Input box now also updates.
740
+ ([shell](https://imgur.com/a/DovpVF1),
741
+ [accept-edits](https://imgur.com/a/33KDz3J),
742
+ [yolo](https://imgur.com/a/tbFwIWp),
743
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/8200) by
744
+ [@miguelsolorio](https://github.com/miguelsolorio))
745
+ - **Small features, polish, reliability & bug fixes:** A large amount of
746
+ changes, smaller features, UI updates, reliability and bug fixes + general
747
+ polish made it in this week!
748
+
749
+ ## Announcements: v0.5.0 - 2025-09-08
750
+
751
+ - 🎉**FastMCP + Gemini CLI**🎉: Quickly install and manage your Gemini CLI MCP
752
+ servers with FastMCP ([video](https://imgur.com/a/m8QdCPh),
753
+ [pr](https://github.com/jlowin/fastmcp/pull/1709) by
754
+ [@jackwotherspoon](https://github.com/jackwotherspoon)**)**
755
+ - Getting started:
756
+ [https://gofastmcp.com/integrations/gemini-cli](https://gofastmcp.com/integrations/gemini-cli)
757
+ - **Positional Prompt for Non-Interactive:** Seamlessly invoke Gemini CLI
758
+ headlessly via `gemini "Hello"`. Synonymous with passing `-p`.
759
+ ([gif](https://imgur.com/a/hcBznpB),
760
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/7668) by
761
+ [@allenhutchison](https://github.com/allenhutchison))
762
+ - **Experimental Tool output truncation:** Enable truncating shell tool outputs
763
+ and saving full output to a file by setting
764
+ `"enableToolOutputTruncation": true `([pr](https://github.com/DGameGT/mashadev-cli/pull/8039)
765
+ by [@SandyTao520](https://github.com/SandyTao520))
766
+ - **Edit Tool improvements:** Gemini CLI’s ability to edit files should now be
767
+ far more capable. ([pr](https://github.com/DGameGT/mashadev-cli/pull/7679)
768
+ by [@silviojr](https://github.com/silviojr))
769
+ - **Custom witty messages:** The feature you’ve all been waiting for…
770
+ Personalized witty loading messages via
771
+ `"ui": { "customWittyPhrases": ["YOLO"]}` in `settings.json`.
772
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/7641) by
773
+ [@JayadityaGit](https://github.com/JayadityaGit))
774
+ - **Nested .gitignore File Handling:** Nested `.gitignore` files are now
775
+ respected. ([pr](https://github.com/DGameGT/mashadev-cli/pull/7645) by
776
+ [@gsquared94](https://github.com/gsquared94))
777
+ - **Enforced authentication:** System administrators can now mandate a specific
778
+ authentication method via
779
+ `"enforcedAuthType": "oauth-personal|gemini-api-key|…"`in `settings.json`.
780
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/6564) by
781
+ [@chrstnb](https://github.com/chrstnb))
782
+ - **A2A development-tool extension:** An RFC for an Agent2Agent
783
+ ([A2A](https://a2a-protocol.org/latest/)) powered extension for developer tool
784
+ use cases.
785
+ ([feedback](https://github.com/DGameGT/mashadev-cli/discussions/7822),
786
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/7817) by
787
+ [@skeshive](https://github.com/skeshive))
788
+ - **Hands on Codelab:
789
+ **[https://codelabs.developers.google.com/gemini-cli-hands-on](https://codelabs.developers.google.com/gemini-cli-hands-on)
790
+ - **Small features, polish, reliability & bug fixes:** A large amount of
791
+ changes, smaller features, UI updates, reliability and bug fixes + general
792
+ polish made it in this week!
793
+
794
+ ## Announcements: v0.4.0 - 2025-09-01
795
+
796
+ - 🎉**Gemini CLI CloudRun and Security Integrations**🎉: Automate app deployment
797
+ and security analysis with CloudRun and Security extension integrations. Once
798
+ installed deploy your app to the cloud with `/deploy` and find and fix
799
+ security vulnerabilities with `/security:analyze`.
800
+ - Announcement and how to get started:
801
+ [https://cloud.google.com/blog/products/ai-machine-learning/automate-app-deployment-and-security-analysis-with-new-gemini-cli-extensions](https://cloud.google.com/blog/products/ai-machine-learning/automate-app-deployment-and-security-analysis-with-new-gemini-cli-extensions)
802
+ - **Experimental**
803
+ - **Edit Tool:** Give our new edit tool a try by setting
804
+ `"useSmartEdit": true` in `settings.json`!
805
+ ([feedback](https://github.com/DGameGT/mashadev-cli/discussions/7758),
806
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/6823) by
807
+ [@silviojr](https://github.com/silviojr))
808
+ - **Model talking to itself fix:** We’ve removed a model workaround that would
809
+ encourage Gemini CLI to continue conversations on your behalf. This may be
810
+ disruptive and can be disabled via `"skipNextSpeakerCheck": false` in your
811
+ `settings.json`
812
+ ([feedback](https://github.com/DGameGT/mashadev-cli/discussions/6666),
813
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/7614) by
814
+ [@SandyTao520](https://github.com/SandyTao520))
815
+ - **Prompt completion:** Get real-time AI suggestions to complete your prompts
816
+ as you type. Enable it with `"general": { "enablePromptCompletion": true }`
817
+ and share your feedback!
818
+ ([gif](https://miro.medium.com/v2/resize:fit:2000/format:webp/1*hvegW7YXOg6N_beUWhTdxA.gif),
819
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/4691) by
820
+ [@3ks](https://github.com/3ks))
821
+ - **Footer visibility configuration:** Customize the CLI's footer look and feel
822
+ in `settings.json`
823
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/7419) by
824
+ [@miguelsolorio](https://github.com/miguelsolorio))
825
+ - `hideCWD`: hide current working directory.
826
+ - `hideSandboxStatus`: hide sandbox status.
827
+ - `hideModelInfo`: hide current model information.
828
+ - `hideContextSummary`: hide request context summary.
829
+ - **Citations:** For enterprise Code Assist licenses users will now see
830
+ citations in their responses by default. Enable this yourself with
831
+ `"showCitations": true`
832
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/7350) by
833
+ [@scidomino](https://github.com/scidomino))
834
+ - **Pro Quota Dialog:** Handle daily Pro model usage limits with an interactive
835
+ dialog that lets you immediately switch auth or fallback.
836
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/7094) by
837
+ [@JayadityaGit](https://github.com/JayadityaGit))
838
+ - **Custom commands @:** Embed local file or directory content directly into
839
+ your custom command prompts using `@{path}` syntax
840
+ ([gif](https://miro.medium.com/v2/resize:fit:2000/format:webp/1*GosBAo2SjMfFffAnzT7ZMg.gif),
841
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/6716) by
842
+ [@abhipatel12](https://github.com/abhipatel12))
843
+ - **2.5 Flash Lite support:** You can now use the `gemini-2.5-flash-lite` model
844
+ for Gemini CLI via `gemini -m …`.
845
+ ([gif](https://miro.medium.com/v2/resize:fit:2000/format:webp/1*P4SKwnrsyBuULoHrFqsFKQ.gif),
846
+ [pr](https://github.com/DGameGT/mashadev-cli/pull/4652) by
847
+ [@psinha40898](https://github.com/psinha40898))
848
+ - **CLI streamlining:** We have deprecated a number of command line arguments in
849
+ favor of `settings.json` alternatives. We will remove these arguments in a
850
+ future release. See the PR for the full list of deprecations.
851
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/7360) by
852
+ [@allenhutchison](https://github.com/allenhutchison))
853
+ - **JSON session summary:** Track and save detailed CLI session statistics to a
854
+ JSON file for performance analysis with `--session-summary <path>`
855
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/7347) by
856
+ [@leehagoodjames](https://github.com/leehagoodjames))
857
+ - **Robust keyboard handling:** More reliable and consistent behavior for arrow
858
+ keys, special keys (Home, End, etc.), and modifier combinations across various
859
+ terminals. ([pr](https://github.com/DGameGT/mashadev-cli/pull/7118) by
860
+ [@deepankarsharma](https://github.com/deepankarsharma))
861
+ - **MCP loading indicator:** Provides visual feedback during CLI initialization
862
+ when connecting to multiple servers.
863
+ ([pr](https://github.com/DGameGT/mashadev-cli/pull/6923) by
864
+ [@swissspidy](https://github.com/swissspidy))
865
+ - **Small features, polish, reliability & bug fixes:** A large amount of
866
+ changes, smaller features, UI updates, reliability and bug fixes + general
867
+ polish made it in this week!