jacob314
e2981da430
refactor(cli): simplify command completion orchestration and fix shell cache race
...
- Simplified `useCommandCompletion.tsx` by moving shell-specific tokenization into `useShellCompletion.ts`.
- Reverted most changes to the `useCommandCompletion` `useMemo` block to keep it clean and consistent with other modes.
- Fixed a potential race condition in `useShellCompletion.ts` where `scanPathExecutables` could be called multiple times if it was slow. It now caches the Promise itself.
- Updated tests to match the refined hook interfaces.
2026-02-25 10:35:14 -08:00
jacob314
1dbb9af41c
fix(cli): prioritize shorter command names in shell autocomplete results
2026-02-25 10:00:14 -08:00
jacob314
b4724a1eed
test(cli): update snapshots for shell autocompletion refinements
2026-02-25 09:37:28 -08:00
jacob314
4eea909f28
fix(cli): add Windows shell built-in commands to autocomplete list
...
On Windows, many common commands like `dir`, `copy`, `del`, etc., are internal to `cmd.exe` and do not exist as separate executables on the disk. This updates `scanPathExecutables` to explicitly include these built-ins when running on Windows, ensuring a consistent autocomplete experience for Windows users.
2026-02-25 09:26:38 -08:00
jacob314
af8462f76d
fix(cli): disable shell autocompletion on completely empty prompts
...
To reduce visual noise and distraction, autocompletion is now suppressed when the shell prompt is entirely empty (or only contains whitespace). It remains active as soon as the user starts typing or moves the cursor to a position that would suggest paths/commands.
2026-02-25 09:09:33 -08:00
jacob314
2f4242fb60
fix(cli): prevent autocomplete UI flicker by decoupling disabled state reset from completion refresh
...
When typing outside of shell mode (e.g., using `@` completion), the `useShellCompletion` hook was continuously re-rendering and executing its `useEffect` because `performCompletion` was recreated on every keystroke (since its `query` dependency changed).
Because `enabled` was false, the effect unconditionally called `setSuggestions([])`, rapidly overriding the suggestions populated by `useAtCompletion` and causing severe UI flickering.
This splits the effect to ensure `setSuggestions([])` is only called once when `enabled` becomes false, stabilizing the suggestions list.
2026-02-25 08:58:31 -08:00
jacob314
aeecf5a9e7
fix(cli): prevent auto-submit on Enter when navigating to first shell autocomplete suggestion
...
When using shell autocomplete, pressing Down then Up returns the activeSuggestionIndex to 0. If the first suggestion happened to be an exact match, the InputPrompt would bypass the normal autocomplete logic and eagerly submit the prompt on Enter because it ignored whether the user had actively navigated.
This fix updates the isPerfectMatch check to require that the user has not navigated the suggestions list, ensuring that explicitly selected items always autocomplete instead of submitting.
2026-02-25 08:23:53 -08:00
MD. MOHIBUR RAHMAN
dfa5c79a47
refactor(cli): centralize token parsing in useCommandCompletion to optimize re-renders
2026-02-24 05:22:51 +06:00
MD. MOHIBUR RAHMAN
d6770d2ae9
fix(cli): escape executables in shell autocompletion to prevent command injection
2026-02-24 05:06:10 +06:00
MD. MOHIBUR RAHMAN
c1d7bc4c8c
fix(cli): escape npm script names in shell autocompletion to prevent command injection
2026-02-24 05:04:27 +06:00
MD. MOHIBUR RAHMAN
39b393abfb
fix(cli): prevent command injection by escaping git branch suggestions
2026-02-24 04:25:16 +06:00
MD. MOHIBUR RAHMAN
5b3819073f
fix(cli): add missing shell metacharacters (\n, \r, \t, \\) to escape regex
2026-02-24 04:14:54 +06:00
MD. MOHIBUR RAHMAN
926afab788
fix(cli): improve shell completion for dotfiles, spaces, and quotes
2026-02-24 03:41:33 +06:00
MD. MOHIBUR RAHMAN
555b95eb09
feat(cli): add context-sensitive shell completions for git and npm ( #2492 )
2026-02-24 02:52:20 +06:00
MD. MOHIBUR RAHMAN
0c6ebbd1f5
feat(cli): implement interactive shell autocompletion ( #2492 )
2026-02-24 01:49:30 +06:00
Sandy Tao
25803e05fd
fix(bundling): copy devtools package to bundle for runtime resolution ( #19766 )
2026-02-23 18:40:41 +00:00
Himanshu Soni
774ae220be
fix(core): prevent state corruption in McpClientManager during collis ( #19782 )
2026-02-23 18:35:31 +00:00
Tommaso Sciortino
813e0c18ac
Allow ask headers longer than 16 chars ( #20041 )
2026-02-23 18:26:59 +00:00
Gal Zahavi
3f6cec22e6
chore: restrict gemini-automted-issue-triage to only allow echo ( #20047 )
2026-02-23 18:24:34 +00:00
Sri Pasumarthi
3966f3c053
feat: Map tool kinds to explicit ACP.ToolKind values and update test … ( #19547 )
2026-02-23 18:22:05 +00:00
sinisterchill
2e3cbd6363
fix(core): prevent OAuth server crash on unexpected requests ( #19668 )
2026-02-23 18:03:31 +00:00
Adib234
8b1dc15182
fix(plan): allow plan mode writes on Windows and fix prompt paths ( #19658 )
2026-02-23 17:48:50 +00:00
owenofbrien
fa9aee2bf0
Fix for silent failures in non-interactive mode ( #19905 )
2026-02-23 17:35:13 +00:00
Sam Roberts
6628cbb39d
Updates command reference and /stats command. ( #19794 )
2026-02-23 17:13:24 +00:00
Sehoon Shon
aa9163da60
feat(core): add policy chain support for Gemini 3.1 ( #19991 )
2026-02-23 15:13:48 +00:00
Sehoon Shon
ec0f23ae03
fix(core): increase default retry attempts and add quota error backoff ( #19949 )
2026-02-23 15:13:34 +00:00
nityam
ac04c388e0
Fix: Persist manual model selection on restart #19864 ( #19891 )
2026-02-23 03:44:00 +00:00
Abhi
621ddbe744
refactor(core): move session conversion logic to core ( #19972 )
2026-02-23 01:18:07 +00:00
Sehoon Shon
c537fd5aec
refactor(config): remove enablePromptCompletion from settings ( #19974 )
2026-02-22 19:10:20 -05:00
Shivangi Sharma
a91bc60e18
fix(core): add uniqueness guard to edit tool ( #19890 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-02-22 20:24:58 +00:00
Nick Salerni
faa1ec3044
fix(core): prevent omission placeholder deletions in replace/write_file ( #19870 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-02-22 19:58:31 +00:00
Bryan Morgan
d96bd05d36
fix(core): allow any preview model in quota access check ( #19867 )
2026-02-22 12:53:24 +00:00
Adib234
84666e1bbc
fix(plan): time share by approval mode dashboard reporting negative time shares ( #19847 )
2026-02-22 00:32:57 +00:00
N. Taylor Mullen
a7d851146a
feat(core): remove unnecessary login verbiage from Code Assist auth ( #19861 )
2026-02-21 21:55:11 +00:00
Abhi
acb7f577de
chore(lint): fix lint errors seen when running npm run lint ( #19844 )
2026-02-21 18:33:25 +00:00
Abhi
d2d345f41a
fix(cli): filter subagent sessions from resume history ( #19698 )
2026-02-21 17:41:27 +00:00
Christian Gunderman
dfd7721e69
Disallow unsafe returns. ( #19767 )
2026-02-21 01:12:56 +00:00
matt korwel
09218572d0
refactor(core): remove unsafe type assertions in error utils (Phase 1.1) ( #19750 )
2026-02-21 01:00:57 +00:00
Christian Gunderman
5d98ed5820
Utilize pipelining of grep_search -> read_file to eliminate turns ( #19574 )
2026-02-21 00:36:10 +00:00
Jarrod Whelan
727f9b67b1
feat(cli): improve CTRL+O experience for both standard and alternate screen buffer (ASB) modes ( #19010 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2026-02-21 00:26:11 +00:00
Adam Weidman
547f5d45f5
feat(core): migrate read_file to 1-based start_line/end_line parameters ( #19526 )
2026-02-20 22:59:18 +00:00
Christian Gunderman
58d637f919
Disallow and suppress unsafe assignment ( #19736 )
2026-02-20 22:28:55 +00:00
Sehoon Shon
b746524a1b
fix(cli): re-enable CLI banner ( #19741 )
2026-02-20 22:21:26 +00:00
Abhijit Balaji
c5baf39dbd
feat(policy): repurpose "Always Allow" persistence to workspace level ( #19707 )
2026-02-20 22:07:20 +00:00
Sehoon Shon
b48970da15
fix(cli): use getDisplayString for manual model selection in dialog ( #19726 )
2026-02-20 22:03:32 +00:00
Jacob Richman
9a8e5d3940
fix(cli): extensions dialog UX polish ( #19685 )
2026-02-20 21:08:24 +00:00
Jacob Richman
089aec8b8d
feat(cli): make JetBrains warning more specific ( #19687 )
2026-02-20 21:06:35 +00:00
Christian Gunderman
b7555ab1e1
Fix unsafe assertions in code_assist folder. ( #19706 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-20 20:44:23 +00:00
Emily Hedlund
c04602f209
fix(core): restore auth consent in headless mode and add unit tests ( #19689 )
2026-02-20 20:31:43 +00:00
Emily Hedlund
a01d7e9a05
security: implement deceptive URL detection and disclosure in tool confirmations ( #19288 )
2026-02-20 20:21:31 +00:00
Emily Hedlund
49b2e76ee1
Revert "feat(ui): add source indicators to slash commands" ( #19695 )
2026-02-20 20:08:49 +00:00
Emily Hedlund
aed348a99c
security: strip deceptive Unicode characters from terminal output ( #19026 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-20 20:04:32 +00:00
Christian Gunderman
7cf4c05c66
Fixes 'input.on' is not a function error in Gemini CLI ( #19691 )
2026-02-20 20:03:57 +00:00
Sam Roberts
cdf157e52a
Update sidebar.json for to allow top nav tabs. ( #19595 )
2026-02-20 19:54:26 +00:00
Sehoon Shon
723f269df6
fix(core): treat 503 Service Unavailable as retryable quota error ( #19642 )
2026-02-20 19:51:53 +00:00
Spencer
239aa0909c
fix(cli): allow perfect match @-path completions to submit on Enter ( #19562 )
2026-02-20 19:46:48 +00:00
matt korwel
6cfd29ef9b
feat(plan): enforce read-only constraints in Plan Mode ( #19433 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jerop Kipruto <jerop@google.com >
2026-02-20 19:33:04 +00:00
Sehoon Shon
f97b04cc9a
feat(models): support Gemini 3.1 Pro Preview and fixes ( #19676 )
2026-02-20 19:19:21 +00:00
Christian Gunderman
788a40c445
Send accepted/removed lines with ACCEPT_FILE telemetry. ( #19670 )
2026-02-20 19:07:43 +00:00
Adam Weidman
ce03156c9f
feat(a2a): Add API key authentication provider ( #19548 )
2026-02-20 18:55:36 +00:00
Spencer
fe428936d5
feat(ui): improve startup warnings UX with dismissal and show-count limits ( #19584 )
2026-02-20 18:22:45 +00:00
Gal Zahavi
d24f10b087
feat(cli): enhance folder trust with configuration discovery and security warnings ( #19492 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-20 18:21:03 +00:00
Tommaso Sciortino
d54702185b
feat(cli): add support for numpad SS3 sequences ( #19659 )
2026-02-20 18:09:10 +00:00
Alisa
27b7fc04de
Search updates ( #19482 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-20 17:54:28 +00:00
╯‵Д′)╯彡┻━┻ (☕1e6)
be03e0619f
fix: use discoverOAuthFromWWWAuthenticate for reactive OAuth flow ( #18760 ) ( #19038 )
2026-02-20 17:48:42 +00:00
christine betts
2bb7aaecd0
Add initial implementation of /extensions explore command ( #19029 )
2026-02-20 17:30:49 +00:00
matt korwel
0f855fc0c4
fix(security): rate limit web_fetch tool to mitigate DDoS via prompt injection ( #19567 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-20 17:18:07 +00:00
Jenna Inouye
c7e309efc9
Docs: Update release information regarding Gemini 3.1 ( #19568 )
2026-02-20 16:37:41 +00:00
Jerop Kipruto
429932c663
docs: refine Plan Mode documentation structure and workflow ( #19644 )
2026-02-20 15:56:49 +00:00
Emily Hedlund
d08b1efc72
feat(ui): add source indicators to slash commands ( #18839 )
2026-02-20 15:54:59 +00:00
matt korwel
c3b52b8206
chore: resolve build warnings and update dependencies ( #18880 )
2026-02-20 03:25:56 +00:00
Adib234
5fd557347e
fix(plan): exclude EnterPlanMode tool from YOLO mode ( #19570 )
2026-02-20 01:53:12 +00:00
gemini-cli-robot
cbfb2a4e26
Changelog for v0.30.0-preview.3 ( #19585 )
...
Co-authored-by: gemini-cli-robot <224641728+gemini-cli-robot@users.noreply.github.com >
Co-authored-by: Sam Roberts <158088236+g-samroberts@users.noreply.github.com >
2026-02-20 01:10:05 +00:00
Sandy Tao
fb1b1b451d
feat(core): refine Edit and WriteFile tool schemas for Gemini 3 ( #19476 )
2026-02-20 01:03:10 +00:00
Bryan Morgan
99fa700231
fix(ci): add fallback JSON extraction to issue triage workflow ( #19593 )
2026-02-19 20:19:01 -05:00
Michael Bleigh
f1c0a695f8
refactor(sdk): introduce session-based architecture ( #19180 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-20 00:47:35 +00:00
joshualitt
6351352e54
feat(core): Implement parallel FC for read only tools. ( #18791 )
2026-02-20 00:38:22 +00:00
Michael Bleigh
2ac39b6acc
chore(skills): adds pr-address-comments skill to work on PR feedback ( #19576 )
2026-02-20 00:38:07 +00:00
Abhijit Balaji
d8b24e6983
feat(policy): implement project-level policy support ( #18682 )
2026-02-20 00:16:03 +00:00
Sam Roberts
d25c469f77
Migrate files to resource or references folder. ( #19503 )
2026-02-19 23:47:39 +00:00
Jerop Kipruto
537e56ffae
feat(plan): support configuring custom plans storage directory ( #19577 )
2026-02-19 22:47:08 +00:00
Jack Wotherspoon
2cba2ab37a
fix: remove extra padding in Composer ( #19529 )
2026-02-19 21:31:09 +00:00
Yuna Seol
8064973899
fix(core): improve error type extraction for telemetry ( #19565 )
...
Co-authored-by: Yuna Seol <yunaseol@google.com >
2026-02-19 21:19:19 +00:00
christine betts
ddc5458451
Revert "Add generic searchable list to back settings and extensions (… ( #19434 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2026-02-19 21:06:37 +00:00
Adam Weidman
a468407098
chore(core): improve encapsulation and remove unused exports ( #19556 )
2026-02-19 20:19:32 +00:00
Adib234
264c7aceaa
fix(core): resolve crash in ClearcutLogger when os.cpus() is empty ( #19555 )
2026-02-19 20:13:28 +00:00
Abhijit Balaji
3408542a66
fix(core): prevent duplicate tool approval entries in auto-saved.toml ( #19487 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-19 20:03:52 +00:00
Christian Gunderman
c276d0c7b6
Fix message too large issue. ( #19499 )
2026-02-19 19:06:36 +00:00
Sam Roberts
a00eb3b8e6
Update skill to adjust for generated results. ( #19500 )
2026-02-19 18:49:27 +00:00
Dmitry Lyalin
372f41eab8
feat(cli): replace loading phrases boolean with enum setting ( #19347 )
2026-02-19 18:43:12 +00:00
Tommaso Sciortino
09b623fbd7
feat(cli): add experimental.useOSC52Copy setting ( #19488 )
2026-02-19 18:22:11 +00:00
Tommaso Sciortino
ba3e327ba1
format md file ( #19474 )
2026-02-19 09:43:53 -08:00
薄明色の忘れ路
5d235952ba
Fix: Avoid tool confirmation timeout when no UI listeners are present ( #17955 )
2026-02-19 17:28:06 +00:00
Jacob Richman
082f41f54d
Deflake windows tests. ( #19511 )
2026-02-19 16:17:34 +00:00
Emily Hedlund
880af43b02
fix(core): robust workspace-based IDE connection discovery ( #18443 )
2026-02-19 15:59:33 +00:00
Valery Teplyakov
966eef14ee
feat(acp): support set_mode interface ( #18890 ) ( #18891 )
...
Co-authored-by: Mervap <megavaprold@gmail.com >
2026-02-19 11:07:46 -05:00
Yuvraj Angad Singh
b79e5ce56d
fix(core): add error logging for IDE fetch failures ( #17981 )
2026-02-19 15:54:49 +00:00
Valery Teplyakov
1a8d77329e
fix(acp): Initialize config ( #18897 ) ( #18898 )
...
Co-authored-by: Mervap <megavaprold@gmail.com >
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-02-19 15:08:09 +00:00
abhiasap
ad9c49a604
fix(core): ensure user rejections update tool outcome for telemetry ( #18982 )
2026-02-19 13:14:02 +00:00
Jacob Richman
70b427c7dd
fix spacing ( #19494 )
2026-02-19 06:39:54 +00:00
Jacob Richman
a804f99fe0
Speculative fixes to try to fix react error. ( #19508 )
2026-02-19 06:39:32 +00:00
Jacob Richman
c43500c50b
build: replace deprecated built-in punycode with userland package ( #19502 )
2026-02-19 02:58:26 +00:00
gemini-cli-robot
42a7d89999
Changelog for v0.30.0-preview.1 ( #19496 )
...
Co-authored-by: gemini-cli-robot <224641728+gemini-cli-robot@users.noreply.github.com >
Co-authored-by: Sam Roberts <158088236+g-samroberts@users.noreply.github.com >
2026-02-19 01:56:36 +00:00
Jacob Richman
04f65f3d55
Migrate core render util to use xterm.js as part of the rendering loop. ( #19044 )
2026-02-19 00:46:50 +00:00
Sam Roberts
04c52513e7
Remove unused files and update index and sidebar. ( #19479 )
2026-02-19 00:10:49 +00:00
Spencer
c62340675a
feat(core): centralize compatibility checks and add TrueColor detection ( #19478 )
2026-02-19 00:01:23 +00:00
Sam Roberts
ef65498031
Format strict-development-rules command ( #19484 )
2026-02-18 23:16:33 +00:00
Shreya Keshive
261788cf91
feat(admin): Admin settings should only apply if adminControlsApplicable = true and fetch errors should be fatal ( #19453 )
2026-02-18 22:54:07 +00:00
Jasmeet Bhatia
012392ad0a
feat(cli): include /dir add directories in @ autocomplete suggestions ( #19246 )
2026-02-18 22:38:35 +00:00
garrettsparks
037061e2e0
use issuer instead of authorization_endpoint for oauth discovery ( #17332 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-02-18 22:38:04 +00:00
Smitty
221ea360b9
fix(core): ripgrep fails when pattern looks like ripgrep flag ( #18858 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-02-18 22:11:24 +00:00
N. Taylor Mullen
8910b2720f
fix(cli): disable auto-completion on Shift+Tab to preserve mode cycling ( #19451 )
2026-02-18 22:08:38 +00:00
joshualitt
87f5dd15d6
feat(core): experimental in-progress steering hints (2 of 2) ( #19307 )
2026-02-18 22:05:50 +00:00
Adib234
81c8893e05
docs(plan): add documentation for plan mode command ( #19467 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-18 22:03:09 +00:00
skyvanguard
178388d931
fix(cli): treat unknown slash commands as regular input instead of showing error ( #17393 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-02-18 21:52:51 +00:00
imadraude
e7f97dfa44
fix(ui): move margin from top to bottom in ToolGroupMessage ( #17198 )
2026-02-18 21:51:03 +00:00
Godwin Iheuwa
f961e0d6b1
fix(core): ensure directory exists before writing conversation file ( #18429 )
...
Co-authored-by: godwiniheuwa <godwiniheuwa@users.noreply.github.com >
Co-authored-by: ruintheextinct <deepkarma001@gmail.com >
2026-02-18 21:13:54 +00:00
N. Taylor Mullen
14415316c0
feat(core): add support for MCP progress updates ( #19046 )
2026-02-18 20:46:12 +00:00
gemini-cli-robot
1cf05b0375
Changelog for v0.30.0-preview.0 ( #19364 )
...
Co-authored-by: g-samroberts <158088236+g-samroberts@users.noreply.github.com >
Co-authored-by: g-samroberts <samroberts@google.com >
2026-02-18 20:43:39 +00:00
Dev Randalpura
3099df1b7c
fix(ui): preventing empty history items from being added ( #19014 )
2026-02-18 12:53:06 -08:00
gemini-cli-robot
758d419e33
Changelog for v0.29.0 ( #19361 )
...
Co-authored-by: g-samroberts <158088236+g-samroberts@users.noreply.github.com >
2026-02-18 20:30:52 +00:00
Dmitry Lyalin
78de533c48
feat(cli): add macOS run-event notifications (interactive only) ( #19056 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-02-18 20:28:17 +00:00
Jerop Kipruto
8f6a711a3a
fix(core): clarify plan mode constraints and exit mechanism ( #19438 )
2026-02-18 20:09:59 +00:00
Sandy Tao
65ad78b9c0
feat(devtools): migrate devtools package into monorepo ( #18936 )
2026-02-18 20:04:02 +00:00
christine betts
858918fe31
Add explicit color-convert dependency ( #19460 )
2026-02-18 19:55:21 +00:00
Adib234
9255e69abb
fix(plan): allow safe fallback when experiment setting for plan is not enabled but approval mode at startup is plan ( #19439 )
...
Co-authored-by: Jerop Kipruto <jerop@google.com >
2026-02-18 19:54:04 +00:00
dependabot[bot]
e32111e609
chore(deps): bump tar from 7.5.7 to 7.5.8 ( #19367 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-18 19:49:46 +00:00
Sandy Tao
2c1d6f8029
fix(cli): support legacy onConfirm callback in ToolActionsContext ( #19369 )
2026-02-18 19:46:09 +00:00
christine betts
8a8826654c
Disable failing eval test ( #19455 )
2026-02-18 19:27:21 +00:00
Tommaso Sciortino
5f6b7c0158
feat(cli): add Alt+D for forward word deletion ( #19300 )
2026-02-18 09:19:26 -08:00
Mag1ck
65e0043fbf
feat(cli): add gemini --resume hint on exit ( #16285 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-02-18 15:54:01 +00:00
Jack Wotherspoon
22763c98b0
fix: optimize height calculations for ask_user dialog ( #19017 )
2026-02-18 15:52:30 +00:00
N. Taylor Mullen
05be2b51fc
docs: clarify preflight instructions in GEMINI.md ( #19377 )
2026-02-18 07:16:55 -08:00
N. Taylor Mullen
f1aa38b258
test(evals): add behavioral tests for tool output masking ( #19172 )
2026-02-18 05:07:25 +00:00
g-samroberts
4e11ddbf4a
Release note generator fix ( #19363 )
2026-02-18 04:53:53 +00:00
Jacob Richman
fe65d562de
Fix bottom border color ( #19266 )
2026-02-18 02:41:43 +00:00
Christian Gunderman
ce84b3cb5f
Use ranged reads and limited searches and fuzzy editing improvements ( #19240 )
2026-02-17 23:54:08 +00:00
joshualitt
55c628e967
feat(core): experimental in-progress steering hints (1 of 3) ( #19008 )
2026-02-17 22:59:33 +00:00
Spencer
5e2f5df62c
fix(paths): Add cross-platform path normalization ( #18939 )
2026-02-17 22:52:55 +00:00
Aishanee Shah
4fe86dbd4f
refactor(core): modularize tool definitions by model family ( #19269 )
2026-02-17 22:26:38 +00:00
Jenna Inouye
216d7272bb
Docs: Clarify extensions documentation. ( #19277 )
2026-02-17 21:57:27 +00:00
Pavan Shinde
b7004ad5ed
docs: format UTC times in releases doc ( #18169 )
2026-02-17 21:25:03 +00:00
Valery Teplyakov
f1aa1683dd
fix(acp): Wait for mcp initialization in acp ( #18893 ) ( #18894 )
...
Co-authored-by: Mervap <megavaprold@gmail.com >
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2026-02-17 19:39:14 +00:00
Kevin Ramdass
b56361559d
feat(config): add setting to make directory tree context configurable ( #19053 )
2026-02-17 19:19:26 +00:00
g-samroberts
c62601e90c
Fix side breakage where anchors don't work in slugs. ( #19261 )
2026-02-17 18:38:00 +00:00
Jerop Kipruto
fb32db5cd6
feat(cli): remove Plan Mode from rotation when actively working ( #19262 )
2026-02-17 17:36:59 +00:00
Yuna Seol
8aca3068cf
feat: add role-specific statistics to telemetry and UI (cont. #15234 ) ( #18824 )
...
Co-authored-by: Yuna Seol <yunaseol@google.com >
2026-02-17 17:32:30 +00:00
Adib234
14aabbbe8b
feat(plan): support project exploration without planning when in plan mode ( #18992 )
2026-02-17 16:52:59 +00:00
Jacob Richman
366f1df120
refactor(cli): code review cleanup fix for tab+tab ( #18967 )
2026-02-17 15:16:37 +00:00
Jerop Kipruto
e5ff2023ad
feat(cli): update approval mode cycle order ( #19254 )
2026-02-17 15:13:27 +00:00
Abhi
bf9ca33c18
feat(telemetry): add keychain availability and token storage metrics ( #18971 )
2026-02-17 15:11:38 +00:00
Gaurav
bbf6800778
fix(telemetry): replace JSON.stringify with safeJsonStringify in file exporters ( #19244 )
2026-02-17 15:01:54 +00:00
Ramón Medrano Llamas
b38e0984b9
Add Solarized Dark and Solarized Light themes ( #19064 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2026-02-16 22:01:52 +00:00
Sehoon Shon
ddd28f6431
chore(ui): remove outdated tip about model routing ( #19226 )
2026-02-16 20:50:13 +00:00
Jacob Richman
6ed1878c5f
refactor: consolidate development rules and add cli guidelines ( #19214 )
2026-02-16 20:48:34 +00:00
N. Taylor Mullen
39d36108d7
feat(core): support custom reasoning models by default ( #19227 )
2026-02-16 20:47:58 +00:00
Krushna Korade
80f0cbd798
Add refresh/reload aliases to slash command subcommands ( #19218 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-02-16 20:31:03 +00:00
Sehoon Shon
7d165e77f0
feat(cli): refactor model command to support set and manage subcommands ( #19221 )
2026-02-16 20:10:34 +00:00
kevinjwang1
c57a28f48a
Disable workspace settings when starting GCLI in the home directory. ( #19034 )
2026-02-16 20:10:28 +00:00
Jack Wotherspoon
a83ca11035
docs: custom themes in extensions ( #19219 )
2026-02-16 19:58:48 +00:00
Sehoon Shon
15ef1cd797
feat(cli): handle invalid model names in useQuotaAndFallback ( #19222 )
2026-02-16 19:55:17 +00:00
g-samroberts
5a74f7a2eb
Add base branch to workflow. ( #19189 )
2026-02-16 17:25:19 +00:00
Sehoon Shon
bb7bb11736
feat(cli): add loading state to new agents notification ( #19190 )
2026-02-16 06:43:25 +00:00
Kevin Moore
d1ca8c0c80
docs: document .agents/skills alias and discovery precedence ( #19166 )
2026-02-16 04:18:36 +00:00
Gaurav
8979fc5f6a
fix(core): propagate User-Agent header to setup-phase CodeAssist API calls ( #19182 )
2026-02-16 03:20:22 +00:00
N. Taylor Mullen
6eec9f3350
fix(core): Encourage non-interactive flags for scaffolding commands ( #18804 )
2026-02-15 20:26:59 +00:00
N. Taylor Mullen
884acda2dc
test: fix hook integration test flakiness on Windows CI ( #18665 )
2026-02-15 19:42:13 +00:00
Bryan Morgan
7f7424dd1e
fix(workflows): fix GitHub App token permissions for maintainer detection ( #19139 )
2026-02-15 10:08:28 -05:00
Srinath Padmanabhan
78130d4bb7
fix(cli): wrap terminal capability queries in hidden sequence ( #19080 )
...
Co-authored-by: Srinath Padmanabhan <srithreepo@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-15 04:08:13 +00:00
Krushna Korade
bcd547baf6
feat: add /commands reload to refresh custom TOML commands ( #19078 )
2026-02-14 20:25:30 +00:00
Aishanee Shah
5559d40f31
refactor(core): complete centralization of core tool definitions ( #18991 )
2026-02-14 04:55:02 +00:00
Michael Bleigh
a129dbcdd4
feat(sdk): implement support for custom skills ( #19031 )
2026-02-14 02:09:31 +00:00
g-samroberts
9fc7b56793
Revamp automated changelog skill ( #18974 )
2026-02-14 00:40:06 +00:00
Tommaso Sciortino
02da5ebbc1
chore: fix dep vulnerabilities ( #19036 )
2026-02-13 23:45:33 +00:00
Jacob Richman
401bef1d2b
bug(ui) fix flicker refreshing background color ( #19041 )
2026-02-13 23:33:02 +00:00
Jerop Kipruto
9df604b01b
feat(plan): hide plan write and edit operations on plans in Plan Mode ( #19012 )
2026-02-13 23:15:21 +00:00
Shreya Keshive
4e1b3b5f57
feat(cleanup): enable 30-day session retention by default ( #18854 )
2026-02-13 22:57:55 +00:00
Jerop Kipruto
f87468c644
refactor: use CoreToolCallStatus in the the history data model ( #19033 )
2026-02-13 22:20:14 +00:00
Tommaso Sciortino
e7e4c68c5c
fix windows escaping (and broken tests) ( #19011 )
2026-02-13 22:19:08 +00:00
Jenna Inouye
c7237f0c79
Docs: Refresh docs to organize and standardize reference materials. ( #18403 )
2026-02-13 22:09:17 +00:00
Michael Bleigh
f76e24c00f
feat(sdk): Implement dynamic system instructions ( #18863 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2026-02-13 20:48:35 +00:00
Adib234
f460ab841d
fix(plan): persist the approval mode in UI even when agent is thinking ( #18955 )
2026-02-13 20:02:39 +00:00
N. Taylor Mullen
c2f62b2a2b
docs: fix inconsistent commandRegex example in policy engine ( #19027 )
2026-02-13 20:02:07 +00:00
Sandy Tao
e844a57bfc
feat(core): fallback to chat-base when using unrecognized models for chat ( #19016 )
2026-02-13 19:00:08 +00:00
Sandy Tao
9c285eaf15
fix(core): Prevent loop detection false positives on lists with long shared prefixes ( #18975 )
2026-02-13 10:58:46 -08:00
Tommaso Sciortino
c0e7da42b2
Remove unnecessary eslint config file ( #19015 )
2026-02-13 18:27:40 +00:00
Emily Hedlund
b16c9a5ebd
fix(vscode): resolve unsafe type assertion lint errors ( #19006 )
2026-02-13 17:54:41 +00:00
Tommaso Sciortino
3bed7bbe8d
Adjust lint rules to avoid unnecessary warning. ( #18970 )
2026-02-13 17:30:28 +00:00
christine betts
e1b9002b35
Enable in-CLI extension management commands for team ( #18957 )
2026-02-13 17:03:28 +00:00
Jerop Kipruto
60be42f095
refactor(core): adopt CoreToolCallStatus enum for type safety ( #18998 )
2026-02-13 16:27:20 +00:00
N. Taylor Mullen
d0c6a56c65
fix(core): ensure --yolo does not force headless mode ( #18976 )
2026-02-13 15:43:50 +00:00
Adib234
d5dfae6bbf
fix(plan): make question type required in AskUser tool ( #18959 )
2026-02-13 15:03:52 +00:00
Michael Bleigh
b61a123da8
feat(sdk): implements SessionContext for SDK tool calls ( #18862 )
2026-02-13 07:28:48 +00:00
Michael Bleigh
bed3eae0e1
feat(sdk): initial package bootstrap for SDK ( #18861 )
2026-02-13 06:08:27 +00:00
Tommaso Sciortino
d82f66973f
Fix drag and drop escaping ( #18965 )
2026-02-13 02:27:56 +00:00
Abhi
00f73b73bc
refactor(cli): finalize event-driven transition and remove interaction bridge ( #18569 )
2026-02-13 02:14:35 +00:00
Aishanee Shah
b62c6566be
refactor(core): centralize tool definitions (Group 1: replace, search, grep) ( #18944 )
2026-02-13 02:05:33 +00:00
g-samroberts
ca374dcf47
Update installation guide ( #18823 )
2026-02-13 01:21:10 +00:00
Allen Hutchison
696198be87
feat(policy): add --policy flag for user defined policies ( #18500 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-13 00:25:23 +00:00
Philippe
5b4884692b
fix(vim): vim support that feels (more) complete ( #18755 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-02-13 00:22:39 +00:00
Jacob Richman
55ec0f043c
feat(cli): disable ctrl-s shortcut outside of alternate buffer mode ( #18887 )
2026-02-12 23:00:13 +00:00
Shreya Keshive
44bcba323f
feat(admin): Add admin controls documentation ( #18644 )
2026-02-12 22:39:42 +00:00
Jacob Richman
c00de442e5
bug(cli) fix flicker due to AppContainer continuous initialization ( #18958 )
2026-02-12 22:16:46 +00:00
Jerop Kipruto
8275871963
Hide AskUser tool validation errors from UI (agent self-corrects) ( #18954 )
2026-02-12 21:49:07 +00:00
Jerop Kipruto
e8e681c670
feat(ui): align AskUser color scheme with UX spec ( #18943 )
2026-02-12 21:10:25 +00:00
christine betts
991b2c6002
Add generic searchable list to back settings and extensions ( #18838 )
2026-02-12 20:50:41 +00:00
Jacob Richman
207ac6f2dc
ui(polish) blend background color with theme ( #18802 )
2026-02-12 19:56:07 +00:00
Dmitry Lyalin
db00c5abf3
feat(cli): prototype clean UI toggle and minimal-mode bleed-through ( #18683 )
2026-02-12 19:25:24 +00:00
Jack Wotherspoon
b0cfbc6cd8
fix: character truncation in raw markdown mode ( #18938 )
2026-02-12 19:16:56 +00:00
Adib234
0b3130cec7
fix(plan): isolate plan files per session ( #18757 )
2026-02-12 19:02:59 +00:00
Adam Weidman
d243dfce14
chore: cleanup unused and add unlisted dependencies in packages/a2a-server ( #18916 )
2026-02-12 18:40:52 +00:00
Sandy Tao
2e91c03e08
feat: add strict seatbelt profiles and remove unusable closed profiles ( #18876 )
2026-02-12 18:33:54 +00:00
Sandy Tao
2d38623472
fix(github-actions): use robot PAT for release creation to trigger release notes ( #18794 )
2026-02-12 18:01:04 +00:00
Tommaso Sciortino
375ebca2da
feat(cli): support Ctrl-Z suspension ( #18931 )
...
Co-authored-by: Bharat Kunwar <brtkwr@gmail.com >
2026-02-12 17:55:56 +00:00
Adib234
868f43927e
feat(plan): create metrics for usage of AskUser tool ( #18820 )
...
Co-authored-by: Jerop Kipruto <jerop@google.com >
2026-02-12 17:46:59 +00:00
N. Taylor Mullen
27a1bae03b
feat(core): refine Plan Mode system prompt for agentic execution ( #18799 )
2026-02-12 17:37:47 +00:00
Abhijit Balaji
ddcfe5b1f2
fix(core): prioritize conditional policy rules and harden Plan Mode ( #18882 )
2026-02-12 17:04:39 +00:00
Dmitry Lyalin
f603f4a12b
fix(cli): dismiss '?' shortcuts help on hotkeys and active states ( #18583 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2026-02-12 16:35:40 +00:00
christine betts
2ca183ffc9
Show notification when there's a conflict with an extensions command ( #17890 )
2026-02-12 16:29:06 +00:00
matt korwel
099aa9621c
fix(core): ensure sub-agents are registered regardless of tools.allowed ( #18870 )
2026-02-12 02:12:01 +00:00
g-samroberts
fe75de3efb
Update changelog for v0.28.0 and v0.29.0-preview0 ( #18819 )
2026-02-12 02:03:00 +00:00
Abhi
fad9f46273
refactor(cli): consolidate useToolScheduler and delete legacy implementation ( #18567 )
2026-02-12 01:49:30 +00:00
Bryan Morgan
a1148ea1f1
fix(workflows): improve maintainer detection for automated PR actions ( #18869 )
2026-02-11 20:56:43 -05:00
Abhijit Balaji
0e85e021dc
feat(cli): deprecate --allowed-tools and excludeTools in favor of policy engine ( #18508 )
2026-02-12 00:49:48 +00:00
Abhi
c370d2397b
refactor(cli): simplify UI and remove legacy inline tool confirmation logic ( #18566 )
2026-02-12 00:46:58 +00:00
Gal Zahavi
08e8eeab84
fix(core): improve headless mode detection for flags and query args ( #18855 )
2026-02-12 00:20:54 +00:00
Richie Foreman
941691ce72
fix(mcp): Ensure that stdio MCP server execution has the GEMINI_CLI=1 env variable populated. ( #18832 )
2026-02-12 00:07:51 +00:00
Pyush Sinha
b8008695db
refactor(cli): Reactive useSettingsStore hook ( #14915 )
2026-02-11 23:40:27 +00:00
Christian Gunderman
6c1773170e
More grep prompt tweaks ( #18846 )
2026-02-11 21:55:27 +00:00
Dev Randalpura
00966062b8
Removed getPlainTextLength ( #18848 )
2026-02-11 21:47:02 +00:00
Adam Weidman
4138667bae
feat(a2a): add value-resolver for auth credential resolution ( #18653 )
2026-02-11 21:23:28 +00:00
Sandy Tao
bfa791e13d
feat(core): update internal utility models to Gemini 3 ( #18773 )
2026-02-11 20:20:14 +00:00
Adib234
e9a9474810
Revert unintended credentials exposure ( #18840 )
2026-02-11 20:06:28 +00:00
Jerop Kipruto
02adfe2bca
docs(plan): add ask_user tool documentation ( #18830 )
2026-02-11 20:04:01 +00:00
Christian Gunderman
2a08456ed0
Update prompt and grep tool definition to limit context size ( #18780 )
2026-02-11 19:20:51 +00:00
christine betts
2dac98dc8d
Remove experimental note in extension settings docs ( #18822 )
2026-02-11 19:17:51 +00:00
Jerop Kipruto
77849cadac
docs(plan): add documentation for plan mode tools ( #18827 )
2026-02-11 18:53:43 +00:00
Adib234
84ce53aafa
feat(plan): allow skills to be enabled in plan mode ( #18817 )
...
Co-authored-by: Jerop Kipruto <jerop@google.com >
2026-02-11 17:59:03 +00:00
Sandy Tao
b19b026f30
fix(cli): update F12 behavior to only open drawer if browser fails ( #18829 )
2026-02-11 17:45:43 +00:00
Jacob Richman
eb9223b6a4
Fix pressing any key to exit select mode. ( #18421 )
2026-02-11 17:38:01 +00:00
Jerop Kipruto
65d26e73a2
feat(plan): document and validate Plan Mode policy overrides ( #18825 )
2026-02-11 17:32:02 +00:00
Brad Dux
0080589939
fix(cli): resolve double rendering in shpool and address vscode lint warnings ( #18704 )
2026-02-11 17:29:18 +00:00
Sehoon Shon
34a47a51f4
fix(core): cache CLI version to ensure consistency during sessions ( #18793 )
2026-02-11 17:01:50 +00:00
Dmitry Lyalin
f5dd1068f6
fix(core): complete MCP discovery when configured servers are skipped ( #18586 )
...
Co-authored-by: christine betts <chrstn@uw.edu >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-11 16:30:46 +00:00
matt korwel
c202cf3145
perf(cli): truncate large debug logs and limit message history ( #18663 )
2026-02-11 15:17:01 +00:00
Jack Wotherspoon
5baad108d9
feat: multi-line text answers in ask-user tool ( #18741 )
2026-02-11 14:14:53 +00:00
Dev Randalpura
63e9d5d15f
perf(ui): optimize table rendering by memoizing styled characters ( #18770 )
2026-02-11 13:10:30 +00:00
Abhi
3776c4d613
feat(masking): enable tool output masking by default ( #18564 )
2026-02-11 06:21:55 +00:00
Sandy Tao
2af5a3a01e
fix(cli): allow closing debug console after auto-open via flicker ( #18795 )
2026-02-11 05:37:23 +00:00
Christian Gunderman
0d034b8c18
Introduce limits for search results. ( #18767 )
2026-02-11 03:50:10 +00:00
Jerop Kipruto
49d55d972e
feat(core): formalize 5-phase sequential planning workflow ( #18759 )
2026-02-11 03:02:20 +00:00
Dmitry Lyalin
7a02d7261a
feat(cli): add setting to hide shortcuts hint UI ( #18562 )
2026-02-11 02:46:20 +00:00
Jerop Kipruto
9c11ff2d58
test(evals): mark all save_memory evals as USUALLY_PASSES due to unreliability ( #18786 )
2026-02-11 02:16:52 +00:00
Abhijit Balaji
b3ecac7086
fix(evals): prevent false positive in hierarchical memory test ( #18777 )
2026-02-11 01:51:05 +00:00
Brad Dux
6d3fff2ea4
fix(core): prevent race condition in policy persistence ( #18506 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2026-02-10 23:35:09 +00:00
Jacob Richman
be2ebd1772
Add autoconfigure memory usage setting to the dialog ( #18510 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-10 23:24:08 +00:00
N. Taylor Mullen
cb4e1e684d
chore(core): update activate_skill prompt verbiage to be more direct ( #18605 )
2026-02-10 22:17:42 +00:00
Adam Weidman
b7a3243334
chore: cleanup unused and add unlisted dependencies in packages/core ( #18762 )
2026-02-10 22:07:06 +00:00
gemini-cli-robot
8257ec447a
chore(release): bump version to 0.30.0-nightly.20260210.a2174751d ( #18772 )
2026-02-10 17:13:00 -05:00
Shreya Keshive
9590a092ae
Revert "fix(mcp): ensure MCP transport is closed to prevent memory leaks" ( #18771 )
2026-02-10 22:00:36 +00:00
Dev Randalpura
49533cd106
feat(ux): added text wrapping capabilities to markdown tables ( #18240 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2026-02-10 21:12:53 +00:00
Kevin Ramdass
a2174751de
feat(telemetry): Ensure experiment IDs are included in OpenTelemetry logs ( #18747 )
2026-02-10 21:01:35 +00:00
Christian Gunderman
8b762111a8
Fix issue where Gemini CLI creates tests in a new file ( #18409 )
2026-02-10 20:53:29 +00:00
Adam Weidman
c03d96b46c
chore: cleanup unused and add unlisted dependencies in packages/cli ( #18749 )
2026-02-10 20:53:19 +00:00
Sehoon Shon
ea1f19aa52
fix(cli): fix history navigation regression after prompt autocomplete ( #18752 )
2026-02-10 20:53:06 +00:00
Christian Gunderman
2eb1c92347
Fix issues with rip grep ( #18756 )
2026-02-10 20:48:56 +00:00
Andrew Garrett
ef02cec2cd
fix(cli): hide scrollbars when in alternate buffer copy mode ( #18354 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2026-02-10 20:30:27 +00:00
Jacob Richman
f9fc9335f5
Code review cleanup for thinking display ( #18720 )
2026-02-10 19:12:40 +00:00
Sehoon Shon
9813531f81
Update Gemini.md to use the curent year on creating new files ( #18460 )
2026-02-10 19:06:17 +00:00
N. Taylor Mullen
55571de066
feat: redact disabled tools from system prompt ( #13597 ) ( #18613 )
2026-02-10 19:00:36 +00:00
Jack Wotherspoon
740f0e4c3d
fix: allow ask_user tool in yolo mode ( #18541 )
2026-02-10 18:56:51 +00:00
N. Taylor Mullen
b37e67451a
ci: shard windows tests and fix event listener leaks ( #18670 )
2026-02-10 18:46:42 +00:00
Aishanee Shah
262138cad5
test: add model-specific snapshots for coreTools ( #18707 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2026-02-10 18:41:01 +00:00
Keith Guerin
5920750c24
ui: update & subdue footer colors and animate progress indicator ( #18570 )
2026-02-10 17:36:20 +00:00
Sandy Tao
f5b1245f51
feat(cli): defer devtools startup and integrate with F12 ( #18695 )
2026-02-10 16:54:23 +00:00
Sri Pasumarthi
f2ca0bb38d
feat: add extensionsExplore setting to enable extensions explore UI. ( #18686 )
2026-02-10 16:49:24 +00:00
Jack Wotherspoon
4e9bafdacd
chore: consolidate to green in ask user dialog ( #18734 )
2026-02-10 16:01:06 +00:00
N. Taylor Mullen
41bbe6ca0a
fix(core): standardize tool formatting in system prompts ( #18615 )
2026-02-10 15:30:08 +00:00
Shreya Keshive
eb5492f9b5
fix(ide): fix ide nudge setting ( #18733 )
2026-02-10 15:29:22 +00:00
matt korwel
37f128a109
feat(routing): restrict numerical routing to Gemini 3 family ( #18478 )
2026-02-10 14:25:21 +00:00
Jack Wotherspoon
79753ec5ec
fix: move toasts location to left side ( #18705 )
2026-02-10 13:39:28 +00:00
Adib234
e151b4890b
fix(plan): update persistent approval mode setting ( #18638 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2026-02-10 13:07:04 +00:00
Jerop Kipruto
e6b43cb846
feat(cli): update approval mode labels and shortcuts per latest UX spec ( #18698 )
2026-02-10 12:45:14 +00:00
N. Taylor Mullen
2ae5e1ae20
feat(core): optimize sub-agents system prompt intro ( #18608 )
2026-02-10 08:25:42 +00:00
N. Taylor Mullen
67d9b76e81
test(core): remove hardcoded model from TestRig ( #18710 )
2026-02-10 07:54:23 +00:00
N. Taylor Mullen
4a3c7ae8b7
docs(skills): enhance pr-creator safety and interactivity ( #18616 )
2026-02-10 05:38:10 +00:00
Christian Gunderman
bd2744031f
Fix layout rounding. ( #18667 )
2026-02-10 04:53:49 +00:00
N. Taylor Mullen
92a5f725a1
refactor(core): refine Security & System Integrity section in system prompt ( #18601 )
2026-02-10 04:32:36 +00:00
N. Taylor Mullen
4494f9e062
test(cli): fix AppContainer act() warnings and improve waitFor resilience ( #18676 )
2026-02-09 20:44:22 -08:00
N. Taylor Mullen
ece001f264
fix(ui): remove redundant newlines in Gemini messages ( #18538 )
2026-02-10 04:18:21 +00:00
Dmitry Lyalin
d3cfbdb3b7
Inline thinking bubbles with summary/full modes ( #18033 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2026-02-10 03:24:41 +00:00
Jerop Kipruto
7a132512cf
docs: remove TOC marker from Plan Mode header ( #18678 )
2026-02-10 03:13:04 +00:00
Spencer
6dae3a5402
Feature/quota visibility 16795 ( #18203 )
2026-02-10 02:53:10 +00:00
N. Taylor Mullen
0a3ecf3a75
fix(cli): Improve header spacing ( #18531 )
2026-02-10 02:12:42 +00:00
Jack Wotherspoon
9081743a7f
feat: Ctrl+O to expand paste placeholder ( #18103 )
2026-02-10 02:04:34 +00:00
joshualitt
89d4556c45
feat(core): Render memory hierarchically in context. ( #18350 )
2026-02-10 02:01:59 +00:00
Aishanee Shah
5d0570b113
refactor(core): centralize core tool definitions and support model-specific schemas ( #18662 )
2026-02-10 01:29:52 +00:00
Tommaso Sciortino
eb94284256
Properly parse at-commands with narrow non-breaking spaces ( #18677 )
2026-02-10 00:51:24 +00:00
N. Taylor Mullen
cc2798018b
feat: handle multiple dynamic context filenames in system prompt ( #18598 )
2026-02-10 00:37:08 +00:00
g-samroberts
c9f9a7f67a
Change event type for release ( #18693 )
2026-02-10 00:26:20 +00:00
Christian Gunderman
fd65416a2f
Disallow unsafe type assertions ( #18688 )
2026-02-10 00:10:15 +00:00
Gal Zahavi
bce1caefd0
feat(cli): disable folder trust in headless mode ( #18407 )
2026-02-09 23:46:49 +00:00
Adib234
80057c5208
Fix number of lines being reported in rewind confirmation dialog ( #18675 )
2026-02-09 23:11:53 +00:00
Sandy Tao
14219bb57d
chore: remove unused exports and redundant hook files ( #18681 )
2026-02-09 23:01:23 +00:00
Sandy Tao
ef957a368d
feat(cli): add DevTools integration with gemini-cli-devtools ( #18648 )
2026-02-09 22:03:10 +00:00
N. Taylor Mullen
a3e5b564f7
fix(cli): correct 'esc to cancel' position and restore duration display ( #18534 )
2026-02-09 21:44:39 +00:00
Tommaso Sciortino
1b98c1f806
refactor: push isValidPath() into parsePastedPaths() ( #18664 )
2026-02-09 21:19:51 +00:00
Jerop Kipruto
9e41b2cd89
feat: enable plan mode experiment in settings ( #18636 )
2026-02-09 21:10:11 +00:00
Aishanee Shah
3fb1937247
refactor(core): model-dependent tool definitions ( #18563 )
2026-02-09 20:46:23 +00:00
Jacob Richman
07056c8f16
Harded code assist converter. ( #18656 )
2026-02-09 20:45:55 +00:00
joshualitt
08dca3e1d6
bug(core): Fix minor bug in migration logic. ( #18661 )
2026-02-09 20:41:12 +00:00
Jack Wotherspoon
bcc0f27594
chore: make ask_user header description more clear ( #18657 )
2026-02-09 20:14:28 +00:00
Tommaso Sciortino
262e8384d4
Allow @-includes outside of workspaces (with permission) ( #18470 )
2026-02-09 12:24:28 -08:00
Abhijith V Ashok
e73288f25f
Added "" as default value, since getText() used to expect a string only and thus crashed when undefined... Fixes #18076 ( #18099 )
2026-02-09 12:13:12 -08:00
N. Taylor Mullen
aebc107d2c
feat: move shell efficiency guidelines to tool description ( #18614 )
2026-02-09 18:51:13 +00:00
Aswin Ashok
469cbca67f
fix(chore): Support linting for cjs ( #18639 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2026-02-09 18:36:16 +00:00
N. Taylor Mullen
cb7fca01b2
docs: add legacy snippets convention to GEMINI.md ( #18597 )
2026-02-09 10:29:55 -08:00
christine betts
81ac5be30b
Remove relative docs links ( #18650 )
2026-02-09 18:08:39 +00:00
Gal Zahavi
81ccd80c6d
feat(cli): implement atomic writes and safety checks for trusted folders ( #18406 )
2026-02-09 17:16:56 +00:00
Sandy Tao
01906a9205
fix: shorten tool call IDs and fix duplicate tool name in truncated output filenames ( #18600 )
2026-02-09 17:09:17 +00:00
N. Taylor Mullen
da66c7c0d1
chore(evals): update validation_fidelity_pre_existing_errors to USUALLY_PASSES ( #18617 )
2026-02-09 01:31:22 -08:00
N. Taylor Mullen
fe70052baf
fix(evals): update save_memory evals and simplify tool description ( #18610 )
2026-02-09 01:06:03 -08:00
Andrew Garrett
8cbe851339
Fix newline insertion bug in replace tool ( #18595 )
2026-02-09 06:37:53 +00:00
N. Taylor Mullen
d45a45d565
chore: strengthen validation guidance in system prompt ( #18544 )
2026-02-09 05:32:46 +00:00
Jerop Kipruto
69f562b38f
docs: Add Plan Mode documentation ( #18582 )
2026-02-09 03:25:02 +00:00
N. Taylor Mullen
cb73fbf384
feat(core): transition sub-agents to XML format and improve definitions ( #18555 )
2026-02-09 02:25:04 +00:00
Jerop Kipruto
375c104b32
fix(core): ensure enter_plan_mode tool registration respects experimental.plan ( #18587 )
2026-02-09 01:57:01 +00:00
N. Taylor Mullen
97a4e62dfa
feat(core): conditionally include ctrl+f prompt based on interactive shell setting ( #18561 )
2026-02-09 00:23:22 +00:00
Tommaso Sciortino
29a6aecffc
propagate abortSignal ( #18477 )
2026-02-08 21:56:26 +00:00
N. Taylor Mullen
92012365ca
fix(core): correct escaped interpolation in system prompt ( #18557 )
2026-02-08 21:08:17 +00:00
Abhi
802bcf4dee
refactor(cli): switch useToolScheduler to event-driven engine ( #18565 )
2026-02-08 20:28:37 +00:00
Jarrod Whelan
4a48d7cf93
feat(cli): truncate shell output in UI history and improve active shell display ( #17438 )
2026-02-08 08:09:48 +00:00
Abhi
31522045cd
refactor(config): remove experimental.enableEventDrivenScheduler setting ( #17924 )
2026-02-08 04:05:03 +00:00
Abhi
11951592aa
feat(core): pause agent timeout budget while waiting for tool confirmation ( #18415 )
2026-02-08 04:03:47 +00:00
Abhi
bc8ffa6631
feat(context): add remote configuration for tool output masking thresholds ( #18553 )
2026-02-08 03:04:46 +00:00
N. Taylor Mullen
86bd7dbd4f
chore: remove feedback instruction from system prompt ( #18560 )
2026-02-08 02:22:50 +00:00
N. Taylor Mullen
eee95c509d
refactor(core): remove memory tool instructions from Gemini 3 prompt ( #18559 )
2026-02-08 01:57:53 +00:00
Abhi
a1f2aacd1e
feat(core): exempt high-signal tools from output masking ( #18545 )
2026-02-07 23:56:45 +00:00
Jack Wotherspoon
979bbee485
chore: update colors for ask_user dialog ( #18543 )
2026-02-07 22:11:51 +00:00
N. Taylor Mullen
7450c926d1
docs: require pr-creator skill for PR generation ( #18536 )
2026-02-07 21:22:00 +00:00
Jerop Kipruto
be6723ebcc
chore: remove redundant planning prompt from final shell ( #18528 )
2026-02-07 19:45:09 +00:00
Thanh Nguyen
af606aed9b
fix(cli): add SS3 Shift+Tab support for Windows terminals ( #18187 )
2026-02-07 15:38:59 +00:00
Jacob Richman
a37844e5a1
Code review fixes for show question mark pr. ( #18480 )
2026-02-07 06:35:14 +00:00
g-samroberts
6f1a5bf81d
Patch for generate changelog docs yaml file ( #18496 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-07 03:13:29 +00:00
N. Taylor Mullen
9178b31629
feat(core): overhaul system prompt for rigor, integrity, and intent alignment ( #17263 )
2026-02-07 03:13:07 +00:00
Sandy Tao
19dc40825e
fix(core): expand excludeTools with legacy aliases for renamed tools ( #18498 )
2026-02-07 00:49:25 +00:00
N. Taylor Mullen
bc9b3052ee
fix(cli): reload skills and agents on extension restart ( #18411 )
2026-02-07 00:40:43 +00:00
Jerop Kipruto
3b0649d408
feat(cli): update approval modes UI ( #18476 )
2026-02-07 00:23:59 +00:00
Sandy Tao
7409ce5df6
feat(cli): add WebSocket-based network logging and streaming chunk support ( #18383 )
2026-02-07 00:20:22 +00:00
Jerop Kipruto
e3796d137a
fix(core): prevent subagent bypass in plan mode ( #18484 )
2026-02-06 22:55:00 +00:00
Abhijit Balaji
ee68a10e9c
chore: Update build-and-start script to support argument forwarding ( #18241 )
2026-02-06 22:39:14 +00:00
Sandy Tao
28805a4b2d
refactor: simplify tool output truncation to single config ( #18446 )
2026-02-06 21:41:19 +00:00
joshualitt
fd72a8c40f
bug(core): Ensure storage is initialized early, even if config is not. ( #18471 )
2026-02-06 21:33:13 +00:00
Abhi
63f7e30790
feat(core): implement persistence and resumption for masked tool outputs ( #18451 )
2026-02-06 21:22:22 +00:00
Tommaso Sciortino
e844d4f45f
Refactor atCommandProcessor ( #18461 )
2026-02-06 20:49:11 +00:00
joshualitt
7a8d6f6095
bug(core): Fix bug when saving plans. ( #18465 )
2026-02-06 20:45:37 +00:00
Zac Koch
95d79b7cbe
fix- windows: add shell: true for spawnSync to fix EINVAL with .cmd editors ( #18408 )
2026-02-06 19:47:33 +00:00
Jerop Kipruto
601f0606da
feat(plan): add positive test case and update eval stability policy ( #18457 )
2026-02-06 19:45:22 +00:00
Spencer
ad6d3fd902
fix(config): treat system settings as read-only during migration and warn user ( #18277 )
2026-02-06 19:35:58 +00:00
Dmitry Lyalin
1f1cf756c8
Add shortcuts hint and panel for discoverability ( #18035 )
2026-02-06 19:33:39 +00:00
Gal Zahavi
ec5836c4d6
fix(cli): improve focus navigation for interactive and background shells ( #18343 )
2026-02-06 18:36:14 +00:00
Shreya Keshive
f062f56b43
feat(admin): apply MCP allowlist to extensions & gemini mcp list command ( #18442 )
2026-02-06 18:07:00 +00:00
Sehoon Shon
61d92c4a21
Remove previewFeatures and default to Gemini 3 ( #18414 )
2026-02-06 18:02:57 +00:00
g-samroberts
1495294cc0
Automatically generate change logs on release ( #18401 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-06 17:55:46 +00:00
christine betts
d86b1f7b7e
Enable extension config by default ( #18447 )
2026-02-06 17:27:39 +00:00
christine betts
099fea2434
Add extension registry client ( #18396 )
2026-02-06 17:14:14 +00:00
Jerop Kipruto
1d70aa5c1b
feat(plan): add behavioral evals for plan mode ( #18437 )
2026-02-06 16:51:12 +00:00
joshualitt
6fb3b09003
Shorten temp directory ( #17901 )
2026-02-06 16:10:17 +00:00
Abhi
30354892b3
feat(core,cli): implement session-linked tool output storage and cleanup ( #18416 )
2026-02-06 06:36:42 +00:00
Abhi
8ec176e005
feat(context): implement observation masking for tool outputs ( #18389 )
2026-02-06 01:53:11 +00:00
Gaurav
289769f544
perf(ui): optimize stripUnsafeCharacters with regex ( #18413 )
2026-02-06 01:46:23 +00:00
Adib234
4ffc349c18
feat(plan): create a metric for execution of plans generated in plan mode ( #18236 )
2026-02-05 23:46:34 +00:00
Gal Zahavi
83c6342e6e
chore: update folder trust error messaging ( #18402 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-05 23:26:30 +00:00
Adib234
fe975da91e
feat(plan): implement support for MCP servers in Plan mode ( #18229 )
2026-02-05 21:37:28 +00:00
Yuna Seol
00a739e84c
feat: expand verify-release to macOS and Windows ( #18145 )
...
Co-authored-by: Yuna Seol <yunaseol@google.com >
2026-02-05 21:21:55 +00:00
Philippe
2498114df6
fix: resolve infinite loop when using 'Modify with external editor' ( #17453 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
Co-authored-by: ehedlund <ehedlund@google.com >
2026-02-05 20:52:41 +00:00
Jacob Richman
8efae719ee
ux(polish) autocomplete in the input prompt ( #18181 )
2026-02-05 20:38:29 +00:00
Tommaso Sciortino
9ca7300c90
Fix permission check ( #18395 )
2026-02-05 20:19:17 +00:00
Jerop Kipruto
dc09b4988d
feat(plan): integrate planning artifacts and tools into primary workflows ( #18375 )
2026-02-05 20:07:33 +00:00
Adib234
bce57ca1af
feat(plan): fix invalid tool calls in plan mode ( #18352 )
2026-02-05 20:04:03 +00:00
Jerop Kipruto
6860556afe
feat(plan): add guidance on iterating on approved plans vs creating new plans ( #18346 )
2026-02-05 19:11:45 +00:00
Jacob Richman
258643dec4
undo ( #18147 )
2026-02-05 18:54:46 +00:00
Grant McCloskey
5d04a01b06
fix(cli): color extension link success message green ( #18386 )
2026-02-05 18:34:09 +00:00
Alisa
5b9ea35b63
Improving memory tool instructions and eval testing ( #18091 )
2026-02-05 18:07:47 +00:00
Jerop Kipruto
4a6e3eb646
feat(plan): support replace tool in plan mode to edit plans ( #18379 )
2026-02-05 17:51:35 +00:00
Tommaso Sciortino
e4c80e6382
fix: Windows Specific Agent Quality & System Prompt ( #18351 )
2026-02-05 17:50:12 +00:00
Adam DeMuri
ee2c8eef19
feat(cli): Add W, B, E Vim motions and operator support ( #16209 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-02-05 17:29:30 +00:00
Peter Friese
1cae5ab158
fix(core): handle non-compliant mcpbridge responses from Xcode 26.3 ( #18376 )
2026-02-05 17:03:32 +00:00
christine betts
ee58e1e3c1
Add support for /extensions config command ( #17895 )
2026-02-05 16:04:24 +00:00
Philippe
e3b8490edf
fix(core): add retry logic for transient SSL/TLS errors ( #17318 ) ( #18310 )
2026-02-05 15:47:35 +00:00
Shreya Keshive
2566057e44
feat(admin): Implement admin allowlist for MCP server configurations ( #18311 )
2026-02-05 13:46:01 +00:00
Jack Wotherspoon
a342c954e9
chore: correct docs as skills and hooks are stable ( #18358 )
2026-02-05 13:31:22 +00:00
g-samroberts
d29383a132
Changelogs for 0.27.0 and 0.28.0-preview0 ( #18336 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-05 02:22:31 +00:00
Grant McCloskey
a3af4a8cae
feat(skills): implement linking for agent skills ( #18295 )
2026-02-04 22:11:01 +00:00
Chris Coutinho
821355c429
fix(mcp): ensure MCP transport is closed to prevent memory leaks ( #18054 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-02-04 21:00:41 +00:00
Abhi
3afc8f25e1
fix(hooks): remove unnecessary logging for hook registration ( #18332 )
2026-02-04 19:48:33 +00:00
Adib234
d79478689f
Stop showing an error message in /plan ( #18333 )
2026-02-04 19:43:25 +00:00
Jerop Kipruto
650980af37
feat(core): add enter_plan_mode tool ( #18324 )
2026-02-04 18:57:41 +00:00
g-samroberts
bd156e6832
Add information about the agent skills lifecycle and clarify docs-writer skill metadata. ( #18234 )
...
Co-authored-by: Jenna Inouye <jinouye@google.com >
2026-02-04 17:52:30 +00:00
Jack Wotherspoon
b987e1780d
feat: increase ask_user label limit to 16 characters ( #18320 )
2026-02-04 17:50:01 +00:00
Adib234
0012d95848
feat(plan): implement plan slash command ( #17698 )
2026-02-04 17:01:43 +00:00
Abhi
fedc0c5d60
feat(core): remove hardcoded policy bypass for local subagents ( #18153 )
2026-02-04 15:20:36 +00:00
gemini-cli-robot
99e523a15f
chore(release): bump version to 0.29.0-nightly.20260203.71f46f116 ( #18243 )
2026-02-04 14:43:29 +00:00
Christian Gunderman
a0b6602d09
Fix issue where agent gets stuck at interactive commands. ( #18272 )
2026-02-04 07:02:09 +00:00
Abhi
b39cefe14e
feat(core): add default execution limits for subagents ( #18274 )
2026-02-04 06:28:00 +00:00
Sehoon Shon
94f4e5cc15
feat(core): enable getUserTierName in config ( #18265 )
2026-02-04 03:28:58 +00:00
Jerop Kipruto
d866e7e6e7
feat(plan): unify workflow location in system prompt to optimize caching ( #18258 )
2026-02-04 03:11:28 +00:00
Christian Gunderman
ed02b94570
Encourage agent to utilize ecosystem tools to perform work ( #17881 )
2026-02-04 02:02:25 +00:00
Gal Zahavi
aba8c5f662
fix(cli): allow restricted .env loading in untrusted sandboxed folders ( #17806 )
2026-02-04 01:08:10 +00:00
Jack Wotherspoon
d1cde575d9
fix: remove ask_user tool from non-interactive modes ( #18154 )
2026-02-03 23:41:36 +00:00
Gal Zahavi
71f46f1160
fix: enforce folder trust for workspace settings, skills, and context ( #17596 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-03 22:53:31 +00:00
Sehoon Shon
d63c34b6e1
feat(ui): move user identity display to header ( #18216 )
2026-02-03 21:51:21 +00:00
Shreya Keshive
7a6dfa3704
fix(sandbox): propagate GOOGLE_GEMINI_BASE_URL&GOOGLE_VERTEX_BASE_URL env vars ( #18231 )
2026-02-03 21:40:41 +00:00
Emily Hedlund
69f8273481
feat(core): require user consent before MCP server OAuth ( #18132 )
2026-02-03 21:26:00 +00:00
Shreya Keshive
1fc59484b1
feat(admin): add support for MCP configuration via admin controls (pt1) ( #18223 )
2026-02-03 21:19:14 +00:00
Adib234
53027af94c
Add telemetry to rewind ( #18122 )
2026-02-03 21:17:29 +00:00
Jack Wotherspoon
69c0585ab2
feat: Add markdown rendering to ask_user tool ( #18211 )
2026-02-03 21:04:38 +00:00
christine betts
3e954930f1
Fix handling of empty settings ( #18131 )
2026-02-03 20:39:20 +00:00
christine betts
2cf3a14439
Reload skills when extensions change ( #18225 )
2026-02-03 20:31:14 +00:00
Adam Weidman
0f918f0cc8
feat(a2a): Add pluggable auth provider infrastructure ( #17934 )
2026-02-03 20:22:07 +00:00
David Pierce
75dbf9022c
A2a admin setting ( #17868 )
2026-02-03 20:16:20 +00:00
Jerop Kipruto
675ca07c8b
chore(core): explicitly state plan storage path in prompt ( #18222 )
2026-02-03 19:55:43 +00:00
Adam Weidman
40f505e257
docs: document GEMINI_CLI_HOME environment variable ( #18219 )
2026-02-03 19:49:37 +00:00
Serghei
5407878138
fix(core): Respect user's .gitignore preference ( #15482 )
...
Co-authored-by: Gaurav <39389231+gsquared94@users.noreply.github.com >
2026-02-03 19:37:21 +00:00
christine betts
14e2e09d10
Match on extension ID when stopping extensions ( #18218 )
2026-02-03 19:29:15 +00:00
Adib234
0365f13caa
feat(plan): use custom deny messages in plan mode policies ( #18195 )
2026-02-03 19:23:22 +00:00
Coco Sheng
3183e4137a
fix(test): improve test isolation and enable subagent evaluations ( #18138 )
2026-02-03 19:05:26 +00:00
Jerop Kipruto
4aa295994d
feat(plan): add exit_plan_mode ui and prompt ( #18162 )
2026-02-03 18:04:07 +00:00
Sehoon Shon
e1bd1d239f
Set default max attempts to 3 and use the common variable ( #18209 )
2026-02-03 17:47:13 +00:00
Adam Weidman
b84585d0c8
feat(core): Add A2A auth config types ( #18205 )
2026-02-03 17:44:22 +00:00
Bryan Morgan
0e7944df4f
refactor: localize ACP error parsing logic to cli package ( #18193 )
2026-02-03 16:32:20 +00:00
christine betts
d8837ec95e
Remove MCP servers on extension uninstall ( #18121 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-03 16:18:09 +00:00
Adam Weidman
dc37b190fa
refactor(core): robust trimPreservingTrailingNewline and regression test ( #18196 )
2026-02-03 15:51:09 +00:00
Alexander Farber
19b1a74c99
feat(core): add draft-2020-12 JSON Schema support with lenient fallback ( #15060 )
...
Co-authored-by: A.K.M. Adib <adibakm@google.com >
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-02-03 15:49:08 +00:00
Adib234
1d045792ce
Add link to rewind doc in commands.md ( #17961 )
2026-02-03 15:06:33 +00:00
matt korwel
a8b4c38c89
chore(core): reassign telemetry keys to avoid server conflict ( #18161 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-03 06:43:57 -06:00
N. Taylor Mullen
ad8796b02d
feat(core): add .agents/skills directory alias for skill discovery ( #18151 )
2026-02-03 06:07:36 +00:00
Bryan Morgan
e7bfd2bf83
fix(cli): resolve environment loading and auth validation issues in ACP mode ( #18025 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-03 05:54:10 +00:00
Gaurav
1b274b081d
fix(core): prioritize detailed error messages for code assist setup ( #17852 )
2026-02-03 04:27:55 +00:00
Sandy Tao
5b254c379c
feat(core): rename search_file_content tool to grep_search and add legacy alias ( #18003 )
2026-02-03 04:18:24 +00:00
Jerop Kipruto
ed26ea49e9
feat(plan): add core logic and exit_plan_mode tool definition ( #18110 )
2026-02-03 03:30:03 +00:00
Adib234
01e33465bd
feat(plan): handle inconsistency in schedulers ( #17813 )
2026-02-03 03:10:04 +00:00
Jack Wotherspoon
18cce6a9ab
fix: improve Ctrl+R reverse search ( #18075 )
2026-02-03 01:03:28 +00:00
Gal Zahavi
18d7d1a92c
feat: update review-frontend-and-fix slash command to review-and-fix ( #18146 )
2026-02-03 00:44:20 +00:00
Shreya Keshive
0dd0b83612
fix(ide): no-op refactoring that moves the connection logic to helper functions ( #18118 )
2026-02-03 00:42:29 +00:00
Abhijit Balaji
4e4a55be35
feat(cli): implement automatic theme switching based on terminal background ( #17976 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2026-02-03 00:39:17 +00:00
Pavan Shinde
f57fd642df
docs: fix help-wanted label spelling ( #18114 )
...
Co-authored-by: Christian Gunderman <gundermanc@gmail.com >
2026-02-03 00:38:52 +00:00
Sandy Tao
5e96373e6b
feat(core): implement tool name aliasing for backward compatibility ( #17974 )
2026-02-03 00:34:14 +00:00
Jerop Kipruto
09beb648b8
refactor: migrate checks.ts utility to core and deduplicate ( #18139 )
2026-02-03 00:32:13 +00:00
Jerop Kipruto
c159c85c89
fix(ui): prevent content leak in MaxSizedBox bottom overflow ( #17991 )
2026-02-02 23:37:33 +00:00
Jacob Richman
8cae90f404
Fix up/down arrow regression and add test. ( #18108 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-02 13:55:45 -08:00
Jenna Inouye
c5d0fc2c3e
Docs: Revise docs/index.md ( #17879 )
2026-02-02 18:28:32 +00:00
Sandy Tao
e860f517c0
feat(core): add setting to disable loop detection ( #18008 )
2026-02-02 18:13:20 +00:00
Sehoon Shon
b0be1f1689
Sehoon/oncall filter ( #18105 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-02 18:10:28 +00:00
Jenna Inouye
85dd6ef773
docs-writer skill: Update docs writer skill ( #17928 )
2026-02-02 18:07:25 +00:00
Jack Wotherspoon
ae672881d1
docs: update clearContext to hookSpecificOutput ( #18024 )
2026-02-02 17:32:37 +00:00
Jerop Kipruto
9e7c10ad88
feat(plan): use placeholder for choice question "Other" option ( #18101 )
2026-02-02 17:00:13 +00:00
Victor Vianna
381669dce0
chore: delete autoAccept setting unused in production ( #17862 )
...
Co-authored-by: Victor Hugo Vianna Silva <victorvianna@google.com >
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-02-02 13:49:17 +00:00
Bryan Morgan
707b3e85d5
fix(ci): prevent stale PR closer from incorrectly closing new PRs ( #18069 )
2026-02-01 15:13:29 -05:00
Bryan Morgan
7d36cc004f
feat(acp): add session resume support ( #18043 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-02-01 19:16:57 +00:00
Dmitry Lyalin
cb4f0c6fa4
Fix Esc cancel during streaming ( #18039 )
2026-02-01 16:16:14 +00:00
Bryan Morgan
b0f38104d7
fix(workflow): update maintainer check logic to be inclusive and case-insensitive ( #18009 )
2026-01-30 22:32:58 -05:00
Jacob Richman
7469ea0fca
Fix truncation for AskQuestion ( #18001 )
2026-01-31 01:07:41 +00:00
Jacob Richman
00fdb30211
Support ctrl-C and Ctrl-D correctly Refactor so InputPrompt has priority over AppContainer for input handling. ( #17993 )
2026-01-31 00:11:14 +00:00
g-samroberts
0fe8492569
Fix broken link. ( #17972 )
2026-01-30 21:31:07 +00:00
Abhi
76387d22ae
fix(core): ensure YOLO mode auto-approves complex shell commands when parsing fails ( #17920 )
2026-01-30 20:44:17 +00:00
Sehoon Shon
a362b7b382
lower the default max retries to reduce contention ( #17975 )
2026-01-30 20:00:31 +00:00
Jerop Kipruto
71308caf05
feat(plan): refactor ToolConfirmationPayload to union type ( #17980 )
2026-01-30 19:51:45 +00:00
kevinjwang1
6396ab1ccb
Add allowedExtensions setting ( #17695 )
2026-01-30 19:43:51 +00:00
Sehoon Shon
12531a06f8
run npx pointing to the specific commit SHA ( #17970 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-30 19:42:29 +00:00
lottielin
d1cd69a20d
feat(core): enable overriding CODE_ASSIST_API_VERSION with env var ( #17942 )
...
Co-authored-by: Charlotte Lin <charlotteclin@google.com >
2026-01-30 19:12:04 +00:00
Jerop Kipruto
62346875e4
feat(plan): reuse standard tool confirmation for AskUser tool ( #17864 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2026-01-30 18:32:21 +00:00
christine betts
13e013230b
Fix broken link in docs ( #17959 )
2026-01-30 18:27:25 +00:00
Jacob Richman
bb6a336ca9
Fix bugs where Rewind and Resume showed Ugly and 100X too verbose content. ( #17940 )
2026-01-30 18:09:27 +00:00
Shreya Keshive
f14d0c6a17
feat(admin): provide actionable error messages for disabled features ( #17815 )
2026-01-30 18:05:22 +00:00
Gal Zahavi
b611f9a519
feat: Implement background shell commands ( #14849 )
2026-01-30 17:53:09 +00:00
Abhi
d3bca5d97a
feat(core): implement dynamic policy registration for subagents ( #17838 )
2026-01-30 16:57:54 +00:00
Bryan Morgan
94f4e027f8
feat(ci): add npx smoke test to verify installability ( #17927 )
2026-01-30 16:09:59 +00:00
Abhi
95b7d69d5b
refactor(hooks): remove legacy tools.enableHooks setting ( #17867 )
2026-01-30 15:15:48 +00:00
Abhi
f605628624
perf(core): optimize token calculation and add support for multimodal tool responses ( #17835 )
2026-01-30 15:15:00 +00:00
Emily Hedlund
2238802e97
feat(core): implement interactive and non-interactive consent for OAuth ( #17699 )
2026-01-30 14:57:34 +00:00
Jacob Richman
32cfce16bb
bug(ux) vim mode fixes. Start in insert mode. Fix bug blocking F12 and ctrl-X in vim mode. ( #17938 )
2026-01-30 07:31:47 +00:00
Jacob Richman
137080da45
Fix HalfLinePaddedBox in screenreader mode. ( #17914 )
2026-01-30 03:21:18 +00:00
Thomas Shephard
695785c69d
feat: preserve EOL in files ( #16087 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Adib234 <30782825+Adib234@users.noreply.github.com >
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-30 00:57:06 +00:00
g-samroberts
d43d772e65
Create skills page, update commands, refine docs ( #17842 )
2026-01-29 23:52:06 +00:00
Sandy Tao
59e3624ada
feat(core): Isolate and cleanup truncated tool outputs ( #17594 )
2026-01-29 23:20:11 +00:00
Danielle Yim
fdda3a2399
feat(core): Add GOOGLE_GENAI_API_VERSION environment variable support ( #16177 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-29 22:45:37 +00:00
Alisa
2de39311cf
Refactoring of disabling of mouse tracking in e2e tests ( #17902 )
2026-01-29 22:05:19 +00:00
Sehoon Shon
fc926cd0b0
Revert "fix(core): resolve DEP0040 punycode deprecation via patch-package" ( #17898 )
2026-01-29 21:13:00 +00:00
Jack Wotherspoon
567761fbc0
chore: revert IDE specific ASCII logo ( #17887 )
2026-01-29 20:44:02 +00:00
Sehoon Shon
f2591aada6
fix(cli): use correct setting key for Cloud Shell auth ( #17884 )
2026-01-29 20:21:17 +00:00
Sehoon Shon
74468928e8
Revert "chore: refresh package-lock.json to resolve inconsistencies"
...
This reverts commit d561b995c0 .
2026-01-29 15:29:26 -05:00
Sehoon Shon
d561b995c0
chore: refresh package-lock.json to resolve inconsistencies
2026-01-29 15:28:40 -05:00
Alisa
b44e432f55
Disable mouse tracking e2e ( #17880 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-29 19:25:11 +00:00
Coco Sheng
bcc6ee596a
fix(core): use GIT_CONFIG_GLOBAL to isolate shadow git repo configuration - Fixes #17877 ( #17803 )
2026-01-29 19:08:34 +00:00
Christian Gunderman
bc258eba4c
Cleanup post delegate_to_agent removal ( #17875 )
2026-01-29 18:24:35 +00:00
Adib234
0e30055ae4
feat(plan): create generic Checklist component and refactor Todo ( #17741 )
2026-01-29 18:13:18 +00:00
Atharva Ralegankar
ac7687c1dd
fix(core): resolve DEP0040 punycode deprecation via patch-package ( #17692 )
...
Co-authored-by: Adib234 <30782825+Adib234@users.noreply.github.com >
2026-01-29 16:04:26 +00:00
Dev Randalpura
f9da18e0cc
feat(ux): update truncate dots to be shorter in tables ( #17825 )
2026-01-29 15:56:56 +00:00
Shreya Keshive
f619cd8750
fix(admin): Rename secureModeEnabled to strictModeDisabled ( #17789 )
2026-01-29 15:31:00 +00:00
christine betts
42eedc9184
Resolve error thrown for sensitive values ( #17826 )
2026-01-29 14:59:26 +00:00
Adam Weidman
eb17d94e91
docs: mark A2A subagents as experimental in subagents.md ( #17863 )
2026-01-29 14:48:27 +00:00
Jack Wotherspoon
9f1623688d
fix: prevent ghost border for AskUserDialog ( #17788 )
2026-01-29 14:00:46 +00:00
Yuna Seol
7f066fd3a7
feat(cli): Display user identity (auth, email, tier) on startup ( #17591 )
...
Co-authored-by: Keith Guerin <keithguerin@gmail.com >
Co-authored-by: Yuna Seol <yunaseol@google.com >
2026-01-29 05:07:52 +00:00
Abhi
6d36219e55
feat(cli): show hooksConfig.enabled in settings dialog ( #17810 )
2026-01-29 04:58:20 +00:00
Benjamin G.
5cedd28733
Fix detection of bun as package manager ( #17462 )
...
Co-authored-by: Sehoon Shon <sshon@google.com >
2026-01-29 03:31:07 +00:00
Mark Cockram
ba3e1ed1c7
fix(core): use returnDisplay for error result display ( #14994 )
...
Co-authored-by: Sehoon Shon <sshon@google.com >
2026-01-29 03:02:39 +00:00
Alexander Farber
7c2cdb225a
fix(cli): handle PAT tokens and credentials in git remote URL parsing ( #14650 )
2026-01-29 02:41:30 +00:00
Tu Shaokun
a91f4e692a
fix(cli): list installed extensions when update target missing ( #17082 )
2026-01-29 02:13:40 +00:00
Vedant Mahajan
9bb175a506
test: add integration test to verify stdout/stderr routing ( #17280 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2026-01-29 00:01:57 +00:00
Sandy Tao
0b169e9867
fix(evals): use absolute path for activity log directory ( #17830 )
2026-01-28 15:20:21 -08:00
Tommaso Sciortino
553ae3ad69
feat(cli): update undo/redo keybindings to Cmd+Z/Alt+Z and Shift+Cmd+Z/Shift+Alt+Z ( #17800 )
2026-01-28 22:57:27 +00:00
Dev Randalpura
b2265cfde4
fix(ux): fixed off-by-some wrapping caused by fixed-width characters ( #17816 )
2026-01-28 21:52:37 +00:00
Sehoon Shon
bee1267e2a
feat(cli): add user identity info to stats command ( #17612 )
2026-01-28 21:26:33 +00:00
Jacob Richman
30065c51fb
Change height for the ToolConfirmationQueue. ( #17799 )
2026-01-28 21:23:51 +00:00
Dev Randalpura
065e69a12b
feat(ux): update cell border color and created test file for table rendering ( #17798 )
2026-01-28 19:55:01 +00:00
g-samroberts
519a0e617a
Update release notes pages for 0.26.0 and 0.27.0-preview. ( #17744 )
2026-01-28 19:35:37 +00:00
Krushna Korade
0465de303a
fix: persist and restore workspace directories on session resume ( #17454 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2026-01-28 19:07:58 +00:00
Spencer
beaa134f0e
feat(extensions): add support for custom themes in extensions ( #17327 )
2026-01-28 18:58:35 +00:00
Adib234
47f4a3e50e
Fix unintended credential exposure to MCP Servers ( #17311 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-28 18:56:15 +00:00
Allen Hutchison
3787c71d15
feat(core): add support for custom deny messages in policy rules ( #17427 )
2026-01-28 18:52:48 +00:00
Sandy Tao
9e09db1ddb
feat(cli): enable activity logging for non-interactive mode and evals ( #17703 )
2026-01-28 17:02:41 +00:00
Jack Wotherspoon
25ae1a1b54
test: add more tests for AskUser ( #17720 )
2026-01-28 16:57:16 +00:00
Abhi
65accca296
fix(core): suppress duplicate hook failure warnings during streaming ( #17727 )
2026-01-28 16:40:44 +00:00
g-samroberts
72f0733d98
Fix docs-writer skill issues ( #17734 )
2026-01-28 16:15:53 +00:00
christine betts
4d4e16cc8c
[extension config] Make breaking optional value non-optional ( #17785 )
2026-01-28 16:11:21 +00:00
Shreya Keshive
370b165769
fix(admin): rename advanced features admin setting ( #17786 )
2026-01-28 15:53:05 +00:00
Sehoon Shon
899e8a9edc
/oncall dedup - wrap texts to nextlines ( #17782 )
2026-01-28 15:13:25 +00:00
kapsner
4dca5c27c6
feat(core): add support for positron ide ( #15045 ) ( #15047 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2026-01-28 15:08:03 +00:00
maruto
06c7dc561e
fix: verify audio/video MIME types with content check ( #16907 )
2026-01-28 14:58:39 +00:00
Adib234
f54eaa1713
Rewind documentation ( #17446 )
2026-01-28 14:40:32 +00:00
steven semyung oh
6807a2fa28
Add a email privacy note to bug_report template ( #17474 )
...
Co-authored-by: Adib234 <30782825+Adib234@users.noreply.github.com >
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-28 13:37:54 +00:00
erikus
9aeeb69ab0
feat(cli): include auth method in /bug ( #17569 )
...
Co-authored-by: Erik Staab <estaab@google.com >
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-28 13:32:37 +00:00
jw bot
0a77999d73
test(core): mock fetch in OAuth transport fallback tests ( #17059 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-28 13:30:08 +00:00
Abhi
9035ca32bc
feat(skills): final stable promotion cleanup ( #17726 )
2026-01-28 04:56:04 +00:00
gemini-cli-robot
ef3146eed6
chore(release): bump version to 0.28.0-nightly.20260128.adc8e11bb ( #17725 )
2026-01-28 03:25:06 +00:00
Leo Chiu
ffbecd4eb4
docs: add CLI reference documentation ( #17504 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-28 02:20:43 +00:00
Sehoon Shon
2c09785748
feat(cli): align hooks enable/disable with skills and improve completion ( #16822 )
2026-01-28 01:56:06 +00:00
N. Taylor Mullen
130b596c80
feat(commands): add /prompt-suggest slash command ( #17264 )
2026-01-28 01:32:20 +00:00
Alisa
adc8e11bb1
Add support for an additional exclusion file besides .gitignore and .geminiignore ( #16487 )
...
Co-authored-by: Adam Weidman <adamfweidman@google.com >
2026-01-28 01:19:13 +00:00
Gal Zahavi
18efe82ddc
feat: add review-frontend-and-fix command ( #17707 )
2026-01-28 01:19:00 +00:00
Abhi
7c445526a4
docs: remove 'experimental' syntax for hooks in docs ( #17660 )
2026-01-28 01:06:12 +00:00
Jacob Richman
5e41b7d29e
feat(ui): add terminal cursor support ( #17711 )
2026-01-28 00:43:37 +00:00
Abhi
fe8de892f7
docs(skills): remove experimental labels and update tutorials ( #17714 )
2026-01-28 00:42:41 +00:00
Sandy Tao
2a49965d37
fix(cli): Preserve settings dialog focus when searching ( #17701 )
2026-01-28 00:41:41 +00:00
Abhi
830e212758
feat(skills): promote skills settings to stable ( #17713 )
2026-01-28 00:09:52 +00:00
Jacob Richman
d165b6d4e7
feat(ux) Expandable (ctrl-O) and scrollable approvals in alternate buffer mode. ( #17640 )
2026-01-28 00:06:24 +00:00
Abhi
ff6547857e
revert: promote Agent Skills to stable ( #17693 ) ( #17712 )
2026-01-27 23:29:12 +00:00
Jacob Richman
b51323b40c
refactor(cli): keyboard handling and AskUserDialog ( #17414 )
2026-01-27 22:26:00 +00:00
Adam Weidman
3103697ea7
docs: Add Experimental Remote Agent Docs ( #17697 )
2026-01-27 22:15:28 +00:00
Abhi
6f6445994e
feat(skills): promote Agent Skills to stable ( #17693 )
2026-01-27 21:50:22 +00:00
N. Taylor Mullen
5f569fa103
refactor(core): centralize path validation and allow temp dir access for tools ( #17185 )
...
Co-authored-by: Your Name <joshualitt@google.com >
2026-01-27 21:17:40 +00:00
Jacob Richman
c9340a9c6f
GEMINI.md polish ( #17680 )
2026-01-27 21:13:11 +00:00
Jerop Kipruto
0774f60e08
feat(plan): enable AskUser tool in Plan mode for clarifying questions ( #17694 )
2026-01-27 20:23:49 +00:00
Dev Randalpura
771ece03c9
fix(ux): have user message display a short path for pasted images ( #17613 )
2026-01-27 19:59:00 +00:00
g-samroberts
82687c6dc4
Update docs-writer skill for editing and add style guide for reference. ( #17669 )
2026-01-27 19:52:21 +00:00
Christian Gunderman
b6cf189ab2
Fix issue where Gemini CLI can make changes when simply asked a question ( #17608 )
2026-01-27 19:47:33 +00:00
christine betts
9dc0994878
Load extension settings for hooks, agents, skills ( #17245 )
2026-01-27 19:34:14 +00:00
Jack Wotherspoon
36d618f72a
feat: wire up AskUserTool with dialog ( #17411 )
2026-01-27 18:30:44 +00:00
Christian Gunderman
246a6d10c3
Sub-agents documentation. ( #16639 )
...
Co-authored-by: Jenna Inouye <jinouye@google.com >
2026-01-27 18:24:37 +00:00
joshualitt
dacc178d4e
feat(core): Model family-specific system prompts ( #17614 )
2026-01-27 18:21:05 +00:00
Adib234
894bd66dc6
Fix missing slash commands when Gemini CLI is in a project with a package.json that doesn't follow semantic versioning ( #17561 )
2026-01-27 18:18:16 +00:00
Sehoon Shon
50e4f9380b
feat(cli): show candidate issue state reason and duplicate status in triage ( #17676 )
2026-01-27 18:07:52 +00:00
Tommaso Sciortino
f03f2e8907
revert bad changes to tests ( #17673 )
2026-01-27 17:25:57 +00:00
Shreya Keshive
7904f973a0
fix(admin): fix a few bugs related to admin controls ( #17590 )
2026-01-27 17:14:11 +00:00
christine betts
a63277c1d0
Update sidebar to resolve site build issues ( #17674 )
2026-01-27 17:09:10 +00:00
Tommaso Sciortino
8b2b71c8ef
Change formatting to prevent UI redressing attacks ( #17611 )
2026-01-27 16:56:01 +00:00
Jacob Richman
6be42be575
Fix cluster of bugs in the settings dialog. ( #17628 )
2026-01-27 16:55:35 +00:00
christine betts
e5145ab60d
Fix sidebar issue for extensions link ( #17668 )
2026-01-27 16:42:10 +00:00
Sehoon Shon
5c16334b8c
feat(cli): add oncall command for issue triage ( #17661 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-27 16:32:46 +00:00
Jack Wotherspoon
1e628fbd1d
chore: remove extra top margin from /hooks and /extensions ( #17663 )
2026-01-27 16:30:39 +00:00
Mark Cockram
db028bc19a
refactor: rename formatMemoryUsage to formatBytes ( #14997 )
...
Co-authored-by: Adib234 <30782825+Adib234@users.noreply.github.com >
2026-01-27 16:21:53 +00:00
Jacob Richman
362384112e
paste transform followup ( #17624 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-27 14:19:54 +00:00
Akihiro Suda
0dc69bd364
feat(cli): add gemini extensions list --output-format=json ( #14479 )
...
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp >
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-27 13:27:42 +00:00
Godwin Iheuwa
56fff518cc
fix(extensions): add .gitignore to extension templates ( #17293 )
...
Co-authored-by: RUiNtheExtinct <deepkarma001@gmail.com >
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-27 13:24:21 +00:00
Jacob Richman
6b021aa27b
Fix iterm alternate buffer mode issue rendering backgrounds ( #17634 )
2026-01-27 13:15:44 +00:00
Aaron Smith
312a72acb8
feat(ui): pretty JSON rendering tool outputs ( #9767 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-27 12:55:06 +00:00
Alex Gavrilescu
88d3df912f
feat (mcp): Refresh MCP prompts on list changed notification ( #14863 )
...
Co-authored-by: christine betts <chrstn@uw.edu >
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-27 12:50:27 +00:00
Abhi
eccc200f4f
feat(core): enforce server prefixes for MCP tools in agent definitions ( #17574 )
2026-01-27 04:53:05 +00:00
Abhi
9fcdc0cdc1
chore(core): delete legacy nonInteractiveToolExecutor ( #17573 )
2026-01-27 03:56:34 +00:00
Gaurav
f4e73191d1
fix: loadcodeassist eligible tiers getting ignored for unlicensed users (regression) ( #17581 )
2026-01-27 03:45:39 +00:00
Abhi
67b00252d3
refactor(cli): migrate non-interactive flow to event-driven scheduler ( #17572 )
2026-01-27 03:11:29 +00:00
Jack Wotherspoon
a79051d9f8
feat: add double-click to expand/collapse large paste placeholders ( #17471 )
2026-01-27 02:59:09 +00:00
Christian Gunderman
5cf06503c8
Slash command for helping in debugging ( #17609 )
2026-01-27 02:47:04 +00:00
Abhi
68649c8dec
fix(cli): restore 'Modify with editor' option in external terminals ( #17621 )
2026-01-27 02:24:25 +00:00
Adib234
ad0bece6d6
feat(plan): update cycling order of approval modes ( #17622 )
2026-01-27 02:20:51 +00:00
Jacob Richman
8e8e7b33ed
Ctrl-O ( #17617 )
2026-01-27 02:14:03 +00:00
Tommaso Sciortino
d75dc88de6
Always map mac keys, even on other platforms ( #17618 )
2026-01-27 01:06:07 +00:00
Jasmeet Bhatia
57b57cc997
feat(mcp/extensions): Allow users to selectively enable/disable MCP servers included in an extension( Issue #11057 & #17402 ) ( #17434 )
2026-01-27 01:02:14 +00:00
Tommaso Sciortino
3909ad67db
test(core): fix tests in windows ( #17592 )
2026-01-27 00:43:44 +00:00
Yuna Seol
7708009103
fix(security): enforce strict policy directory permissions ( #17353 )
...
Co-authored-by: Yuna Seol <yunaseol@google.com >
2026-01-27 00:27:49 +00:00
Gal Zahavi
00f60ef532
feat(cli): add global setting to disable UI spinners ( #17234 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-27 00:06:58 +00:00
Jerop Kipruto
49c26b4801
feat(plan): refresh system prompt when approval mode changes (Shift+Tab) ( #17585 )
2026-01-26 23:45:24 +00:00
Jacob Richman
b5fe372b5b
feat(ui): add solid background color option for input prompt ( #16563 )
...
Co-authored-by: Alexander Farber <farber72@outlook.de >
2026-01-26 23:23:54 +00:00
Jerop Kipruto
7fbf470373
fix(plan): remove subagent invocation from plan mode ( #17593 )
2026-01-26 22:44:39 +00:00
christine betts
46629726f4
Fix extensions config error ( #17580 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-26 22:28:52 +00:00
Abhi
9d34ae52d6
feat(agents): migrate subagents to event-driven scheduler ( #17567 )
2026-01-26 22:12:55 +00:00
Jerop Kipruto
13bc5f620c
feat(plan): add persistent plan file storage ( #17563 )
2026-01-26 21:57:27 +00:00
Adam Weidman
018dc0d5cf
fix(core): stream grep/ripgrep output to prevent OOM ( #17146 )
2026-01-26 21:52:19 +00:00
Jenna Inouye
c2d0783965
Docs: Refactor left nav on the website ( #17558 )
2026-01-26 21:19:27 +00:00
christine betts
b07953fb38
Update extensions docs ( #16093 )
2026-01-26 20:14:38 +00:00
Christian Gunderman
2271bbb339
feat(agents): implement first-run experience for project-level sub-agents ( #17266 )
2026-01-26 19:49:32 +00:00
Abhi
d745d86af1
feat(scheduler): support multi-scheduler tool aggregation and nested call IDs ( #17429 )
2026-01-26 18:38:11 +00:00
Jacob Richman
3e1a377d78
Fix bug in detecting already added paths. ( #17430 )
2026-01-26 18:12:40 +00:00
Sandy Tao
50f89e8a41
feat(core): optimize shell tool llmContent output format ( #17538 )
2026-01-26 18:12:21 +00:00
Harsha Nadimpalli
b8319bee76
feat(cli): add quick clear input shortcuts in vim mode ( #17470 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-26 17:36:42 +00:00
Dongjun Shin
4827333c48
fix(core): handle URI-encoded workspace paths in IdeClient ( #17476 )
...
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2026-01-26 17:09:43 +00:00
Ali Muthanna
93c62a2bdc
Fix/issue 17070 ( #17242 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2026-01-26 16:59:20 +00:00
David Pierce
39e91ad633
Follow up to "enableInteractiveShell for external tooling relying on a2a server" ( #17130 )
2026-01-26 15:14:48 +00:00
Gaurav
5fe328c56a
Improve error messages on failed onboarding ( #17357 )
2026-01-26 14:31:19 +00:00
Abhi
cb772a5b7f
docs(hooks): clarify mandatory 'type' field and update hook schema documentation ( #17499 )
2026-01-25 23:33:12 +00:00
Nils Breunese
dcd949bdd0
docs: Add instructions for MacPorts and uninstall instructions for Homebrew ( #17412 )
...
Signed-off-by: Nils Breunese <nils@breun.nl >
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-25 19:21:16 +00:00
rwa
c0b8c4ab9e
fix: detect pnpm/pnpx in ~/.local ( #15254 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-25 19:13:43 +00:00
Maxim Masiutin
4d197c992d
Resolves the confusing error message `ripgrep exited with code null that occurs when a search operation is cancelled or aborted ( #14267 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2026-01-25 19:02:37 +00:00
Bryan Morgan
fd36d65723
chore(workflow): remove redundant label-enforcer workflow ( #17460 )
...
just removing this workflow
2026-01-24 16:54:56 -05:00
Bryan Morgan
05e73c4193
feat(workflow): expand stale-exempt labels to include help wanted and Public Roadmap ( #17459 )
2026-01-24 16:39:15 -05:00
Bryan Morgan
a76c2986c2
feat(workflow): add stale pull request closer with linked-issue enforcement ( #17449 )
2026-01-24 13:07:56 -05:00
Tommaso Sciortino
80e1fa198f
Clean up dead code ( #17443 )
2026-01-24 15:42:18 +00:00
Vedant Mahajan
84e882770b
migrate fireToolNotificationHook to hookSystem ( #17398 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-24 13:22:08 +00:00
Gal Zahavi
0242a3dc56
feat: Enforce unified folder trust for /directory add ( #17359 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2026-01-24 05:31:42 +00:00
Sehoon Shon
3c2482a084
fix(core): hide user tier name ( #17418 )
2026-01-24 03:16:01 +00:00
Abhi
1832f7b90a
feat(cli): Moves tool confirmations to a queue UX ( #17276 )
...
Co-authored-by: Christian Gunderman <gundermanc@google.com >
2026-01-24 01:32:35 +00:00
Christian Gunderman
77aef861fe
fix(agents): default to all tools when tool list is omitted in subagents ( #17422 )
2026-01-24 01:30:18 +00:00
Sandy Tao
0c134079cc
feat: implement AgentConfigDialog for /agents config command ( #17370 )
2026-01-24 00:10:51 +00:00
Adib234
12a5490bcf
Allow prompt queueing during MCP initialization ( #17395 )
2026-01-23 23:32:06 +00:00
Sandy Tao
93da9817b6
feat(ui): Move keyboard handling into BaseSettingsDialog ( #17404 )
2026-01-23 23:16:53 +00:00
Adib234
6fae28197e
feat(plan): implement persistent approvalMode setting ( #17350 )
2026-01-23 23:14:11 +00:00
Tommaso Sciortino
00b5b2045f
Fix line endings issue with Notice file ( #17417 )
2026-01-23 15:19:47 -08:00
Dev Randalpura
daccf4d6d1
fix(cli): change image paste location to global temp directory ( #17396 ) ( #17396 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-23 22:45:24 +00:00
Jack Wotherspoon
da1664c7a0
feat: add clearContext to AfterAgent hooks ( #16574 )
2026-01-23 22:14:30 +00:00
Sehoon Shon
5c649d8db1
feat(ui): display user tier in about command ( #17400 )
2026-01-23 21:03:53 +00:00
Jack Wotherspoon
2c0cc7b9a5
feat: add AskUserDialog for UI component of AskUser tool ( #17344 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2026-01-23 20:42:48 +00:00
Tommaso Sciortino
25c0802b52
chore: upgrade dep: diff 7.0.0-> 8.0.3 ( #17403 )
2026-01-23 20:20:21 +00:00
Manoj Naik
df379b523b
fix(cli): preserve input text when declining tool approval ( #15624 ) ( #15659 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-23 19:37:22 +00:00
Sandy Tao
68f5f6d3b0
chore(refactor): extract BaseSettingsDialog component ( #17369 )
2026-01-23 19:29:29 +00:00
Ishaan Gupta
37c7286295
Add conda installation instructions for Gemini CLI ( #16921 )
...
Co-authored-by: Vedant Mahajan <vedant.04.mahajan@gmail.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-23 11:32:33 -08:00
Pato Beltran
7b7d2b0297
Update Code Wiki README badge ( #15229 )
...
Co-authored-by: Pato Beltran <2132567+PatoBeltran@users.noreply.github.com >
2026-01-23 19:04:20 +00:00
Vijay Vasudevan
3066288c06
fix(core): use RFC 9728 compliant path-based OAuth protected resource discovery ( #15756 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2026-01-23 18:55:23 +00:00
Shreya Keshive
1ec8f40096
fix(oauth): update oauth to use 127.0.0.1 instead of localhost ( #17388 )
2026-01-23 18:41:37 +00:00
Godwin Iheuwa
dabb9ad8f6
fix(core): gracefully handle disk full errors in chat recording ( #17305 )
...
Co-authored-by: RUiNtheExtinct <deepkarma001@gmail.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-23 18:28:45 +00:00
seeksky
b5cac836c5
Fix modifyOtherKeys enablement on unsupported terminals ( #16714 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-23 17:34:52 +00:00
Ratish P
4fc3ebb930
fix(core): await MCP initialization in non-interactive mode ( #17390 )
2026-01-23 17:21:47 +00:00
Adib234
488d5fc439
Refactor: Migrate CLI appEvents to Core coreEvents ( #15737 )
2026-01-23 16:45:46 +00:00
BaeSeokJae
0b7d26c9e3
fix(core): add alternative command names for Antigravity editor detec… ( #16829 )
...
Co-authored-by: Adib234 <30782825+Adib234@users.noreply.github.com >
2026-01-23 15:56:39 +00:00
Aaron Smith
140fba7f53
fix: ensure @-command UI message ordering and test ( #12038 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-23 15:50:45 +00:00
Yuvraj Angad Singh
a270f7caa5
fix: exit with non-zero code when esbuild is missing ( #16967 )
2026-01-23 15:23:15 +00:00
Jerop Kipruto
3c832ddbeb
feat(plan): implement simple workflow for planning in main agent ( #17326 )
2026-01-23 06:53:47 +00:00
Jacob Richman
1f9f3dd1c2
Fix pr-triage.sh script to update pull requests with tags "help wanted" and "maintainer only" ( #17324 )
2026-01-23 02:57:21 +00:00
Jerop Kipruto
798900a6c8
fix(core): Include MCP server name in OAuth message ( #17351 )
2026-01-23 02:48:15 +00:00
Christian Gunderman
2c6781d134
Refactor subagent delegation to be one tool per agent ( #17346 )
2026-01-23 02:18:31 +00:00
Gaurav
07bd89399d
fix: remove obsolete CloudCode PerDay quota and 120s terminal threshold ( #17236 )
2026-01-23 01:33:32 +00:00
Allen Hutchison
1ec172e34b
fix(cli): include source in policy rule display ( #17358 )
2026-01-23 00:36:44 +00:00
joshualitt
678c58634b
feat(core): Refresh agents after loading an extension. ( #17355 )
2026-01-23 00:22:22 +00:00
Jacob Richman
a1f5d39029
Fix issue #17080 ( #17100 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2026-01-23 00:02:14 +00:00
Ishaan Gupta
beacc4f6fd
fix(cli)!: Default to interactive mode for positional arguments ( #16329 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2026-01-22 23:38:53 +00:00
Jasmeet Bhatia
a060e6149a
feat(mcp): add enable/disable commands for MCP servers ( #11057 ) ( #16299 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2026-01-22 23:38:06 +00:00
Sandy Tao
35feea8868
feat(cli): add /agents config command and improve agent discovery ( #17342 )
2026-01-22 23:22:56 +00:00
lkk214
11e48e2dd1
fix(ui): stabilize rendering during terminal resize in alternate buffer ( #15783 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2026-01-22 23:21:55 +00:00
Adib234
5f1c6447a9
feat(plan): update UI Theme for Plan Mode ( #17243 )
2026-01-22 22:22:21 +00:00
matt korwel
57601adc90
feat(routing): A/B Test Numerical Complexity Scoring for Gemini 3 ( #16041 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2026-01-22 22:12:07 +00:00
Jerop Kipruto
50985d38c4
feat(plan): add 'communicate' tool kind ( #17341 )
2026-01-22 21:38:15 +00:00
joshualitt
62dd9b5b3c
feat(core): Remove legacy settings. ( #17244 )
2026-01-22 20:59:47 +00:00
Jacob Richman
2ac7900d95
Fix so rewind starts at the bottom and loadHistory refreshes static content. ( #17335 )
2026-01-22 20:54:23 +00:00
Adib234
016a94ffaf
Disable tips after 10 runs ( #17101 )
2026-01-22 20:46:18 +00:00
Spencer
5d68d8cda5
fix(core): Resolve AbortSignal MaxListenersExceededWarning ( #5950 ) ( #16735 )
2026-01-22 20:16:00 +00:00
g-samroberts
e2ddaedab4
New skill: docs-writer ( #17268 )
2026-01-22 20:14:52 +00:00
Tommaso Sciortino
addb57c31f
Emit correct newline type return ( #17331 )
2026-01-22 19:54:34 +00:00
kapsner
233fe90f17
bug: fix ide-client connection to ide-companion when inside docker via ssh/devcontainer ( #15049 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-22 19:19:04 +00:00
Sandy Tao
902e5d6dae
feat(cli): Add state management and plumbing for agent configuration dialog ( #17259 )
2026-01-22 18:30:44 +00:00
Christian Gunderman
ba8c64459b
ci: allow failure in evals-nightly run step ( #17319 )
2026-01-22 18:23:15 +00:00
Jacob Richman
1320ebceb9
Remove redundant calls setting linuxClipboardTool. getUserLinuxClipboardTool() now handles the caching internally ( #17320 )
2026-01-22 18:11:56 +00:00
Saksham Goyal
6d7423263b
fix: show whitespace changes in edit tool diffs ( #17213 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2026-01-22 18:02:37 +00:00
Mag1ck
fe06f9a1ea
fix cli settings: resolve layout jitter in settings bar ( #16256 )
2026-01-22 17:38:38 +00:00
Jack Wotherspoon
e65208b244
feat: add AskUser tool schema ( #16988 )
2026-01-22 17:12:13 +00:00
Dev Randalpura
7962801a14
Added image pasting capabilities for Wayland and X11 on Linux ( #17144 )
2026-01-22 17:02:56 +00:00
Shreya Keshive
87a0db20d2
fix(auth): don't crash when initial auth fails ( #17308 )
2026-01-22 16:44:55 +00:00
Emily Hedlund
d956c5b221
Sanitize command names and descriptions ( #17228 )
2026-01-22 16:41:51 +00:00
Lucas Schiffer
048c30513e
docs: update typo in mcp-server.md file ( #17099 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-22 15:48:26 +00:00
Adib234
3b9f580fa4
feat: implement /rewind command ( #15720 )
2026-01-22 15:26:52 +00:00
Chuck
ff9c77925e
Feature/jetbrains ide detection ( #16243 )
...
Co-authored-by: Adib234 <30782825+Adib234@users.noreply.github.com >
2026-01-22 15:21:05 +00:00
Jacob Richman
56f9ab025a
refactor: improve large text paste placeholder ( #17269 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-22 15:05:38 +00:00
Abhi
0a173cac46
docs(hooks): comprehensive update of hook documentation and specs ( #16816 )
2026-01-22 03:13:15 +00:00
Christian Gunderman
982a093791
Enable the ability to queue specific nightly eval tests ( #17262 )
2026-01-22 03:07:33 +00:00
Yuna Seol
5debf86854
security(hooks): Wrap hook-injected context in distinct XML tags ( #17237 )
...
Co-authored-by: Yuna Seol <yunaseol@google.com >
2026-01-22 02:11:45 +00:00
Jack Wotherspoon
75e4f492ab
feat: replace large text pastes with [Pasted Text: X lines] placeholder ( #16422 )
2026-01-22 02:09:24 +00:00
joshualitt
27d21f9921
feat(core): Have subagents use a JSON schema type for input. ( #17152 )
2026-01-22 00:56:01 +00:00
Sandy Tao
b24544c80e
feat(core): Enable AgentRegistry to track all discovered subagents ( #17253 )
2026-01-22 00:19:04 +00:00
Abhi
61040d0eb8
feat(hooks): enable hooks system by default ( #17247 )
2026-01-21 22:40:31 +00:00
Abhi
3cca8ec0f0
feat(config): default enableEventDrivenScheduler to true ( #17211 )
2026-01-21 22:40:19 +00:00
Abhi
2219bac16d
fix(scheduler): prevent stale tool re-publication and fix stuck UI state ( #17227 )
2026-01-21 22:39:20 +00:00
N. Taylor Mullen
1c9a57c3c2
feat(cli): consolidate shell inactivity and redirection monitoring ( #17086 )
2026-01-21 22:31:24 +00:00
Sandy Tao
a1233e7e5c
fix(core): simplify replace tool error message ( #17246 )
2026-01-21 22:25:36 +00:00
Ishaan Gupta
1033550f78
fix: /policy to display policies according to mode ( #16772 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Allen Hutchison <adh@google.com >
2026-01-21 21:33:57 +00:00
Pyush Sinha
addecf2c74
fix(core): update token count and telemetry on /chat resume history load ( #16279 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-21 21:24:33 +00:00
Abhi
c266b529ae
refactor(cli): decouple UI from live tool execution via ToolActionsContext ( #17183 )
2026-01-21 21:16:30 +00:00
Tommaso Sciortino
dce450b1e8
drain stdin on exit ( #17241 )
2026-01-21 21:13:10 +00:00
christine betts
a91665db40
Remove unused slug from sidebar ( #17229 )
2026-01-21 20:00:10 +00:00
Sandy Tao
f79124f96e
feat(core): enable disableLLMCorrection by default ( #17223 )
2026-01-21 18:53:41 +00:00
Jerop Kipruto
eb2af84bb9
feat(plan): add approval mode instructions to system prompt ( #17151 )
2026-01-21 18:44:35 +00:00
Tommaso Sciortino
f190b87223
Support command/ctrl/alt backspace correctly ( #17175 )
2026-01-21 18:13:26 +00:00
Jenna Inouye
e894871afc
Docs: Marking for experimental features ( #16760 )
2026-01-21 18:11:42 +00:00
Gal Zahavi
45d554ae2f
fix(core,cli): enable recursive directory access for ( #17094 )
2026-01-21 17:58:23 +00:00
N. Taylor Mullen
acbef4cd31
feat(core): support dynamic variable substitution in system prompt override ( #17042 )
2026-01-21 17:43:50 +00:00
N. Taylor Mullen
80069b4a78
feat(cli): improve skill enablement/disablement verbiage ( #17192 )
2026-01-21 17:39:37 +00:00
Shreya Keshive
d0cae4547e
fix(admin): Ensure CLI commands run in non-interactive mode ( #17218 )
2026-01-21 17:38:20 +00:00
Bryan Morgan
7399c623d8
fix(github): improve label-workstream-rollup efficiency and fix bugs ( #17219 )
2026-01-21 12:25:48 -05:00
Vedant Mahajan
6b14dc8240
Migrate beforeTool and afterTool hooks to hookSystem ( #17204 )
...
Co-authored-by: Ishaan Gupta <ishaankone@gmail.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-21 17:13:03 +00:00
g-samroberts
4d77934a83
Docs: Update changelogs for v.0.25.0 and v0.26.0-preview.0 releases. ( #17215 )
2026-01-21 17:04:13 +00:00
Bryan Morgan
9e3d36c19b
fix(github): improve label-workstream-rollup efficiency with GraphQL ( #17217 )
2026-01-21 12:10:19 -05:00
Christian Gunderman
c43b04b44c
Run evals for all models. ( #17123 )
2026-01-21 16:38:37 +00:00
Bryan Morgan
8605d0d024
feat(workflows): support recursive workstream labeling and new IDs ( #17207 )
2026-01-21 11:15:38 -05:00
Jerop Kipruto
c21c297133
feat(plan): refactor TestRig and eval helper to support configurable approval modes ( #17171 )
2026-01-21 15:43:48 +00:00
Adib234
0605e6e3e9
feat(plan): Extend Shift+Tab Mode Cycling to include Plan Mode ( #17177 )
2026-01-21 15:19:47 +00:00
Sehoon Shon
b703c87a64
feat(skills): add code-reviewer skill ( #17187 )
2026-01-21 07:28:36 +00:00
christine betts
a784c263be
Remove other rewind reference in docs ( #17149 )
2026-01-21 05:26:48 +00:00
gemini-cli-robot
169d906fe3
chore(release): bump version to 0.27.0-nightly.20260121.97aac696f ( #17181 )
2026-01-21 05:23:58 +00:00
Abhi
525539fc13
feat(cli): implement event-driven tool execution scheduler ( #17078 )
2026-01-21 05:18:42 +00:00
Sehoon Shon
53e0c212cc
chore(skills): update pr-creator skill workflow ( #17180 )
2026-01-21 05:09:53 +00:00
Sehoon Shon
7990073543
feat(cli): sanitize ANSI escape sequences in non-interactive output ( #17172 )
2026-01-21 04:58:37 +00:00
Sehoon Shon
367e7bf401
Update Attempt text to Retry when showing the retry happening to the … ( #17178 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-21 04:57:00 +00:00
Vedant Mahajan
3a4012f76a
Remove unused modelHooks and toolHooks ( #17115 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-21 04:34:50 +00:00
Ishaan Gupta
c9f0a48bdc
remove fireAgent and beforeAgent hook ( #16919 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-21 04:32:07 +00:00
Andrew Garrett
97aac696fb
Fix mcp tool lookup in tool registry ( #17054 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2026-01-21 04:18:33 +00:00
Jacob Richman
93ae7772fd
Fix bug where System scopes weren't migrated. ( #17174 )
2026-01-21 04:07:17 +00:00
Tommaso Sciortino
9866eb0551
fix bad fallback logic external editor logic ( #17166 )
2026-01-21 02:48:44 +00:00
Panagiotis Mantafounis
55c2783e6a
fix(cli): display 'http' type on mcp list ( #16915 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-21 02:37:19 +00:00
Tommaso Sciortino
2455f939a3
fix(cli): resolve home/end keybinding conflict ( #17124 )
2026-01-21 02:15:18 +00:00
Jacob Richman
995ae42f53
Avoid spurious warnings about unexpected renders triggered by appEvents and coreEvents. ( #17160 )
2026-01-21 00:46:10 +00:00
Adib234
e1fd5be429
Add Esc-Esc to clear prompt when it's not empty ( #17131 )
2026-01-21 00:32:26 +00:00
Gaurav
3b626e7c61
Add interactive ValidationDialog for handling 403 VALIDATION_REQUIRED errors. ( #16231 )
2026-01-21 00:23:01 +00:00
Tommaso Sciortino
aceb06a587
fix(cli): fix newline support broken in previous PR ( #17159 )
2026-01-21 00:20:51 +00:00
joshualitt
211d2c5fdd
feat(core): Ensure all properties in hooks object are event names. ( #16870 )
2026-01-20 22:47:31 +00:00
christine betts
c9061a1cfe
Remove missing sidebar item ( #17145 )
2026-01-20 22:03:35 +00:00
David Soria Parra
b288f124b2
fix(cli): send gemini-cli version as mcp client version ( #13407 )
...
Co-authored-by: Taylor Mullen <ntaylormullen@google.com >
2026-01-20 22:01:18 +00:00
imadraude
645e2ec041
fix(cli): resolve Ctrl+Enter and Ctrl+J newline issues ( #17021 )
2026-01-20 21:56:33 +00:00
N. Taylor Mullen
67d69084e9
docs: update project context and pr-creator workflow ( #17119 )
2026-01-20 21:20:04 +00:00
Sehoon Shon
ed0b0fae49
fix(core): resolve auto model in default strategy ( #17116 )
2026-01-20 21:03:34 +00:00
Sandy Tao
f0f705d3ca
feat(core): unify agent enabled and disabled flags ( #17127 )
2026-01-20 21:00:43 +00:00
joshualitt
f42b4c80ac
feat(core): Add initial eval for generalist agent. ( #16856 )
2026-01-20 20:32:48 +00:00
David Zammit
b99e841021
Fixes Windows crash: "Cannot resize a pty that has already exited" ( #15757 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2026-01-20 20:14:28 +00:00
Adam Weidman
a16d5983cf
feat: Add flash lite utility fallback chain ( #17056 )
2026-01-20 19:43:43 +00:00
Adib234
e5745f16cb
feat(plan): telemetry to track adoption and usage of plan mode ( #16863 )
2026-01-20 18:57:34 +00:00
Christian Gunderman
12b0fe1cc2
Demote the subagent test to nightly ( #17105 )
2026-01-20 18:18:16 +00:00
Pyush Sinha
5b8a23979f
fix(core): update telemetry token count after session resume ( #15491 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-20 18:01:39 +00:00
Shreya Keshive
b71fe94e0a
feat(admin): apply admin settings to gemini skills/mcp/extensions commands ( #17102 )
2026-01-20 17:52:11 +00:00
Vedant Mahajan
e92f60b4fc
fix: migrate BeforeModel and AfterModel hooks to HookSystem ( #16599 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-20 17:46:54 +00:00
Sandy Tao
15f26175b8
fix(core): Provide compact, actionable errors for agent delegation failures ( #16493 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-20 17:30:59 +00:00
christine betts
85b17166a5
Revert "Revert "Update extension examples"" ( #16445 )
2026-01-20 17:14:46 +00:00
Christian Gunderman
88df6210eb
Test coverage for hook exit code cases ( #17041 )
2026-01-20 17:13:15 +00:00
Shreya Keshive
943481ccc0
feat(admin): set admin.skills.enabled based on advancedFeaturesEnabled setting ( #17095 )
2026-01-20 16:57:47 +00:00
Coco Sheng
79076d1d52
[A2A] Disable checkpointing if git is not installed ( #16896 )
2026-01-20 16:38:38 +00:00
christine betts
166e04a8dd
Fix mcp instructions ( #16439 )
2026-01-20 16:10:21 +00:00
Ramón Medrano Llamas
1182168bd9
feat(core): enhanced anchored iterative context compression with self-verification ( #15710 )
2026-01-20 08:43:15 +00:00
Adam Weidman
e34f0b4a98
fix: update currentSequenceModel when modelChanged ( #17051 )
2026-01-20 06:25:15 +00:00
jw bot
4920ad2694
docs(themes): remove unsupported DiffModified color key ( #17073 )
2026-01-20 05:08:48 +00:00
N. Taylor Mullen
52fadba9f2
fix(core): deduplicate ModelInfo emission in GeminiClient ( #17075 )
2026-01-20 04:29:45 +00:00
N. Taylor Mullen
ec7413456e
feat(core): improve shell redirection transparency and security ( #16486 )
2026-01-20 04:07:28 +00:00
Abhi
451e0b49cb
feat(cli): add experiment gate for event-driven scheduler ( #17055 )
2026-01-20 03:59:30 +00:00
Vedant Mahajan
155d9aafe2
fix return type of fireSessionStartEvent to defaultHookOutput ( #16833 )
2026-01-20 03:25:43 +00:00
Bryan Morgan
05c0a8eac3
fix(workflows): use author_association for maintainer check ( #17060 )
2026-01-20 03:05:15 +00:00
N. Taylor Mullen
0bebc664c1
fix(ui): ensure rationale renders before tool calls ( #17043 )
2026-01-20 01:22:15 +00:00
Abhi
1b6b6d40d5
refactor(cli): centralize tool mapping and decouple legacy scheduler ( #17044 )
2026-01-20 01:00:42 +00:00
N. Taylor Mullen
a90bcf749d
feat: add /introspect slash command ( #17048 )
2026-01-19 16:15:20 -08:00
Abhi
e2901f3f7e
refactor(core): decouple scheduler into orchestration, policy, and confirmation ( #16895 )
2026-01-19 23:19:17 +00:00
김현수
4b4bdd10b6
fix(automation): fix jq quoting error in pr-triage.sh ( #16958 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-19 21:10:35 +00:00
Pyry Takala
0a6f2e089f
Fix: Process all parts in response chunks when thought is first ( #13539 )
2026-01-19 21:04:45 +00:00
Thomas Shephard
d8a8b434f6
fix(cli): use OSC-52 clipboard copy in Windows Terminal ( #16920 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-19 20:22:42 +00:00
Christian Gunderman
49769152d6
Demote git evals to nightly run. ( #17030 )
2026-01-19 19:00:41 +00:00
kij
4cfbe4c716
fix(cli): correct Homebrew installation detection ( #14727 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-19 15:37:32 +00:00
JAYADITYA
a4eb04b7d4
docs: update README and config guide to reference Gemini 3 ( #15806 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2026-01-19 15:24:34 +00:00
Bryan Morgan
d079b7a216
chore(scripts): add duplicate issue closer script and fix lint errors ( #16997 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-19 09:23:08 -05:00
Christian Gunderman
d87a3acdef
Fix inverted logic. ( #17007 )
2026-01-19 07:16:05 +00:00
N. Taylor Mullen
08c32f725e
fix(core): attempt compression before context overflow check ( #16914 )
2026-01-19 06:40:07 +00:00
Christian Gunderman
203f5209ba
Stabilize the git evals ( #16989 )
2026-01-19 06:18:06 +00:00
N. Taylor Mullen
9d9e3d1555
Stabilize skill-creator CI and package format ( #17001 )
2026-01-18 19:51:05 -08:00
Adib234
20580d754d
Delete rewind documentation for now ( #16932 )
2026-01-17 17:25:35 +00:00
Sehoon Shon
41e01c2321
fix(core): resolve PKCE length issue and stabilize OAuth redirect port ( #16815 )
2026-01-17 17:18:40 +00:00
Ali Abbas
6900253cb8
feat(cli): replace relative keyboard shortcuts link with web URL ( #16479 )
2026-01-17 13:54:36 +00:00
Ishaan Gupta
86dbf2013e
fix: Show experiment values in settings UI for compressionThreshold ( #16267 )
...
Co-authored-by: Vedant Mahajan <vedant.04.mahajan@gmail.com >
2026-01-17 03:18:34 +00:00
Adam Weidman
a76946189a
chore: remove a2a-adapter and bump @a2a-js/sdk to 0.3.8 ( #16800 )
2026-01-17 01:01:39 +00:00
Christian Gunderman
e03042657b
Don't commit unless user asks us to. ( #16902 )
2026-01-17 01:00:46 +00:00
Abhi
1998a713e2
fix(hooks): enable /hooks disable to reliably stop single hooks ( #16804 )
2026-01-17 00:28:36 +00:00
N. Taylor Mullen
ee8d425603
refactor(core): foundational truncation refactoring and token estimation optimization ( #16824 )
2026-01-16 23:57:47 +00:00
N. Taylor Mullen
272570cc18
feat(agent): enable agent skills by default ( #16736 )
2026-01-16 23:10:55 +00:00
N. Taylor Mullen
1681ae1842
refactor(cli): unify shell confirmation dialogs ( #16828 )
2026-01-16 23:06:52 +00:00
Alexander Farber
608da23393
feat(settings): rename negative settings to positive naming (disable* -> enable*) ( #14142 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2026-01-16 22:33:49 +00:00
Jacob Richman
f2d3b76389
Remove LRUCache class migrating to mnemoist ( #16872 )
2026-01-16 21:17:31 +00:00
Shreya Keshive
d8d4d87e29
feat(admin): implement admin controls polling and restart prompt ( #16627 )
2026-01-16 20:24:53 +00:00
Jerop Kipruto
93224e1813
feat(plan): remove read_many_files from approval mode policies ( #16876 )
2026-01-16 20:09:36 +00:00
Sehoon Shon
9722ec9b6a
fix(core): surface warnings for invalid hook event names in configuration ( #16788 ) ( #16873 )
2026-01-16 19:39:07 +00:00
N. Taylor Mullen
063f0d0dcd
docs(extensions): add Agent Skills support and mark feature as experimental ( #16859 )
2026-01-16 19:37:28 +00:00
Sehoon Shon
42fd647373
fix(core): truncate large telemetry log entries ( #16769 )
2026-01-16 19:30:48 +00:00
Sehoon Shon
59da61602f
remove need-triage label from bug_report template ( #16864 )
2026-01-16 19:12:28 +00:00
Jerop Kipruto
5241174827
feat(plan): enforce strict read-only policy and halt execution on violation ( #16849 )
2026-01-16 17:56:48 +00:00
Gal Zahavi
013a4e02ff
fix(core): fix PTY descriptor shell leak ( #16773 )
2026-01-16 17:55:29 +00:00
N. Taylor Mullen
be37c26c88
perf(ui): optimize text buffer and highlighting for large inputs ( #16782 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2026-01-16 17:33:13 +00:00
joshualitt
fcd860e1b0
feat(core): Add generalist agent. ( #16638 )
2026-01-16 17:21:13 +00:00
Tommaso Sciortino
ce35d84113
cleanup: Organize key bindings ( #16798 )
2026-01-16 16:56:46 +00:00
christine betts
cfdc4cfca8
Fix race condition by awaiting scheduleToolCalls ( #16759 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-16 16:55:15 +00:00
Christian Gunderman
a15978593a
Steer outer agent to use expert subagents when present ( #16763 )
2026-01-16 16:51:10 +00:00
Tommaso Sciortino
4bb817de22
skip simple-mcp-server.test.ts ( #16842 )
2026-01-16 08:43:30 -08:00
Bryan Morgan
c6cf3a4234
chore(workflows): rename label-workstream-rollup workflow ( #16818 )
2026-01-15 23:48:56 -05:00
Bryan Morgan
420a419f5e
fix(infra): use GraphQL to detect direct parents in rollup workflow ( #16811 )
2026-01-15 23:38:27 -05:00
Bryan Morgan
8dde66c0dd
fix(infra): update maintainer rollup label to 'workstream-rollup' ( #16809 )
2026-01-15 21:37:11 -05:00
Abhi
f367b959cd
feat(scheduler): add functional awaitConfirmation utility ( #16721 )
2026-01-15 22:44:59 +00:00
Jerop Kipruto
655ab21d8b
feat(plan): add experimental 'plan' approval mode ( #16753 )
2026-01-15 22:00:19 +00:00
Adib234
1e8f87fbdf
Add support for running available commands prior to MCP servers loading ( #15596 )
2026-01-15 20:33:16 +00:00
Krushna Korade
8a627d6c9a
fix(cli): safely handle /dev/tty access on macOS ( #16531 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-15 20:10:53 +00:00
matt korwel
b0d2ec55cc
docs: clarify workspace test execution in GEMINI.md ( #16764 )
2026-01-15 20:09:58 +00:00
Gal Zahavi
e77d7b2e1e
fix(cli): prevent OOM crash by limiting file search traversal and adding timeout ( #16696 )
2026-01-15 20:04:22 +00:00
Bryan Morgan
48fdb9872f
fix(automation): robust label enforcement with permission checks ( #16762 )
2026-01-15 19:53:08 +00:00
Sehoon Shon
c8670f8696
fix(cli): add explicit dependency on color-convert ( #16757 )
2026-01-15 19:03:53 +00:00
Coco Sheng
5ba6e243b5
Restricting to localhost ( #16548 )
...
Co-authored-by: Adam Weidman <adamfweidman@google.com >
2026-01-15 18:59:34 +00:00
christine betts
9e13a43225
Replace relative paths to fix website build ( #16755 )
2026-01-15 17:54:43 +00:00
Sehoon Shon
6740886e22
fix(core): prevent ModelInfo event emission on aborted signal ( #16752 )
2026-01-15 17:26:54 +00:00
Jacob Richman
f7f38e2b9e
Make merged settings non-nullable and fix all lints related to that. ( #16647 )
2026-01-15 17:26:10 +00:00
Bryan Morgan
2b6bfe4097
feat(automation): enforce ' 🔒 maintainer only' and fix bot loop ( #16751 )
2026-01-15 16:40:33 +00:00
Allen Hutchison
f909c9ef90
feat(policy): add source tracking to policy rules ( #16670 )
2026-01-15 16:06:07 +00:00
g-samroberts
fa3981990c
Add links to supported locations and minor fixes ( #16476 )
2026-01-15 15:59:31 +00:00
Bryan Morgan
d545a3b614
fix(automation): prevent label-enforcer loop by ignoring all bots ( #16746 )
...
Co-authored-by: Sehoon Shon <sshon@google.com >
2026-01-15 15:50:36 +00:00
Bryan Morgan
a8631a109e
fix(automation): correct status/need-issue label matching wildcard ( #16727 )
2026-01-15 14:26:00 +00:00
gemini-cli-robot
b0c9db7b33
chore/release: bump version to 0.26.0-nightly.20260115.6cb3ae4e0 ( #16738 )
...
Co-authored-by: Sehoon Shon <sshon@google.com >
2026-01-15 08:24:47 +00:00
Sehoon Shon
448fd3ca66
fix(core): resolve circular dependency via tsconfig paths ( #16730 )
2026-01-15 07:42:03 +00:00
Bryan Morgan
53f54436c9
chore(automation): enforce 'help wanted' label permissions and update guidelines ( #16707 )
2026-01-15 05:36:58 +00:00
Abhi
409f9c825b
feat(scheduler): add SchedulerStateManager for reactive tool state ( #16651 )
2026-01-15 04:42:31 +00:00
N. Taylor Mullen
222b739501
feat(skills): add conflict detection and warnings for skill overrides ( #16709 )
2026-01-15 04:02:17 +00:00
N. Taylor Mullen
d0bbc7fa59
refactor(core): harden skill frontmatter parsing ( #16705 )
2026-01-15 02:44:08 +00:00
maruto
4848f42486
fix: Handle colons in skill description frontmatter ( #16345 )
...
Co-authored-by: gemini-code-assist[bot] <gemini-code-assist[bot]@users.noreply.github.com>
2026-01-15 02:10:21 +00:00
Bryan Morgan
467e869326
chore(automation): ensure status/need-triage is applied and never cleared automatically ( #16657 )
2026-01-15 01:58:50 +00:00
ZhangYvJing
4f324b548e
fix: replace 3 consecutive periods with ellipsis character ( #16587 )
2026-01-15 01:47:39 +00:00
N. Taylor Mullen
a81500a929
feat(cli): add security consent prompts for skill installation ( #16549 )
2026-01-15 01:47:02 +00:00
Jerop Kipruto
5bdfe1a1fa
feat(plan): add experimental plan flag ( #16650 )
2026-01-15 00:55:10 +00:00
Jacob Richman
ae198029bc
Add timeout for shell-utils to prevent hangs. ( #16667 )
2026-01-15 00:48:02 +00:00
Sehoon Shon
4b2e9f7954
Enable & disable agents ( #16225 )
2026-01-15 00:30:17 +00:00
Tommaso Sciortino
42c26d1e1b
cleanup: Improve keybindings ( #16672 )
2026-01-15 00:30:07 +00:00
Sehoon Shon
e58fca68ce
feat(config): add 'auto' alias for default model selection ( #16661 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-15 00:07:51 +00:00
Patrick Schimpl
b3527dc9e4
chore: update dependabot configuration ( #13507 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-15 00:02:54 +00:00
Alex Austin Chettiar
a2dab146b9
feat(cli): undeprecate the --prompt flag ( #13981 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2026-01-14 23:09:27 +00:00
Tommaso Sciortino
fb7640886b
Remove sequence binding ( #16664 )
2026-01-14 23:09:09 +00:00
Tommaso Sciortino
5ed275ce39
Remove unused rewind key binding ( #16659 )
2026-01-14 22:46:33 +00:00
Abhi
6021e4c3ba
feat(scheduler): add types needed for event driven scheduler ( #16641 )
2026-01-14 22:22:44 +00:00
Adrian Cole
7e6817da5b
fix(acp): run exit cleanup when stdin closes ( #14953 )
...
Signed-off-by: Adrian Cole <adrian@tetrate.io >
Co-authored-by: Allen Hutchison <adh@google.com >
Co-authored-by: Allen Hutchison <allen@hutchison.org >
2026-01-14 22:02:44 +00:00
Bryan Morgan
b14cf1dc30
chore(automation): improve scheduled issue triage discovery and throughput ( #16652 )
2026-01-14 21:55:19 +00:00
Tommaso Sciortino
94d5ae541e
Simplify paste handling ( #16654 )
2026-01-14 21:27:36 +00:00
Jenna Inouye
41369f67eb
Docs: Update release notes for 1/13/2026 ( #16583 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-14 21:27:33 +00:00
N. Taylor Mullen
c8c7b57a79
refactor(skills): replace 'project' with 'workspace' scope ( #16380 )
2026-01-14 21:05:26 +00:00
Bryan Morgan
b3eecc3a50
chore(automation): remove automated PR size and complexity labeler ( #16648 )
2026-01-14 21:04:55 +00:00
N. Taylor Mullen
16b35910e2
feat: introduce 'skill-creator' built-in skill and CJS management tools ( #16394 )
2026-01-14 20:57:46 +00:00
Bryan Morgan
1212161d1d
chore(automation): recursive labeling for workstream descendants ( #16609 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-14 20:56:16 +00:00
Abhi
4db00b8f2a
docs(skills): use body-file in pr-creator skill for better reliability ( #16642 )
2026-01-14 20:23:04 +00:00
Tommaso Sciortino
09a7301d80
remove unnecessary \x7f key bindings ( #16646 )
2026-01-14 20:08:46 +00:00
Abhi
a3234fb534
prefactor: add rootCommands as array so it can be used for policy parsing ( #16640 )
2026-01-14 18:50:28 +00:00
Emily Hedlund
764016bca7
fix(a2a): Don't throw errors for GeminiEventType Retry and InvalidStream. ( #16541 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2026-01-14 17:04:51 +00:00
Adib234
dfb7dc7069
feat: add Rewind Confirmation dialog and Rewind Viewer component ( #15717 )
2026-01-14 15:22:21 +00:00
christine betts
3b55581aaf
Add an experimental setting for extension config ( #16506 )
2026-01-14 15:16:42 +00:00
Aaron Smith
f6c2d61906
docs: Remove .md extension from internal links in architecture.md ( #12899 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-14 14:02:13 +00:00
Jack Wotherspoon
c04af6c3e9
docs: clarify F12 to open debug console ( #16570 )
2026-01-14 13:48:52 +00:00
gemini-cli-robot
a1cbe85da3
chore(release): bump version to 0.26.0-nightly.20260114.bb6c57414 ( #16604 )
2026-01-14 13:37:32 +00:00
Krushna Korade
c8d7c09ca4
fix: PDF token estimation ( #16494 ) ( #16527 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-14 13:32:36 +00:00
N. Taylor Mullen
bb6c574144
feat(admin): support admin-enforced settings for Agent Skills ( #16406 )
2026-01-14 07:40:23 +00:00
Christian Gunderman
66e7b479ae
Aggregate test results. ( #16581 )
2026-01-14 07:08:05 +00:00
Christian Gunderman
8030404b08
Behavioral evals framework. ( #16047 )
2026-01-14 04:49:17 +00:00
Jacob Richman
933bc5774f
Modernize MaxSizedBox to use <Box maxHeight> and ResizeObservers ( #16565 )
2026-01-14 04:22:10 +00:00
Sehoon Shon
4afd3741df
feat(core/ui): enhance retry mechanism and UX ( #16489 )
2026-01-14 04:03:19 +00:00
Adam Weidman
428e602882
refactor: clean up A2A task output for users and LLMs ( #16561 )
2026-01-14 01:58:55 +00:00
Sehoon Shon
04f65d7b4e
feat(ui): highlight persist mode status in ModelDialog ( #16483 )
2026-01-14 01:52:42 +00:00
Abhi
eda47f587c
fix(core): Resolve race condition in tool response reporting ( #16557 )
2026-01-14 01:37:10 +00:00
Tommaso Sciortino
8dbaa2bcea
Fix: make ctrl+x use preferred editor ( #16556 )
2026-01-14 00:55:07 +00:00
N. Taylor Mullen
778de55fd8
docs(skills): clarify skill directory structure and file location ( #16532 )
2026-01-14 00:03:45 +00:00
Sercan Sagman
c7c409c68f
fix(cli): copy uses OSC52 only in SSH/WSL ( #16554 )
...
Signed-off-by: assagman <ahmetsercansagman@gmail.com >
2026-01-13 22:55:28 +00:00
joshualitt
d66ec38f82
feat(core): Align internal agent settings with configs exposed through settings.json ( #16458 )
2026-01-13 22:31:34 +00:00
Jacob Richman
63c918fe7d
fix(ui): resolve sticky header regression in tool messages ( #16514 )
2026-01-13 22:17:05 +00:00
Gal Zahavi
b2e866585d
fix(cli): allow @ file selector on slash command lines ( #16370 )
2026-01-13 22:01:30 +00:00
Adam Weidman
b518125c46
chore(ui): optimize AgentsStatus layout with dense list style and group separation ( #16545 )
2026-01-13 21:35:31 +00:00
N. Taylor Mullen
e8be252b75
fix(cli): fix 'gemini skills install' unknown argument error ( #16537 )
2026-01-13 21:14:14 +00:00
joshualitt
92e31e3c4a
feat(core, cli): Add support for agents in settings.json. ( #16433 )
2026-01-13 20:16:02 +00:00
Tommaso Sciortino
e931ebe581
Improve key binding names and descriptions ( #16529 )
2026-01-13 20:07:55 +00:00
Sehoon Shon
91fcca3b1c
refactor: make baseTimestamp optional in addItem and remove redundant calls ( #16471 )
2026-01-13 19:15:04 +00:00
Christian Gunderman
aa52462550
Implement support for subagents as extensions. ( #16473 )
2026-01-13 19:09:22 +00:00
Jerop Kipruto
0f7a136612
docs(telemetry): add Google Cloud Monitoring dashboard documentation ( #16520 )
2026-01-13 18:10:34 +00:00
N. Taylor Mullen
8faa23cea6
feat(agents): clarify mandatory YAML frontmatter for sub-agents ( #16515 )
2026-01-13 17:44:52 +00:00
Vedant Mahajan
a6dca02344
Refactor beforeAgent and afterAgent hookEvents to follow desired output ( #16495 )
2026-01-13 16:50:54 +00:00
N. Taylor Mullen
304caa4e43
fix(cli): refine 'Action Required' indicator and focus hints ( #16497 )
2026-01-13 14:19:53 +00:00
N. Taylor Mullen
7bbfaabffa
fix(policy): ensure MCP policies match unqualified names in non-interactive mode ( #16490 )
2026-01-13 07:25:11 +00:00
N. Taylor Mullen
6adae9f775
fix: Set both tab and window title instead of just window title ( #16464 )
...
Co-authored-by: Oleksandr Nikitin <oleksandr@tvori.info >
2026-01-13 04:14:01 +00:00
Sandy Tao
b81fe68325
feat(core): add disableLLMCorrection setting to skip auto-correction in edit tools ( #16000 )
2026-01-13 01:26:53 +00:00
N. Taylor Mullen
2fc61685a3
feat(cli): implement dynamic terminal tab titles for CLI status ( #16378 )
2026-01-13 01:18:14 +00:00
Sandy Tao
c572b9e9ac
feat(cli): cleanup activity logs alongside session files ( #16399 )
2026-01-13 01:12:35 +00:00
Tommaso Sciortino
8d3e93cdb0
Migrate keybindings ( #16460 )
2026-01-13 00:28:10 +00:00
N. Taylor Mullen
548641c952
feat(agents): improve UI feedback and parser reliability ( #16459 )
2026-01-13 00:20:28 +00:00
Christian Gunderman
6ef2a92233
Collect hardware details telemetry. ( #16119 )
2026-01-12 23:59:22 +00:00
N. Taylor Mullen
e9c9dd1d67
feat(core): support shipping built-in skills with the CLI ( #16300 )
2026-01-12 23:44:08 +00:00
Jacob Richman
ca6786a28b
feat(ui): use Tab to switch focus between shell and input ( #14332 )
2026-01-12 23:30:12 +00:00
N. Taylor Mullen
2e8c6cfdbb
feat(cli): add install and uninstall commands for skills ( #16377 )
2026-01-12 23:24:41 +00:00
Tommaso Sciortino
95d9a33996
migrate yolo/auto-edit keybindings ( #16457 )
2026-01-12 22:50:32 +00:00
汞齐
b8cc414d5b
docs: fix broken internal link by using relative path ( #15371 )
2026-01-12 21:58:22 +00:00
Coco Sheng
d7bff8610f
feat(a2a): Introduce /memory command for a2a server ( #14456 )
...
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2026-01-12 21:46:42 +00:00
Tommaso Sciortino
e049d5e4e8
Fix: add back fastreturn support ( #16440 )
2026-01-12 21:31:33 +00:00
christine betts
8437ce940a
Revert "Update extension examples" ( #16442 )
2026-01-12 20:53:22 +00:00
Sehoon Shon
7d92242011
Update cli-help agent's system prompt in sub-agents section ( #16441 )
2026-01-12 20:41:01 +00:00
Shreya Keshive
d65eab01d2
feat(admin): prompt user to restart the CLI if they change auth to oauth mid-session or don't have auth type selected at start of session ( #16426 )
2026-01-12 20:39:08 +00:00
Bryan Morgan
2306e60be4
perf(workflows): optimize PR triage script for faster execution ( #16355 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-12 19:49:20 +00:00
N. Taylor Mullen
3b678a4da0
fix(core): avoid 'activate_skill' re-registration warning ( #16398 )
2026-01-12 19:31:34 +00:00
Allen Hutchison
64cde8d439
fix(policy): enhance shell command safety and parsing ( #15034 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2026-01-12 19:23:32 +00:00
Wang Lecheng
0167392f22
docs: Fix formatting issue in memport documentation ( #14774 )
2026-01-12 18:17:15 +00:00
Adib234
15891721ad
feat: introduce useRewindLogic hook for conversation history navigation ( #15716 )
2026-01-12 17:42:14 +00:00
Vedant Mahajan
8a2e0fac0d
Add other hook wrapper methods to hooksystem ( #16361 )
2026-01-12 17:38:45 +00:00
Sehoon Shon
8656ce8a27
revert the change that was recently added from a fix ( #16390 )
2026-01-12 17:23:06 +00:00
christine betts
ed7bcf9968
Update extension examples ( #16274 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-12 17:16:35 +00:00
Adam Weidman
465ec9759d
fix(core): ensure sub-agent schema and prompt refresh during runtime ( #16409 )
...
Co-authored-by: Sehoon Shon <sshon@google.com >
2026-01-12 17:11:24 +00:00
christine betts
950244f6b0
Attempt to resolve OOM w/ useMemo on history items ( #16424 )
2026-01-12 16:53:04 +00:00
christine betts
64c75cb767
Fix crash on unicode character ( #16420 )
2026-01-12 16:52:19 +00:00
Sehoon Shon
7b7f2fc69e
Markdown w/ Frontmatter Agent Parser ( #16094 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-12 16:31:49 +00:00
Adam Weidman
d315f4d3da
fix(core): ensure silent local subagent delegation while allowing remote confirmation ( #16395 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2026-01-12 08:55:16 +00:00
Abdul Tawab
9703fe73cf
feat(cli): Hooks enable-all/disable-all feature with dynamic status ( #15552 )
2026-01-12 07:42:04 +00:00
N. Taylor Mullen
93b57b82c1
style: format pr-creator skill ( #16381 )
2026-01-11 16:54:49 -08:00
Abhi
0e955da171
feat(cli): add /chat debug command for nightly builds ( #16339 )
2026-01-11 19:11:06 +00:00
Sandy Tao
39b3f20a22
feat(cli): implement passive activity logger for session analysis ( #15829 )
2026-01-11 13:22:49 +00:00
Abhi
b9762a3ee1
docs: add note about experimental hooks ( #16337 )
2026-01-11 00:34:59 +00:00
Bryan Morgan
33e3ed0f6c
fix(workflows): resolve triage workflow failures and actionlint errors ( #16338 )
2026-01-10 19:31:17 -05:00
Bryan Morgan
446058cb1c
fix: fallback to GITHUB_TOKEN if App ID is missing
2026-01-10 16:46:27 -05:00
Bryan Morgan
d130d99ff0
fix: Add event-driven trigger to issue triage workflow ( #16334 )
2026-01-10 16:23:41 -05:00
Bryan Morgan
72dae7e0ee
Triage action cleanup ( #16319 )
2026-01-10 19:58:36 +00:00
Vedant Mahajan
6f7d798189
remove unused sessionHookTriggers and exports ( #16324 )
2026-01-10 16:49:15 +00:00
N. Taylor Mullen
3090008b1c
fix(skills): remove "Restart required" message from non-interactive commands ( #16307 )
2026-01-10 11:59:38 +00:00
N. Taylor Mullen
461c277bf2
Support for Built-in Agent Skills ( #16045 )
2026-01-10 06:26:58 +00:00
Jacob Richman
b54e688c75
Update ink version to 6.4.7 ( #16284 )
2026-01-10 00:31:29 +00:00
N. Taylor Mullen
b08b0d715b
Update system prompt to prefer non-interactive commands ( #16117 )
2026-01-09 23:38:11 +00:00
Christian Gunderman
c87d1aed4c
Fix an issue where the agent stops prematurely ( #16269 )
2026-01-09 23:05:27 +00:00
Gal Zahavi
356f76e545
refactor(config): remove legacy V1 settings migration logic ( #16252 )
2026-01-09 22:34:23 +00:00
Jacob Richman
1fb55dcb2e
Autogenerate docs/cli/settings.md docs/getting-started/configuration.md was already autogenerated but settings.md was not. ( #14408 )
2026-01-09 22:28:09 +00:00
Shreya Keshive
d74bf9ef2f
feat: apply remote admin settings (no-op) ( #16106 )
2026-01-09 22:04:57 +00:00
Eric Rahm
e04a5f0cb0
feat(core): Cache ignore instances for performance ( #16185 )
2026-01-09 21:22:53 +00:00
Tommaso Sciortino
ea7393f7fd
Infer modifyOtherKeys support ( #16270 )
2026-01-09 21:10:15 +00:00
Jack Wotherspoon
c7d17dda49
fix: properly use systemMessage for hooks in UI ( #16250 )
2026-01-09 20:47:14 +00:00
Vedant Mahajan
9d187e041c
refactor: migrate chatCompressionService to use HookSystem ( #16259 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-09 20:18:06 +00:00
N. Taylor Mullen
14f0cb4538
feat(ui): reduce home directory warning noise and add opt-out setting ( #16229 )
2026-01-09 19:56:22 +00:00
Kevin Ramdass
ca48661423
feat(core): add local experiments override via GEMINI_EXP ( #16181 )
2026-01-09 18:47:05 +00:00
joshualitt
041463d112
feat(core, ui): Add /agents refresh command. ( #16204 )
2026-01-09 17:33:59 +00:00
Tu Shaokun
c1401682ed
fix: handle Shift+Space in Kitty keyboard protocol terminals ( #15767 )
2026-01-09 17:28:14 +00:00
N. Taylor Mullen
8bc3cfe29a
feat(skills): add pr-creator skill and enable skills ( #16232 )
2026-01-09 17:25:14 +00:00
christine betts
77e226c55f
Show settings source in extensions lists ( #16207 )
2026-01-09 17:04:53 +00:00
Vedant Mahajan
b9f8858bfb
refactor: migrate clearCommand hook calls to HookSystem ( #16157 )
2026-01-09 16:48:55 +00:00
Ishaan Gupta
f7b97ef55e
refactor: migrate app containter hook calls to hook system ( #16161 )
2026-01-09 16:47:54 +00:00
Tommaso Sciortino
88f1ec8d0a
Always enable bracketed paste ( #16179 )
2026-01-09 16:07:05 +00:00
Sehoon Shon
aa480e5fbb
chore: clean up unused models and use consts ( #16246 )
2026-01-09 15:03:46 +00:00
N. Taylor Mullen
41e627a7ee
Refine Gemini 3 system instructions to reduce model verbosity ( #16139 )
2026-01-09 07:59:40 +00:00
Sandy Tao
e1e3efc9d0
feat(hooks): Support explicit stop and block execution control in model hooks ( #15947 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2026-01-09 05:36:27 +00:00
Sehoon Shon
18dd399cb5
Support @ suggestions for subagenets ( #16201 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-09 00:51:18 +00:00
Wesley Tanaka
f1ca7fa40a
ci: guard nightly release workflow from running on forks ( #15463 )
...
Co-authored-by: wtanaka.com <wtanaka@users.noreply.github.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-09 00:17:58 +00:00
Wesley Tanaka
6166d7f6ec
ci: guard links workflow from running on forks ( #15461 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-09 00:16:00 +00:00
Joseph Sheng
ffb80c2426
The telemetry.js script should handle paths that contain spaces ( #12078 )
2026-01-09 00:07:57 +00:00
falouu
4ab1b9895a
Ensure TERM is set to xterm-256color ( #15828 )
2026-01-08 23:51:57 +00:00
wszqkzqk
84710b1953
test(command-registry): increase initialization test timeout ( #15979 )
...
Signed-off-by: Zhou Qiankang <wszqkzqk@qq.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-08 23:46:29 +00:00
David Sherret
a7f758eb3a
docs: shorten run command and use published version ( #16172 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-08 23:18:31 +00:00
Liqiong Zheng
26505b580c
docs: Remove redundant and duplicate documentation files ( #14699 )
...
Co-authored-by: Liqiong Zheng <laceyzheng2017@gmail.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-08 23:07:45 +00:00
sangwook
e51f3e11f1
fix: remove unsupported 'enabled' key from workflow config ( #15611 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-08 22:45:41 +00:00
Christian Gunderman
d75792703a
Always enable redaction in GitHub actions. ( #16200 )
2026-01-08 22:35:12 +00:00
Adib234
e5f7a9c424
feat: implement file system reversion utilities for rewind ( #15715 )
2026-01-08 22:21:15 +00:00
maruto
9062a943e7
docs(cli): fix includeDirectories nesting in configuration.md ( #15067 )
2026-01-08 21:59:15 +00:00
Adam Weidman
7e02ef697d
feat(cli): add /agents slash command to list available agents ( #16182 )
2026-01-08 21:02:44 +00:00
joshualitt
41a8809280
feat(core): Wire up model routing to subagents. ( #16043 )
2026-01-08 20:39:40 +00:00
Alejandro López Almeida
01d2d43737
Add support for Antigravity terminal in terminal setup utility ( #16051 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2026-01-08 20:08:30 +00:00
Abhi
16da6918cb
refactor(core): extract ToolModificationHandler from scheduler ( #16118 )
2026-01-08 19:52:56 +00:00
phreakocious
fbfad06307
feat: add native Sublime Text support to IDE detection ( #16083 )
...
Co-authored-by: phreakocious <567063+phreakocious@users.noreply.github.com >
2026-01-08 19:49:05 +00:00
Pyush Sinha
f8138262fa
fix(cli): disableYoloMode shouldn't enforce default approval mode against args ( #16155 )
2026-01-08 19:48:03 +00:00
Abhi
1a4ae41397
fix: yolo should auto allow redirection ( #16183 )
2026-01-08 19:24:51 +00:00
Angel Montero
75bc41fc20
fix: typo in MCP servers settings description ( #15929 )
2026-01-08 18:59:23 +00:00
minglu7
ced5110dab
docs: correct typo in bufferFastReturn JSDoc ("accomodate" → "accommodate") ( #16056 )
2026-01-08 18:59:02 +00:00
Keith Schaab
76d020511f
Update the page's title to be consistent and show in site. ( #16174 )
2026-01-08 18:43:35 +00:00
kevinjwang1
02cf264ee1
Add extension linking capabilities in cli ( #16040 )
2026-01-08 18:37:16 +00:00
Vijay Vasudevan
eb3f3cfdb8
feat(hooks): add mcp_context to BeforeTool and AfterTool hook inputs ( #15656 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-08 18:35:33 +00:00
joshualitt
660368f249
bug(core): Fix spewie getter in hookTranslator.ts ( #16108 )
2026-01-08 18:12:11 +00:00
Shreya Keshive
97ad3d97cb
Reapply "feat(admin): implement extensions disabled" ( #16082 ) ( #16109 )
2026-01-08 17:59:30 +00:00
David Pierce
cf021ccae4
enableInteractiveShell for external tooling relying on a2a server ( #16080 )
2026-01-08 17:03:30 +00:00
joshualitt
eb75f59a96
bug(core): fix issue with overrides to bases. ( #15255 )
2026-01-08 14:59:58 +00:00
N. Taylor Mullen
030847a80a
feat(cli): export chat history in /bug and prefill GitHub issue ( #16115 )
2026-01-08 11:43:55 +00:00
N. Taylor Mullen
722c4933dc
Polish: Move 'Failed to load skills' warning to debug logs ( #16142 )
2026-01-08 11:38:47 +00:00
N. Taylor Mullen
3e2f4eb8ba
[Skills] UX Polishing: Transparent feedback and CLI refinements ( #15954 )
2026-01-08 06:30:33 +00:00
cayden-google
aca6bf6aa0
Add upgrade option for paid users ( #15978 )
2026-01-08 02:01:40 +00:00
Jasmeet Bhatia
d48c934357
feat(cli): add filepath autosuggestion after slash commands ( #14738 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-08 01:47:05 +00:00
Jacob Richman
41cc6cf105
Reduce nags about PRs that reference issues but don't fix them. ( #16112 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-08 00:53:03 +00:00
Tommaso Sciortino
dd04b46e86
Fix CI for forks ( #16113 )
2026-01-08 00:18:33 +00:00
N. Taylor Mullen
1bd4f9d8b6
Optimize json-output tests with mock responses ( #16102 )
2026-01-08 00:10:50 +00:00
Tommaso Sciortino
1aa35c8796
enable cli_help agent by default ( #16100 )
2026-01-07 23:43:12 +00:00
Jenna Inouye
51d3f44d51
Docs: Changelogs update 20260105 ( #15937 )
2026-01-07 23:28:32 +00:00
Tommaso Sciortino
d4b418ba01
Fix and rename introspection agent -> cli help agent ( #16097 )
2026-01-07 23:01:57 +00:00
Jacob Richman
bd77515fd9
fix(workflows): fix and limit labels for pr-triage.sh script ( #16096 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-07 22:58:42 +00:00
Adam Weidman
1c77bac146
feat: add confirmation details support + jsonrpc vs http rest support ( #16079 )
2026-01-07 22:46:37 +00:00
Sehoon Shon
0be8b5b1ed
Add option to fallback for capacity errors in ProQuotaDi… ( #16050 )
2026-01-07 21:59:48 +00:00
N. Taylor Mullen
d5996fea99
Optimize CI workflow: Parallelize jobs and cache linters ( #16054 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2026-01-07 21:50:22 +00:00
joshualitt
a1dd19738e
feat(core): Preliminary changes for subagent model routing. ( #16035 )
2026-01-07 21:21:10 +00:00
Abhi
17b3eb730a
docs: add docs for hooks + extensions ( #16073 )
2026-01-07 20:46:44 +00:00
joshualitt
4c961df313
feat(core): Decouple enabling hooks UI from subsystem. ( #16074 )
2026-01-07 20:34:33 +00:00
christine betts
19bdd95eab
Revert "feat(admin): implement extensions disabled" ( #16082 )
2026-01-07 19:35:56 +00:00
Gaurav
143bb63483
Add exp.gws_experiment field to LogEventEntry ( #16062 )
2026-01-07 19:26:25 +00:00
Vedant Mahajan
c64b5ec4a3
feat(hooks): simplify hook firing with HookSystem wrapper methods ( #15982 )
...
Co-authored-by: Ishaan Gupta <ishaankone@gmail.com >
2026-01-07 19:11:49 +00:00
Adib234
57012ae5b3
Core data structure updates for Rewind functionality ( #15714 )
2026-01-07 17:10:22 +00:00
Shreya Keshive
db99beda36
feat(admin): implement extensions disabled ( #16024 )
2026-01-07 16:31:17 +00:00
christine betts
97b31c4eef
Simplify extension settings command ( #16001 )
2026-01-07 16:23:07 +00:00
christine betts
d1eb87c81f
Add keytar to dependencies ( #15928 )
2026-01-07 15:47:29 +00:00
Sehoon Shon
8f9bb6bccc
Update troubleshooting doc for UNABLE_TO_GET_ISSUER_CERT_LOCALLY ( #16069 )
2026-01-07 15:11:35 +00:00
N. Taylor Mullen
416d243027
Enhance TestRig with process management and timeouts ( #15908 )
2026-01-07 07:58:13 +00:00
Abhi
5fe5d1da46
policy: extract legacy policy from core tool scheduler to policy engine ( #15902 )
2026-01-07 04:28:06 +00:00
N. Taylor Mullen
2d683bb6f8
[Skills] Multi-scope skill enablement and shadowing fix ( #15953 )
2026-01-07 04:24:29 +00:00
N. Taylor Mullen
7956eb239e
Introduce GEMINI_CLI_HOME for strict test isolation ( #15907 )
2026-01-07 04:09:39 +00:00
N. Taylor Mullen
a26463b056
[Skills] Foundation: Centralize management logic and feedback rendering ( #15952 )
2026-01-06 20:11:19 -08:00
Kevin Jiang
982eee63b6
Hx support ( #16032 )
2026-01-07 02:31:38 +00:00
gemini-cli-robot
b54215f0a5
chore(release): bump version to 0.25.0-nightly.20260107.59a18e710 ( #16048 )
2026-01-07 02:25:28 +00:00
Christian Gunderman
521dc7f26c
Add initiation method telemetry property ( #15818 )
2026-01-07 02:02:40 +00:00
N. Taylor Mullen
da85e3f8f2
feat(core): improve activate_skill tool and use lowercase XML tags ( #16009 )
2026-01-07 01:10:00 +00:00
N. Taylor Mullen
59a18e710d
Agent Skills: Initial Documentation & Tutorial ( #15869 )
2026-01-07 00:59:56 +00:00
Krushna Korade
5f027cb63a
fix: hide broken skills object from settings dialog ( #15766 )
2026-01-07 00:55:13 +00:00
Christian Gunderman
4086abf375
Fix test. ( #16011 )
2026-01-07 00:25:16 +00:00
Jerop Kipruto
8f5bf33eac
ci(github-actions): triage all new issues automatically ( #16018 )
2026-01-07 00:15:00 +00:00
Jerop Kipruto
7eeb7bd74c
fix: limit scheduled issue triage queries to prevent argument list too long error ( #16021 )
2026-01-07 00:03:23 +00:00
Adam Weidman
96b9be3ec4
feat(agents): add support for remote agents ( #16013 )
2026-01-06 23:45:05 +00:00
joshualitt
1e31427da8
Remove trailing whitespace in yaml. ( #16036 )
2026-01-06 15:41:58 -08:00
Bryan Morgan
7feb2f8f42
Add 'reopened' type to issue labeling workflow
2026-01-06 18:17:12 -05:00
Bryan Morgan
2122604b32
Refactor parent issue check to use URLs
2026-01-06 18:00:39 -05:00
Bryan Morgan
d4b4aede2f
Add debugging logs for issue parent checks
...
Added debugging logs to inspect issue object and parent information.
2026-01-06 17:56:39 -05:00
Bryan Morgan
4b5c044272
Fix label-backlog-child-issues workflow logic
2026-01-06 17:48:08 -05:00
Shreya Keshive
2fe45834dd
feat(admin): Introduce remote admin settings & implement secureModeEnabled/mcpEnabled ( #15935 )
2026-01-06 21:38:07 +00:00
joshualitt
56092bd782
feat(hooks): Add a hooks.enabled setting. ( #15933 )
2026-01-06 21:33:37 +00:00
Jack Wotherspoon
c31f05356a
fix: image token estimation ( #16004 )
2026-01-06 21:19:29 +00:00
Abhi
61dbab03e0
feat(ui): add visual indicators for hook execution ( #15408 )
2026-01-06 20:52:12 +00:00
Bryan Morgan
86b5995f12
Add workflow to label child issues for rollup ( #16002 )
2026-01-06 16:00:47 -05:00
Tommaso Sciortino
d2849fda8a
properly disable keyboard modes on exit ( #16006 )
2026-01-06 20:11:43 +00:00
Tommaso Sciortino
a61fb058b7
fix: writeTodo construction ( #16014 )
2026-01-06 20:08:25 +00:00
christine betts
7edd803034
Fix settings command fallback ( #15926 )
2026-01-06 19:50:27 +00:00
N. Taylor Mullen
0c54136244
Agent Skills: Add skill directory to WorkspaceContext upon activation ( #15870 )
2026-01-06 19:24:37 +00:00
Ishaan Gupta
cce4574143
Use GetOperation to poll for OnboardUser completion ( #15827 )
...
Co-authored-by: Vedant Mahajan <vedant.04.mahajan@gmail.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2026-01-06 19:08:59 +00:00
Sehoon Shon
9172e28315
Add description for each settings item in /settings ( #15936 )
2026-01-06 19:06:15 +00:00
Gal Zahavi
6f4b2ad0b9
fix: default folder trust to untrusted for enhanced security ( #15943 )
2026-01-06 18:09:09 +00:00
N. Taylor Mullen
9a3ff6510f
feat(policy): allow 'modes' in user and admin policies ( #15977 )
2026-01-06 17:56:50 +00:00
christine betts
4c67eef0f2
Inform user of missing settings on extensions update ( #15944 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-01-06 17:26:01 +00:00
ppergame
7d4f97de7a
fix(core): use correct interactive check for system prompt ( #15020 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: Billy Biggs <bbiggs@google.com >
2026-01-06 16:21:36 +00:00
Sehoon Shon
cbd2eee9c4
remove manual string when displaying manual model in the footer ( #15967 )
2026-01-06 04:07:44 +00:00
Tommaso Sciortino
384fb6a465
Add setting to support OSC 52 paste ( #15336 )
2026-01-06 00:11:50 +00:00
N. Taylor Mullen
2cb33b2f76
Agent Skills: Implement /skills reload ( #15865 )
2026-01-05 23:12:51 +00:00
Tommaso Sciortino
8f0324d868
fix(cli): resolve paste issue on Windows terminals. ( #15932 )
2026-01-05 22:46:23 +00:00
Christian Gunderman
fd7b6bf40a
Fix failing unit tests ( #15940 )
2026-01-05 21:41:35 +00:00
Tommaso Sciortino
ed8bad8c26
Fix order of preflight ( #15941 )
2026-01-05 21:32:02 +00:00
Christian Gunderman
6d1e27633a
Support context injection via SessionStart hook. ( #15746 )
2026-01-05 21:27:53 +00:00
Manoj Naik
2da911e4a0
fix: prevent /copy crash on Windows by skipping /dev/tty ( #15657 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2026-01-05 20:33:03 +00:00
Sehoon Shon
e5d183031a
Opt-in to persist model from /model ( #15820 )
2026-01-05 20:31:13 +00:00
Abhi
b13c6b57ae
chore: rename smart-edit to edit ( #15923 )
2026-01-05 20:25:54 +00:00
Dev Randalpura
3c92666ec2
Make default settings apply ( #15354 )
2026-01-05 20:00:20 +00:00
Vedant Mahajan
dc6dda5c37
fix: avoid SDK warning by not accessing .text getter in logging ( #15706 )
...
Co-authored-by: Ishaan Gupta <ishaankone@gmail.com >
2026-01-05 19:03:00 +00:00
Christian Gunderman
3997c7ff80
Fix terminal hang when user exits browser without logging in ( #15748 )
2026-01-05 19:02:55 +00:00
Abhi
b4b49e7029
refactor(core): Extract and integrate ToolExecutor ( #15900 )
2026-01-05 05:48:41 +00:00
N. Taylor Mullen
615b218ff7
fix(cli): mock fs.readdir in consent tests for Windows compatibility ( #15904 )
2026-01-04 21:19:33 -08:00
Abhi
f3625aab13
refactor: consolidate EditTool and SmartEditTool ( #15857 )
2026-01-05 04:52:14 +00:00
N. Taylor Mullen
d3563e2f0e
Agent Skills: Add gemini skills CLI management command ( #15837 )
2026-01-05 04:40:21 +00:00
Sandy Tao
dd84c2fb83
feat(hooks): implement granular stop and block behavior for agent hooks ( #15824 )
2026-01-05 02:58:34 +00:00
N. Taylor Mullen
bdb349e7f6
Agent Skills: Extension Support & Security Disclosure ( #15834 )
2026-01-04 22:45:07 +00:00
Abhi
12c7c9cc42
feat(core,cli): enforce mandatory MessageBus injection (Phase 3 Hard Migration) ( #15776 )
2026-01-04 22:11:43 +00:00
Abhi
90be9c3587
feat(core): Standardize Tool and Agent Invocation constructors (Phase 2) ( #15775 )
2026-01-04 20:51:23 +00:00
Abhi
eec5d5ebf8
feat(core): restore MessageBus optionality for soft migration (Phase 1) ( #15774 )
2026-01-04 19:59:35 +00:00
Abhi
d3c206c677
Unify shell security policy and remove legacy logic ( #15770 )
2026-01-04 05:19:00 +00:00
N. Taylor Mullen
f0a039f7c0
Agent Skills: Unify Representation & Centralize Loading ( #15833 )
2026-01-03 16:24:36 -08:00
Gal Zahavi
30f5c4af4a
fix(core): mock powershell output in shell-utils test ( #15831 )
2026-01-02 23:20:26 +00:00
N. Taylor Mullen
e78c3fe4f0
Agent Skills: Status Bar Integration for Skill Counts ( #15741 )
2026-01-02 23:01:31 +00:00
Abhi
c0ccb22460
chore: cleanup old smart edit settings ( #15832 )
2026-01-02 22:28:28 +00:00
N. Taylor Mullen
764b195977
Agent Skills: Implement Agent Integration and System Prompt Awareness ( #15728 )
2026-01-02 21:47:46 +00:00
Jack Wotherspoon
0f3555a4d2
feat: add folder suggestions to /dir add command ( #15724 )
2026-01-02 21:08:11 +00:00
Abhi
006de1dd31
Add security docs ( #15739 )
2026-01-02 20:22:30 +00:00
Gal Zahavi
18fef0db31
fix(core): improve shell command with redirection detection ( #15683 )
2026-01-02 19:36:59 +00:00
N. Taylor Mullen
958284dc24
Agent Skills: Implement Autonomous Activation Tool & Context Injection ( #15725 )
2026-01-02 19:15:06 +00:00
Sehoon Shon
788bb04f5c
log fallback mode ( #15817 )
2026-01-02 18:19:43 +00:00
HyeongHo Jun
8a0190ca3b
fix(core): handle unhandled promise rejection in mcp-client-manager ( #14701 )
2026-01-02 16:06:56 +00:00
Christian Gunderman
c29a8c12b3
Fix build issues caused by year-specific linter rule ( #15780 )
2026-01-01 19:01:03 +00:00
Sandy Tao
05049b5abf
feat(hooks): implement STOP_EXECUTION and enhance hook decision handling ( #15685 )
2025-12-30 23:22:53 +00:00
Sehoon Shon
3ebe4e6a8f
feat(agents): Add remote agents to agent registry ( #15711 )
2025-12-30 23:11:51 +00:00
Abhi
0eb84f5133
chore: remove cot style comments ( #15735 )
2025-12-30 21:43:33 +00:00
N. Taylor Mullen
de1233b8ca
Agent Skills: Implement Core Skill Infrastructure & Tiered Discovery ( #15698 )
2025-12-30 13:35:52 -08:00
christine betts
ec11b8afbf
Add extension settings info to /extensions list ( #14905 )
2025-12-30 21:09:48 +00:00
christine betts
ec79fe1ab2
Add instructions to the extensions update info notification ( #14907 )
2025-12-30 19:50:33 +00:00
Christian Gunderman
90eb1e0281
Implement support for tool input modification ( #15492 )
2025-12-30 19:37:43 +00:00
Abhi
15c9f88da6
fix(hooks): deduplicate agent hooks and add cross-platform integration tests ( #15701 )
2025-12-30 19:13:16 +00:00
Abhi
4e6fee7fcd
Revert "Update wittyPhrases.ts ( #15697 )" ( #15719 )
2025-12-30 16:50:28 +00:00
Shreya Keshive
1e08b150f7
refactor(auth): Refactor non-interactive mode auth validation & refresh ( #15679 )
2025-12-30 16:09:00 +00:00
segyges
fb22f5b8ee
Update wittyPhrases.ts ( #15697 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-30 07:18:44 +00:00
Adam Weidman
848e8485cd
feat(agents): add support for remote agents and multi-agent TOML files ( #15437 )
2025-12-30 00:12:16 +00:00
Sehoon Shon
07e597de40
Exponential back-off retries for retryable error without a specified … ( #15684 )
2025-12-29 22:23:23 +00:00
Adib234
10ae84869a
Migrate console to coreEvents.emitFeedback or debugLogger ( #15219 )
2025-12-29 20:46:10 +00:00
Abhi
dcd2449b1a
refactor: deprecate legacy confirmation settings and enforce Policy Engine ( #15626 )
2025-12-29 19:22:42 +00:00
gemini-cli-robot
a3d214f8d7
chore/release: bump version to 0.24.0-nightly.20251227.37be16243 ( #15612 )
2025-12-27 05:29:40 +00:00
Abhi
37be162435
fix(core): enable granular shell command allowlisting in policy engine ( #15601 )
2025-12-26 23:48:44 +00:00
Abhi
5566292cc8
refactor(core): extract static concerns from CoreToolScheduler ( #15589 )
2025-12-26 20:51:39 +00:00
Gal Zahavi
65e2144b3d
Manual nightly version bump to 0.24.0-nightly.20251226.546baf993 ( #15594 )
2025-12-26 19:40:46 +00:00
Maple!
a26d195404
fix(cli): add enableShellOutputEfficiency to settings schema ( #15560 )
2025-12-26 19:07:33 +00:00
Maple!
21388a0a40
fix(core): handle checkIsRepo failure in GitService.initialize ( #15574 )
2025-12-26 18:37:57 +00:00
Adib234
acecd80afa
Resolve unhandled promise rejection in ide-client.ts ( #15587 )
2025-12-26 16:37:13 +00:00
Sehoon Shon
69fc75c0b2
do not persist the fallback model ( #15483 )
2025-12-26 16:08:44 +00:00
Sehoon Shon
9cdb267ba5
feat: Show snowfall animation for holiday theme ( #15494 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-12-26 16:07:39 +00:00
Maple!
56b050422d
chore(core): fix comment typo ( #15558 )
2025-12-26 04:31:43 +00:00
Vedant Mahajan
546baf9934
Added modifyOtherKeys protocol support for tmux ( #15524 )
...
Co-authored-by: Ishaan Gupta <ishaankone@gmail.com >
2025-12-25 19:09:38 +00:00
Sehoon Shon
e6344a8c24
Security: Project-level hook warnings ( #15470 )
2025-12-23 21:10:46 +00:00
Pyush Sinha
873d10df42
feat: terse transformations of image paths in text buffer ( #4924 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: owenofbrien <86964623+owenofbrien@users.noreply.github.com >
2025-12-23 20:46:09 +00:00
Adam Weidman
02a36afc38
feat: Add A2A Client Manager and tests ( #15485 )
2025-12-23 20:27:16 +00:00
christine betts
563d81e08e
Add experimental in-CLI extension install and uninstall subcommands ( #15178 )
...
Co-authored-by: Christine Betts <chrstn@google.com >
2025-12-23 19:48:27 +00:00
Jack Wotherspoon
5f28614760
chore: limit MCP resources display to 10 by default ( #15489 )
2025-12-23 19:39:35 +00:00
Jacob Richman
b6b0727e28
Make schema validation errors non-fatal ( #15487 )
2025-12-23 18:26:37 +00:00
Jack Wotherspoon
e9a601c1fe
fix: add missing type field to MCPServerConfig ( #15465 )
2025-12-23 16:59:32 +00:00
Stoyan Dimitrov
308aa70718
refactor(core): remove deprecated permission aliases from BeforeToolHookOutput ( #14855 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-12-23 16:13:20 +00:00
Niyas Hameed
6be034392f
feat: automatic /model persistence across Gemini CLI sessions ( #13199 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-12-23 14:23:43 +00:00
Christian Gunderman
3b1dbcd42d
Implemented unified secrets sanitization and env. redaction options ( #15348 )
2025-12-23 03:18:27 +00:00
Jack Wotherspoon
2ac9fe08f7
chore: remove clipboard file ( #15447 )
2025-12-22 23:04:02 +00:00
Jack Wotherspoon
24c722454b
chore: improve error messages for --resume ( #15360 )
2025-12-22 22:44:41 +00:00
ElecTwix
0a216b28f3
fix #15369 , prevent crash on unhandled EIO error in readStdin cleanup ( #15410 )
...
Co-authored-by: Gaurav <39389231+gsquared94@users.noreply.github.com >
2025-12-22 20:50:43 +00:00
Sandy Tao
9c48cd849b
feat(ui): Add security warning and improve layout for Hooks list ( #15440 )
2025-12-22 20:47:56 +00:00
N. Taylor Mullen
0843d9af58
fix(core): use debugLogger.debug for startup profiler logs ( #15443 )
2025-12-22 20:45:33 +00:00
Abhi
b0d5c4c058
feat(policy): implement dynamic mode-aware policy evaluation ( #15307 )
2025-12-22 20:25:07 +00:00
Christian Gunderman
d18c96d6a1
Record timestamp with code assist metrics. ( #15439 )
2025-12-22 20:04:06 +00:00
Sehoon Shon
dced409ac4
Add Folder Trust Support To Hooks ( #15325 )
2025-12-22 16:46:38 +00:00
Adam Weidman
d6a2f1d670
chore(core): refactor model resolution and cleanup fallback logic ( #15228 )
2025-12-22 15:18:51 +00:00
Serghei
58fd00a3df
fix(core): Add .geminiignore support to SearchText tool ( #13763 )
...
Co-authored-by: Gaurav <39389231+gsquared94@users.noreply.github.com >
2025-12-22 04:25:26 +00:00
Abhi
b923604602
feat(telemetry): add clearcut logging for hooks ( #15405 )
2025-12-21 21:18:42 +00:00
gemini-cli-robot
8643d60b88
chore/release: bump version to 0.21.0-nightly.20251220.41a1a3eed ( #15352 )
2025-12-21 03:59:46 +00:00
Ying-xi
8feeffb29b
fix: prevent infinite relaunch loop when --resume fails ( #14941 ) ( #14951 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-12-20 03:22:01 +00:00
Jacob Richman
e64146914a
fix(policy): fix bug where accepting-edits continued after it was turned off ( #15351 )
2025-12-20 01:09:43 +00:00
Gal Zahavi
6084708cc2
fix(cli): fix right border overflow in trust dialogs ( #15350 )
2025-12-20 00:19:03 +00:00
Adam Weidman
8ed0f8981f
fix(folder trust): add validation for trusted folder level ( #12215 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2025-12-20 00:13:03 +00:00
Sandy Tao
41a1a3eed1
fix(core): sanitize hook command expansion and prevent injection ( #15343 )
2025-12-19 22:31:42 +00:00
Tommaso Sciortino
10ba348a3a
Introspection agent demo ( #15232 )
2025-12-19 22:11:32 +00:00
Tommaso Sciortino
db67bb106a
more robust command parsing logs ( #15339 )
2025-12-19 21:53:13 +00:00
Shehab
b828b4754b
docs(cli): add System Prompt Override (GEMINI_SYSTEM_MD) ( #9515 )
2025-12-19 20:11:37 +00:00
Gal Zahavi
9383b54d50
Validate OAuth resource parameter matches MCP server URL ( #15289 )
2025-12-19 19:33:20 +00:00
JAYADITYA
181da07dd9
fix(cli):change the placeholder of input during the shell mode ( #15135 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2025-12-19 18:07:45 +00:00
Jacob Richman
419464a8c2
feat(ui): Put "Allow for all future sessions" behind a setting off by default. ( #15322 )
2025-12-19 17:25:23 +00:00
Sandy Tao
2e229d3bb6
feat(core): Implement JIT context memory loading and UI sync ( #14469 )
2025-12-19 17:04:03 +00:00
gemini-cli-robot
3c92bdb1ad
chore/release: bump version to 0.21.0-nightly.20251219.70696e364 ( #15301 )
2025-12-19 16:17:12 +00:00
N. Taylor Mullen
e0f159085e
feat: simplify tool confirmation labels for better UX ( #15296 )
2025-12-19 00:38:53 +00:00
Abhi
402148dbc4
feat(hooks): reduce log verbosity and improve error reporting in UI ( #15297 )
2025-12-19 00:30:45 +00:00
Sandy Tao
70696e364b
fix(ui): show command suggestions even on perfect match and sort them ( #15287 )
2025-12-19 00:05:36 +00:00
Gal Zahavi
1e10492e55
fix: prevent infinite loop in prompt completion on error ( #14548 )
2025-12-18 23:34:46 +00:00
Sehoon Shon
9e6914d641
Handle all 429 as retryableQuotaError ( #15288 )
2025-12-18 23:25:42 +00:00
Tommaso Sciortino
0c4fb6afd2
Remove unnecessary dependencies ( #15291 )
2025-12-18 23:24:19 +00:00
Tommaso Sciortino
edab97997a
Remove unused code ( #15290 )
2025-12-18 23:04:29 +00:00
Gal Zahavi
2515b89e2b
feat: Pass additional environment variables to shell execution ( #15160 )
2025-12-18 22:01:23 +00:00
Tommaso Sciortino
60f0f19d76
add 3.0 to allowed sensitive keywords ( #15276 )
2025-12-18 18:58:07 +00:00
Jacob Richman
322232e514
feat: Detect background color ( #15132 )
2025-12-18 18:36:48 +00:00
Abhi
54466a3ea8
feat(hooks): add support for friendly names and descriptions ( #15174 )
2025-12-18 16:09:24 +00:00
Abhi
7da060c149
(docs): Add reference section to hooks documentation ( #15159 )
2025-12-18 15:49:05 +00:00
Jacob Richman
088f48d60f
Add core tool that adds all context from the core package. ( #15238 )
2025-12-18 15:45:35 +00:00
Abhi
2b426c1d91
feat: add agent toml parser ( #15112 )
2025-12-18 03:46:55 +00:00
Jacob Richman
bc168bbae4
Change detailed model stats to use a new shared Table class to resolve robustness issues. ( #15208 )
2025-12-18 02:01:37 +00:00
gemini-cli-robot
124a6da743
chore/release: bump version to 0.21.0-nightly.20251218.739c02bd6 ( #15231 )
2025-12-17 16:54:26 -08:00
Sandy Tao
739c02bd6d
fix(cli): correct initial history length handling for chat commands ( #15223 )
2025-12-18 00:04:02 +00:00
Christian Gunderman
5d13145995
Code Assist backend telemetry for user accept/reject of suggestions ( #15206 )
2025-12-17 23:12:59 +00:00
Jenna Inouye
c28ff3d5a5
Docs: Update Changelog for Dec 17, 2025 ( #15204 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-17 23:11:22 +00:00
Sandy Tao
6ddd5abd7b
fix(ui): Prevent eager slash command completion hiding sibling commands ( #15224 )
2025-12-17 22:30:35 +00:00
Adam Weidman
bf6d0485ce
chore(core): remove legacy fallback flags and migrate loop detection ( #15213 )
2025-12-17 22:14:33 +00:00
Jacob Richman
3d486ec1e9
feat(ui): add Windows clipboard image support and Alt+V paste workaround ( #15218 )
...
Co-authored-by: sgeraldes <sgeraldes@users.noreply.github.com >
2025-12-17 22:05:25 +00:00
Sehoon Shon
a6d1245a54
Respect previewFeatures value from the remote flag if undefined ( #15214 )
2025-12-17 21:36:50 +00:00
joshualitt
de7e1937f6
feat(core): Late resolve GenerateContentConfigs and reduce mutation. ( #14920 )
2025-12-17 20:29:26 +00:00
Adam Weidman
b465e12747
chore(core): remove redundant isModelAvailabilityServiceEnabled toggle and clean up dead code ( #15207 )
2025-12-17 19:23:56 +00:00
Adam Weidman
948401a450
chore: update a2a-js to 0.3.7 ( #15197 )
2025-12-17 18:07:52 +00:00
Adib234
bb8f181ef1
Refactor: Migrate console.error in ripGrep.ts to debugLogger ( #15201 )
2025-12-17 17:40:28 +00:00
Tommaso Sciortino
bf90b59935
feat: launch Gemini 3 Flash in Gemini CLI ⚡ ️ ⚡ ️ ⚡ ️ ( #15196 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: joshualitt <joshualitt@google.com >
Co-authored-by: Sehoon Shon <sshon@google.com >
Co-authored-by: Adam Weidman <65992621+adamfweidman@users.noreply.github.com >
Co-authored-by: Adib234 <30782825+Adib234@users.noreply.github.com >
Co-authored-by: Jenna Inouye <jinouye@google.com >
2025-12-17 09:43:21 -08:00
Daan Versavel
18698d6929
(fix) Automated pr labeller ( #14885 )
2025-12-17 17:17:26 +00:00
Scars
80c4225286
feat(cli): Add /auth logout command to clear credentials and auth state ( #13383 )
2025-12-17 17:07:13 +00:00
Adam Weidman
d02f3f6809
feat(core): introduce remote agent infrastructure and rename local executor ( #15110 )
2025-12-17 17:06:38 +00:00
Jacob Richman
da85aed5aa
Add one to the padding in settings dialog to avoid flicker. ( #15173 )
2025-12-17 16:53:51 +00:00
Christian Gunderman
7f2d33458a
Disallow unnecessary awaits. ( #15172 )
2025-12-17 05:28:18 +00:00
Jack Wotherspoon
3e9a0a7628
chore: remove user query from footer in debug mode ( #15169 )
2025-12-17 01:44:04 +00:00
Jack Wotherspoon
26c115a4fb
chore: remove repo specific tips ( #15164 )
2025-12-17 00:34:42 +00:00
Jacob Richman
db643e9166
Remove foreground for themes other than shades of purple and holiday. ( #14606 )
...
Co-authored-by: Miguel Solorio <miguelsolorio@google.com >
2025-12-16 23:44:46 +00:00
Steffen Deusch
ba100642e3
Use official ACP SDK and support HTTP/SSE based MCP servers ( #13856 )
2025-12-16 23:28:27 +00:00
Roaim
cc52839f19
Docs ( #15103 )
...
Co-authored-by: Abhi <abhipatel@google.com >
2025-12-16 21:51:47 +00:00
gemini-cli-robot
e79b149985
chore/release: bump version to 0.21.0-nightly.20251216.bb0c0d8ee ( #15121 )
2025-12-16 17:46:42 +00:00
Christian Gunderman
5e21c8c03c
Code assist service metrics. ( #15024 )
2025-12-16 17:34:05 +00:00
Jacob Richman
5ea5107d05
refactor(cli): fix settings merging so that settings using the new json format take priority over ones using the old format ( #15116 )
2025-12-16 03:59:24 +00:00
Sehoon Shon
2995af6a21
use previewFeatures to determine which pro model to use for A2A ( #15131 )
2025-12-16 03:51:23 +00:00
Mayur Vaid
0c3eb82671
fix: Mark A2A requests as interactive ( #15108 )
2025-12-16 02:54:41 +00:00
Jacob Richman
79f664d593
Show raw input token counts in json output. ( #15021 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-16 02:47:39 +00:00
Tommaso Sciortino
bb0c0d8ee3
Simplify method signature. ( #15114 )
2025-12-15 21:18:04 +00:00
Abhi
d236df5b21
Fix tool output fragmentation by encapsulating content in functionResponse ( #13082 )
2025-12-15 20:36:34 +00:00
N. Taylor Mullen
13944b9bb1
docs: update policy engine getting started and defaults ( #15105 )
2025-12-15 20:17:48 +00:00
Tommaso Sciortino
ec665ef405
Clean up processes in integration tests ( #15102 )
2025-12-15 19:11:08 +00:00
Mayur Vaid
217e2b0eb4
fix: similar to policy-engine, throw error in case of requiring tool execution confirmation for non-interactive mode ( #14702 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-15 18:34:27 +00:00
Shardul Natu
d030a1f62f
update(telemetry): add hashed_extension_name to field to extension events ( #15025 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-12-15 17:40:54 +00:00
Allen Hutchison
fc2a5a42ce
fix: use zod for safety check result validation ( #15026 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-15 03:54:28 +00:00
Gal Zahavi
57c7b9ccce
fix(auth): prioritize GEMINI_API_KEY env var and skip unnecessary key… ( #14745 )
2025-12-13 01:50:21 +00:00
Christian Gunderman
942bcfc61e
Disallow redundant typecasts. ( #15030 )
2025-12-13 01:43:43 +00:00
gemini-cli-robot
fcc3b2b5ec
chore/release: bump version to 0.21.0-nightly.20251213.977248e09 ( #15029 )
2025-12-12 17:30:29 -08:00
Gaurav Sehgal
d9f94103cd
Add clarity to error messages ( #14879 )
2025-12-13 01:01:12 +00:00
JAYADITYA
ad60cbfc2c
chore : remove a redundant tip ( #14947 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-12-13 01:00:09 +00:00
Tommaso Sciortino
126c32aca4
Refresh hooks when refreshing extensions. ( #14918 )
2025-12-12 16:43:46 -08:00
Jacob Richman
977248e095
chore(docs): add 'Maintainers only' label info to CONTRIBUTING.md ( #14914 )
2025-12-12 23:15:29 +00:00
Allen Hutchison
a47af8e261
fix(core): commandPrefix word boundary and compound command safety ( #15006 )
2025-12-12 23:02:19 +00:00
gemini-cli-robot
5b56920f0a
chore/release: bump version to 0.21.0-nightly.20251212.54de67536 ( #14969 )
2025-12-12 14:34:18 -08:00
Allen Hutchison
5f298c17d7
feat: Persistent "Always Allow" policies with granular shell & MCP support ( #14737 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-12 21:45:39 +00:00
jb-perez
d2a1a45646
Add license field into package.json ( #14473 )
2025-12-12 20:31:46 +00:00
Jacob Richman
6dea66f1f5
Remove flex from stats display. See snapshots for diffs. ( #14983 )
2025-12-12 20:19:39 +00:00
Kevin Ramdass
20164ebcda
test: update ide detection tests to make them more robust when run in an ide ( #15008 )
2025-12-12 19:53:07 +00:00
Abhi
edbe5480ca
fix: temp fix for subagent invocation until subagent delegation is merged to stable ( #15007 )
2025-12-12 19:43:46 +00:00
Shreya Keshive
e84c4bfb81
fix(vscode-ide-companion): correct license generation for workspace dependencies ( #15004 )
2025-12-12 19:06:58 +00:00
Shreya Keshive
3b2a4ba27a
refactor(ide ext): Update port file name + switch to 1-based index for characters + remove truncation text ( #10501 )
2025-12-12 17:39:15 +00:00
Abhi
12cbe320e4
fix(policy): allow codebase_investigator by default in read-only policy ( #15000 )
2025-12-12 17:22:27 +00:00
Jack Wotherspoon
1e734d7e60
feat: support multi-file drag and drop of images ( #14832 )
2025-12-12 17:14:35 +00:00
Coco Sheng
299cc9bebf
feat(a2a): Introduce /init command for a2a server ( #13419 )
2025-12-12 17:09:04 +00:00
Shreya Keshive
a02abcf578
Revert "chore(deps): bump express from 5.1.0 to 5.2.0" ( #14998 )
2025-12-12 16:49:45 +00:00
Shreya Keshive
bb33e281c0
fix(ide): Update IDE extension to write auth token in env var ( #14999 )
2025-12-12 16:42:49 +00:00
Nemo
86134e9970
feat(settings-validation): add validation for settings schema ( #12929 )
2025-12-12 06:30:34 +00:00
Jacob Richman
54de67536d
feat(cli): polish cached token stats and simplify stats display when quota is present. ( #14961 )
2025-12-11 23:17:14 +00:00
Jacob Richman
d818fb1d91
tool(cli): tweak the frontend tool to be aware of more core files from the cli ( #14962 )
2025-12-11 22:15:35 +00:00
Tommaso Sciortino
927102ea1b
increase labeler timeout ( #14922 )
2025-12-11 17:05:20 +00:00
Kevin Ramdass
2d3db97067
Fix: Correctly detect MCP tool errors ( #14937 )
2025-12-11 16:41:02 +00:00
gemini-cli-robot
24fca1b745
chore/release: bump version to 0.21.0-nightly.20251211.8c83e1ea9 ( #14924 )
2025-12-11 04:24:47 +00:00
Adam Weidman
8c83e1ea9a
feat: reset availabilityService on /auth ( #14911 )
2025-12-10 21:53:12 +00:00
Abhi
91b15fc9dc
refactor: implement DelegateToAgentTool with discriminated union ( #14769 )
2025-12-10 21:14:13 +00:00
Sasha Varlamov
d4506e0fc0
feat(core): Add support for transcript_path in hooks for git-ai/Gemini extension ( #14663 )
...
Co-authored-by: Christian Gunderman <gundermanc@gmail.com >
2025-12-10 20:44:30 +00:00
Christian Gunderman
648041c62a
Add missing await. ( #14910 )
2025-12-10 19:52:31 +00:00
Adam Weidman
22e6af414a
feat: attempt more error parsing ( #14899 )
2025-12-10 19:14:07 +00:00
joshualitt
c8b688655c
feat(core): Plumbing for late resolution of model configs. ( #14597 )
2025-12-10 17:36:27 +00:00
破茧
68ebf5d655
Fix: Correct typo in code comment ( #14671 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-10 17:11:54 +00:00
Tommaso Sciortino
1954f45c19
Limit search depth in path corrector ( #14869 )
2025-12-10 04:08:39 +00:00
Jack Wotherspoon
ee6556cbd2
refactor(sessions): move session summary generation to startup ( #14691 )
2025-12-10 03:25:22 +00:00
Christian Gunderman
d2a6b30398
Send the model and CLI version with the user agent ( #14865 )
2025-12-10 00:38:33 +00:00
Gal Zahavi
d90356e8a3
chore: add closing reason to stale bug workflow ( #14861 )
2025-12-09 23:13:42 +00:00
Abhi
aced401071
feat: ensure codebase investigator uses preview model when main agent does ( #14412 )
2025-12-09 21:07:50 +00:00
Sehoon Shon
2800187355
feat: display quota stats for unused models in /stats ( #14764 )
2025-12-09 20:09:46 +00:00
Shreya Keshive
3f5f030d01
feat(ide): fallback to GEMINI_CLI_IDE_AUTH_TOKEN env var ( #14843 )
2025-12-09 19:41:32 +00:00
dependabot[bot]
364b12e2fa
chore(deps): bump express from 5.1.0 to 5.2.0 ( #14325 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-09 19:34:56 +00:00
Jenna Inouye
6877dd0de7
Docs: Fix errors preventing site rebuild. ( #14842 )
2025-12-09 18:31:54 +00:00
Kirill Klashtorny
6be32e9383
Update CODEOWNERS ( #14830 )
2025-12-09 18:22:52 +00:00
Daan Versavel
f919783173
(fix) Automated pr labeller ( #14788 )
2025-12-09 17:19:16 +00:00
David Pierce
674494e80b
allow final:true to be returned on a2a server edit calls. ( #14747 )
2025-12-09 15:30:50 +00:00
Coco Sheng
1f813f6a06
feat(a2a): Introduce restore command for a2a server ( #13015 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2025-12-09 15:08:23 +00:00
Jack Wotherspoon
afd4829f10
fix: use Gemini API supported image formats for clipboard ( #14762 )
2025-12-09 12:29:30 +00:00
Allen Hutchison
03be923e05
fix(lint): upgrade pip and use public pypi for yamllint ( #14746 )
2025-12-09 03:25:41 +00:00
Tommaso Sciortino
bc542cbca8
Always set pending status in E2E tests ( #14756 )
2025-12-09 02:58:52 +00:00
Alex Gavrilescu
560550f5df
feat: Add support for MCP Resources ( #13178 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-12-09 02:43:12 +00:00
gemini-cli-robot
720b31cb8b
chore/release: bump version to 0.21.0-nightly.20251209.ec9a8c7a7 ( #14751 )
2025-12-09 01:58:12 +00:00
Abhi
d35a1fdec7
fix: handle missing local extension config and skip hooks when disabled ( #14744 )
2025-12-09 01:51:42 +00:00
Tommaso Sciortino
8f43d4851d
Remove old E2E Workflows ( #14749 )
2025-12-09 00:32:29 +00:00
Gal Zahavi
171103aedc
refactor(core): Improve environment variable handling in shell execution ( #14742 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
Co-authored-by: christine betts <chrstn@uw.edu >
2025-12-09 00:22:46 +00:00
christine betts
ec9a8c7a72
Add support for user-scoped extension settings ( #13748 )
2025-12-08 22:51:26 +00:00
Jenna Inouye
91c46311c8
Docs: Proper release notes ( #14405 )
2025-12-08 22:26:43 +00:00
Jack Wotherspoon
89570aef06
feat: auto-execute on slash command completion functions ( #14584 )
2025-12-08 21:32:39 +00:00
Kevin Ramdass
17b5b40765
feat: Add OTEL log event gemini_cli.startup_stats for startup stats. ( #14734 )
2025-12-08 20:29:50 +00:00
Tommaso Sciortino
cdc74a742a
Always set status in chained_e2e workflow ( #14730 )
2025-12-08 19:37:47 +00:00
Marat Boshernitsan
4322137cee
refactor(telemetry): Improve previous PR that allows telemetry to use the CLI auth and add testing ( #14589 )
2025-12-08 11:20:13 -08:00
Daan Versavel
8651c53923
feat(github action) Triage and Label Pull Requests by Size and Comple… ( #5571 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-08 18:19:49 +00:00
Shreya Keshive
b2a821c81a
Update automated triage workflow to stop assigning priority labels ( #14717 )
2025-12-08 18:17:26 +00:00
Tommaso Sciortino
3888a592cf
set failed status when chained e2e fails ( #14725 )
2025-12-08 18:10:39 +00:00
Jack Wotherspoon
84c07c8fa1
fix(audio): improve reading of audio files ( #14658 )
2025-12-08 17:46:33 +00:00
parthasaradhi
389cadb06a
Fix: Prevent freezing in non-interactive Gemini CLI when debug mode is enabled ( #14580 )
2025-12-08 17:18:11 +00:00
Paweł Dec
6e51bbc215
Add prompt_id propagation in a2a-server task ( #14581 )
2025-12-08 15:12:47 +00:00
Adam Weidman
8f4f8baa81
feat(modelAvailabilityService): integrate model availability service into backend logic ( #14470 )
2025-12-08 14:44:34 +00:00
gemini-cli-robot
7a72037572
chore/release: bump version to 0.21.0-nightly.20251207.025e450ac ( #14662 )
2025-12-07 01:34:24 +00:00
Christian Gunderman
025e450ac2
Disallow floating promises. ( #14605 )
2025-12-06 00:12:49 +00:00
Jenna Inouye
3cf44acc08
Docs: Update Gemini 3 on Gemini CLI documentation ( #14601 )
2025-12-05 22:37:35 +00:00
Tommaso Sciortino
bdd15e8911
Fully detach autoupgrade process ( #14595 )
2025-12-05 22:12:54 +00:00
Jacob Richman
04cbae5b5f
Fix emoji width in debug console. ( #14593 )
2025-12-05 20:58:54 +00:00
Sehoon Shon
2c4ec31ed1
expose previewFeatures flag in a2a ( #14550 )
2025-12-05 18:28:52 +00:00
Jenna Inouye
996cbcb680
Docs: Model routing clarification ( #14373 )
2025-12-05 18:10:34 +00:00
matt korwel
dd3fd73ffe
fix(core): improve API response error handling and retry logic ( #14563 )
2025-12-05 17:49:08 +00:00
Tommaso Sciortino
738354ff65
Use Robot PAT for chained e2e merge queue skipper ( #14585 )
2025-12-05 17:45:18 +00:00
Jack Wotherspoon
616d6f6667
feat(sessions): use 1-line generated session summary to describe sessions ( #14467 )
2025-12-05 17:20:15 +00:00
gemini-cli-robot
8341256d1e
chore/release: bump version to 0.21.0-nightly.20251204.3da4fd5f7 ( #14476 )
2025-12-05 15:52:09 +00:00
Jacob Richman
934b309b4c
Fix issue where we were passing the model content reflecting terminal line wrapping. ( #14566 )
2025-12-05 04:42:57 +00:00
Jacob Richman
d284fa66c0
Fix bug in the shellExecutionService resulting in both truncation and 3X bloat ( #14545 )
2025-12-04 18:26:12 -08:00
Tommaso Sciortino
bedce8aacf
Trigger chained e2e tests on all pull requests ( #14551 )
2025-12-05 01:28:50 +00:00
Silvio Junior
7db5abdecf
Fixes [API Error: Cannot read properties of undefined (reading 'error')] ( #14553 )
2025-12-05 01:18:37 +00:00
Tommaso Sciortino
290ede93e2
Write e2e status to local repo not forked repo ( #14549 )
2025-12-05 00:35:08 +00:00
Tommaso Sciortino
f4f2bcbd98
Make trigger_e2e manually fireable. ( #14547 )
2025-12-04 23:58:45 +00:00
Tommaso Sciortino
1c5213788c
Grant chained workflows proper permission. ( #14534 )
2025-12-04 22:11:37 +00:00
Gal Zahavi
0d5424fb79
feat: Exclude maintainer labeled issues from stale issue closer ( #14532 )
2025-12-04 21:54:26 +00:00
Tommaso Sciortino
ae8694b303
Fix privacy screen for legacy tier users ( #14522 )
2025-12-04 21:24:00 +00:00
Adib234
5f60281d25
Add support for MCP dynamic tool update by notifications/tools/list_changed ( #14375 )
2025-12-04 21:04:38 +00:00
christine betts
0c7ae22f5d
Disable flaky extension reloading test on linux ( #14528 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-04 19:40:36 +00:00
Paresh Joshi
2d1c1ac567
fix(client): Correctly latch hasFailedCompressionAttempt flag ( #13002 )
2025-12-04 18:12:45 +00:00
Justin Poehnelt
205d0f456e
fix(extensions): resolve GitHub API 415 error for source tarballs ( #13319 )
2025-12-04 17:16:08 +00:00
Jainam M
8b0a8f47c1
Adding session id as part of json o/p ( #14504 )
2025-12-04 17:06:20 +00:00
Aswin Ashok
84f521b1c6
fix(shell): cursor visibility when using interactive mode ( #14095 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2025-12-04 16:58:03 +00:00
Jack Wotherspoon
1040c246f5
feat: add auto-execute on Enter behavior to argumentless MCP prompts ( #14510 )
2025-12-04 16:33:45 +00:00
Coco Sheng
b27cf0b0a8
feat(cli): Move key restore logic to core ( #13013 )
2025-12-04 15:56:16 +00:00
Jack Wotherspoon
0a2971f9d3
feat(mcp): add --type alias for --transport flag in gemini mcp add ( #14503 )
2025-12-04 15:45:03 +00:00
Sehoon Shon
48e8c12476
remove unused isSearching field ( #14509 )
2025-12-04 15:44:21 +00:00
Megha Bansal
6f3b56c5b6
fix: improve retry logic for fetch errors and network codes ( #14439 )
2025-12-04 15:41:08 +00:00
Sehoon Shon
b745d46395
do not toggle the setting item when entering space ( #14489 )
2025-12-04 14:48:18 +00:00
Daan Versavel
46bb07e4b7
Fix(cli): Improve Homebrew update instruction to specify gemini-cli ( #14502 )
2025-12-04 14:28:25 +00:00
Adib234
d5e5f58737
Update setting search UX ( #14451 )
2025-12-04 06:43:11 +00:00
ismellpillows
9bc5a4d64f
feat(cli): support /copy in remote sessions using OSC52 ( #13471 )
2025-12-04 06:27:33 +00:00
Paresh Joshi
7b811a38a6
chore(tests): remove obsolete test for hierarchical memory ( #13122 )
2025-12-04 00:28:54 +00:00
christine betts
e0a2227faf
Add commands for listing and updating per-extension settings ( #12664 )
2025-12-04 00:16:16 +00:00
christine betts
470f3b057f
Remove example extension ( #14376 )
2025-12-04 00:16:13 +00:00
Sandy Tao
518e73ac9f
fix(cli): Fix word navigation for CJK characters ( #14475 )
2025-12-04 00:16:11 +00:00
Hirokazu Hata
3da4fd5f7d
fix(acp): prevent unnecessary credential cache clearing on re-authent… ( #9410 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-03 23:43:15 +00:00
Mark Hansen
1e6243045e
Markdown export: move the emoji to the end of the line ( #12278 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-03 23:30:29 +00:00
Victor Anderson
a28be4a4e0
docs: fix typo 'socus' to 'focus' in todos.md ( #14374 )
2025-12-03 12:58:40 -08:00
Adam Weidman
153d01a01e
feat: Add enableAgents experimental flag ( #14371 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-12-03 20:53:06 +00:00
Abhi
eb3312e7ba
feat: Support Extension Hooks with Security Warning ( #14460 )
2025-12-03 20:07:37 +00:00
Gal Zahavi
939cb67621
feat: add scheduled workflow to close stale issues ( #14404 )
2025-12-03 19:11:28 +00:00
Tommaso Sciortino
00705b14bd
Fix tests ( #14458 )
2025-12-03 19:07:23 +00:00
Edilmo Palencia
8d4082ef2e
feat(hooks): Hook System Documentation ( #14307 )
2025-12-03 18:57:05 +00:00
Allen Hutchison
f588219bb9
fix: Bundle default policies for npx distribution ( #14457 )
2025-12-03 18:53:18 +00:00
Edilmo Palencia
b8c038f41f
feat(hooks): Hooks Commands Panel, Enable/Disable, and Migrate ( #14225 )
2025-12-03 18:01:57 +00:00
Jacob Richman
08067acc71
Avoid triggering refreshStatic unless there really is a banner to display. ( #14328 )
2025-12-03 17:08:32 +00:00
Edilmo Palencia
1c12da1fad
feat(hooks): Hook Session Lifecycle & Compression Integration ( #14151 )
2025-12-03 17:04:13 +00:00
christine betts
7a6d3067c6
Add new enterprise instructions ( #8641 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-03 15:32:34 +00:00
Alexander Farber
54c62d580c
fix(security): Fix npm audit vulnerabilities in glob and body-parser ( #14090 )
2025-12-03 14:07:50 +00:00
CHAEWAN KIM
0857345945
refactor(editor): use const assertion for editor types with single source of truth ( #8604 )
2025-12-03 06:16:19 +00:00
Marat Boshernitsan
b9b3b8050d
Allow telemetry exporters to GCP to utilize user's login credentials, if requested ( #13778 )
2025-12-03 05:27:37 +00:00
Riddhi Dutta
92e95ed806
track github repository names in telemetry events ( #13670 )
...
Co-authored-by: riddhi <duttariddhi@google.com >
2025-12-03 05:26:12 +00:00
Tommaso Sciortino
035bea3699
Restrict integration tests tools ( #14403 )
2025-12-03 01:43:06 +00:00
Jack Wotherspoon
bdbbe9232d
feat: consolidate remote MCP servers to use url in config ( #13762 )
2025-12-03 01:01:33 +00:00
Billy Biggs
145fb246a6
docs: Recommend using --debug intead of --verbose for CLI debugging ( #14334 )
2025-12-03 00:44:23 +00:00
Allen Hutchison
533a3fb312
feat: enable message bus integration by default ( #14329 )
2025-12-03 00:05:54 +00:00
Sehoon Shon
344f2f26e7
implement fuzzy search inside settings ( #13864 )
2025-12-02 23:52:56 +00:00
gemini-cli-robot
ed10edbf0d
chore(release): bump version to 0.21.0-nightly.20251202.2d935b379 ( #14409 )
2025-12-02 23:39:40 +00:00
Allen Hutchison
828afe113e
refactor(stdio): always patch stdout and use createWorkingStdio for clean output ( #14159 )
2025-12-02 23:08:25 +00:00
ljxfstorm
2d935b3798
chore(ci): mark GitHub release as pre-release if not on "latest" npm channel ( #7386 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-02 21:59:53 +00:00
bl-ue
aa544c40de
Hide sessions that don't have user messages ( #13994 )
2025-12-02 20:52:53 +00:00
g-samroberts
c78f2574a2
Add docs directive to GEMINI.md ( #14327 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-02 20:51:51 +00:00
christine betts
2b1a791a0b
Use polling for extensions-reload integration test ( #14391 )
2025-12-02 20:35:58 +00:00
Sandy Tao
752a521423
feat(core): Implement JIT context manager and setting ( #14324 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-12-02 20:09:46 +00:00
Tommaso Sciortino
71b0e7ab0d
Don't fail test if we can't cleanup ( #14389 )
2025-12-02 10:25:22 -08:00
Tommaso Sciortino
f7f047936b
Remove references to deleted kind/bug label ( #14383 )
2025-12-02 09:52:59 -08:00
christine betts
2a3c0eddb9
Increase flakey test timeout ( #14377 )
2025-12-02 17:15:10 +00:00
Jacob Richman
1689e9b671
fix(cli): fix issue updating a component while rendering a different component ( #14319 )
2025-12-02 01:33:03 +00:00
Smetalo
98d7238ed6
fix: Conditionally add set -eEuo pipefail in setup-github command ( #8550 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-02 00:31:12 +00:00
g-samroberts
d24e5cf353
docs: Update 4 files ( #13628 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-01 23:55:25 +00:00
Sudheer Tripathi
70a48a3dd6
fix(ui): misaligned markdown table rendering ( #8336 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-01 23:26:48 +00:00
joshualitt
5fa6d87c25
feat(cli): Documentation for model configs. ( #12967 )
2025-12-01 22:45:22 +00:00
Marco Mihai Condrache
5729642556
fix(zed-integration): remove extra field from acp auth request ( #13646 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-01 22:23:11 +00:00
CHAEWAN KIM
f4babf172b
fix(async): prevent missed async errors from bypassing catch handlers ( #13714 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-12-01 22:11:40 +00:00
Juan C.S.
0c463e664e
docs: Fix grammar error in Release Cadence (Nightly section) ( #13866 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-01 22:04:32 +00:00
Transient Onlooker
4df43c802b
update screenshot ( #13976 )
2025-12-01 22:02:25 +00:00
fancivez
784d3c6c9a
fix: remove invalid type key in bug_report.yml ( #13576 )
2025-12-01 22:00:51 +00:00
Brian de Alwis
fcb85e612f
chore(logging): log the problematic event for #12122 ( #14092 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-12-01 21:42:44 +00:00
Adam Weidman
b4df7e351b
feat(core): enhance availability routing with wrapped fallback and single-model policies ( #13874 )
2025-12-01 20:41:06 +00:00
Coco Sheng
806cd112ac
feat(a2a): Urgent fix - Process modelInfo agent message ( #14315 )
2025-12-01 20:09:02 +00:00
David Huntsperger
26f050ff10
Updated ToC on docs intro; updated title casing to match Google style ( #13717 )
2025-12-01 19:38:48 +00:00
Jack Wotherspoon
bde8b78a88
feat(themes): add built-in holiday theme 🎁 ( #14301 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2025-12-01 19:09:55 +00:00
joshualitt
62f890b5aa
bug(core): Avoid stateful tool use in executor. ( #14305 )
2025-12-01 18:54:28 +00:00
Kevin Ramdass
db027dd95b
feat: Add startup profiler to measure and record application initialization phases. ( #13638 )
2025-12-01 18:06:13 +00:00
gemini-cli-robot
613fb2fed6
chore/release: bump version to 0.20.0-nightly.20251201.2fe609cb6 ( #14304 )
2025-12-01 17:38:07 +00:00
Jack Wotherspoon
f918af82fe
feat: auto-execute simple slash commands on Enter ( #13985 )
2025-12-01 17:29:03 +00:00
christine betts
844d3a4dfa
Always use MCP server instructions ( #14297 )
2025-12-01 17:17:54 +00:00
Mayur Vaid
4228a75186
fix: Exclude web-fetch tool from executing in default non-interactive mode to avoid CLI hang. ( #14244 )
2025-12-01 17:13:14 +00:00
Sandy Tao
2fe609cb62
fix(core): handle EPIPE error in hook runner when writing to stdin ( #14231 )
2025-12-01 16:58:41 +00:00
korade-krushna
f2466e5224
Fixes /clear command to preserve input history for up-arrow navigation while still clearing the context window and screen ( #14182 )
2025-12-01 00:51:53 +00:00
Maryam Ariyan
f98e84f03f
test: Add verification for $schema property in settings schema ( #13497 )
2025-11-30 04:22:56 +00:00
Shardul Natu
bbd61f375f
feat(telemetry): Add Semantic logging for to ApiRequestEvents ( #13912 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-11-30 03:35:24 +00:00
Jack Wotherspoon
576fda18eb
chore: fix session browser test and skip hook system tests ( #14099 )
2025-11-28 21:07:54 +00:00
Edilmo Palencia
7a4280a482
feat(hooks): Hooks Comprehensive Integration Testing ( #9112 )
2025-11-27 05:38:35 +00:00
Shardul Natu
6a43b31218
update(telemetry): OTel API response event with finish reasons ( #13849 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-11-27 04:46:40 +00:00
Tommaso Sciortino
450734e333
Revert to default LICENSE (Revert #13449 ) ( #13876 )
2025-11-27 02:23:08 +00:00
gemini-cli-robot
cf7f6b49ed
chore/release: bump version to 0.20.0-nightly.20251127.5bed97064 ( #13877 )
2025-11-27 01:58:44 +00:00
Gal Zahavi
b9dc8eb14d
feat(shell): Standardize pager to 'cat' for shell execution by model ( #13878 )
2025-11-27 01:23:31 +00:00
Sehoon Shon
69188c8538
Add usage limit remaining in /stats ( #13843 )
2025-11-27 01:21:33 +00:00
Andrew Garrett
5949d56370
feat(ui): Show waiting MCP servers in ConfigInitDisplay ( #13721 )
2025-11-27 00:26:44 +00:00
Edilmo Palencia
5bed97064a
feat(hooks): Hook LLM Request/Response Integration ( #9110 )
2025-11-26 23:51:28 +00:00
Gal Zahavi
b2bdfcf1b5
fix(auth): improve API key authentication flow ( #13829 )
2025-11-26 21:58:14 +00:00
Gal Zahavi
0d29385e1b
feat(core): Add configurable inactivity timeout for shell commands ( #13531 )
2025-11-26 21:43:33 +00:00
Adam Weidman
87edeb4e32
feat(core): implement towards policy-driven model fallback mechanism ( #13781 )
2025-11-26 20:36:42 +00:00
sai-sunder-s
0f12d6c426
feat(mcp): Inject GoogleCredentialProvider headers in McpClient ( #13783 )
2025-11-26 20:08:19 +00:00
kevinjwang1
3406dc5b2e
Add consent flag to Link command ( #13832 )
2025-11-26 19:22:26 +00:00
Aishanee Shah
4a82b0d891
Update System Instructions for interactive vs non-interactive mode. ( #12315 )
2025-11-26 19:04:36 +00:00
christine betts
bc365f1eaa
Add support for MCP server instructions behind config option ( #13432 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-26 18:08:47 +00:00
Edilmo Palencia
558c8ece2c
feat(hooks): Hook Tool Execution Integration ( #9108 )
2025-11-26 17:41:29 +00:00
Silvio Junior
1187c7fdac
Changes in system instruction to adapt to gemini 3.0 to ensure that the CLI explains its actions before calling tools ( #13810 )
2025-11-26 15:27:32 +00:00
Sandy Tao
e1d2653a7a
feat(core): Improve request token calculation accuracy ( #13824 )
2025-11-26 04:20:46 +00:00
gemini-cli-robot
36a0a3d37b
chore(release): bump version to 0.20.0-nightly.20251126.d2a6cff4d ( #13835 )
2025-11-26 03:17:53 +00:00
Megha Bansal
d97bbd5324
Update error codes when process exiting the gemini cli ( #13728 )
2025-11-26 02:43:21 +00:00
Billy Biggs
d2a6cff4df
Update dependency for modelcontextprotocol/sdk to 1.23.0 ( #13827 )
2025-11-26 01:23:13 +00:00
Aarushi Shah
acf5ed595f
Add Databricks auth support and custom header option to gemini cli ( #11893 )
...
Co-authored-by: Taylor Mullen <ntaylormullen@google.com >
2025-11-26 00:22:47 +00:00
Pato Beltran
03845198ce
Update Code Wiki README badge ( #13768 )
...
Co-authored-by: Pato Beltran <patobeltran@google.com >
Co-authored-by: Allen Hutchison <adh@google.com >
2025-11-25 23:52:41 +00:00
Sehoon Shon
d8a3d08f8e
fallback to flash for TerminalQuota errors ( #13791 )
2025-11-25 21:17:22 +00:00
Daniel Alejandro Coll Tejeda
6f9118dca6
Fix TypeError: "URL.parse is not a function" for Node.js < v22 ( #13698 )
2025-11-25 20:18:49 +00:00
bl-ue
d0b6701fba
docs(sessions): add documentation for chat recording and session management ( #13667 )
2025-11-25 18:55:29 +00:00
bl-ue
94c3eecb99
feat(sessions): add /resume slash command to open the session browser ( #13621 )
2025-11-25 18:54:09 +00:00
bl-ue
098e5c281c
fix(resume): allow passing a prompt via stdin while resuming using --resume ( #13520 )
2025-11-25 17:53:17 +00:00
Maksym
f2c52f777c
fix(cli): allow non-GitHub SCP-styled URLs for extension installation ( #13800 )
...
Co-authored-by: Maksym Kursin <maksym.kursin@dkatalis.com >
2025-11-25 16:57:53 +00:00
Scott Wu
2b41263aa7
fix: Add $schema property to settings.schema.json ( #12763 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-11-25 04:48:47 +00:00
Adam Weidman
404a4468d8
chore: remove console.error ( #13779 )
2025-11-25 04:24:51 +00:00
gemini-cli-robot
7f67c7f952
chore/release: bump version to 0.19.0-nightly.20251125.f6d97d448 ( #13782 )
2025-11-25 02:42:52 +00:00
Adam Weidman
c8540b5744
feat(config): add isModelAvailabilityServiceEnabled setting ( #13777 )
2025-11-25 01:26:47 +00:00
Edilmo Palencia
f6d97d4488
feat(hooks): Hook System Orchestration ( #9102 )
2025-11-24 23:24:18 +00:00
Adam Weidman
87712a0a7c
feat(model-availability): introduce ModelPolicy and PolicyCatalog ( #13751 )
2025-11-24 23:08:10 +00:00
joshualitt
ba0e053ffc
bug(core): Add default chat compression config. ( #13766 )
2025-11-24 23:02:00 +00:00
joshualitt
d14779b264
feat(core): Land bool for alternate system prompt. ( #13764 )
2025-11-24 22:34:44 +00:00
Edilmo Palencia
5411f4a667
feat(hooks): Hook Agent Lifecycle Integration ( #9105 )
2025-11-24 22:31:48 +00:00
Edilmo Palencia
2034098780
feat(hooks): Hook Event Handling ( #9097 )
2025-11-24 21:51:39 +00:00
grMLEqomlkkU5Eeinz4brIrOVCUCkJuN
d53a5c4fb5
fix: (some minor improvements to configs and getPackageJson return behaviour) ( #12510 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-11-24 21:20:23 +00:00
Edilmo Palencia
f6ee025c46
feat(hooks): Hook Telemetry Infrastructure ( #9082 )
2025-11-24 21:13:24 +00:00
joshualitt
e50bf6adad
feat(core): Migrate chatCompressionService to model configs. ( #12863 )
2025-11-24 20:24:45 +00:00
Adib234
c21b6899e1
Add session subtask in /stats command ( #13750 )
2025-11-24 19:01:41 +00:00
Megha Bansal
95693e265e
Improve code coverage for cli package ( #13724 )
2025-11-24 17:41:46 +00:00
JAYADITYA
569c6f1dd0
feat :rephrasing the extension logging messages to run the explore command when there are no extensions installed ( #13740 )
2025-11-24 15:54:15 +00:00
Kimihiko Kitase
7350399a50
fix(core): Fix context window overflow warning for PDF files ( #13548 )
2025-11-24 07:46:03 +00:00
gemini-cli-robot
c2a741ee36
chore/release: bump version to 0.19.0-nightly.20251124.e177314a4 ( #13713 )
2025-11-24 02:16:24 +00:00
gemini-cli-robot
e177314a4a
chore/release: bump version to 0.19.0-nightly.20251123.dadd606c0 ( #13675 )
2025-11-23 01:53:21 +00:00
gemini-cli-robot
dadd606c0d
chore/release: bump version to 0.19.0-nightly.20251122.42c2e1b21 ( #13637 )
2025-11-22 07:46:20 +00:00
Jacob Richman
b3fcddde11
Update ink version to 6.4.6 ( #13631 )
2025-11-22 03:20:28 +00:00
Megha Bansal
e205a468d9
Improve test coverage for cli/src/ui/components ( #13598 )
2025-11-22 02:47:29 +00:00
christine betts
bdf80ea7c0
fix(cli): Prevent stdout/stderr patching for extension commands ( #13600 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2025-11-22 02:08:06 +00:00
Jacob Richman
5e218a5630
Turn off alternate buffer mode by default. ( #13623 )
2025-11-22 01:30:38 +00:00
joshualitt
8c36b10682
feat(core): Add BaseLlmClient.generateContent. ( #13591 )
2025-11-22 01:27:57 +00:00
joshualitt
42c2e1b217
feat(core): Add support for custom aliases for model configs. ( #13546 )
2025-11-22 00:13:10 +00:00
Tommaso Sciortino
1e715d1e5c
Restore bracketed paste mode after external editor exit ( #13606 )
2025-11-21 21:20:37 +00:00
owenofbrien
9f9a2fa844
Moved client id logging into createBasicLogEvent ( #13607 )
2025-11-21 21:20:15 +00:00
owenofbrien
64eb14ab11
Fix exp id logging ( #13430 )
2025-11-21 20:44:50 +00:00
joshualitt
0713c86dec
feat(docs): Ensure multiline JS objects are rendered properly. ( #13535 )
2025-11-21 17:59:34 +00:00
Adib234
99c5bf2e97
Remove useModelRouter experimental flag ( #13593 )
2025-11-21 17:54:17 +00:00
joshualitt
fe67ef63c1
bug(core): Ensure we use thinking budget on fallback to 2.5 ( #13596 )
2025-11-21 17:43:20 +00:00
JAYADITYA
19d4384f16
docs: Update uninstall command to reflect multiple extension support ( #13582 )
2025-11-21 17:38:59 +00:00
Jack Wotherspoon
d351f07758
feat: custom loading phrase when interactive shell requires input ( #12535 )
2025-11-21 17:19:34 +00:00
noahacgn
d72f35c2e7
docs: fix grammar typo "a MCP" to "an MCP" ( #13595 )
2025-11-21 16:59:45 +00:00
Adam Weidman
aeffa2a460
feat(core): add modelAvailabilityService for managing and tracking model health ( #13426 )
2025-11-21 16:54:16 +00:00
Jacob Richman
030a5ace97
Fix multiple bugs with auth flow including using the implemented but unused restart support. ( #13565 )
2025-11-21 16:31:47 +00:00
bl-ue
b97661553f
feat(ui): build interactive session browser component ( #13351 )
2025-11-21 16:16:56 +00:00
Megha Bansal
3370644ffe
Improved code coverage for cli/src/zed-integration ( #13570 )
2025-11-21 15:38:33 +00:00
fancivez
0f0b463a2f
docs: fix typos in source code and documentation ( #13577 )
2025-11-21 14:59:42 +00:00
Megha Bansal
8d082a904d
Improve code coverage for cli/src/ui/privacy package ( #13493 )
2025-11-21 06:34:30 +00:00
Megha Bansal
61582678bf
Optimize and improve test coverage for cli/src/config ( #13485 )
2025-11-21 04:57:59 +00:00
Pyry Takala
613b8a4527
fix(core): correct bash @P prompt transformation detection ( #13544 )
2025-11-21 00:34:47 +00:00
Sandy Tao
5982abeffb
fix(ui): Correct mouse click cursor positioning for wide characters ( #13537 )
2025-11-20 23:56:31 +00:00
Vish (Ishaya) Abrams
78b10dccf1
Skip pre-commit hooks for shadow repo ( #13331 ) ( #13488 )
...
Co-authored-by: Vishvananda Abrams <vabrams@google.com >
2025-11-20 22:50:36 +00:00
gemini-cli-robot
85bc25a765
chore(release): bump version to 0.19.0-nightly.20251120.8e531dc02 ( #13540 )
2025-11-20 22:43:11 +00:00
Jacob Richman
fec0eba07e
move stdio ( #13528 )
2025-11-20 22:16:46 +00:00
Tommaso Sciortino
f92e79eba0
update docs for http proxy ( #13538 )
2025-11-20 22:13:59 +00:00
Adib234
3e50be1658
Update persistence state to track counts of messages instead of times banner has been displayed ( #13428 )
2025-11-20 21:57:06 +00:00
cornmander
9937fb2220
Use lenient MCP output schema validator ( #13521 )
2025-11-20 21:51:25 +00:00
joshualitt
8e531dc029
feat(core): Incorporate Gemini 3 into model config hierarchy. ( #13447 )
2025-11-20 21:07:14 +00:00
Ben Brandt
83d0bdc32e
feat(zed-integration): Use default model routing for Zed integration ( #13398 )
...
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2025-11-20 20:08:37 +00:00
Tommaso Sciortino
d15970e12c
remove duplicated mouse code ( #13525 )
2025-11-20 11:46:53 -08:00
Tommaso Sciortino
c7b5dcd28f
Change default compress threshold to 0.5 for api key users ( #13517 )
2025-11-20 11:43:35 -08:00
joshualitt
8c07ad2ab9
feat(core): Use thinking level for Gemini 3 ( #13445 )
2025-11-20 19:19:52 +00:00
Adib234
ade9dfeebb
Enable switching preview features on/off without restart ( #13515 )
2025-11-20 19:00:16 +00:00
Jacob Richman
d1e35f8660
Protect stdout and stderr so JavaScript code can't accidentally write to stdout corrupting ink rendering ( #13247 )
...
Bypassing rules as link checker failure is spurious.
2025-11-20 10:44:02 -08:00
Adib234
e20d282088
Update banner design ( #13420 )
2025-11-20 16:52:15 +00:00
Gaurav Sehgal
4adfdad47f
Copy commands as part of setup-github ( #13464 )
2025-11-20 16:05:15 +00:00
Ben Brandt
6c126b9e58
fix(zed-integration): Ensure that the zed integration is classified as interactive ( #13394 )
...
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2025-11-20 15:28:37 +00:00
lifefloating
1d2e27a698
Fix: Update system instruction when GEMINI.md memory is loaded or refreshed ( #12136 )
2025-11-20 13:22:06 +00:00
Adam Weidman
049a299b92
Revert "feat(core): Fix bug with incorrect model overriding." ( #13483 )
2025-11-20 06:39:21 +00:00
Sandy Tao
b1258dd52c
fix(cli): prevent race condition when restoring prompt after context overflow ( #13473 )
2025-11-20 05:54:16 +00:00
Greg Shikhman
98cdaa01b8
Revert "build bun"
...
This reverts commit b0938f9102 .
2025-11-20 06:02:54 +00:00
Greg Shikhman
3476a97acc
build bun
2025-11-20 06:02:54 +00:00
Tommaso Sciortino
9ebf321717
Use synchronous writes when detecting keyboard modes ( #13478 )
2025-11-20 05:50:05 +00:00
joshualitt
ff725dea41
feat(core): Fix bug with incorrect model overriding. ( #13477 )
2025-11-20 05:48:08 +00:00
gemini-cli-robot
c3f1b29c1e
chore/release: bump version to 0.18.0-nightly.20251120.2231497b1 ( #13476 )
2025-11-20 05:05:32 +00:00
joshualitt
257cd07a3a
feat(core): Wire up chat code path for model configs. ( #12850 )
2025-11-20 04:41:16 +00:00
Preston Holmes
43d6dc3668
Add User email detail to about box ( #13459 )
2025-11-20 03:46:21 +00:00
Gal Zahavi
2231497b1f
feat: add click-to-focus support for interactive shell ( #13341 )
2025-11-19 23:49:39 +00:00
Tommaso Sciortino
d0a845b6e6
remove unneeded log ( #13456 )
2025-11-19 23:42:21 +00:00
kevin-ramdass
e4c4bb265e
feat: update thinking mode support to exclude gemini-2.0 models and simplify logic. ( #13454 )
2025-11-19 23:35:35 +00:00
Smetalo
0f845407f1
Fix typo in write_todos methodology instructions ( #13411 )
2025-11-19 23:29:12 +00:00
Tommaso Sciortino
b2a2ea3633
Fix Copyright line in LICENSE ( #13449 )
2025-11-19 22:53:34 +00:00
niladri das
f8a862738d
[cli-ui] Keep header ASCII art colored on non-gradient terminals ( #13373 ) ( #13374 )
...
Co-authored-by: Niladri Das <bniladridas@users.noreply.github.com >
2025-11-19 22:04:58 +00:00
joshualitt
25f8452127
feat(core, cli): Bump genai version to 1.30.0 ( #13435 )
2025-11-19 20:52:27 +00:00
Tommaso Sciortino
84573992b4
Restore keyboard mode when exiting the editor ( #13350 )
2025-11-19 19:37:30 +00:00
Holt Skinner
3f8d636501
docs: Add Code Wiki link to README ( #13289 )
2025-11-19 18:15:41 +00:00
Ben Brandt
300205b07c
fix(zed-integration): Correctly handle cancellation errors ( #13399 )
2025-11-19 17:25:52 +00:00
bl-ue
e1c711f5ba
feat(sessions): record interactive-only errors and warnings to chat recording JSON files ( #13300 )
2025-11-19 16:32:13 +00:00
Jainam M
282654e7b8
Capturing github action workflow name if present and send it to clearcut ( #13132 )
2025-11-19 16:30:03 +00:00
bl-ue
0d89ac7406
Followup from #10719 ( #13243 )
2025-11-19 16:22:17 +00:00
davidmcwherter
5c47592159
Refactor createTransport to duplicate less code ( #13010 )
...
Co-authored-by: David McWherter <davidmcw@gmail.com >
2025-11-19 15:23:01 +00:00
Jack Wotherspoon
61f0f3c243
fix: allow MCP prompts with spaces in name ( #12910 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-11-19 14:44:30 +00:00
avilladsen
1e8ae5b9d7
fix(cli): fix crash on startup in NO_COLOR mode ( #13343 ) due to ungua… ( #13352 )
2025-11-19 04:18:18 +00:00
Jacob Richman
e8d0e0d342
bug(ui) showLineNumbers had the wrong default value. ( #13356 )
2025-11-19 03:33:40 +00:00
Sandy Tao
b644f037a3
fix(ui): Clear input prompt on Escape key press ( #13335 )
2025-11-19 03:11:36 +00:00
Gal Zahavi
c5498bbb07
Improve pty resize error handling for Windows ( #13353 )
2025-11-19 02:08:01 +00:00
Tommaso Sciortino
90c764ce13
Support 3-parameter modifyOtherKeys sequences ( #13342 )
2025-11-19 00:40:40 +00:00
joshualitt
10003a6490
fix(core): Ensure read_many_files tool is available to zed. ( #13338 )
2025-11-18 22:58:12 +00:00
Tommaso Sciortino
b916d79fe2
Improve keyboard code parsing ( #13307 )
2025-11-18 19:49:08 +00:00
Gray Mackall
36b0a86c69
Fix links in Gemini 3 Pro documentation ( #13312 )
2025-11-18 19:39:51 +00:00
Jenna Inouye
7cc5234b9c
Docs: Access clarification. ( #13304 )
2025-11-18 19:31:51 +00:00
Shreya Keshive
379f09d92f
chore(release): v0.18.0-nightly.20251118.86828bb56 ( #13309 )
2025-11-18 19:04:29 +00:00
Aswin Ashok
fd9d3e19a9
Remove obsolete reference to "help wanted" label in CONTRIBUTING.md ( #13291 )
2025-11-18 18:17:07 +00:00
Shreya Keshive
86828bb561
feat: launch Gemini 3 in Gemini CLI 🚀 🚀 🚀 (in main) ( #13287 )
...
Co-authored-by: Adam Weidman <65992621+adamfweidman@users.noreply.github.com >
Co-authored-by: Sehoon Shon <sshon@google.com >
Co-authored-by: Adib234 <30782825+Adib234@users.noreply.github.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
Co-authored-by: Aishanee Shah <aishaneeshah@gmail.com >
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: joshualitt <joshualitt@google.com >
Co-authored-by: Jenna Inouye <jinouye@google.com >
2025-11-18 09:01:16 -08:00
Jenna Inouye
78075c8a37
Docs: Add changelog for v.0.15.0 ( #13276 )
2025-11-18 16:09:55 +00:00
JAYADITYA
7d33baabe4
feat :uninstall multiple extensions ( #13016 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-18 15:20:25 +00:00
JAYADITYA
ecf8fba10e
feat: Show tip on first request and refactor phrases ( #12952 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-11-18 07:02:31 +00:00
Tommaso Sciortino
2f8b68dffd
update glob version ( #13242 )
2025-11-18 00:31:17 +00:00
Tommaso Sciortino
8877c85278
Right click to paste in Alternate Buffer mode ( #13234 )
2025-11-17 23:48:33 +00:00
Riddhi Dutta
1d1bdc57ce
Refactored 4 files of tools package ( #13235 )
...
Co-authored-by: riddhi <duttariddhi@google.com >
2025-11-17 19:31:29 +00:00
Tommaso Sciortino
ba88707b1e
Fix test to not leave terminal in mouse mode ( #13232 )
2025-11-17 17:47:08 +00:00
cornmander
8c78fe4f10
rework MCP tool discovery and invocation ( #13160 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-17 17:03:48 +00:00
Riddhi Dutta
394a7ea019
Refactored 3 files of tools package ( #13231 )
...
Co-authored-by: riddhi <duttariddhi@google.com >
2025-11-17 16:54:09 +00:00
Jacob Richman
78a28bfc01
Fix: Animated scrollbar renders black in NO_COLOR mode ( #13188 )
2025-11-17 04:45:07 +00:00
gemini-cli-robot
cf8de02c68
chore/release: bump version to 0.17.0-nightly.20251116.e650a4ee5 ( #13154 )
2025-11-16 02:32:39 +00:00
Riddhi Dutta
e650a4ee59
Refactored core package ut ( #13139 )
...
Co-authored-by: riddhi <duttariddhi@google.com >
2025-11-15 17:23:21 +00:00
Samuel Soto
c6b6dcbe95
Docs: Clarify Project-Scoped Behavior of Chat Sub-commands ( #10458 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-15 15:50:30 +00:00
shrutip90
9786c4dcff
Check folder trust before allowing add directory ( #12652 )
2025-11-15 03:06:30 +00:00
Tommaso Sciortino
d03496b710
Increase paste timeout + add warning. ( #13099 )
2025-11-15 00:02:28 +00:00
Jacob Richman
ab6b2293e1
Only warn about mouse movement when the mouse is down. ( #13101 )
2025-11-14 22:55:05 +00:00
shrutip90
472e775a13
feat: Update permissions command to support modifying trust for other… ( #11642 )
2025-11-14 22:41:53 +00:00
Adib234
ce56b4ee1b
Change flag name to flag id for existing flags ( #13073 )
2025-11-14 21:34:54 +00:00
Jacob Richman
ba15eeb55f
bug(ui) make it clear when users need to enter selection mode and fix clear issue. ( #13083 )
2025-11-14 20:02:15 +00:00
shrutip90
d683e1c0db
fix(cli): Exit CLI when trust save unsuccessful during launch ( #11968 )
2025-11-14 19:56:39 +00:00
Tommaso Sciortino
6d83d3440c
Change default compress threshold to 0.7 for api key users ( #13079 )
2025-11-14 17:13:59 +00:00
Caroline Rose
9d74b7c0e8
feat(auth): Add option for metadata server application default credentials without project override ( #12948 )
2025-11-14 16:39:11 +00:00
Stone Sun
016b5b42e2
docs: remove references to deprecated --checkpointing flag ( #12477 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-11-14 16:19:12 +00:00
YongSung Na
a591505bf9
docs: remove references to deprecated flags (--checkpointing, --sandbox-image) ( #12578 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-11-14 15:28:14 +00:00
Megha Bansal
638dd2f6c0
Improve test code coverage for cli/command/extensions package ( #12994 )
2025-11-14 05:28:01 +00:00
Tommaso Sciortino
555e25e633
slightly adjust model message formatting ( #13043 )
2025-11-14 05:13:39 +00:00
gemini-cli-robot
3174573b64
chore/release: bump version to 0.17.0-nightly.20251114.0fcbff506 ( #13040 )
2025-11-14 04:07:27 +00:00
Tommaso Sciortino
2c5e09e1c3
Update comment and undo unnecessary logging ( #13025 )
2025-11-14 03:11:13 +00:00
Tommaso Sciortino
ab11b2c27f
Show model in history ( #13034 )
2025-11-14 03:11:06 +00:00
gemini-cli-robot
0fcbff506e
chore(release): bump version to 0.17.0-nightly.20251113.48e3932f6 ( #13027 )
2025-11-14 00:19:33 +00:00
joshualitt
48e3932f65
feat(core, cli): Add auth type to history checkpoint. ( #13023 )
2025-11-13 23:13:39 +00:00
Jacob Richman
d304216300
Polish sticky headers ( #13024 )
2025-11-13 22:33:48 +00:00
Jacob Richman
2b8adf8cf3
jacob314/drag scrollbar ( #12998 )
2025-11-13 22:13:18 +00:00
Jacob Richman
fb99b95372
Switch back to truncating headers. Unfortunately we have too many headers that are 10+ lines for no good reason so we need to add back this truncation until we fix them. ( #13018 )
2025-11-13 19:38:19 +00:00
Jacob Richman
60fe5acd60
feat(ui) support animated page up/down, fn-up/down and end+home ( #13012 )
2025-11-13 19:16:23 +00:00
Jacob Richman
eb9ff72b5a
Support incremental update experiment flag. ( #12926 )
2025-11-13 17:45:03 +00:00
Tommaso Sciortino
fb03242950
Improve MALFORMED_FUNCTION_CALL handling ( #12965 )
2025-11-13 16:07:49 +00:00
Adam Weidman
54c1e13853
chore: update package lock ( #12974 )
2025-11-13 14:50:14 +00:00
N. Taylor Mullen
102905bbc7
feat: normalize verticality ( #12991 )
2025-11-13 08:20:14 +00:00
N. Taylor Mullen
fe1bfc64f7
feat: disengage surface adhesion protocols ( #12989 )
2025-11-13 07:36:18 +00:00
Jacob Richman
0f9ec2735c
feat(ui) Make useAlternateBuffer the default ( #12976 )
2025-11-13 05:17:46 +00:00
Abhi
13d8d9477c
fix(editor): ensure preferred editor setting updates immediately ( #12981 )
2025-11-13 04:02:53 +00:00
Tommaso Sciortino
43916b98aa
Don't clear buffers on cleanup. ( #12979 )
2025-11-13 03:20:21 +00:00
Abhi
5d27a62bec
refactor: remove read-many-files tool from agent ( #12796 )
2025-11-13 02:56:37 +00:00
gemini-cli-robot
a05e0ea3a4
chore/release: bump version to 0.16.0-nightly.20251113.ad1f0d99 ( #12977 )
2025-11-13 02:03:52 +00:00
anthony bushong
2987b473dd
feat(core): set default chat base model configs ( #12951 )
2025-11-13 01:01:31 +00:00
Jacob Richman
ee7065f665
Sticky headers where the top rounded border is sticky. ( #12971 )
2025-11-13 01:01:16 +00:00
anthony bushong
d26b828ab3
feat(core): update default model config in client.ts ( #12960 )
2025-11-13 00:52:04 +00:00
Sehoon Shon
a810ca80bc
Allow users to reset to auto when it's in fallback mode ( #12623 )
2025-11-13 00:30:43 +00:00
Allen Hutchison
ad1f0d995d
refactor: move toml-loader.test.ts to use real filesystem ( #12969 )
2025-11-12 23:17:38 +00:00
Allen Hutchison
1ed163a666
feat(safety): Introduce safety checker framework ( #12504 )
2025-11-12 21:18:34 +00:00
cornmander
aa9922bc98
feat: autogenerate keyboard shortcut docs ( #12944 )
2025-11-12 21:07:14 +00:00
Tommaso Sciortino
0075b4f118
Always show the tool internal name in /tools ( #12964 )
2025-11-12 20:45:18 +00:00
Jacob Richman
4d85ce40be
Turns out the node console.clear() clears the buffer. ( #12959 )
2025-11-12 20:15:25 +00:00
anj-s
7ec78452ec
Enable write_todo tool and fix output function schema ( #12905 )
2025-11-12 18:18:15 +00:00
Abhi
540f60696a
fix(docs): Release version for read many files removal ( #12949 )
2025-11-12 18:05:16 +00:00
Shardul Natu
1ffb9c4188
fix(FileCommandLoader): Remove error logs if the operation was aborted ( #12927 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-12 16:33:28 +00:00
Shreya Keshive
570ccc7da0
feat: Update client metadata for consistency ( #12947 )
2025-11-12 16:11:48 +00:00
Edilmo Palencia
1c8fe92d0f
feat(hooks): Hook Result Aggregation ( #9095 )
2025-11-12 07:14:09 +00:00
gemini-cli-robot
396b427cc9
chore/release: bump version to 0.16.0-nightly.20251112.c961f274 ( #12923 )
2025-11-12 06:13:46 +00:00
gemini-cli-robot
c961f27401
chore(release): bump version to 0.16.0-nightly.20251112.2abc288c ( #12917 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-11-12 05:14:20 +00:00
Abhi
1c87e7cd25
feat: enhance RipGrep tool with advanced search options and improved defaults ( #12677 )
2025-11-12 05:11:19 +00:00
Sandy Tao
408b885689
feat(core): enhance loop detection with 2-stage check ( #12902 )
2025-11-12 04:49:00 +00:00
N. Taylor Mullen
cab9b1f370
Fix extensions disable/enable commands not awaiting handler ( #12915 )
2025-11-12 04:31:46 +00:00
Tommaso Sciortino
d3cf28eb4b
Use PascalCase for all tool display names ( #12918 )
2025-11-12 04:28:13 +00:00
Megha Bansal
11a0a9b911
Increase code coverage for core packages ( #12872 )
2025-11-12 04:06:43 +00:00
Tommaso Sciortino
e8038c727f
fix test to use faketimer ( #12913 )
2025-11-12 03:03:10 +00:00
Jacob Richman
2abc288c52
Make useFullWidth the default. ( #12911 )
2025-11-12 00:14:08 +00:00
Tommaso Sciortino
2e2b066713
Move temp dir from system prompt to first user msg ( #12895 )
2025-11-11 21:22:22 +00:00
Abhi
c1076512d1
Deprecate read_many_files tool ( #12861 )
2025-11-11 20:35:20 +00:00
Abhi
3154c06dc3
fix(ci): pre-download ripgrep in global setup to prevent race conditions ( #12886 )
2025-11-11 18:50:17 +00:00
kevinjwang1
b248ec6dfb
Add implementation for setting to disable Github extensions ( #12838 )
2025-11-11 18:37:01 +00:00
Shardul Natu
cc2c48d59e
fix(extension-uninstallation): Fix uninstalling extensions named differently than their directory name ( #12852 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-11-11 18:19:06 +00:00
Tommaso Sciortino
ac733d40b3
Add expected_replacements to smart-edit tool ( #12885 )
2025-11-11 18:17:45 +00:00
joshualitt
a4415f15d3
feat(core): Migrate generateContent to model configs. ( #12834 )
2025-11-11 16:10:50 +00:00
Jacob Richman
cbbf565121
Support ink scrolling final pr ( #12567 )
2025-11-11 15:50:11 +00:00
N. Taylor Mullen
7bb13d1c41
telemetry: track interactive session state ( #12856 )
...
Co-authored-by: owenofbrien <86964623+owenofbrien@users.noreply.github.com >
2025-11-11 10:03:32 +00:00
gemini-cli-robot
e79f62694a
chore/release: bump version to 0.15.0-nightly.20251111.51f952e7 ( #12860 )
2025-11-11 07:04:14 +00:00
cornmander
4fbeac8b32
Add experiment logging and add caching experiment ( #12862 )
2025-11-11 04:15:38 +00:00
Megha Bansal
22b0550520
Issue#9751 - fix the gemini crash on startup in tmux environments ( #11637 )
2025-11-11 03:57:43 +00:00
Mark Thompson
5ba6bc7139
fix(prompt): Add Angular support to base prompt ( #10252 )
2025-11-11 03:42:22 +00:00
bl-ue
6893d27441
feat(sessions): add resuming to geminiChat and add CLI flags for session management ( #10719 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-11 01:31:00 +00:00
Abhi
51f952e700
fix(core): use ripgrep --json output for robust cross-platform parsing ( #12853 )
2025-11-11 00:01:01 +00:00
davidmcwherter
4af4f8644d
Fixes #12841 : Plumb headers through google_credentials transport crea… ( #12849 )
...
Co-authored-by: David McWherter <davidmcw@gmail.com >
2025-11-10 22:06:31 +00:00
cornmander
37ca643a64
Fix external editor diff drift ( #12846 )
2025-11-10 21:19:32 +00:00
Jacob Richman
8f4b1b582d
Switch to alternate buffer mode before rendering Ink. ( #12833 )
2025-11-10 20:30:38 +00:00
Tommaso Sciortino
3c9052a751
Stop printing garbage characters for F1,F2.. keys ( #12835 )
2025-11-10 18:56:05 +00:00
cornmander
2136598e87
Harden modifiable tool temp workspace ( #12837 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-10 18:48:44 +00:00
owenofbrien
3f90001f83
Added active experiment ids to Clearcut log events ( #12745 )
2025-11-10 17:21:49 +00:00
Edilmo Palencia
4ef4bd6f09
feat(hooks): Hook Execution Engine ( #9092 )
2025-11-10 16:08:21 +00:00
Adib234
331dbd5638
Preserve tabs on paste ( #12735 )
2025-11-10 15:37:43 +00:00
Hriday
4ab94dec5e
test: fix flaky file system integration test ( #12724 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
2025-11-10 06:20:30 +00:00
Tommaso Sciortino
c0b766ad74
Simplify switch case ( #12798 )
2025-11-09 22:36:13 +00:00
Tommaso Sciortino
fd59d9dd92
Fix shift+return in vscode. ( #12799 )
2025-11-09 22:08:29 +00:00
Tommaso Sciortino
9e4ae214a8
Revamp KeypressContext ( #12746 )
2025-11-09 16:45:04 +00:00
Jacob Richman
f649948713
Branch batch scroll ( #12680 )
2025-11-09 00:09:22 +00:00
christine betts
43b8731241
Fix extensions logging race condition and slash command logging ( #12732 )
2025-11-08 15:29:36 +00:00
Jacob MacDonald
9116cf2bab
[cleanup] rename info message property 'icon' to 'prefix' ( #12743 )
2025-11-08 00:07:33 +00:00
Jacob MacDonald
bafbcbbe8b
[feat]: Add /extensions restart command ( #12739 )
2025-11-07 23:17:23 +00:00
joshualitt
fdb6088603
feat(core): Migrate generateJson to resolved model configs. ( #12626 )
2025-11-07 22:18:45 +00:00
Sandy Tao
f3a8b73717
fix(ci): ensure correct version calculation and git ls-remote filtering in release workflow ( #12683 )
2025-11-07 21:06:55 +00:00
Jacob MacDonald
c883403147
[feat] Extension Reloading - respect updates to exclude tools ( #12728 )
2025-11-07 20:18:35 +00:00
joshualitt
2077521f84
Trivial yaml fixes for linter. ( #12725 )
2025-11-07 18:37:36 +00:00
Shreya Keshive
6d90b7ddb3
feat(issue-templates): Refine issue template labels and types
...
Updated and to use a field instead of and labels.
Modified to use instead of and removed .
This change streamlines issue categorization and aligns with updated labeling conventions.
2025-11-07 12:46:18 -05:00
Jacob Richman
6cf1c98524
Update ink version ( #12720 )
2025-11-07 17:32:46 +00:00
Allen Hutchison
5ff7cdc9e8
test(policy): add extreme priority value tests (follow-up to #12617 ) ( #12679 )
2025-11-07 17:28:05 +00:00
Jacob MacDonald
47603ef8e1
Reload gemini memory on extension load/unload + memory refresh refactor ( #12651 )
2025-11-07 17:07:25 +00:00
Lê Nam Khánh
ef4030331a
docs: fix typos in some files ( #12706 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-07 15:51:56 +00:00
Haroon Chaudhry
a0a6828265
fix: Downloading release assets from private GitHub repository #11928 ( #12682 )
2025-11-07 15:50:44 +00:00
cocosheng-g
69339f08a6
Adds listCommands endpoint to a2a server ( #12604 )
...
Co-authored-by: Juanda <jdgarrido@google.com >
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2025-11-07 15:10:29 +00:00
gemini-cli-robot
cd27cae848
chore(release): bump version to 0.15.0-nightly.20251107.b8eeb553 ( #12687 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-11-07 04:29:38 +00:00
Tommaso Sciortino
475e92da5d
Fix test in windows ( #12681 )
2025-11-07 04:01:30 +00:00
Shreya Keshive
054497c7a6
fix(core): Handle null command in VSCode IDE detection ( #12689 )
2025-11-07 03:01:53 +00:00
Allen Hutchison
c81a02f8d2
fix: integrate DiscoveredTool with Policy Engine ( #12646 )
2025-11-06 23:51:16 +00:00
Richie Foreman
445a5eac33
fix(patch workflow): Ensure that the environment is listed on patch comments ( #12538 )
2025-11-06 23:30:20 +00:00
Tommaso Sciortino
f05d937f39
Use consistent param names ( #12517 )
2025-11-06 23:03:52 +00:00
HugoMurillo
5f1208ad81
chore: disable flaky test ( #12670 )
2025-11-06 22:43:55 +00:00
Adam Weidman
1e42fdf6c2
fix(cli): handle flash model errors gracefully ( #12667 )
2025-11-06 22:13:38 +00:00
Jenna Inouye
98055d0989
Docs: Add /model documentation ( #12654 )
2025-11-06 21:12:52 +00:00
christine betts
c13ec85d7d
Update keychain storage name to be more user-friendly ( #12644 )
2025-11-06 20:55:20 +00:00
Sandy Tao
36feb73bfd
Revert "Enable WriteTodos tool by default ( #12500 )" ( #12658 )
2025-11-06 20:21:53 +00:00
HugoMurillo
77614eff5b
fix( #11707 ): should replace multiple instances of a string test ( #12647 )
2025-11-06 19:12:06 +00:00
Sehoon Shon
31b34b11ab
Let users know when falling back to flash, and update the error messa… ( #12640 )
2025-11-06 18:43:21 +00:00
Jainam M
c585470a71
refactor(cli): consolidate repetitive tests in InputPrompt using it.each ( #12524 )
2025-11-06 17:41:50 +00:00
Gal Zahavi
9ba1cd0336
feat(shell): include cwd in shell command description ( #12558 )
2025-11-06 16:51:07 +00:00
Allen Hutchison
5f6453a1e0
feat(policy): Add comprehensive priority range validation tests ( #12617 )
2025-11-06 07:19:05 +00:00
joshualitt
956ab94452
feat(core): Add ModelConfigService. ( #12556 )
2025-11-06 01:18:42 +00:00
Allen Hutchison
0f5dd2229c
chore: remove unused CLI policy TOML files ( #12620 )
2025-11-06 01:17:44 +00:00
Jacob Richman
224a33db2e
Improve tracking of animated components. ( #12618 )
2025-11-06 00:20:04 +00:00
Jenna Inouye
fb0768f007
Docs: Added newest changelog: v0.12.0 ( #12611 )
2025-11-05 23:44:24 +00:00
Tommaso Sciortino
9787108532
List tools in a consistent order. ( #12615 )
2025-11-05 23:38:44 +00:00
Andrew Riggs
44b8c62db9
fix(core) Path reader method readPathFromWorkspace does not respect git/gemini ignore config. ( #10073 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-11-05 21:40:54 +00:00
Silvio Junior
1d2f90c7e7
Add compression mechanism to subagent ( #12506 )
2025-11-05 21:15:28 +00:00
Adam Weidman
c951f9fdcd
fix: add line breaks in quota/capacity msgs ( #12603 )
2025-11-05 21:12:06 +00:00
Jacob MacDonald
fa93b56243
[Extension Reloading]: Update custom commands, add enable/disable command ( #12547 )
2025-11-05 19:36:07 +00:00
Tommaso Sciortino
ca6cfaaf4e
Update auto compression message. ( #12605 )
2025-11-05 19:08:57 +00:00
Shreya Keshive
400da30a8d
fix(triage-workflow): Pass environment variables directly into prompt ( #12602 )
2025-11-05 18:33:33 +00:00
Allen Hutchison
f5bd474e51
fix(core): prevent server name spoofing in policy engine ( #12511 )
2025-11-05 18:10:23 +00:00
Bryan Morgan
16113647de
Fix/windows pty crash ( #12587 )
...
Co-authored-by: LayorX <yor31117@gmail.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-05 16:53:03 +00:00
Gaurav
f51d74586c
refactor: parse string for retryInfo ( #12586 )
2025-11-05 16:42:58 +00:00
Shreya Keshive
c743631148
chore(release): bump version to 0.14.0-nightly.20251104.da3da198 ( #12564 )
2025-11-05 16:09:33 +00:00
shishu314
b445db3d46
fix(infra) - Make list dir less flaky ( #12554 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-11-05 16:00:06 +00:00
Adam Weidman
21dd9bbf7d
fix: allow user to set pro model even in fallback ( #12566 )
2025-11-05 14:38:45 +00:00
Jacob Richman
3937461272
Scrollable support ( #12544 )
2025-11-05 00:21:00 +00:00
Shreya Keshive
da3da19844
feat(core): Integrate remote experiments configuration ( #12539 )
2025-11-04 23:09:53 +00:00
Silvio Junior
53c7646ed7
enable codebase investigator by default for preview ( #12555 )
2025-11-04 22:30:01 +00:00
Sehoon Shon
b6524e410a
migrate console.error to coreEvents/debugger for sandbox, logger, chatRecordingService ( #12253 )
2025-11-04 21:02:31 +00:00
shishu314
75c2769b32
Ss/fix ext ( #12540 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-11-04 20:01:30 +00:00
Tommaso Sciortino
f796650122
Fix shift+tab keybinding when not in kitty mode ( #12552 )
2025-11-04 19:45:22 +00:00
christine betts
460c3debf5
Fix flicker in screen reader nudge ( #12541 )
2025-11-04 16:57:15 +00:00
cornmander
b8b6620365
Tighten bash shell option handling ( #12532 )
2025-11-04 16:11:29 +00:00
shishu314
96d7eb2966
fix(infra) - Use canned response for flicker test ( #12377 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-11-04 16:08:46 +00:00
Jacob MacDonald
da4fa5ad75
Extensions MCP refactor ( #12413 )
2025-11-04 15:51:18 +00:00
anj-s
2b77c1ded4
SI prompt nudge for the todo tool ( #12159 )
2025-11-04 14:25:15 +00:00
Jainam M
6ab1b239ca
refactor(core): Refactored and removed redundant test lines in telemetry ( #12356 )
2025-11-04 08:42:31 +00:00
Chris Coutinho
ab73051298
fix(mcp): replace hardcoded port 7777 with dynamic port allocation for OAuth ( #12520 )
2025-11-04 07:16:56 +00:00
Edilmo Palencia
cb2880cb93
feat(hooks): Hook Execution Planning and Matching ( #9090 )
2025-11-04 06:25:43 +00:00
Tommaso Sciortino
b5315bfc20
Fix alt+left on ghostty ( #12503 )
2025-11-04 04:30:42 +00:00
Edilmo Palencia
b259153403
feat(hooks): Hook Input/Output Contracts ( #9080 )
2025-11-04 02:47:23 +00:00
Sandy Tao
f0c3c81e94
fix(core): Improve loop detection for longer repeating patterns ( #12505 )
2025-11-04 02:06:22 +00:00
christine betts
fc42c4613f
Only show screen reader notice once ( #12247 )
2025-11-04 02:04:48 +00:00
cornmander
bd06e5b161
chore: bump vite to 7.1.12 ( #12512 )
2025-11-04 01:21:18 +00:00
Jacob Richman
ad33c22374
Modify navigation and completion keyboard shortcuts to not use scroll. ( #12502 )
2025-11-04 00:22:04 +00:00
anthony bushong
f3759381b1
feat(core): add timeout to llm edit fix ( #12393 )
2025-11-04 00:04:51 +00:00
Edilmo Palencia
80673a0c0c
feat(hooks): Hook Type Decoupling and Translation ( #9078 )
2025-11-03 23:56:53 +00:00
Jacob Richman
1671bf77fb
Alt buffer default ( #12507 )
2025-11-03 23:48:24 +00:00
Allen Hutchison
ffc5e4d048
Refactor PolicyEngine to Core Package ( #12325 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-11-03 23:41:00 +00:00
anj-s
60d2c2cc90
Enable WriteTodos tool by default ( #12500 )
2025-11-03 23:40:20 +00:00
Gal Zahavi
2144d25885
fix(auth): Return empty map if token file does not exits, and refacto… ( #12332 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-11-03 23:07:22 +00:00
Silvio Junior
7a515339ea
Log recovery events (nudges) that happens inside the subagent ( #12408 )
2025-11-03 22:53:43 +00:00
Shreya Keshive
be1dc13bb1
feat(core): Add support for listing experiments ( #12495 )
2025-11-03 21:51:22 +00:00
anj-s
1c044ba8af
(fix): Respect ctrl+c signal for aborting execution in NonInteractive mode ( #11478 )
2025-11-03 21:49:01 +00:00
Jacob Richman
4fc9b1cde2
alternate buffer support ( #12471 )
2025-11-03 21:41:58 +00:00
Silvio Junior
60973aacd9
Grants subagent a recovery turn for when it hits TIMEOUT, MAX_TURNS or NO_TOOL_CALL failures. ( #12344 )
2025-11-03 21:22:12 +00:00
Silvio Junior
1c18552426
Enforce timeout for subagents ( #12232 )
2025-11-03 20:33:04 +00:00
Shehab
c4377c1b1a
fix(settings): persist restart-required changes when exiting with ESC ( #12443 )
2025-11-03 20:04:53 +00:00
Abhi
265f24e5d7
fix(ui): ensure model changes update the UI immediately ( #12412 )
2025-11-03 19:59:51 +00:00
Abhi
59e0b10e6c
Cap Thinking Budget to prevent runaway thought loops ( #12416 )
2025-11-03 18:39:06 +00:00
Allen Hutchison
9d642f3bb1
refactor(core): improve error handling for setGlobalProxy ( #12437 )
2025-11-03 18:13:52 +00:00
Riddhi Dutta
19ea68b838
Refactoring packages/cli/src/ui tests ( #12482 )
...
Co-authored-by: riddhi <duttariddhi@google.com >
2025-11-03 18:10:57 +00:00
anj-s
93f14ce626
refactor: split core system prompt into multiple parts ( #12461 )
2025-11-03 17:08:56 +00:00
cornmander
1ef34261e0
chore: bump tar to 7.5.2 ( #12466 )
2025-11-03 07:36:35 +00:00
cornmander
5062fadf87
chore: autogenerate settings documentation ( #12451 )
2025-11-03 01:42:49 +00:00
cornmander
462c7d3502
feat(ui): add response semantic color ( #12450 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
Co-authored-by: shambhu-hegde <143840542+shambhu-hegde@users.noreply.github.com >
2025-11-03 00:21:26 +00:00
Chris Coutinho
9187f6f6d1
fix: preserve path components in OAuth issuer URLs ( #12448 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Gregory Shikhman <cornmander@cornmander.com >
2025-11-02 21:19:46 +00:00
Edilmo Palencia
c0495ce2f9
feat(hooks): Hook Configuration Schema and Types ( #9074 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-11-02 19:49:16 +00:00
Allen Hutchison
02518d2927
docs: update command-line flag documentation ( #12452 )
2025-11-02 17:59:03 +00:00
Jacob Richman
d7243fb81f
Add DarkGray to the ColorTheme. ( #12420 )
2025-11-01 23:50:51 +00:00
Eric Rahm
e3262f8766
fix(core): combine .gitignore and .geminiignore logic for correct precedence ( #11587 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-11-01 17:06:34 +00:00
Tommaso Sciortino
caf2ca1438
Add kitty support for function keys. ( #12415 )
2025-10-31 23:19:55 +00:00
Jacob Richman
f8ce3585eb
Jacob314/jrichman ink ( #12414 )
2025-10-31 23:14:12 +00:00
Jacob Richman
61207fc2cb
further incremental steps. Update the string width version to align with upstream ink ( #12411 )
2025-10-31 22:01:04 +00:00
Shreya Keshive
b3cc397a31
feat(triage): overhaul automated issue triage workflow ( #12365 )
2025-10-31 21:21:05 +00:00
Shreya Keshive
f9df415392
feat(core): Introduce release channel detection ( #12257 )
...
Co-authored-by: shishu314 <shishu_1998@yahoo.com >
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: Shardul Natu <43422294+kiranani@users.noreply.github.com >
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-31 21:18:39 +00:00
Abhi
fd2cbacae9
fix(core): prevent model router from overriding explicit model choice ( #12399 )
2025-10-31 21:02:22 +00:00
Jacob Richman
8b93a5f27d
I think the package lock was added in error to .gitignore. ( #12405 )
2025-10-31 20:29:42 +00:00
Jenna Inouye
9478bca67d
Adding the Policy Engine docs to indexes. ( #12404 )
2025-10-31 20:23:56 +00:00
Jenna Inouye
4b53b3a6e6
Update telemetry.md to remove references to flags. ( #12397 )
2025-10-31 20:23:45 +00:00
Jacob Richman
d72f8453cb
Remove unused jsdom dep ( #12394 )
2025-10-31 20:03:57 +00:00
shishu314
6ee7165e39
feat(infra) - Add logging for slow rendering ( #11147 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-31 19:51:05 +00:00
kevinjwang1
adddafe6d0
Handle untrusted folders on extension install and link ( #12322 )
...
Co-authored-by: Jacob MacDonald <jakemac@google.com >
2025-10-31 19:17:01 +00:00
shishu314
35f091bb01
feat(telemetry) - Add metric for slow rendering ( #12391 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-31 18:57:47 +00:00
Sehoon Shon
e9c7a80b12
migrate console.error to coreEvents for mcp-client-manager and google-auth-provider ( #12342 )
2025-10-31 18:52:56 +00:00
Sehoon Shon
ab013fb7e9
migrating console.error to debugger for installationManager, oauth-provider, modifiable-tool ( #12279 )
2025-10-31 18:17:51 +00:00
Allen Hutchison
c158923b27
docs: Add policy engine documentation and update sidebar ( #12240 )
2025-10-31 18:11:19 +00:00
Gaurav
31c5761e06
refactor: simplify daily quota error messages ( #12386 )
2025-10-31 17:49:32 +00:00
Jacob Richman
f4ee245bf9
Switch to ink@. version 6.4.0 ( #12381 )
2025-10-31 16:40:51 +00:00
Tommaso Sciortino
d13482e802
Mark model.compressionThreshold as requiring a restart ( #12378 )
2025-10-31 16:06:28 +00:00
Sandy Tao
11e1e98022
fix(core): ensure loop detection respects session disable flag ( #12347 )
2025-10-31 16:06:10 +00:00
Hriday
b31f6804fe
chore: migrate console.error to debugLogger in usePromptCompletion ( #12208 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
2025-10-31 15:39:03 +00:00
Jerop Kipruto
01ad74a870
docs(cli): user.email attribute is only available for Google auth ( #12372 )
2025-10-31 15:13:38 +00:00
Jacob Richman
f875911af7
Remove testing-library/react dep now that it is unused. ( #12355 )
2025-10-31 14:57:29 +00:00
Richard Michael
f8ff921c42
Update mcp-server.md ( #12310 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-10-31 14:46:51 +00:00
Jacob Richman
ab8c24f5ea
Fixes for Ink 6.4.0 ( #12352 )
2025-10-31 14:43:12 +00:00
Jerop Kipruto
9da3cb7e43
fix(core): remove duplicate session_id in GCP log exporter ( #12370 )
2025-10-31 14:42:13 +00:00
Jack Wotherspoon
6f69cdcc31
chore: make clear that --model is for choosing model on startup ( #12367 )
2025-10-31 14:01:56 +00:00
Shardul Natu
236334d015
feat(telemetry): Add extension name to ToolCallEvent telemetry ( #12343 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-10-31 13:50:22 +00:00
Jainam M
12472ce9b2
refactor(core): Refactored and removed redundant test lines in teleme… ( #12284 )
2025-10-31 07:33:33 +00:00
matt korwel
e762cda55d
fix: Address silent failure in release-patch-1-create-pr workflow ( #12339 )
2025-10-30 20:09:22 -07:00
matt korwel
f566df91c8
feat: add dynamic run-names to patch release workflows ( #12336 )
2025-10-31 02:33:27 +00:00
gemini-cli-robot
db37c715c0
chore/release: bump version to 0.13.0-nightly.20251031.c89bc30d ( #12330 )
2025-10-31 01:55:09 +00:00
Jacob Richman
c89bc30d66
Code review script to catch common package/cli regressions ( #12316 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-31 00:04:52 +00:00
Abhi
59e00eeda6
Remove context percentage in footer by default ( #12326 )
2025-10-30 23:18:25 +00:00
Tommaso Sciortino
3332703fca
Make compression threshold editable in the UI. ( #12317 )
2025-10-30 23:03:58 +00:00
Victor May
643f2c0958
Enable model routing for all users ( #12300 )
2025-10-30 22:29:24 +00:00
Hyang-Ah Hana Kim
c6a7107f78
fixing minor formatting issues in quota-and-pricing.md ( #11340 )
2025-10-30 21:46:23 +00:00
Sandy Tao
322feaafa6
refactor(core): decouple GeminiChat from uiTelemetryService via Usage events ( #12196 )
2025-10-30 21:05:38 +00:00
Tommaso Sciortino
68afb7200e
Change default compression threshold ( #12306 )
2025-10-30 20:46:41 +00:00
matt korwel
b382ae6803
feat: Prevent self-imports and fix build loop ( #12309 )
2025-10-30 20:15:49 +00:00
Jerop Kipruto
135d981e3c
Create line change metrics ( #12299 )
2025-10-30 18:55:47 +00:00
Jacob Richman
54fa26ef0e
Fix tests to wrap all calls changing the UI with act. ( #12268 )
2025-10-30 18:50:26 +00:00
Jacob MacDonald
cc081337b7
Initial support for reloading extensions in the CLI - mcp servers only ( #12239 )
2025-10-30 18:05:49 +00:00
shishu314
d4cad0cdcc
fix(test) - Make JSON output error test use canned response ( #12250 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-30 17:25:01 +00:00
Pascal Birchler
b8969cceff
fix(docs): remove incorrect extension install method ( #11194 )
2025-10-30 17:24:48 +00:00
kevinjwang1
a3370ac86b
Add validate command ( #12186 )
2025-10-30 16:08:13 +00:00
Jacob MacDonald
7d03151cd5
fix output messages for install and link ( #12168 )
2025-10-30 15:32:33 +00:00
matt korwel
054b4307ed
Revert "fix(core): Add rootDir to tsconfig.json to resolve TS5055 error" ( #12293 )
2025-10-30 08:25:57 -07:00
Adib234
b8330b626e
Fix misreported number of lines being removed by model ( #12076 )
2025-10-30 14:29:39 +00:00
christine betts
2a3244b1bb
Log extension ID with tool call/slash command invocation ( #12254 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-30 13:47:36 +00:00
Jenna Inouye
4d2a2de557
Docs: add v.0.11.0 to changelog ( #12256 )
2025-10-30 13:26:07 +00:00
Riddhi Dutta
c583b510e0
Refactoring unit tests in packages/cli/src/ui ( #12251 )
...
Co-authored-by: riddhi <duttariddhi@google.com >
2025-10-30 07:18:45 +00:00
matt korwel
42c79c64d7
fix(core): Add rootDir to tsconfig.json to resolve TS5055 error ( #12274 )
2025-10-29 23:17:10 -07:00
Abhi
1d9e6870be
feat(core): Implement granular memory loaders for JIT architecture ( #12195 )
2025-10-30 04:09:12 +00:00
Hriday
167b6ff8a1
chore: migrate console.error to debugLogger in useSlashCompletion ( #12218 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
2025-10-30 03:59:15 +00:00
Jack Wotherspoon
77df6d48e2
docs: update keyboard shortcuts with missing shortcuts ( #12024 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: cornmander <shikhman@google.com >
2025-10-30 02:39:15 +00:00
Gal Zahavi
06035d5d43
feat(auth): improve API key authentication flow ( #11760 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-30 01:58:08 +00:00
Miguel Solorio
6c8a48db13
feat(ui): Fix Todo item text color not propagating for custom themes ( #12265 )
2025-10-29 23:39:31 +00:00
Sehoon Shon
523274dbf3
Standardize error logging with coreEvents.emitFeedback ( #12199 )
2025-10-29 22:27:17 +00:00
Shardul Natu
36207abec2
feat(telemetry): Add extensions to StartSessionEvent telemetry ( #12261 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-10-29 22:21:32 +00:00
shishu314
99f75f3218
Fix(noninteractive) - Add message when user uses deprecated flag ( #11682 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-29 21:54:40 +00:00
Tommaso Sciortino
82c10421a0
Fix alt key mappings for mac ( #12231 )
2025-10-29 21:32:02 +00:00
Miguel Solorio
2e003ad8cf
refactor(todo): improve performance and readability of todo component ( #12238 )
2025-10-29 21:19:44 +00:00
Tommaso Sciortino
42a265d290
Fix atprocessor test on windows ( #12252 )
2025-10-29 21:11:39 +00:00
Tommaso Sciortino
121732dde6
Hide collapsed Todo tray when they're all done. ( #12242 )
2025-10-29 20:41:20 +00:00
Shreya Keshive
3e9701861e
refactor(core): Move getPackageJson utility to core package ( #12224 )
2025-10-29 20:23:35 +00:00
Gal Zahavi
b31b786db7
refactor: Replace console.error with structured logging and feedback ( #12175 )
2025-10-29 20:20:11 +00:00
Shardul Natu
66e981ed1e
feat: Add auth_type to StartSessionEvent OTel logging ( #12034 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-29 19:28:28 +00:00
shishu314
c60d8ef5a8
fix(infra) - Unskip read many file test ( #12181 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-29 18:56:09 +00:00
shishu314
6e026bd950
fix(security) - Use emitFeedback instead of console error ( #11954 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-29 14:49:46 +00:00
gemini-cli-robot
372b588778
chore(release): bump version to 0.13.0-nightly.20251029.cca41edc ( #12191 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-10-28 21:53:10 -07:00
Tommaso Sciortino
5d87a7f9c7
Remove Todo Icon ( #12190 )
2025-10-29 03:48:38 +00:00
lifefloating
706834ecd3
fix: enhance path handling in handleAtCommand to support relative paths ( #9065 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-29 02:13:04 +00:00
Richie Foreman
cca41edc6e
feat(docs): Symlink CONTRIBUTING.md in the docs folder so that the site can pick it up. ( #12178 )
2025-10-28 23:24:04 +00:00
Victor May
601a639f95
Disable model routing for oauth users ( #11889 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-10-28 15:25:53 -07:00
Tommaso Sciortino
f6423ea45a
Remove obsolete snapshots ( #12180 )
2025-10-28 20:31:36 +00:00
Christie Warwick (Wilson)
70996bfdee
feat: Add Open Telemetric semantic standard compliant log ( #11975 )
2025-10-28 20:02:46 +00:00
Jacob MacDonald
44bdd3ad11
Record model responses with --record-responses (for use in testing) ( #11894 )
2025-10-28 19:13:45 +00:00
Tommaso Sciortino
ab1f195508
Change debug drawer keybinding to F12 ( #12171 )
2025-10-28 19:10:40 +00:00
hritan
39eb6ed9cc
chore: migrate console.error in workspaceContext ( #12167 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
2025-10-28 19:06:13 +00:00
hritan
e750da987d
chore: migrate console.error in useGeminiStream ( #12157 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
2025-10-28 19:05:48 +00:00
christine betts
7e987113a2
Add support for sensitive keychain-stored per-extension settings ( #11953 )
2025-10-28 18:48:50 +00:00
shishu314
7a238bd938
fix(infra) - Continue workflow when merge queue skipper fail ( #10509 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-10-28 18:30:05 +00:00
JAYADITYA
c2d60d61ac
feat: Add explore subcommand for extension ( #11846 )
...
Co-authored-by: christine betts <chrstn@uw.edu >
2025-10-28 18:16:26 +00:00
Jacob Richman
13aa0148e7
Migrate tests to use avoid jsdom ( #12118 )
2025-10-28 17:32:15 +00:00
Allen Hutchison
5d61adf804
feat: Add message bus setting guard for tool confirmation ( #12169 )
2025-10-28 17:18:34 +00:00
Allen Hutchison
4e6eef5882
refactor: Migrate console.error to debugLogger.warn in atCommandProcessor.ts ( #12134 )
2025-10-28 17:16:47 +00:00
Allen Hutchison
064edc52f5
feat(policy): Introduce config-based policy engine with TOML configuration ( #11992 )
2025-10-28 16:20:57 +00:00
Jacob MacDonald
1b302deeff
Add ExtensionLoader interface, use that on Config object ( #12116 )
2025-10-28 16:04:30 +00:00
Shreya Keshive
25f27509c0
revert nightly schedule ( #11653 )
2025-10-28 15:59:39 +00:00
Adam Weidman
d465a26e30
chore(console): change console errors in sa-impersontation ( #12165 )
2025-10-28 15:26:39 +00:00
Adam Weidman
034ca93907
Revert "feat(ID token support): Add ID token support for authenticating to MC…" ( #12162 )
2025-10-28 15:07:57 +00:00
Tekkali Rahul Lakshmi Subrahmanyam
cca5a12839
docs: update installation section in README ( #12035 )
2025-10-28 14:36:41 +00:00
Jainam M
ecf0a24873
refactor(core): Parameterize tests in glob.test.ts ( #12061 )
2025-10-28 14:32:55 +00:00
Pavel Jbanov
cb208f53d8
Added a a script to setup and run genkit telemetry and dev ui ( #12120 )
2025-10-28 03:37:43 +00:00
Tommaso Sciortino
85f3a8c210
Migrate to coreEvents/debugLogger ( #12107 )
2025-10-27 23:46:35 +00:00
Jacob Richman
e9f8ccd51a
Fix config test so it passes even if the user running the test happens to have set GEMINI_MODEL to flash ( #12114 )
2025-10-27 23:31:01 +00:00
Pavel Jbanov
a9cb8f4958
feat: added basic dev otel trace instrumentation ( #11690 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-27 23:16:44 +00:00
Pyush Sinha
2dfb813c90
(fix): appcontainer should not poll and footer should use currentModel from ui state ( #11923 )
2025-10-27 22:33:12 +00:00
matt korwel
cb0947c501
fix(ci): tsc build for package/core is idempodent ( #12112 )
2025-10-27 14:39:09 -07:00
Sandy Tao
2a87d663d2
refactor(core): extract ChatCompressionService from GeminiClient ( #12001 )
2025-10-27 21:29:39 +00:00
Sandy Tao
6db64aab2b
fix(telemetry): Prevent duplicate StartSessionEvent logging ( #12090 )
2025-10-27 20:40:03 +00:00
Ruchika Goel
abd22a753d
feat(ID token support): Add ID token support for authenticating to MC… ( #12031 )
...
Co-authored-by: Adam Weidman <adamfweidman@google.com >
2025-10-27 20:34:38 +00:00
cocosheng-g
9e8f7c074c
Create BYOID auth client when detecting BYOID credentials ( #11592 )
2025-10-27 20:05:11 +00:00
Jenna Inouye
44c62c8e5d
Docs: Contributing guide ( #12012 )
2025-10-27 19:52:32 +00:00
Sandy Tao
4ef3c09332
fix(core): update loop detection LLM schema fields ( #12091 )
2025-10-27 19:16:25 +00:00
Alisa
29efebe38f
Implementing support for recitations events in responses from A2A Server ( #12067 )
...
Co-authored-by: Alisa Novikova <alisanovikova@google.com >
2025-10-27 18:56:08 +00:00
Tommaso Sciortino
0e4dce23b2
use debugLogger instead of console ( #12095 )
2025-10-27 18:35:16 +00:00
Jerop Kipruto
e115083fac
docs(github): revamp pull request template ( #11949 )
2025-10-27 17:33:29 +00:00
Riddhi Dutta
5ded674ad6
Refactor vim.test.ts: Use Parameterized Tests ( #11969 )
2025-10-27 17:13:17 +00:00
joshualitt
541eeb7a50
feat(core, cli): Implement sequential approval. ( #11593 )
2025-10-27 16:59:08 +00:00
Jack Wotherspoon
23c906b085
fix: user configured oauth scopes should take precedence over discovered scopes ( #12088 )
2025-10-27 16:57:12 +00:00
Krishna Bajpai
c7817aee30
fix(cli): Add delimiter before printing tool response in non-interactive mode ( #11351 )
2025-10-27 14:57:54 +00:00
Gaurav Sehgal
2fa13420ae
add absolute file path description for windows ( #12007 )
2025-10-27 04:17:13 +00:00
Jacob Richman
ee66732ad2
First batch of fixing tests to use best practices. ( #11964 )
2025-10-25 21:41:53 +00:00
Tommaso Sciortino
8352980f01
Remove non-existent parallel flag. ( #12018 )
2025-10-25 16:07:35 +00:00
Sandy Tao
a2d7f82b49
fix(core): Prepend user message to loop detection history if it starts with a function call ( #11860 )
2025-10-25 04:22:26 +00:00
ph-sp
73570f1c86
Fix the shortenPath function to correctly insert ellipsis. ( #12004 )
...
Co-authored-by: Greg Shikhman <shikhman@google.com >
2025-10-25 04:10:00 +00:00
Sandy Tao
51578397a5
refactor(cli): replace custom wait with vi.waitFor in InputPrompt tests ( #12005 )
2025-10-25 03:32:21 +00:00
Tommaso Sciortino
ef70e63230
Make PASTE_WORKAROUND the default. ( #12008 )
2025-10-25 02:55:13 +00:00
Lakshan Perera
ce26b58f09
docs(contributing): update project structure section with missing packages ( #11599 )
2025-10-25 02:08:42 +00:00
Qiyu-Wei
bcd9735a73
Fix typo in: packages/cli/src/utils/handleAutoUpdate.ts ( #11809 )
2025-10-25 02:00:48 +00:00
Eric Rahm
b1059f891f
refactor: Switch over to unified shouldIgnoreFile ( #11815 )
2025-10-25 01:55:12 +00:00
Tommaso Sciortino
145e099ca5
Support paste markers split across writes. ( #11977 )
2025-10-25 01:52:03 +00:00
Jacob MacDonald
81006605c8
use debugLogger instead of console.error ( #11990 )
2025-10-24 23:31:25 +00:00
Allen Hutchison
f934f01881
fix(tools): ReadFile no longer shows confirmation when message bus is off ( #12003 )
2025-10-24 23:22:02 +00:00
Jacob MacDonald
cdff69b7b2
Support redirects in fetchJson, add tests for it ( #11993 )
2025-10-24 22:35:09 +00:00
Abhi
d91484eb4d
Fix tests ( #11998 )
2025-10-24 21:49:42 +00:00
Jacob MacDonald
c20b88cee2
use coreEvents.emitFeedback in extension enablement ( #11985 )
2025-10-24 21:47:13 +00:00
Gal Zahavi
810d940e57
fix(update): replace update-notifier with latest-version ( #11989 )
2025-10-24 21:23:39 +00:00
Sandy Tao
7e2642b9f1
fix(core): use debugLogger.warn for loop detection errors ( #11986 )
2025-10-24 21:00:05 +00:00
Eric Rahm
40057b55f0
fix(cli): Use correct defaults for file filtering ( #11426 )
2025-10-24 20:20:17 +00:00
Allen Hutchison
b188a51c32
feat(core): Introduce message bus for tool execution confirmation ( #11544 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-24 20:04:40 +00:00
Jacob MacDonald
63a90836fe
fix linked extension test on windows ( #11973 )
2025-10-24 18:55:31 +00:00
Eric Rahm
ca94dabd4f
Fix(cli): Use cross-platform path separators in extension tests ( #11970 )
2025-10-24 18:42:49 +00:00
cornmander
31b7c010d0
Add regression tests for shell command parsing ( #11962 )
2025-10-24 18:25:54 +00:00
shishu314
4960c47257
fix(infra) - Simplify cancel in progress and add permission to set status step ( #11835 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-24 18:23:50 +00:00
Gaurav
ee92db7533
fix: handle request retries and model fallback correctly ( #11624 )
2025-10-24 18:09:06 +00:00
shishu314
c2104a14fb
fix(security) - Use emitFeedback instead of console error ( #11948 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-24 18:07:11 +00:00
shishu314
25996ae037
fix(security) - Use emitFeedback ( #11961 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-24 17:52:07 +00:00
Eric Rahm
a123a813b2
Fix(cli): Use the correct extensionPath ( #11896 )
2025-10-24 17:45:58 +00:00
owenofbrien
8bdef8754e
Stop logging session ids on extension events ( #11941 )
2025-10-24 17:11:42 +00:00
Sehoon Shon
978fbcf95e
run bom test on windows ( #11828 )
2025-10-24 15:46:52 +00:00
Jerop Kipruto
d915525c8e
docs(cli): update telemetry documentation ( #11806 )
2025-10-24 14:56:21 +00:00
Adam Weidman
c079084ca4
chore(core): add token caching in google auth provider ( #11946 )
2025-10-24 14:26:42 +00:00
Riddhi Dutta
a889c15e38
Adding Parameterised tests ( #11930 )
2025-10-24 13:45:36 +00:00
Sandy Tao
884d838a1e
fix(cli): re-throw errors in non-interactive mode ( #11849 )
2025-10-24 01:52:16 +00:00
Tommaso Sciortino
0fe82a2f4e
Use raw writes to stdin in test ( #11871 )
2025-10-23 23:55:30 +00:00
Jacob MacDonald
b16fe7b646
First take at mocking out gemini cli responses in integration tests ( #11156 )
2025-10-23 23:10:43 +00:00
joshualitt
b77381750c
feat(core) Bump get-ripgrep version. ( #11698 )
2025-10-23 22:01:02 +00:00
Riddhi Dutta
9814f86a25
Added parameterization to base-storage-token.test and prompts.test.ts ( #11821 )
2025-10-23 21:47:06 +00:00
Tommaso Sciortino
aa6ae954ef
Use raw writes to stdin where possible in tests ( #11837 )
2025-10-23 21:41:21 +00:00
cornmander
5e70a7dd46
fix: align shell allowlist handling ( #11510 ) ( #11813 )
2025-10-23 20:55:01 +00:00
shishu314
48ff9e1555
fix(infra) - Fix merge queue skipper issues for chain e2e ( #11810 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-23 20:46:46 +00:00
Jacob MacDonald
c4c0c0d182
Create ExtensionManager class which manages all high level extension tasks ( #11667 )
2025-10-23 18:39:36 +00:00
Abhi
3a501196f0
feat(ux): Surface internal errors via unified event system ( #11803 )
2025-10-23 18:14:14 +00:00
shishu314
7787a31f81
feat(infra) - Make merge group and pushes run chained e2e ( #11796 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-23 17:14:40 +00:00
Jacob Richman
9e91aafe40
Fix bug where tool scheduler was repeatedly created. ( #11767 )
2025-10-23 16:35:32 +00:00
shishu314
8ad72ec1ae
fix(infra) - Remove context input for setting status ( #11734 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-23 16:27:53 +00:00
Smetalo
d3e4ff2cfc
feat: Add lychee-action to check for broken links ( #11781 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2025-10-23 15:50:41 +00:00
christine betts
750c0e366f
Add extension settings to be requested on install ( #9802 )
2025-10-23 15:47:08 +00:00
cornmander
bde5d61812
Re-enable test. ( #11628 )
2025-10-23 13:50:50 +00:00
Smetalo
5ae9fe6949
Fix broken links in documentation ( #11789 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2025-10-23 13:48:24 +00:00
jdgarrido1105
3f38f95b1d
Adds executeCommand endpoint with support for /extensions list ( #11515 )
2025-10-23 13:05:43 +00:00
Smetalo
445ef4fbed
Docs: Fix broken link in docs/cli/configuration.md ( #11655 )
2025-10-23 08:29:31 +00:00
Jainam M
5ebe40e919
refactor(cli): Parameterize tests in InputPrompt ( #11776 )
2025-10-23 06:24:44 +00:00
Keith Lyons
8e9f71b7a3
fix(ui): resolve race condition in double-escape handler ( #8913 )
...
Co-authored-by: Megha Bansal <megha.igit@gmail.com >
2025-10-23 04:40:29 +00:00
Tommaso Sciortino
1202dced73
Refactor KeypressContext ( #11677 )
2025-10-23 00:51:03 +00:00
Eric Rahm
047bc44032
refactor(core): Clean up exclude description ( #11678 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-23 00:08:38 +00:00
Eric Rahm
92d412e542
refactor: simplify FilterReport and remove unused code ( #11681 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-23 00:06:31 +00:00
Sandy Tao
d9f0b9c668
fix(cli): fix race condition and unskip tests in useGitBranchName ( #11759 )
2025-10-22 23:11:06 +00:00
JAYADITYA
8f8a689722
feat(preflight): Use venv for yamllint installation ( #11694 )
2025-10-22 22:58:04 +00:00
Sandy Tao
a90b9fe977
fix(a2a-server): Fix and unskip GCS persistence test ( #11755 )
2025-10-22 22:57:34 +00:00
Jenna Inouye
eee3452948
Docs: adds 2025-10-13 changelog. ( #11751 )
2025-10-22 22:02:55 +00:00
Sandy Tao
2ede47d5ee
fix(ui): Fix and unskip InputPrompt tests ( #11700 )
2025-10-22 21:59:10 +00:00
shishu314
4f220e945a
feat(infra) - Add logging for when user tries to exit multiple times ( #11218 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-22 21:39:27 +00:00
Tommaso Sciortino
30dd2f1dfe
Document todo tool ( #11695 )
2025-10-22 20:27:10 +00:00
Abhi
b40f67b76a
extract console error to util func ( #11675 )
2025-10-22 20:09:10 +00:00
shishu314
a7faa2080f
feat(infra) - Update status for chained e2e ( #11651 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-22 20:01:02 +00:00
Adib234
6d75005afc
Add setting to disable YOLO mode ( #11609 )
...
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2025-10-22 18:57:10 +00:00
shishu314
5bb9cd1a13
feat(infra) - Create a workflow for deflake ( #11535 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-22 18:41:26 +00:00
kevinjwang1
0bf2a0353d
Add extension alias for extensions command ( #11622 )
2025-10-22 18:24:32 +00:00
Sandy Tao
ce655436ef
fix(test): unskip and fix useToolScheduler tests ( #11671 )
2025-10-22 17:45:50 +00:00
gemini-cli-robot
59985138f7
chore(release): bump version to 0.12.0-nightly.20251022.0542de95 ( #11672 )
2025-10-22 17:37:25 +00:00
matt korwel
0542de95eb
fix(release): Pass args to promoteNightlyVersion ( #11666 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-22 09:45:42 -07:00
Tommaso Sciortino
dc90c8fec7
Updates to package-lock.json from running npm install ( #11665 )
2025-10-22 16:37:33 +00:00
Mayur Vaid
0d7da7ecb1
fix(mcp): Include path in oauth resource parameter ( #11654 )
2025-10-22 15:48:47 +00:00
christine betts
73b1afb106
Remove errant console.debug log of config ( #11579 )
2025-10-22 14:13:42 +00:00
Smetalo
d1c913ed5c
Docs: Fix broken telemetry link in docs/cli/configuration.md ( #11638 )
2025-10-22 11:55:34 +00:00
Mayur Vaid
2940b50811
fix: Ignore correct errors thrown when resizing or scrolling an exited pty ( #11440 )
2025-10-22 04:27:49 +00:00
Sandy Tao
c7243997f4
fix(cli): fix flaky BaseSelectionList test ( #11620 )
2025-10-22 03:56:29 +00:00
Jacob Richman
306e12c23c
Fix regression in handling shift+tab resulting in u in the input prompt. ( #11634 )
2025-10-22 02:54:51 +00:00
Tommaso Sciortino
cc3904f026
Add aria labels to Todo list display ( #11621 )
2025-10-22 00:39:49 +00:00
James
ed9f714fbb
feat(cli): Adds the ability to run MCP prompt commands in non-interactive mode ( #10194 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-10-21 23:40:13 +00:00
Silvio Junior
5b750f519b
fix(config): Disable CI for stable release ( #11615 )
2025-10-21 23:36:41 +00:00
matt korwel
465f97a528
fix: Improve patch workflow and update NOTICES.txt ( #11623 )
2025-10-21 16:45:32 -07:00
Sandy Tao
ccf8d0ca31
fix(test): Enable Ctrl+C exit test ( #11618 )
2025-10-21 22:47:12 +00:00
Tommaso Sciortino
519bd57e55
Apply new style to Todos ( #11607 )
2025-10-21 22:40:45 +00:00
Adam Weidman
16f5f767b2
chore: use waitFor rather than wait ( #11616 )
2025-10-21 22:18:23 +00:00
christine betts
c6a59896f3
Add extensions logging ( #11261 )
2025-10-21 20:55:16 +00:00
gemini-cli-robot
e9e80b054d
chore/release: bump version to 0.11.0-nightly.20251021.e72c00cf ( #11614 )
2025-10-21 20:46:18 +00:00
Abhi
b364f37655
refactor(logging): Centralize console logging with debugLogger ( #11590 )
2025-10-21 20:35:22 +00:00
shishu314
f5e07d94bd
fix(infra) - Fix how we download and upload repo names ( #11613 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-21 20:33:54 +00:00
Sandy Tao
dd3b1cb653
feat(cli): continue request after disabling loop detection ( #11416 )
2025-10-21 20:27:57 +00:00
Sandy Tao
cf16d1678d
fix(scripts): add tsconfig linter to prevent adding files to the exclude list ( #11602 )
2025-10-21 20:08:33 +00:00
Adam Weidman
fb44f5ba0d
chore: renable test ( #11582 )
2025-10-21 20:05:19 +00:00
Shreya Keshive
e72c00cf9a
fix(proxy): Add error handling to proxy agent creation ( #11538 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-21 19:43:37 +00:00
Jack Wotherspoon
62dc9683bd
fix: improve gemini mcp add option handling for arrays ( #11575 )
2025-10-21 19:35:01 +00:00
shishu314
3443946087
fix(infra) - Fix issues with downloading repo artifact ( #11606 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-21 19:33:00 +00:00
Smetalo
e49f4673f2
Docs: Fix broken checkpointing links in docs/cli/configuration.md ( #11508 )
2025-10-21 19:05:12 +00:00
Richie Foreman
af833c5eff
feat(release): Add dev env support to release-3-patch ( #11458 )
2025-10-21 19:04:21 +00:00
Richie Foreman
74a7771943
fix(ci): Default all GHA env variables to 'prod' set ( #11572 )
...
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
2025-10-21 19:02:48 +00:00
Shreya Keshive
193b4bba91
bump nightly test an hour ( #11603 )
2025-10-21 19:01:05 +00:00
Allen Hutchison
bf80263bd6
feat: Implement message bus and policy engine ( #11523 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-21 18:45:33 +00:00
Shreya Keshive
0658b4aa31
remove another replace flake ( #11601 )
2025-10-21 18:36:49 +00:00
Abhi
a74a04d12d
Revert "Disable Routing by default ( #11549 )" ( #11594 )
2025-10-21 18:36:28 +00:00
Abhi
2c93542e5c
Revert "Per-Auth Method Feature Flag for Model Routing ( #11333 )" ( #11597 )
2025-10-21 18:36:02 +00:00
shishu314
cb8f93bad7
Feat(infra) - Make chained e2e workflow run e2e tests ( #11521 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-21 18:23:34 +00:00
cornmander
9d0177e0ce
Use env variables in workflows ( #11585 )
2025-10-21 18:14:27 +00:00
Shreya Keshive
f0eed9b221
Temporarily update nightly release schedule ( #11573 )
2025-10-21 14:12:39 -04:00
shishu314
a2013f34e5
Skip delete test since it's flakey ( #11591 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-21 17:50:18 +00:00
cornmander
0ed4f98087
Pin auth action in eval workflow ( #11584 )
2025-10-21 17:45:03 +00:00
matt korwel
14867c7c14
fix(workflow): Add missing comma in release-patch-0-from-comment.yml ( #11588 )
2025-10-21 10:38:30 -07:00
Shreya Keshive
f4080b6037
skip flaky test ( #11577 )
2025-10-21 15:01:13 +00:00
Victor May
0e7b3951c2
Per-Auth Method Feature Flag for Model Routing ( #11333 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-10-21 13:25:51 +00:00
Richie Foreman
81772c4252
feat(release): Add dev support to patch2 workflow ( #11460 )
2025-10-21 03:09:27 +00:00
Alex Patterson
fc4e10b537
fix(docs): Broken Images on Themes ( #11266 )
2025-10-21 02:58:28 +00:00
cornmander
654c555099
test: add readWasmBinaryFromDisk unit test ( #11546 )
2025-10-21 02:42:16 +00:00
Abhi
7dd2d8f794
fix(tools): restore static tool names to fix configuration exclusions ( #11551 )
2025-10-21 02:35:35 +00:00
Abhi
8aace3aff2
Disable Routing by default ( #11549 )
2025-10-21 02:22:54 +00:00
Gal Zahavi
72b16b3a24
fix(core): Handle PTY spawn errors in macOS sandbox ( #11539 )
2025-10-21 00:14:27 +00:00
Adam Weidman
723b8d33c2
chore: update tests with removed exclude from cli tsconfig ( #11540 )
2025-10-20 23:40:54 +00:00
cornmander
70a99af1d3
Fix shell auto-approval parsing for chained commands ( #11527 )
2025-10-20 23:18:00 +00:00
cornmander
31f58a1f04
Fix Windows ripgrep detection ( #11492 )
2025-10-20 23:17:44 +00:00
Zack Birkenbuel
cc7e1472f9
Pass whole extensions rather than just context files ( #10910 )
...
Co-authored-by: Jake Macdonald <jakemac@google.com >
2025-10-20 23:15:23 +00:00
Abhi
995ae717cc
refactor(logging): Centralize all console messaging to a shared logger (part 1) ( #11537 )
2025-10-20 22:16:47 +00:00
Eric Rahm
d5a06d3cd2
fix(core): Preserve significant trailing spaces in gitignore patterns ( #11536 )
2025-10-20 21:41:33 +00:00
Pyush Sinha
61a71c4fcd
(fix): remove custom waitFor and use testing-library implementation ( #11522 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-20 20:36:43 +00:00
gemini-cli-robot
3c57e76c45
chore/release: bump version to 0.11.0-nightly.20251020.a96f0659 ( #11529 )
2025-10-20 20:31:35 +00:00
Shreya Keshive
30d9a336bc
Update nightly workflow to create issues for scheduled run failures ( #11531 )
2025-10-20 20:12:13 +00:00
jajanet
49bde9fca0
fix(core): address GCS path input ( #11221 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: cornmander <shikhman@google.com >
2025-10-20 20:05:47 +00:00
Paweł Dec
36de686224
feat: Propagate traceId from code assist to response metadata (Fixes … ( #11360 )
...
Co-authored-by: owenofbrien <86964623+owenofbrien@users.noreply.github.com >
2025-10-20 20:00:24 +00:00
shishu314
085e5b1f4d
feat(infra) - Add base files for deflake workflow ( #11397 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-20 19:27:21 +00:00
Shreya Keshive
a96f065903
skip flaky test ( #11526 )
2025-10-20 19:25:22 +00:00
Gal Zahavi
9a4c045518
docs: require bug bash for major launches and clarify roles ( #11384 )
2025-10-20 17:54:28 +00:00
Pyush Sinha
397e52dac7
fix(ui): escaping theme dialog no longer resets theme to default ( #11323 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-20 17:50:09 +00:00
lifefloating
d0ab6e9982
fix(SettingsDialog): race condition in SettingsDialog causing settings to be unexpectedly cleared ( #10875 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-20 17:37:56 +00:00
Tommaso Sciortino
35afab31e1
Don't display todo in history ( #11516 )
2025-10-20 17:36:55 +00:00
Adrian Arribas
71ecc401c3
[Part 5/6] feat(telemetry): add activity monitor with event-driven snapshots ( #8124 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-20 17:29:53 +00:00
Eric Rahm
518a9ca314
fix(core): Preserve escaped characters in gitignore patterns ( #11171 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-20 17:03:22 +00:00
shishu314
d52ec522f1
fix(infra) - Create an empty file to test trigger workflow for e2e ( #11022 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-20 15:28:29 +00:00
Adam Weidman
8731309d7c
chore: do not retry the model request if the user has aborted the request ( #11224 )
2025-10-20 15:21:49 +00:00
anj-s
a788a6df48
Update docs to specifying GEMINI_SYSTEM_MD and GEMINI_WRITE_SYSTEM_MD instructions ( #9953 )
2025-10-20 12:59:21 +00:00
Abhi
c8518d6a63
refactor(tools): Move all tool names into tool-names.ts ( #11493 )
2025-10-20 00:53:53 +00:00
Sandy Tao
0fd9ff0f53
fix(cli): Fix type errors in UI hooks tests ( #11483 )
2025-10-20 00:16:16 +00:00
Abhi
23e52f0ff3
refactor(core): Centralize tool names to avoid circular dependencies - Edit, Grep, Read ( #11434 )
2025-10-19 23:21:47 +00:00
shrutip90
98eef9ba0c
fix: Update web_fetch tool definition to instruct the model to provid… ( #11252 )
2025-10-19 20:12:15 +00:00
Tommaso Sciortino
f425bd765b
Rename component to "TodoTray" ( #11469 )
2025-10-19 12:22:01 +00:00
Sandy Tao
d065c3ca53
fix(cli): Enable typechecking for more test files ( #11455 )
2025-10-19 03:43:19 +00:00
gsehgal
f22aa72c62
Making shell:true as default and adding -I to grep ( #11448 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-10-19 03:08:01 +00:00
Richie Foreman
aa46eb4fd7
feat(release): Support dev/prod for release patch 1 ( #11404 )
2025-10-18 20:18:12 +00:00
Sandy Tao
ff31a2224e
fix(ci): use standard integration test command on windows ( #11437 )
2025-10-18 15:20:14 +00:00
Sandy Tao
dd42893df7
fix(config): Enable type checking for config tests ( #11436 )
2025-10-18 05:39:53 +00:00
Smetalo
725b312032
Docs: Fix MCP server link in docs/cli/trusted-folders.md ( #11349 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-10-18 04:48:40 +00:00
Tommaso Sciortino
cd76b0b22d
Create Todo List Tab ( #11430 )
2025-10-18 04:10:57 +00:00
Abhi
2ef38065c7
refactor(tools): Migrate shell tool name to a centralized constant ( #11418 )
2025-10-18 01:07:26 +00:00
Sandy Tao
cedf0235a1
fix(cli): enable typechecking for ui/components tests ( #11419 )
...
Co-authored-by: Jacob MacDonald <jakemac@google.com >
2025-10-17 23:16:12 +00:00
Jacob MacDonald
f4330c9f5e
remove support for workspace extensions and migrations ( #11324 )
2025-10-17 23:08:57 +00:00
Abhi
9b9ab60985
feat(logging): Centralize debug logging with a dedicated utility ( #11417 )
2025-10-17 22:00:23 +00:00
shishu314
0b20f88fc0
fix(infra) - Make file system interactive test check only tool call ( #11055 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-17 21:25:31 +00:00
Sandy Tao
21163a1636
fix(cli): enable typechecking for ui/commands tests ( #11413 )
2025-10-17 21:20:49 +00:00
owenofbrien
08e87a59d5
Log all user settings to enable measurement of experiment impacts ( #11354 )
2025-10-17 20:54:35 +00:00
Jacob MacDonald
d3bdbc6978
add extension IDs ( #11377 )
2025-10-17 20:29:07 +00:00
Tommaso Sciortino
b4a405c684
Style slash command descriptions consistently ( #11395 )
2025-10-17 20:20:15 +00:00
shrutip90
426d36146a
fix: Unset selected auth type in integ test so that the local setting… ( #11322 )
2025-10-17 20:18:18 +00:00
Riddhi Dutta
4d2a1111e0
fix: make @file suggestions case-insensitive ( #11394 )
2025-10-17 19:58:06 +00:00
Billy Biggs
e4226b8a3e
Only check for updates if disableUpdateNag is false ( #11405 )
2025-10-17 19:44:31 +00:00
Tommaso Sciortino
7c086fe55b
Remove MCP Tips and reorganize MCP slash commands ( #11387 )
2025-10-17 19:35:14 +00:00
Richie Foreman
6786684962
fix(release): Update create-patch-pr.js to take a package name ( #11400 )
2025-10-17 19:02:44 +00:00
Sandy Tao
8da47db1a4
fix(cli): enable and fix types for MCP command tests ( #11385 )
2025-10-17 18:23:26 +00:00
JAYADITYA
2b61ac532d
feat: add missing visual cue for closing dialogs with Esc key ( #11386 )
2025-10-17 18:22:54 +00:00
Richie Foreman
4a0fcd054b
fix(scripts): Update get-release-version to use yargs parsing, handle a dynamically set package name ( #11374 )
2025-10-17 18:08:27 +00:00
Jainam M
659b0557be
feat(cli): Suppress slash command execution and suggestions in shell … ( #11380 )
2025-10-17 17:30:27 +00:00
Tommaso Sciortino
795e5134c7
Remove ctrl-t binding for /mcp commands ( #11372 )
2025-10-17 16:42:09 +00:00
Gal Zahavi
0ded546a09
fix(prompt): Make interactive command avoidance conditional ( #11225 )
2025-10-17 16:07:18 +00:00
Allen Hutchison
be25e2cb96
feat: Remove deprecated flags ( #11338 )
2025-10-17 15:58:00 +00:00
Richie Foreman
b2ef66263f
docs(release): Add information about dev/prod to the release docs. ( #11366 )
2025-10-17 14:53:46 +00:00
Jacob MacDonald
ca3d260a2b
Revert "Update package.json in include git dependency on Ink fork." ( #11365 )
2025-10-17 14:48:29 +00:00
hritan
f3ffaf09c7
fix: copy command delay in Linux handled ( #6856 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
2025-10-17 11:23:31 +00:00
Abhi
3a1d3769ae
Refactor EditTool.Name to use centralized EDIT_TOOL_NAME ( #11343 )
2025-10-17 05:35:35 +00:00
Jacob Richman
d42da87161
fix(accessibility) allow line wrapper in screen reader mode ( #11317 )
2025-10-17 03:38:49 +00:00
Jacob Richman
406f0baaf2
fix(ux) keyboard input hangs while waiting for keyboard input. ( #10121 )
2025-10-17 03:38:06 +00:00
Jacob Richman
cd0f9fe22f
Update package.json in include git dependency on Ink fork. ( #11330 )
2025-10-17 03:32:53 +00:00
Jacob Richman
a67deae8ba
Skip failing test. ( #11337 )
2025-10-17 03:19:07 +00:00
cornmander
dcf362bcf9
Inline tree-sitter wasm and add runtime fallback ( #11157 )
2025-10-17 00:25:30 +00:00
Akhil Appana
22f725eb08
feat: allow editing queued messages with up arrow key ( #10392 )
...
Co-authored-by: Akhil Appana <akhilapp@google.com >
2025-10-17 00:04:13 +00:00
Allen Hutchison
9049f8f8ae
feat: remove deprecated telemetry flags ( #11318 )
2025-10-16 23:54:59 +00:00
JAYADITYA
a440333990
feat(ui): add "Esc to close" hint to SettingsDialog ( #11289 )
...
Co-authored-by: Miguel Solorio <miguelsolorio@google.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-16 23:22:14 +00:00
Sandy Tao
991bd37362
fix(scripts): Improve deflake script isolation and unskip test ( #11325 )
2025-10-16 23:15:46 +00:00
Tommaso Sciortino
9a4211b610
Improve rendering of ToDo lists. ( #11315 )
2025-10-16 23:06:43 +00:00
shrutip90
c71b749185
fix: Add folder names in permissions dialog similar to the launch dialog ( #11278 )
2025-10-16 23:04:16 +00:00
Abhi
02241e9126
feat(auth): Improve auth dialog error handling and messaging ( #11320 )
2025-10-16 22:08:42 +00:00
Jacob Richman
01c577c371
Jacob314/safe home dir ( #10861 )
2025-10-16 21:55:16 +00:00
Sandy Tao
2aa1d74286
fix(test): deflake flicker integration test ( #11308 )
2025-10-16 20:53:08 +00:00
matt korwel
6b866d1282
remove ( #11310 )
2025-10-16 13:14:52 -07:00
matt korwel
de3632afc3
fork regulation testing ( #11304 )
2025-10-16 12:36:40 -07:00
Allen Hutchison
937c15c66e
refactor: Remove deprecated --all-files flag ( #11228 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-16 19:09:21 +00:00
shishu314
bec2bfcadb
Revert "fix(infra) - Remove e2e maintainer label from e2e workflow" ( #11292 )
2025-10-16 12:14:09 -07:00
shishu314-alt
39cc07de30
fix(infra) - Remove e2e maintainer label from e2e workflow ( #11028 )
...
Co-authored-by: shishu314 <shishu_1998@yahoo.com >
2025-10-16 18:33:41 +00:00
DeWitt Clinton
d2c9c5b35e
Use Node.js built-ins in scripts/clean.js instead of glob. ( #11286 )
2025-10-16 18:24:30 +00:00
Srivats Jayaram
6ded45e5d2
feat: Add markdown toggle (alt+m) to switch between rendered and raw… ( #10383 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-16 18:23:36 +00:00
Abhi
05930d5e25
fix(web-fetch): respect Content-Type header in fallback mechanism ( #11284 )
2025-10-16 18:16:24 +00:00
shrutip90
ffa547ce8d
fix: Update folder trust docs to mention MCP servers and file command… ( #10842 )
2025-10-16 18:02:52 +00:00
JAYADITYA
155242af34
feat: Blend educative tips with witty phrases during loading times (fun, subtle learning...) ( #10569 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-16 17:08:43 +00:00
Gal Zahavi
c96fd828df
feat(docs): add initial release confidence document ( #11069 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: mkorwel <matt.korwel@gmail.com >
2025-10-16 16:29:52 +00:00
Jenna Inouye
b4f6c7c4b9
Docs: Add changelog v0.9.0 ( #11237 )
2025-10-16 16:07:59 +00:00
Richie Foreman
872d2eaf60
fix(ci): Make the release-rollback action properly support non-prod envs ( #11244 )
2025-10-16 15:45:21 +00:00
christine betts
b734723d95
Update extensions install warning ( #11149 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-16 15:01:17 +00:00
anj-s
5aaa0e66f5
(fix): Enable Codebase Investigator for all modes ( #11259 )
2025-10-16 14:21:09 +00:00
Jacob MacDonald
a9083b9d48
include extension name in gemini mcp list command ( #11263 )
2025-10-16 14:21:09 +00:00
Ramón Medrano Llamas
60420e52db
feat: Do not add trailing space on directory autocomplete ( #11227 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2025-10-16 13:10:23 +00:00
Abhi
3acb014ed7
fix(e2e): Refactor and unskip context compression interactive tests ( #11086 )
2025-10-16 03:57:05 +00:00
Abhi
c9c633be62
refactor: move web_fetch tool name to tool-names.ts ( #11174 )
2025-10-16 02:48:12 +00:00
Abhi
130f0a0253
chore(subagents): Remove legacy subagent code ( #11175 )
2025-10-16 02:32:57 +00:00
Dmitry Lyalin
8c74be79c5
Update README.md ( #11240 )
2025-10-15 23:57:00 +00:00
Richie Foreman
e2fef41fe2
fix(ci): Ensure we cleanup the false tag. ( #11232 )
...
Co-authored-by: mkorwel <matt.korwel@gmail.com >
2025-10-15 23:42:04 +00:00
Tommaso Sciortino
72b2cc54b9
Updates from running "npm install" ( #11238 )
2025-10-15 23:40:41 +00:00
Allen Hutchison
cfaa95a2b9
feat(cli): Add nargs to yargs options ( #11132 )
2025-10-15 22:00:23 +00:00
Jacob MacDonald
8c1656bf56
Don't always fall back on a git clone when installing extensions ( #11229 )
2025-10-15 21:29:16 +00:00
Richie Foreman
1fc3fc0a22
fix(ci): Fix a2a publishing ( #11211 )
...
Co-authored-by: mkorwel <matt.korwel@gmail.com >
2025-10-15 21:23:13 +00:00
shishu314
ccaa7009a7
fix(infra) - Reenable github test ( #10839 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-15 21:09:47 +00:00
anj-s
47f693173a
Add support for output-format stream-jsonflag for headless mode ( #10883 )
2025-10-15 20:55:37 +00:00
matt korwel
7bed302f21
refactor(actions): remove checkout from sub-actions ( #11219 )
2025-10-15 20:11:56 +00:00
mistergarrison
2e6d69c9c8
Fix --allowed-tools in non-interactive mode to do substring matching for parity with interactive mode. ( #10944 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-10-15 19:44:07 +00:00
Smetalo
c80352a7fb
Docs: Fix typo in docs/get-started/index.md ( #10793 )
2025-10-15 19:38:37 +00:00
Smetalo
47f5e73be6
Docs: Fix typo in docs/changelogs/index.md ( #11215 )
2025-10-15 19:03:16 +00:00
Miguel Solorio
d38ab07939
Update shell tool call colors for confirmed actions ( #11126 )
2025-10-15 17:03:10 +00:00
Jainam M
4f17eae5cc
feat(cli): Prevent queuing of slash and shell commands ( #11094 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-15 17:02:50 +00:00
Allen Hutchison
b8df8b2ab8
feat(core): wire up UI for ASK_USER policy decisions in message bus ( #10630 )
2025-10-15 16:39:41 +00:00
Shreya Keshive
8a937ebf8b
chore(release): bump version to 0.11.0-nightly.20251015.203bad7c ( #11212 )
2025-10-15 16:25:05 +00:00
Richie Foreman
0dea354457
Add a GH Issue template for a website issue that gets tagged appropriately. ( #10923 )
2025-10-15 14:29:34 +00:00
Richie Foreman
cb1ec755f6
fix(ci): Move from self-hosted -> ubuntu-latest ( #11205 )
2025-10-15 07:22:08 -07:00
Richie Foreman
984415f6c7
feat(ci): Update release to use github env variables. ( #11068 )
2025-10-15 13:48:03 +00:00
Seth Ladd
203bad7c06
Docs: Point to extensions gallery from extensions docs in the project ( #10763 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
Co-authored-by: Pascal Birchler <pascal.birchler@gmail.com >
2025-10-15 07:29:21 +00:00
Sandy Tao
4f5b335792
fix(tests): enable cyclic schema MCP tool test ( #10912 )
2025-10-15 01:46:54 +00:00
Tommaso Sciortino
dabe161a6f
Don't accept input until slash commands are loaded ( #11162 )
2025-10-15 01:15:57 +00:00
Victor May
a2f3339a0e
Enable Model Routing ( #11154 )
2025-10-15 00:47:48 +00:00
Gaurav
996c9f5955
Revert "fix: handle request retries and model fallback correctly" ( #11164 )
2025-10-14 23:30:59 +00:00
cornmander
bd5c158a62
Revert "Shell approval rework" ( #11143 )
2025-10-14 22:55:28 +00:00
Abhi
6f0107e7b7
fix(core): implement robust URL validation in web_fetch tool ( #10834 )
2025-10-14 20:53:22 +00:00
Tommaso Sciortino
769fe8b161
Delete unworkable replace test and enabled the rest ( #11125 )
2025-10-14 20:34:04 +00:00
Silvio Junior
ef3186d441
Enable codease investigator by default before the next preview release ( #11136 )
2025-10-14 19:45:15 +00:00
Adam Weidman
8c78b62b75
fix: set a2a-server publish to --no-tag ( #11138 )
2025-10-14 19:31:30 +00:00
Shreya Keshive
0a3e492e6b
Integration test for UI flickers ( #11067 )
2025-10-14 18:41:43 +00:00
Jacob MacDonald
99c7108bb0
fix integration test static errors, and run_shell_command tests to actually be testing what they intend ( #11050 )
2025-10-14 18:36:49 +00:00
shishu314
49b66733c2
fix(infra) - Disable CTRL-C test ( #11122 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-14 18:10:53 +00:00
Silvio Junior
a6720d6007
Make codebase investigator less prone to be triggered for simple searches ( #10655 )
2025-10-14 17:19:17 +00:00
cornmander
92dbdbb93b
Shell approval rework ( #11073 )
2025-10-14 16:51:32 +00:00
Tommaso Sciortino
061a89fc2b
Disable retries when deflaking integrationt tests ( #11118 )
2025-10-14 16:51:26 +00:00
Sandy Tao
7c1a90244a
fix(core): add retry logic for specific fetch errors ( #11066 )
2025-10-14 16:17:31 +00:00
Srivats Jayaram
c86ee4cc83
feat: Support Alt+key combinations ( #11038 )
2025-10-14 16:12:20 +00:00
Abhi
7b06a0bebd
fix(e2e): Use rmSync instead of rm -rf for e2e tests ( #11087 )
2025-10-14 15:56:56 +00:00
bl-ue
9e8c767694
fix(cli): record tool calls in non-interactive mode ( #10951 )
2025-10-14 15:51:00 +00:00
Silvio Junior
3ba4ba79fa
Remove workflow examples from system instruction ( #10811 )
2025-10-14 15:29:03 +00:00
Tommaso Sciortino
1e838393a9
Skip flakey tests ( #11101 )
2025-10-14 15:16:22 +00:00
Adam Weidman
481ba01c97
chore: resubmit a2a-publishing after rollout ( #11100 )
2025-10-14 15:09:17 +00:00
shrutip90
b2ba67f337
fix: Exit app on pressing esc on trust dialog at launch ( #10668 )
2025-10-14 14:27:40 +00:00
Hadi Minooei
249a193c00
Update system instructions for optimizing shell tool commands ( #10651 )
2025-10-14 04:31:45 +00:00
Abhi
a3fe9279d8
fix(compression): prevent unnecessary summarization when history is too short ( #11082 )
2025-10-14 04:02:03 +00:00
Richie Foreman
0f8199dde3
fix(site): Fix broken site link ( #11079 )
2025-10-14 03:55:51 +00:00
Abhi
6787d42de4
perf(core): optimize Windows IDE process detection from O(N) to O(1) ( #11048 )
2025-10-14 02:42:09 +00:00
Silvio Junior
9185f68e52
Expose Codebase Investigator settings to the user ( #10844 )
2025-10-14 02:30:32 +00:00
Tommaso Sciortino
f56a561f02
Fix and unskip flakey integration test in replace.test.ts ( #11060 )
2025-10-14 01:03:35 +00:00
Gaurav
dd01af609e
refactor: set max retry attempts to 3 ( #11072 )
2025-10-13 23:26:51 +00:00
joshualitt
ada179f572
bug(core): Process returned function calls sequentially. ( #10659 )
2025-10-13 22:52:16 +00:00
Jenna Inouye
20fc7abc8c
Docs: Quick fix: Sidebar link. ( #11065 )
2025-10-13 21:59:35 +00:00
Adam Weidman
f3424844dc
Revert "chore: wire a2a-server up for publishing" ( #11064 )
2025-10-13 21:31:40 +00:00
Tommaso Sciortino
c4bd759467
document all settings with showInDialog: true ( #11049 )
2025-10-13 19:57:23 +00:00
Abhi
771627505d
chore(settings): Enable 'useSmartEdit' by default ( #11051 )
2025-10-13 19:05:08 +00:00
Tommaso Sciortino
a73b81452d
Rename expect methods. ( #11046 )
2025-10-13 18:42:27 +00:00
shishu314
4a5ef4d9f7
fix(infra) - Fix flake for file interactive system ( #11019 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-13 17:43:53 +00:00
Dongin Kim(Terry)
518caae62e
chore: Extract '.gemini' to GEMINI_DIR constant ( #10540 )
...
Co-authored-by: Richie Foreman <richie.foreman@gmail.com >
2025-10-13 17:31:39 +00:00
Alexander
7beaa368a9
refactor(core): use assertConnected in McpClient discover method ( #10989 )
2025-10-13 16:57:10 +00:00
Jacob MacDonald
19c1d73405
add bundle command info to integration test docs ( #11034 )
2025-10-13 16:43:52 +00:00
Jacob MacDonald
28e667bd97
Give explicit instructions for failure text in json-output.test.ts ( #11029 )
2025-10-13 16:35:00 +00:00
Jacob Richman
f68f27e7f1
Revert "feat: Support Alt+key combinations" ( #11025 )
2025-10-13 15:30:10 +00:00
Richie Foreman
90de8416cc
Swap all self-hosted runners to ubuntu-latest per b/451586626 ( #11023 )
2025-10-13 15:28:32 +00:00
Adam Weidman
c23eb84b04
fix(remove private) from gemini-cli-a2a-server ( #11018 )
2025-10-13 14:43:08 +00:00
Adam Weidman
cfb71b9d60
chore: wire a2a-server up for publishing ( #10627 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-13 12:38:41 +00:00
Srivats Jayaram
87f175bb2c
feat: Support Alt+key combinations ( #10767 )
2025-10-13 02:31:05 +00:00
gsehgal
907e51ac01
Code guide command ( #10940 )
2025-10-11 17:04:52 +00:00
Tommaso Sciortino
5dc7059ba3
Refactor: Introduce InteractiveRun class ( #10947 )
2025-10-11 15:33:01 +00:00
Sandy Tao
09ef33ec3a
fix(cli): prioritize configured auth over env vars in non-interactive mode ( #10935 )
2025-10-10 23:50:54 +00:00
Tommaso Sciortino
cd9193466e
Clean up integration test warnings. ( #10931 )
2025-10-10 22:32:20 +00:00
Tommaso Sciortino
ead8928c39
Deflake test. ( #10932 )
2025-10-10 22:17:32 +00:00
Gal Zahavi
265d39f337
feat(core): improve shell execution service reliability ( #10607 )
2025-10-10 22:14:37 +00:00
Jenna Inouye
37678acb1a
Update deployment.md -> installation.md and sidebar links. ( #10662 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-10-10 22:10:24 +00:00
Tommaso Sciortino
a64bb433b0
Simplify auth in interactive tests. ( #10921 )
2025-10-10 21:50:14 +00:00
Jacob MacDonald
a6e00d9183
Fix rough edges around extension updates ( #10926 )
2025-10-10 21:28:13 +00:00
Jacob MacDonald
bf0f61e656
Show final install path in extension consent dialog and fix isWorkspaceTrusted check ( #10830 )
2025-10-10 20:40:13 +00:00
Shreya Keshive
ae48e964f0
feat(ui): add flicker detection and metrics ( #10821 )
2025-10-10 20:18:38 +00:00
Abhi
ab3804d823
refactor(core): migrate web search tool to tool-names ( #10782 )
2025-10-10 19:51:24 +00:00
christine betts
0a7ee67707
Show notification in screen reader mode ( #10900 )
2025-10-10 19:34:44 +00:00
Jenna Inouye
a5e47c62e4
Docs: Update to tos-privacy.md ( #10754 )
2025-10-10 18:34:29 +00:00
Tommaso Sciortino
2a7c71667d
Reenable NPM integration tests ( #10623 )
2025-10-10 18:26:20 +00:00
shrutip90
c6af4eaa00
fix: Usage of folder trust config flags in FileCommandLoader ( #10837 )
2025-10-10 18:07:40 +00:00
Tommaso Sciortino
32db4ff66d
Disable flakey tests. ( #10914 )
2025-10-10 18:02:36 +00:00
Smetalo
849cd1f9ed
Docs: Fix Flutter extension link in docs/changelogs/index.md ( #10797 )
2025-10-10 17:56:34 +00:00
shrutip90
249ea55942
fix(test): Fix flaky shell command test using date command ( #10863 )
2025-10-10 17:48:24 +00:00
Jainam M
affd3cae9a
fix: Prevent garbled input during "Login With Google" OAuth prompt on… ( #10888 )
2025-10-10 16:59:44 +00:00
Sandy Tao
8dc397c0a5
fix(core): set temperature to 1 on retry in sendMessageStream ( #10866 )
2025-10-10 16:14:12 +00:00
Jerop Kipruto
38bc856212
feat(telemetry): ensure all telemetry includes user email and installation id ( #10897 )
2025-10-10 16:06:08 +00:00
sgnagnarella
971eb64e98
fix(cli) : fixed bug #8310 where /memory refresh will create discrepancies with initial memory load ignoring settings/config for trusted folder and file filters ( #10611 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-10-10 16:04:15 +00:00
Jenna Inouye
65b9e367f0
Docs: Fix broken links in architecture.md ( #10747 )
2025-10-10 15:59:27 +00:00
shishu314
112790cbaa
fix(infra) - Create a step to calculate the inputs for the nightly-release ( #10825 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-10 15:00:11 +00:00
Jacob Richman
558be87311
Re-land bbiggs changes to reduce margin on narrow screens with fixes + full width setting ( #10522 )
2025-10-10 02:27:20 +00:00
Adam Weidman
c82c2c2b15
chore: add a2a server bin ( #10592 )
2025-10-09 23:47:18 +00:00
Christie Warwick (Wilson)
83075b2800
refactor: make log/event structure clear ( #10467 )
2025-10-09 23:02:58 +00:00
owenofbrien
cce245738e
Fix for race condition in extension install / uninstall logging ( #10856 )
2025-10-09 22:40:27 +00:00
Gal Zahavi
fda3b54357
chore(int): disable skip on "should trigger chat compression with /co… ( #10854 )
2025-10-09 22:35:52 +00:00
Matt Rixman
d190188aaf
Add a joke to usePhraseCycler.ts ( #10685 )
...
Co-authored-by: Jacob Richman <jacobr@google.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-09 22:11:36 +00:00
Jacob MacDonald
21062dd30e
clean up extension tests ( #10857 )
2025-10-09 22:06:06 +00:00
Jacob MacDonald
ed37b7c5e7
fix some isWorkspaceTrusted mocks ( #10836 )
2025-10-09 22:05:54 +00:00
Victor May
0b6c02000f
feat(core): Failed Response Retry via Extra Prompt ( #10828 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-10-09 22:04:08 +00:00
Jerop Kipruto
1f6716f98a
feat(telemetry): add diff stats to tool call metrics ( #10819 )
2025-10-09 22:01:35 +00:00
shishu314
5aab793cfd
fix(infra) - Fix interactive system error ( #10805 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2025-10-09 22:00:43 +00:00
Jacob Richman
5e688b8113
Skip should fail safely when old_string is not found test ( #10853 )
2025-10-09 21:25:47 +00:00
Jerop Kipruto
5f96eba54a
fix(cli): prevent exit on non-fatal tool errors ( #10671 )
2025-10-09 21:20:20 +00:00
Sandy Tao
a8379d1f4b
fix(tests): enable and update prompt for MCP add tool test ( #10850 )
2025-10-09 21:16:59 +00:00
Jacob Richman
6d84d4dc9c
Fix prompt to make it a bit more deterministic ( #10848 )
2025-10-09 21:13:26 +00:00
anthony bushong
ae02236c63
feat(core): generalize path correction for use across tools ( #10612 )
2025-10-09 20:51:16 +00:00
Sandy Tao
433ca84ce0
fix(tests): log actual output in validateModelOutput on failure ( #10843 )
2025-10-09 20:30:25 +00:00
shishu314
bd6bba8d07
fix(doc) - Update doc for deflake command ( #10829 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-09 19:06:35 +00:00
Tommaso Sciortino
cd354aebed
Fix hooks to avoid unnecessary re-renders ( #10820 )
2025-10-09 18:07:25 +00:00
Sandy Tao
b60c8858af
feat(ui): shorten context overflow message when <50% of limit ( #10812 )
2025-10-09 17:22:26 +00:00
Abhi
70610c740e
feat(telemetry): Add telemetry for web_fetch fallback attempts ( #10749 )
2025-10-09 17:01:17 +00:00
Richie Foreman
a08938010c
cleanup(markdown): Prettier format all markdown @ 80 char width ( #10714 )
2025-10-09 12:17:37 +00:00
Sumit Chauhan
0cd490a9b8
feat: support GOOGLE_CLOUD_PROJECT_ID fallback ( fixes #2262 ) ( #2725 )
2025-10-09 10:42:54 +00:00
shrutip90
a044c25981
fix: Add a message about permissions command on startup in untrusted … ( #10755 )
2025-10-09 05:17:58 +00:00
Abhi
3d24575239
refactor(core): Centralize 'write_file' tool name ( #10694 )
2025-10-09 04:33:31 +00:00
Gal Zahavi
3ea5581ad7
chore(int): disable flaky tests ( #10771 )
2025-10-08 17:29:14 -07:00
gemini-cli-robot
95268b266d
chore(release): bump version to 0.10.0-nightly.20251007.c195a9aa ( #10669 )
...
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-10-08 16:52:11 -07:00
Sandy Tao
06920402f8
feat(core): Stop context window overflow when sending chat ( #10459 )
2025-10-08 22:20:44 +00:00
Richie Foreman
bcbcaeb82c
fix(docs): Update docs/faq.md per Srinanth ( #10667 )
2025-10-08 22:03:28 +00:00
christine betts
29aabd7bfc
Remove 'hello' extension ( #10741 )
2025-10-08 21:56:57 +00:00
Jacob MacDonald
56ca62cf3c
Pre releases ( #10752 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-08 21:26:12 +00:00
Gal Zahavi
741b57ed06
fix(core): Use shell for spawn on Windows ( #9995 )
2025-10-08 21:21:23 +00:00
shishu314
8d8a2ab64e
Fix(doc) - Add section in docs for deflaking ( #10750 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-08 21:21:02 +00:00
Jenna Inouye
3d106186f4
Docs: Add updates to changelog for v0.8.0 ( #10732 )
2025-10-08 21:15:56 +00:00
Tommaso Sciortino
118aade84c
citations documentation ( #10742 )
2025-10-08 21:00:44 +00:00
anthony bushong
76b1deec25
fix(core): refresh file contents in smart edit given newer edits from user/external process ( #10084 )
2025-10-08 20:58:52 +00:00
Adam Weidman
f2852056a1
feat: prevent ansi codes in extension MCP Servers ( #10748 )
2025-10-08 20:41:22 +00:00
김세은
1962b51d8d
fix: ensure positional prompt arguments work with extensions flag ( #10077 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-10-08 20:32:05 +00:00
fuyou
b92e3bca50
fix(mcp): fix MCP server removal not persisting to settings ( #10098 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-08 20:29:57 +00:00
Gal Zahavi
467a305f26
chore(shell): Enable interactive shell by default ( #10661 )
2025-10-08 20:28:19 +00:00
Gal Zahavi
b0b1be0c2a
chore(int): skip flaky tests ( #10736 )
2025-10-08 20:05:11 +00:00
Abhi
c0552ceb22
feat(core): add telemetry for subagent execution ( #10456 )
2025-10-08 12:42:33 -07:00
shishu314
b45bd5ff7b
Fix(infra) - Skip file system interactive test since it is currently broken ( #10734 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-08 19:24:42 +00:00
shishu314
603ec2b21b
Add script to deflake integration tests ( #10666 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-08 17:39:22 +00:00
shishu314
1af3fef33a
fix(infra) - Remove auto update from integration tests ( #10656 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-08 16:46:08 +00:00
Abhi
8aa730082e
refactor(core): Centralize 'write_todos_list' tool name ( #10690 )
2025-10-08 16:34:56 +00:00
Adam Weidman
8ac2c6842d
chore: bundle a2a-server ( #10265 )
2025-10-08 14:34:39 +00:00
Zack Birkenbuel
8980276b20
Rationalize different Extension typings ( #10435 )
2025-10-08 14:31:41 +00:00
hritan
5d09ab7eb3
chore: refactored test-helper to handle boilerplate for interactive mode ( #10322 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
2025-10-08 14:14:09 +00:00
Adrian Arribas
8cd2ec7c9b
[Part 4/6] feat(telemetry): add memory monitor with activity-aware recording and tests ( #8122 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-07 23:23:17 +00:00
Shreya Keshive
c195a9aa3b
fix(core): Use 127.0.0.1 for IDE client connection ( #10658 )
2025-10-07 20:26:35 +00:00
Victor May
ed0d1a0ba3
Get around the initial empty response from gemini-2.5-flash. ( #10508 )
2025-10-07 19:05:33 +00:00
shishu314
cf7debbac1
fix(infra) - Fix missing package error ( #10595 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-07 18:58:05 +00:00
Jacob Richman
34ba8be821
Enhance debug profiler to track tree framerate and dispatch errors ( #10502 )
2025-10-07 17:28:35 +00:00
Adam Weidman
6bb99806f0
Fix quoting when echoing workflow JSON ( #10596 )
2025-10-07 16:10:52 +00:00
christine betts
d93e987f24
Remove separate --path argument for extensions install command ( #10628 )
2025-10-07 16:01:45 +00:00
Jacob MacDonald
343be47fa9
use extract-zip and tar libraries to extract archives ( #10414 )
...
Co-authored-by: christine betts <chrstn@uw.edu >
2025-10-07 15:37:41 +00:00
Adam Weidman
c4656fb063
chore: fix folder trust tests ( #10636 )
2025-10-07 14:29:38 +00:00
christine betts
69f93f852e
Update gemini extensions new ( #10629 )
2025-10-07 13:10:21 +00:00
Dmitry Lyalin
5a0b21b1d1
Fix link to Extension Releasing Guide (broken link) ( #10635 )
2025-10-07 12:59:42 +00:00
Sandy Tao
dc0e0b4165
fix(ci): ensure dry-run is false for scheduled nightly releases ( #10571 )
2025-10-07 01:34:26 +00:00
christine betts
4f53919a2b
Update extensions docs ( #10621 )
2025-10-07 00:12:56 +00:00
Sandy Tao
e705f45c5f
fix(core): retain user message in history on stream failure ( #10608 )
2025-10-06 23:32:35 +00:00
Jenna Inouye
4cd3728039
Modifying stale data ( #10622 )
2025-10-06 23:28:52 +00:00
bl-ue
974ab66b7a
feat(sessions): Add automatic session cleanup and retention policy ( #7662 )
2025-10-06 19:34:00 +00:00
Gal Zahavi
abe4045c63
ci(release): remove 'dev' option from manual release ( #10374 )
2025-10-06 19:25:16 +00:00
mistergarrison
d9fdff339a
Re-submission: Make --allowed-tools work in non-interactive mode ( #10289 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-10-06 19:15:21 +00:00
Adam Weidman
b6d3c56b35
chore(actions): mark wombat-token-cli as required ( #10590 )
2025-10-06 15:26:35 +00:00
Tommaso Sciortino
0cf01df48c
Temporarily remove NPM integration tests till we resolve #10517 ( #10520 )
2025-10-05 15:25:45 +00:00
Jacob MacDonald
7f8537a130
Cleanup extension update logic ( #10514 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-04 04:06:26 +00:00
Abhi
1a06282061
fix(lint): Fixes silent pass for formatting mistakes in gh ci ( #10489 )
2025-10-04 03:50:37 +00:00
owenofbrien
7db79e145e
Stop logging tool call error message to clearcut ( #10511 )
2025-10-03 21:18:57 +00:00
Gaurav
319f43fa23
fix: handle request retries and model fallback correctly ( #9407 )
2025-10-03 20:24:50 +00:00
hritan
f2308dba28
test: fix flaky integration tests for compress command ( #10371 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-10-03 19:42:28 +00:00
shishu314
c9eb58e122
fix(doc) - Update releases doc ( #10504 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-03 19:02:28 +00:00
shishu314
0c61653b34
fix(infra) - Add original PR number into hotfix branch ( #10499 )
...
Co-authored-by: Shi Shu <shii@google.com >
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-10-03 18:37:48 +00:00
Tommaso Sciortino
43b3f79d60
Update dep versions to fix vulnerabilities ( #10496 )
2025-10-03 17:36:57 +00:00
Shreya Keshive
8149a4546e
feat(lint): add sensitive keyword linter ( #10488 )
2025-10-03 17:25:28 +00:00
Silvio Junior
ee3e4017c3
Add function processOutput to AgentDefinition and typing for an agent's output ( #10447 )
2025-10-03 17:21:08 +00:00
Jacob MacDonald
3f79d7e5bb
Fix oauth support for MCP servers ( #10427 )
2025-10-03 16:23:55 +00:00
Sandy Tao
3b92f127a9
refactor(core): Unify retry logic and remove schema depth check ( #10453 )
2025-10-03 16:08:27 +00:00
Shreya Keshive
667ca6d241
feat(ci): add ability to publish packages to private github registry for testing ( #10348 )
2025-10-03 15:41:32 +00:00
Shreya Keshive
d8570e4d64
feat(vscode-ide-companion): enforce auth token validation ( #10481 )
2025-10-03 15:41:27 +00:00
shishu314
505e88656a
fix(doc) -update release doc ( #10484 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-10-03 15:14:31 +00:00
Richie Foreman
f76adec8a6
feat(ci): Add some very basic smoke testing to CI.yml ( #10451 )
2025-10-03 14:43:06 +00:00
Abhi
93c7378d3b
chore(formatting): Fix formatting on main ( #10464 )
2025-10-03 03:28:49 +00:00
Jenna Inouye
2ab61dd16a
Docs: Minor change to website nav and headings ( #10454 )
...
Co-authored-by: Michael Bleigh <mbleigh@mbleigh.com >
2025-10-02 23:07:26 +00:00
Adam Weidman
16d4701822
Fix /chat list not write terminal escape codes directly ( #10415 )
2025-10-02 22:52:16 +00:00
Tommaso Sciortino
fcdfa8609a
Change "Create Pull Request" action to not try merging ( #10379 )
2025-10-02 22:01:42 +00:00
Michael Bleigh
4af89e944d
fix(docs): several .md links in docs are incorrect ( #10449 )
2025-10-02 22:00:09 +00:00
sgnagnarella
43bac6a038
Adding list sub command to memoryCommand to list the path of GEMINI.md files ( #10108 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-10-02 21:46:54 +00:00
kurileo
0713dd4d2d
Update GOOGLE_CLOUD_PROJECT in README for disambiguation ( #10310 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-10-02 21:21:01 +00:00
Shehab
69e1239698
fix(auto-update): suppress npx nag for transient installs ( #10276 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-10-02 20:55:32 +00:00
shishu314
f63561dce4
Update patch PRs with additional content ( #10180 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-10-02 20:21:37 +00:00
Vasily Tsybenko
0c6f9d2898
fix: prevent tools discovery error for prompt-only MCP servers ( #10367 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-10-02 19:47:58 +00:00
Silvio Junior
63efcb6b66
Modify GCLI system prompt to conditionally use the CodebaseInvestigator ( #10419 )
2025-10-02 19:37:44 +00:00
Jenna Inouye
452d0e21b6
Docs: Add changelog section ( #10388 )
...
Co-authored-by: Dmitry Lyalin <dmitry.lyalin@lyalin.com >
2025-10-02 19:31:11 +00:00
shishu314
0f465e88e8
fix(infra) - Add pr number to the release branch name for final step of release ( #10364 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-10-02 18:30:25 +00:00
Abhi
a6af7bbb46
refactor(agents): implement submit_final_output tool for agent completion ( #10377 )
2025-10-02 18:07:58 +00:00
Shreya Keshive
4a70d6f22f
fix(vscode): suppress update and install messages in managed IDEs ( #10431 )
2025-10-02 18:00:51 +00:00
shishu314
460ec60212
Fix(infra) - Give merge queue skipper read-all access ( #10368 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-10-02 17:15:25 +00:00
Shreya Keshive
12d4ec2e07
feat(ide extension): introduce debug logging ( #10416 )
2025-10-02 17:10:13 +00:00
Ben Brandt
e7a13aa031
fix: Stream parsing for Windows Zed integration ( #10339 )
2025-10-02 16:54:49 +00:00
Jerop Kipruto
eae8b8b1a1
fix(core): use constant for tool_output_truncated event name ( #10372 )
2025-10-02 16:51:14 +00:00
Shreya Keshive
99958c68e7
fix(ci) update wording of promote action output to be more clear ( #10369 )
2025-10-02 16:31:26 +00:00
David East
332e392aee
fix(integration): Added shell specification for winpty ( #9497 )
2025-10-02 16:27:24 +00:00
Richie Foreman
c987e6a623
feat(ci): Add npx run testing to Release Verification Testing ( #10352 )
2025-10-02 15:28:41 +00:00
Jacob MacDonald
ebbfcda762
support giving a github repo URL with a trailing slash ( #10360 )
2025-10-02 14:34:23 +00:00
anthony bushong
aa8b2abe3d
fix(core): add telemetry support for smart edit correction events ( #10378 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-02 01:35:45 +00:00
Jenna Inouye
14dbda9145
Docs IA update and Get Started section. ( #10192 )
2025-10-01 23:24:29 +00:00
Gal Zahavi
33269bdbc9
fix(ui): increase padding of settings dialog ( #10376 )
2025-10-01 22:45:25 +00:00
Jacob Richman
6553e64431
Fix so paste timeout protection is much less invasive. ( #9284 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-01 22:21:57 +00:00
Victor May
8174e1d5b8
Smart Edit Strategy Logging ( #10345 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-10-01 21:53:53 +00:00
Jacob Richman
a404fb8d2e
Switch to a reducer for tracking update state fixing flicker issues due to continuous renders ( #10280 )
2025-10-01 21:53:15 +00:00
Billy Biggs
ef76a801c4
Revert reducing margin on narrow screens ( #10375 )
2025-10-01 21:50:33 +00:00
Jacob Richman
6eca199c39
Cleanup useSelectionList and fix infinite loop in debug mode issues. ( #10248 )
2025-10-01 21:25:54 +00:00
Abhi
331ae7dbdf
feat: Add enableSubagents configuration and wire up subagent registration ( #9988 )
2025-10-01 20:54:00 +00:00
Jerop Kipruto
5b16771567
feat(telemetry): add OpenTelemetry GenAI semantic convention metrics ( #10343 )
2025-10-01 20:24:55 +00:00
Silvio Junior
7e493f4a9e
Codebase Investigator: Separate initial query from system prompt and apply templateStrings in query and initialMessages ( #10282 )
2025-10-01 20:21:01 +00:00
Shreya Keshive
f3152fa7fb
chore(release): bump version to 0.9.0-nightly.20251001.163dba7e ( #10362 )
2025-10-01 20:19:39 +00:00
Shreya Keshive
163dba7e4b
fix(release): propagate force_skip_tests to publish jobs ( #10355 )
2025-10-01 18:27:21 +00:00
hritan
5ceae177d5
test: interactive test for read write tools sequential flow ( #10323 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
2025-10-01 16:56:50 +00:00
JAYADITYA
65e7ccd1d4
docs: document custom witty loading phrases feature ( #8006 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-10-01 15:52:26 +00:00
Richie Foreman
ed1b5fe5e1
fix(settings): Ensure that InferSettings properly infers the combinations of values from an enum type. ( #10346 )
2025-10-01 15:32:18 +00:00
hritan
1ee161f3c1
test: skip flaky test ( #10340 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
2025-10-01 14:02:52 +00:00
Christie Warwick (Wilson)
5c6f006634
Refactor metrics definitions to be easily understandable ( #10215 )
2025-10-01 13:33:47 +00:00
Tommaso Sciortino
a80cd28d4c
Fix dry run. ( #10286 )
2025-10-01 03:42:56 +00:00
Tommaso Sciortino
46c884de51
Print inputs for all actions. ( #10284 )
2025-10-01 03:38:18 +00:00
Abhi
4c5ab80b7e
fix(routing): Disable model router by default ( #10283 )
2025-10-01 03:10:10 +00:00
Allen Hutchison
f207ea94d6
fix(memory): ignore @ inside code blocks ( #10201 )
2025-10-01 01:24:33 +00:00
Tayyab3245
c913ce3c0b
fix(cli): honor argv @path in interactive sessions (quoted + unquoted) ( #5952 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-10-01 01:18:04 +00:00
Shreya Keshive
f2aa9d283a
fix(release): Fix promotion workflow ( #10261 )
2025-09-30 23:16:53 +00:00
Abhi
794d92a79d
refactor(agents): Introduce Declarative Agent Framework ( #9778 )
2025-09-30 21:00:54 +00:00
Gal Zahavi
6695c32aa2
fix(shell): improve shell output presentation and usability ( #8837 )
2025-09-30 20:44:58 +00:00
hritan
c0400a4414
test: additional integration tests for editing a file ( #9963 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
2025-09-30 19:59:19 +00:00
Jacob MacDonald
0fec673bfb
fix installing extensions from zip files ( #10253 )
2025-09-30 19:34:41 +00:00
hritan
178e89a914
test: integration tests for /compress command in interactive mode ( #10154 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
2025-09-30 19:31:51 +00:00
shishu314
d991c4607d
feat(infra)- Use queue skipper for CI ( #9773 )
...
Co-authored-by: Shi Shu <shii@google.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-30 18:58:56 +00:00
Adam Weidman
62e9691373
chore(docs): Add documentation for MCP Servers using SA Impersonation ( #10245 )
2025-09-30 18:47:09 +00:00
Tommaso Sciortino
3d1b0df0fa
Verify npm release by running integration tests ( #10174 )
2025-09-30 18:24:12 +00:00
Vikram Pasupathy
953935d67c
Fix a cache collision bug in the llm edit fixer ( #9542 )
...
Co-authored-by: anthony bushong <agmsb@users.noreply.github.com >
2025-09-30 16:58:32 +00:00
Jacob MacDonald
6c54746e24
restore case insensitivity for extension enablement and add tests ( #10249 )
2025-09-30 16:56:28 +00:00
Victor May
ec08129fba
Regex Search/Replace for Smart Edit Tool ( #10178 )
2025-09-30 16:06:03 +00:00
Jacob MacDonald
42436d2ed4
Don't log an error about invalid extensions when passing "-e none" ( #10203 )
2025-09-30 15:59:05 +00:00
Keith Schaab
1067df1872
Fix: A2A server - add liveOutput and response resultsDisplay to the serialized tool call result ( closes #9520 ) ( #9788 )
...
Co-authored-by: anthony bushong <agmsb@users.noreply.github.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-30 15:26:51 +00:00
Tommaso Sciortino
6ef78cbbe9
Fix Release Nightly ( #10186 )
2025-09-30 14:52:56 +00:00
Dmytro Salnyk
1d24f95a3f
fix(telemetry): Improve Cloud Shell surface type detection for telemetry purposes ( #10162 )
2025-09-30 10:35:34 +00:00
Abhi
ddcbd0c2bd
chore(formatting): Fix formatting for math.ts ( #10216 )
2025-09-30 04:39:42 +00:00
Jacob MacDonald
ae51bbdae8
Add extension name auto-complete to /extensions update ( #10198 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-29 23:39:47 +00:00
Billy Biggs
ae387b61a9
Reduce margin on narrow screens, flow the footer contents ( #8042 )
2025-09-29 23:22:47 +00:00
Miguel Solorio
6f6e004f82
feat: Add red threshold for getStatusColor util ( #9789 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-29 22:42:33 +00:00
Jacob Richman
d37fff7fd6
Fix /tool and /mcp commands to not write terminal escape codes directly ( #10010 )
2025-09-29 21:27:06 +00:00
Jacob MacDonald
cea1a867b6
Extension update confirm dialog ( #10183 )
2025-09-29 21:19:19 +00:00
shrutip90
d6933c77ba
fix(cli): Make IDE trust listener also listen to IDE status changes a… ( #9783 )
2025-09-29 20:54:12 +00:00
Adam Weidman
0c3fcb7030
chore(mocktools): final step in unify mock tool definitions ( #9166 )
2025-09-29 20:43:06 +00:00
Jacob Richman
94f43c79d0
Fix markdown rendering on Windows ( #10185 )
2025-09-29 20:38:27 +00:00
Shreya Keshive
5478b58166
ci(release): Skip tests by default in scheduled nightly workflow ( #10184 )
2025-09-29 20:33:06 +00:00
Tommaso Sciortino
a49a09f13c
Update package-lock.json to match pacakge.json. ( #10173 )
2025-09-29 19:33:55 +00:00
Sandy Tao
ac4a79223a
feat(core): Add content-based retries for JSON generation ( #9264 )
2025-09-29 19:27:15 +00:00
shishu314
042288e72c
fix(infra)- Add pr number to release branches ( #9506 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-29 17:14:53 +00:00
Sandy Tao
8a2c2dc73f
feat(core): Enable tool output truncation by default ( #9983 )
2025-09-29 16:30:37 +00:00
shishu314
bf32492da9
feat(infra) - Add workflow for rollbacking a change ( #9261 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-29 15:02:29 +00:00
Jacob MacDonald
e8a0249e6b
fix windows test for new extension installation ( #10164 )
2025-09-29 14:35:42 +00:00
Jacob MacDonald
ea061f52b0
Fix -e <extension> for disabled extensions ( #9994 )
2025-09-29 13:53:19 +00:00
anthony bushong
d1485d4672
fix(actions): hydrate env vars into nightly failure issue/issue body ( #10087 )
2025-09-29 11:26:47 +00:00
Jacob Richman
62ba330612
Jacob314/add radio button keys ( #10083 )
2025-09-28 21:50:47 +00:00
anthony bushong
1bd75f060d
fix(core): auto-correct file paths in smart edit where possible (x-platform) ( #10018 )
2025-09-27 23:16:51 +00:00
Fridayxiao
331e2ce45d
feat(cli): Add setting to show status(or Gemini 's thoughts) in terminal title and taskbar icon ( #4386 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-27 19:48:24 +00:00
Jacob Richman
0b2d79a2ea
fix(ui): stop truncating output from the model rendered in <static> ( #9972 )
2025-09-27 19:40:09 +00:00
Sandy Tao
ffcd996366
feat(core): Use lastPromptTokenCount to determine if we need to compress ( #10000 )
2025-09-27 18:56:10 +00:00
Tommaso Sciortino
93694c6a65
Make compression algo slightly more aggressive ( #10024 )
2025-09-27 12:15:53 +00:00
Adam Weidman
db51e3f4cd
feat(iap support): Add service account impersonation provider to MCPServers to support IAP on Cloud Run ( #8505 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-09-27 08:12:24 +00:00
christine betts
19400ba8c7
Reapply "feat(accessibility): implement centralized screen reader layout ( #9263 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-27 01:27:00 +00:00
Gal Zahavi
eb1a6a6091
Revert "fix(core): auto-correct file paths in smart edit where possible" ( #10009 )
2025-09-27 01:05:48 +00:00
matt korwel
80a414be97
Mac required ( #10007 )
2025-09-27 00:23:48 +00:00
Tommaso Sciortino
8d17d09488
Delete test that really isn't an integration test. ( #10012 )
2025-09-27 00:14:23 +00:00
matt korwel
38dccf32c1
feat: Use PAT for gemini-cli-robot in release workflows ( #9804 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2025-09-26 23:35:26 +00:00
Gal Zahavi
24c15b9d43
Revert "Make --allowed-tools work in non-interactive mode" ( #10006 )
2025-09-26 16:22:02 -07:00
Luna Wang
2aa2ab878b
Remove border from user messages and color > to improve UI and readability ( #9984 )
2025-09-26 22:02:54 +00:00
Michael Bleigh
969833e6e3
chore(docs): adds sidebar.json for docs organization ( #9985 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-26 20:39:19 +00:00
Michael Bleigh
94b377049b
chore(docs): adds GitHub action to rebuild docs on change ( #9987 )
2025-09-26 20:21:50 +00:00
anthony bushong
0d22b22c82
fix(core): auto-correct file paths in smart edit where possible ( #9526 )
2025-09-26 20:05:15 +00:00
owenofbrien
e909993dd1
Added warning to avoid command substitution in run_shell_command tool… ( #9934 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-26 18:16:05 +00:00
Abhi
3d7cb3fb8a
refactor(core): Extract file filtering constants from Config to break circular dependency ( #9974 )
2025-09-26 17:37:00 +00:00
mistergarrison
e8a065cb9f
Make --allowed-tools work in non-interactive mode ( #9114 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2025-09-26 17:03:35 +00:00
matt korwel
8a16165a9b
fix(deps): resolve ansi-regex dependency conflict ( #9964 )
2025-09-26 10:00:54 -07:00
Christie Warwick (Wilson)
a4516665d5
test: add telemetry metric validation and refactor TestRig ( #9527 )
2025-09-26 15:34:24 +00:00
geoffdowns
11c995e9fa
Stop checking MCP tool schemas for type definitions ( #9574 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: anthony bushong <agmsb@users.noreply.github.com >
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
Co-authored-by: Jacob MacDonald <jakemac@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: christine betts <chrstn@uw.edu >
Co-authored-by: Adam Weidman <65992621+adamfweidman@users.noreply.github.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
Co-authored-by: HugoMurillo <mhugorodrigo@google.com >
Co-authored-by: Shreya Keshive <shreyakeshive@google.com >
Co-authored-by: Miguel Solorio <miguelsolorio@google.com >
Co-authored-by: Christie Warwick (Wilson) <bobcatfish@gmail.com >
Co-authored-by: shrutip90 <shruti.p90@gmail.com >
2025-09-26 04:42:21 +00:00
christine betts
53434d860a
Update enablement behavior + info ( #9758 )
2025-09-26 01:44:28 +00:00
Tommaso Sciortino
2e4e53c3ee
Delete shell-service.test.ts and change other tests to cover the same features ( #9772 )
2025-09-26 00:32:40 +00:00
christine betts
7e2ffd7a80
Add 'getting started' extensions documentation ( #9536 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-26 00:01:49 +00:00
christine betts
463e5d5b7e
Add integration test for extensions ( #9177 )
2025-09-25 23:43:09 +00:00
shrutip90
809b933d81
Create issues on manual release failures similar to other release pro… ( #9786 )
2025-09-25 23:01:07 +00:00
Christie Warwick (Wilson)
8bf8707668
fix(temporary): Don't run ctrl+c exit test on windows ( #9785 )
2025-09-25 22:37:44 +00:00
Miguel Solorio
18e5113754
Unset foreground in default themes ( #9765 )
2025-09-25 22:12:10 +00:00
Shreya Keshive
70bc2933cc
Update extension > plugin to avoid confusion ( #9780 )
2025-09-25 21:47:41 +00:00
Gal Zahavi
6535b71c35
fix(prompt): Prevent model from reverting successful changes ( #9253 )
2025-09-25 20:54:44 +00:00
HugoMurillo
ed309096b1
test: disable all IDE integration tests ( #9524 )
...
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
2025-09-25 20:18:34 +00:00
Shreya Keshive
f885375c72
fix(zed): Fix broken 'auto' model selection in Zed integration ( #9769 )
2025-09-25 18:47:07 +00:00
Sandy Tao
d2d9ae3f91
fix(ui): Truncate long loading text ( #9768 )
2025-09-25 18:33:06 +00:00
matt korwel
5f080aa52a
fix(ci): e2e workflow aligned with release ( #9296 )
2025-09-25 18:26:07 +00:00
Adam Weidman
c334f02d51
feat(escape ansi): escape ansi ctrl codes from model output before displaying to user ( #8636 )
2025-09-25 18:07:17 +00:00
christine betts
2d76cdf2c6
Throw error for invalid extension names ( #9538 )
2025-09-25 18:05:49 +00:00
Jacob MacDonald
defda3a97d
Fix duplicate info messages for extension updates ( #9760 )
2025-09-25 17:58:43 +00:00
Jacob MacDonald
a0c8e3bf2b
Re-request consent if necessary when updating extensions ( #9517 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-25 17:57:59 +00:00
Sandy Tao
e209724789
fix(core): Improve API error retry logic ( #9763 )
2025-09-25 17:57:00 +00:00
anthony bushong
4caaa2a8e8
fix(core): ensure retry sets defaults for nullish values passed into options ( #9540 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-09-25 17:33:00 +00:00
Jack Wotherspoon
c463d47fa8
chore: add indicator to extensions list for enable/disable ( #9405 )
2025-09-25 16:30:25 +00:00
Adrian Arribas
f80eb71068
[Part 3/6] feat(telemetry): enhance metrics with performance monitoring APIs ( #8113 )
2025-09-25 16:12:46 +00:00
Shardul Natu
135d3401cd
add(telemetry): Add character-level edit metrics to Concord ( #9145 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: owenofbrien <86964623+owenofbrien@users.noreply.github.com >
2025-09-25 16:09:56 +00:00
matt korwel
fab279f0fd
chore(release): bump version to 0.8.0-nightly.20250925.b1da8c21 ( #9753 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-25 14:23:19 +00:00
matt korwel
b1da8c210e
change patch name for consistency ( #9249 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-25 04:05:50 +00:00
matt korwel
9ba1640c07
Releasing: Version mgmt ( #8964 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-25 04:02:00 +00:00
matt korwel
422eb78b41
handling propper checkouts for releasemanual ( #8954 )
2025-09-25 03:57:16 +00:00
anthony bushong
275a12fd45
fix(core): set default maxAttempts in baseLLMClient ( #9533 )
2025-09-25 01:18:26 +00:00
anthony bushong
8abe7e151c
fix(core): plumb max attempts for retry to generate options in baseLLMClient ( #9518 )
2025-09-24 22:25:15 +00:00
anthony bushong
05c962af1f
fix(core): update edit tool error type during llm judgements ( #9510 )
2025-09-24 22:19:19 +00:00
Shreya Keshive
74447fcff2
feat(vscode-ide-companion): add script to check for new release ( #9160 )
2025-09-24 21:52:41 +00:00
Abhi
ee36307495
feat(cli): Enable model router by default and add to settings dialog ( #9262 )
2025-09-24 21:33:14 +00:00
Abhi
4c6da1eaf9
feat(integration): Force single model for more determinisitic e2e tests ( #9278 )
2025-09-24 21:17:13 +00:00
christine betts
86e45c9aa5
Fix windows extension install issue ( #9512 )
2025-09-24 21:03:28 +00:00
jleong-stripe
e0ba7e4ffb
For dynamic client registration - use registration endpoint in config if available instead of performing OAuth discovery again ( #9231 )
2025-09-24 20:53:42 +00:00
James
3660d4ecc0
docs(extensions): update security extension URL used in installation example ( #9505 )
2025-09-24 20:01:26 +00:00
Abhi
22740ddceb
refactor(core): Extract thought parsing logic into a dedicated utility ( #9503 )
2025-09-24 19:38:36 +00:00
Sandy Tao
ad59be0c81
fix(core): Fix unable to cancel edit tool ( #9299 )
2025-09-24 19:16:00 +00:00
fuyou
66c2184fe5
feat: Add AbortSignal support for retry logic and tool execution ( #9196 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-09-24 19:10:55 +00:00
Srinath Padmanabhan
e0ef5beae4
Document support for Google AI Pro and AI Ultra ( #9426 )
...
Co-authored-by: Srinath Padmanabhan <srithreepo@google.com >
2025-09-24 10:54:48 -07:00
Richie Foreman
9d70649b75
fix(test): Fix a disabled test ( #9481 )
2025-09-24 17:42:03 +00:00
geoffdowns
4f49341ce9
relax JSON schema validation ( #9332 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-09-24 16:55:32 +00:00
Richie Foreman
d8b895a2f1
feat(ci): Push Sandbox images to dockerhub instead of GHCR ( #9163 )
2025-09-24 16:46:51 +00:00
Tommaso Sciortino
1753c71bfa
Add log groups to run tests ( #9275 )
2025-09-24 16:43:45 +00:00
Tommaso Sciortino
b540137820
Fix broken icon on force_skip_tests option in "Release: Manual" ( #9246 )
2025-09-24 16:17:18 +00:00
Shardul Natu
5cadd37eb2
fix(typo): Fix the commit sha of a mistyped action ( #9310 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-09-24 15:53:04 +00:00
Jacob MacDonald
cc47e475af
support standard github release archives format ( #9265 )
2025-09-24 15:38:09 +00:00
matt korwel
3667ecf107
Test workflow dispatch ( #9283 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-24 02:59:58 +00:00
Jacob Richman
ce92ed3f68
Fix issue where an undefined variable was passed to the sandbox constructor ( #9279 )
2025-09-23 17:06:31 -07:00
Jacob Richman
c6f8ecc227
Fix missing exports that were causing the build to fail locally. ( #9277 )
2025-09-23 23:52:34 +00:00
David East
38e053b7bb
test(integration): Add "Ctrl + C" to exit integration test ( #9272 )
2025-09-23 22:40:20 +00:00
Tommaso Sciortino
03bd6876d2
Fix broken if ( #9270 )
2025-09-23 22:07:35 +00:00
Victor May
4bd4cd697b
Log Model Slash Commands ( #9250 )
2025-09-23 22:06:03 +00:00
Sandy Tao
28c3901513
feat(logging): Add model name to content retry events ( #9266 )
2025-09-23 21:34:17 +00:00
Abhi
c12b87ed03
fix(routing): Round latency to integer for telemetry ( #9242 )
2025-09-23 21:29:12 +00:00
shrutip90
f795255e58
docs(trust): Add documentation for folder trust feature ( #9257 )
2025-09-23 21:13:37 +00:00
christine betts
39b0948417
Revert "feat(accessibility): implement centralized screen reader layo… ( #9255 )
2025-09-23 19:44:33 +00:00
shishu314
16278fd849
feat(infra) - Add file for rollback workflow ( #9211 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-23 19:36:41 +00:00
shishu314
98461ff667
metrics(extension) - Add logging for disable extension ( #9238 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-23 18:37:35 +00:00
Jacob MacDonald
31c609daec
remove extraction of the first dir into the top level for github release extensions ( #9247 )
2025-09-23 18:30:44 +00:00
shishu314
7f9975cf1c
cleanup(infra) - Remove change tags action ( #9201 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-23 18:21:55 +00:00
Victor Tsaran
bfd904bfc8
feat(accessibility): implement centralized screen reader layout system ( #8155 )
2025-09-23 18:04:49 +00:00
Richie Foreman
f46e50b271
fix(ci): Perform release verification in a separate working dir. ( #9234 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-23 16:55:47 +00:00
Jacob MacDonald
d8393a06dd
dont attempt to look up releases on github for non-github git uris ( #9235 )
2025-09-23 16:52:42 +00:00
Abhi
5151bedf06
feat(cli): Add /model command for interactive model selection ( #8940 )
...
Co-authored-by: Miguel Solorio <miguel.solorio07@gmail.com >
2025-09-23 16:50:09 +00:00
Junhao Liao
c96f8259c1
docs: fix links in headless.md after relocation from docs/cli ( #9052 )
2025-09-23 16:24:41 +00:00
Keith Lyons
82625fc07a
fix(pre-commit): improve monorepo handling and failure messaging ( #9123 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-23 15:57:24 +00:00
Abhi
c93eed6384
fix(core): Compression was broken when routing enabled ( #9183 )
2025-09-23 04:44:07 +00:00
Jacob Richman
5218323831
Fix useSelectionList bug. ( #9171 )
2025-09-23 04:31:39 +00:00
Jacob Richman
7e1705274c
Refactor to defer initialization. ( #8925 )
2025-09-23 02:48:25 +00:00
christine betts
40db029887
Fix package issue breaking noninteractive CLI commands ( #9174 )
2025-09-23 02:03:40 +00:00
shishu314
8d637a434c
feat(infra) - Add empty action file for change tags ( #9158 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-23 01:59:16 +00:00
Sandy Tao
712dc245ac
fix(quality): Retry invalid stream only 1 time ( #9169 )
2025-09-23 00:15:55 +00:00
shrutip90
47948e3712
fix(cli): Handle formatting errors in trustedFolders.json similar to settings file ( #9167 )
2025-09-23 00:06:43 +00:00
christine betts
570b0086b6
Improve extensions consent flow, command formatting, github-release behavior ( #9121 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-22 23:50:12 +00:00
Sandy Tao
4cdf9207f3
feat(core): Log invalid stream type ( #9168 )
2025-09-22 23:39:44 +00:00
Allen Hutchison
6328ca512f
Fix: Only log message bus debug info when feature is enabled ( #9156 )
2025-09-22 23:08:48 +00:00
Arya Gummadi
d7a0dbc6b1
fix(tests): fix flaky SettingsDialog tests ( #8396 )
...
Co-authored-by: Christie Warwick (Wilson) <bobcatfish@gmail.com >
2025-09-22 22:56:09 +00:00
Jacob MacDonald
525ced295c
quote archive names before extraction ( #9165 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-22 22:35:45 +00:00
Sandy Tao
9c4d1594ac
Fix(quality): Refine Stream Validation Logic ( #9150 )
2025-09-22 21:40:09 +00:00
MRK
fcffcfbacb
Modifying new_prompt logging to handle real prompts only ( #8788 )
...
Co-authored-by: owenofbrien <86964623+owenofbrien@users.noreply.github.com >
2025-09-22 21:31:06 +00:00
Tommaso Sciortino
59df649349
Update manual release documentation ( #9142 )
2025-09-22 20:56:45 +00:00
Richie Foreman
93e022cee5
feat(ci): Add a "verify release" action + workflow to the pipeline ( #8929 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-22 19:30:42 +00:00
Jacob MacDonald
710e00e02d
use github release artifacts instead of cloning repos when available ( #9147 )
2025-09-22 19:12:41 +00:00
Srinath Padmanabhan
4ef46e441c
Update Paid tier specific privacy notice. ( #8737 )
...
Co-authored-by: Srinath Padmanabhan <srithreepo@google.com >
2025-09-22 19:04:04 +00:00
Allen Hutchison
bcc4d81d19
feat: add message bus integration for tool confirmation ( #8938 )
2025-09-22 19:03:20 +00:00
shrutip90
6c559e2338
feat(cli): Add permissions command to modify trust settings ( #8792 )
2025-09-22 18:45:02 +00:00
Jerop Kipruto
c0c7ad10ca
feat(config): Support telemetry configuration via environment variables ( #9113 )
2025-09-22 18:23:06 +00:00
shishu314
10392ad344
Telemtry(extensions) - Add logging for extension events ( #8339 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-22 16:55:43 +00:00
Jacob MacDonald
34c14b7dd2
Store installed release version as a part of install metadata ( #9122 )
2025-09-22 16:42:35 +00:00
Jerop Kipruto
57272f84b1
fix(telemetry): disable OTLP when telemetry-outfile is set ( #9117 )
2025-09-22 16:40:30 +00:00
Shreya Keshive
9abb165f7b
refactor(vscode-ide-companion): Reduce VSIX size and improve build process ( #9118 )
2025-09-22 16:12:43 +00:00
JAYADITYA
92543da28c
fix(config):Reviving CustomWitty feature ( #8432 )
...
Co-authored-by: Richie Foreman <richie.foreman@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-09-22 15:30:11 +00:00
Abhi
81d03cb524
refactor(cli): Extract reusable BaseSelectionList component and modernize RadioButtonSelect tests ( #9021 )
2025-09-22 15:14:41 +00:00
shishu314
edd988be60
Fix(metrics) - Add exit hook for cleanup in Optl sdk ( #8930 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-22 14:01:52 +00:00
hritan
6869dbe695
fix(cli): return proper errors from loadExtensionConfig ( #8909 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
2025-09-22 09:34:52 +00:00
christine betts
d9828e2571
Reinstate support for updating locally-installed extensions ( #8833 )
2025-09-22 03:44:58 +00:00
Shreya Keshive
8fdb61aabf
feat(ide): Read IDE info from discovery file ( #8760 )
2025-09-22 00:54:18 +00:00
김세은
b4455af306
fix: resolve positional prompt argument being ignored with other flags ( #9004 )
2025-09-21 21:16:21 +00:00
Will 保哥
56f394cefd
fix(docs): fix a few Markdown syntax errorrs ( #8995 )
...
Co-authored-by: anthony bushong <agmsb@users.noreply.github.com >
2025-09-20 23:04:56 +00:00
anthony bushong
a1dc7a8f55
fix(cli): support comma separated values for extensions and allowed mcp server names ( #9007 )
2025-09-20 19:49:50 +00:00
Tommaso Sciortino
62b49ab14a
Fix incompatibilities with package.json ( #8949 )
2025-09-20 18:38:03 +00:00
Jacob Richman
375b8522fc
Fix bug where users are unable to re-enter disconnected terminals. ( #8765 )
2025-09-20 17:59:37 +00:00
Sandy Tao
2216856e3c
fix(ui): prevent useSlashCompletion effects from running during @ completion ( #8986 )
2025-09-20 16:13:58 +00:00
Wietse Venema
468db8730a
fix(mcp): handle gemini mcp add scope correctly in home directory ( #7800 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-09-20 14:19:11 +00:00
Richie Foreman
aba23feddd
feat(CI): Add a github action to build the sandbox image and push to GHCR ( #8670 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-20 14:19:03 +00:00
anj-s
44691a4ce6
(feat): Add a ToDo tool to track ongoing task lists ( #8761 )
...
Co-authored-by: joshualitt <joshualitt@google.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: Jacob MacDonald <jakemac@google.com >
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
2025-09-20 13:01:02 +00:00
Keith Lyons
22a560a990
feat(dev): add pre-commit hook for formatting and linting ( #8380 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-20 02:07:26 +00:00
christine betts
0152759dfb
Filter out the 'trust' attribute from extension MCP server configs ( #8809 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-20 01:15:40 +00:00
HugoMurillo
37c5397319
fix( #7777 ): screen reader accessibility setting not working ( #8730 )
2025-09-20 00:28:11 +00:00
shrutip90
c564464e6b
fix(cli): Revert the code to hide tips when showing trust dialog ( #8946 )
2025-09-19 22:22:39 +00:00
Roy Binux
532497b3d1
Correctly support comma-separated values for --allowed-tools ( #8386 )
...
Co-authored-by: anthony bushong <agmsb@users.noreply.github.com >
2025-09-19 21:50:59 +00:00
Huaiwu Li
ab982b8e32
docs: fix typos and grammar errors in documentation ( #8422 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: anthony bushong <agmsb@users.noreply.github.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-09-19 21:48:31 +00:00
Rohit Ramkumar
5be2a9d5e2
Support rendering function calls and responses when sharing chat to markdown ( #8693 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-09-19 21:47:20 +00:00
Michael Vorburger
f028913b0e
docs: Fix broken Extension example ( #8403 )
...
Co-authored-by: anthony bushong <agmsb@users.noreply.github.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-09-19 21:44:07 +00:00
Sandy Tao
c8ad831039
fix(security): Pin wrap-ansi to 9.0.2 ( #8934 )
2025-09-19 21:17:34 +00:00
Shreya Keshive
3bf8fec2f1
Add few more license file names to generate-notices script ( #8939 )
2025-09-19 20:12:12 +00:00
Tommaso Sciortino
b9f6283a8e
Add skip_github_release option to Manual Release. ( #8932 )
2025-09-19 19:13:33 +00:00
Jacob MacDonald
4c43c69d35
Update extension-releasing.md to have more info ( #8927 )
2025-09-19 18:55:30 +00:00
matt korwel
fd64d34082
Release: Ensure Tag Modification works ( #8931 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 18:43:39 +00:00
Tommaso Sciortino
d0da1f5fc9
Rollback shrinkwrap ( #8926 )
2025-09-19 18:22:01 +00:00
joshualitt
7681c595b5
Revert "feat(third_party) Port get-ripgrep." ( #8923 )
2025-09-19 18:08:41 +00:00
Christie Warwick (Wilson)
2bf226e918
doc: Add docs on release failure chat notifications ( #8768 )
2025-09-19 16:41:03 +00:00
Jacob MacDonald
dd91b0a68b
for github release extensions, dont require built assets ( #8746 )
2025-09-19 16:02:26 +00:00
christine betts
fa8cea170a
Fix extensions enablement bugs ( #8797 )
2025-09-19 15:43:39 +00:00
joshualitt
6e4236bf76
feat(third_party) Port get-ripgrep. ( #8514 )
2025-09-19 15:13:28 +00:00
James
2c4f61eca5
feat(cli) Custom Commands work in Non-Interactive/Headless Mode ( #8305 )
2025-09-19 13:49:35 +00:00
matt korwel
23467cdbdb
Finalizing Patching End 2 End ( #8906 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 05:39:38 -07:00
matt korwel
f371ecb948
permissions ( #8903 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 04:15:17 -07:00
matt korwel
9f597ab7c0
robot input ( #8901 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 04:07:26 -07:00
matt korwel
c9b39c379b
fix comment formatting ( #8900 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 04:02:50 -07:00
matt korwel
b08633daa3
Reset 2 ( #8898 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-19 03:51:01 -07:00
matt korwel
5f5e07e6cc
nailedit ( #8896 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 03:27:47 -07:00
matt korwel
8af1439697
testing ( #8891 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 02:34:46 -07:00
matt korwel
0fbc13aa4b
hm ( #8887 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 01:50:59 -07:00
matt korwel
e232c1d5ba
continue ( #8886 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 01:35:45 -07:00
matt korwel
e7a88f225d
no workflows ( #8884 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 01:26:32 -07:00
matt korwel
47e8822467
debugging ( #8882 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 01:23:55 -07:00
matt korwel
44805f4d58
keep going ( #8881 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 01:16:37 -07:00
matt korwel
bba0f2e557
breaking apart steps for permissions ( #8880 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 01:08:59 -07:00
matt korwel
b1fb68bb06
fixing merge ( #8879 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 00:59:00 -07:00
matt korwel
fd2bfc384d
Release triggering ( #8878 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 00:50:52 -07:00
matt korwel
bcc1f25c53
security bot was right ( #8868 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 00:36:12 -07:00
matt korwel
c442f8ae8c
install yargs ( #8867 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 00:33:07 -07:00
matt korwel
951596ffe4
again with permissions ( #8865 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 00:27:14 -07:00
matt korwel
1bfd575473
possibly fix permissions ( #8862 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 00:10:53 -07:00
fuyou
e48f61bdc7
fix(cli): ctrl c/ctrl d close cli when in dialogs ( #8685 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-19 06:52:29 +00:00
matt korwel
938c850ed8
reset permissions ( #8855 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-19 00:01:04 -07:00
matt korwel
55b6f848fc
trying to fix logging and permissions ( #8854 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-18 23:56:09 -07:00
matt korwel
889a6c21ac
Include release branches ( #8848 )
2025-09-18 23:34:52 -07:00
Billy Biggs
ecd95ed6b3
Prompte telemetry, debug and proxy flags to global ( #8811 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-19 06:13:44 +00:00
matt korwel
4e6ca95db9
missed 2 apparently ( #8842 )
2025-09-18 23:07:18 -07:00
matt korwel
52c1599240
missed one ( #8840 )
2025-09-18 23:00:43 -07:00
matt korwel
9c392b2d44
E2e v6 ( #8839 )
2025-09-18 22:57:20 -07:00
matt korwel
42bac72be2
removing duplicate runs ( #8838 )
2025-09-18 22:50:49 -07:00
matt korwel
1195072aae
actually correct mac names ( #8832 )
2025-09-18 22:33:58 -07:00
matt korwel
09f0672734
support label on pushes too ( #8831 )
2025-09-18 22:28:26 -07:00
matt korwel
00cd4b6a19
actually remove mege queue skipper ( #8824 )
2025-09-18 22:14:47 -07:00
matt korwel
c434a7e682
remove merge queue skipper ( #8819 )
2025-09-18 22:07:47 -07:00
matt korwel
3f16ed5a9a
Fix merge queue for forks ( #8816 )
2025-09-18 21:59:24 -07:00
matt korwel
d5abb46fad
use correct ref for launching ( #8813 )
2025-09-18 21:19:22 -07:00
matt korwel
c56d0ce6d2
ci fixes ( #8810 )
2025-09-19 04:01:21 +00:00
matt korwel
cf95b631cd
use the cla user ( #8806 )
2025-09-18 20:44:38 -07:00
matt korwel
2993800e07
use the cla user ( #8804 )
2025-09-18 20:29:39 -07:00
matt korwel
e678b231a3
migrate to patch both ( #8803 )
2025-09-18 20:17:51 -07:00
Tommaso Sciortino
a815fa37e7
Fix npm_channel options in manual release workflow. ( #8766 )
2025-09-19 03:11:10 +00:00
matt korwel
81dcef070f
permissions ( #8800 )
2025-09-18 19:51:35 -07:00
matt korwel
690867e433
ensure consistent user ( #8798 )
2025-09-18 19:38:07 -07:00
matt korwel
9954b03ced
switch to gh cli instead of api ( #8795 )
2025-09-18 19:18:27 -07:00
matt korwel
ec01b1f29f
better messaging ( #8794 )
2025-09-18 19:00:18 -07:00
matt korwel
bfa4140593
more patching ( #8787 )
2025-09-18 18:22:54 -07:00
matt korwel
b14a4f5ebc
dealing with conflicts ( #8772 )
2025-09-18 17:33:08 -07:00
matt korwel
29852e9b08
patch e2e vnext ( #8767 )
2025-09-18 23:31:39 +00:00
matt korwel
509444d059
Improve CI Times by 70% ( #8530 )
2025-09-18 16:29:40 -07:00
Shardul Natu
bbcc906133
add(mcp): Add MCP Server name to ToolCallEvent OTel logging ( #7829 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: owenofbrien <86964623+owenofbrien@users.noreply.github.com >
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-09-18 22:00:11 +00:00
Jacob MacDonald
22b7d86574
Add support for auto-updating git extensions ( #8511 )
2025-09-18 21:49:47 +00:00
Sandy Tao
e94ce7e2fd
fix(release): prevent validation error in patch-from-comment workflow ( #8759 )
2025-09-18 14:27:46 -07:00
Allen Hutchison
afba59a953
feat(cli): configure policy engine from existing settings ( #8348 )
2025-09-18 20:44:23 +00:00
Gal Zahavi
ec0acc486e
fix(cli) : fix shell colors to match new coloring ( #8747 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-18 20:35:55 +00:00
Sandy Tao
0fcda10082
fix(release): correctly parse channel argument in patch workflow ( #8750 )
2025-09-18 20:16:43 +00:00
Gal Zahavi
1f31443ed1
fix(shell): update shell setting from usePty to enableInteractiveShell ( #8726 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-18 20:05:01 +00:00
Gal Zahavi
a34e375193
refactor(shell): Send AnsiOutput when ShowColor is false ( #8647 )
2025-09-18 20:04:46 +00:00
Jacob MacDonald
899b6f72cb
Better parsing of github extension source uris ( #8736 )
2025-09-18 19:52:19 +00:00
Shreya Keshive
db5b49b2ca
refactor(ide): replace DetectedIde enum with IDE_DEFINITIONS object ( #8698 )
2025-09-18 19:23:24 +00:00
matt korwel
f2a47dec54
Releasing: Patching e2e coordination ( #8723 )
2025-09-18 19:11:57 +00:00
Akhil Appana
92c99d7873
refactor(ui): extract QueuedMessageDisplay into separate component ( #8374 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-09-18 18:54:09 +00:00
Sandy Tao
2c754d71e3
fix(ui): Track last prompt token count in processStream ( #8650 )
2025-09-18 18:46:56 +00:00
shishu314
bcfd50b45b
metrics(extensions) - Add logging methods for extensions operations ( #8702 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-18 18:01:36 +00:00
Tommaso Sciortino
853ae56e7e
Improve compression splitpoint logic. ( #8691 )
2025-09-18 17:59:13 +00:00
matt korwel
f41db212ec
fix linting ( #8725 )
2025-09-18 11:19:43 -07:00
matt korwel
b376df7691
work ( #8720 )
2025-09-18 10:45:42 -07:00
matt korwel
b88d9c6353
Prstep3 ( #8718 )
2025-09-18 10:32:13 -07:00
matt korwel
ec9e548bd6
Prstep3 ( #8717 )
2025-09-18 10:28:40 -07:00
matt korwel
4f468a9f19
no loops ( #8716 )
2025-09-18 10:14:12 -07:00
matt korwel
99b43e1302
Prstep2 ( #8715 )
2025-09-18 10:10:26 -07:00
matt korwel
6b34f38ce0
better notifications ( #8714 )
2025-09-18 09:56:45 -07:00
matt korwel
143e5c3140
better logging ( #8712 )
2025-09-18 09:43:35 -07:00
matt korwel
c9cc05bc3d
Pr comment ( #8710 )
2025-09-18 09:36:11 -07:00
matt korwel
6be59628c3
Pr comment ( #8709 )
2025-09-18 09:30:50 -07:00
matt korwel
56b909c8e1
Pr comment ( #8708 )
2025-09-18 09:26:33 -07:00
matt korwel
2f64307c19
Pr comment ( #8707 )
2025-09-18 09:23:45 -07:00
matt korwel
7a68997b18
permissions ( #8706 )
2025-09-18 09:18:09 -07:00
hritan
2d406ffc75
fix(cli): uninstall extensions using their source URL ( #8692 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
2025-09-18 16:00:28 +00:00
matt korwel
0534ca74d4
fixing error ( #8676 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-18 15:41:12 +00:00
cornmander
e0fcbc39f6
Add a version specifier to the npx command for GCP AR auth. ( #8653 )
2025-09-18 14:47:11 +00:00
Richie Foreman
6dca8270bc
feat(CI): Package docker containers to GHCR for PRs. ( #8588 )
2025-09-18 14:30:55 +00:00
Shreya Keshive
d746eb7b22
feat(vscode-ide-companion): harden ide-server with CORS and host validation ( #8512 )
2025-09-18 14:06:16 +00:00
matt korwel
930f39a0cd
Releasing: Patching and Rollback ( #8673 )
2025-09-18 04:16:08 +00:00
matt korwel
8f0306f499
Mk fix nightly ( #8669 )
2025-09-18 01:40:17 +00:00
Tommaso Sciortino
f3abfb8e66
Properly publish npm-shrinkwrap.json. ( #8655 )
2025-09-18 01:08:43 +00:00
gemini-cli[bot]
f8678f9e9d
chore(release): bump version to 0.7.0-nightly.20250918.2722473a ( #8667 )
...
Co-authored-by: mkorwel <matt.korwel@gmail.com >
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-18 00:42:21 +00:00
matt korwel
72114464b8
permissiong for nightly job ( #8652 )
2025-09-17 17:16:38 -07:00
Adrian Arribas
407373dcd6
[Part 2/6] feat(telemetry): add activity detector with user interaction tracking ( #8111 )
2025-09-17 23:56:00 +00:00
Gal Zahavi
6756a8b8a9
refactor(ui): Optimize rendering performance ( #8239 )
2025-09-17 22:37:13 +00:00
Sarah Price
d54cdd8802
fix(mcp): Display OAuth authentication messages in CLI UI instead of debug console ( #6919 )
...
Co-authored-by: Yoichiro Tanaka <yoichiro6642@gmail.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-17 22:25:33 +00:00
christine betts
eddd13d70e
Add simple extensions release flow support ( #8498 )
2025-09-17 22:14:01 +00:00
Jacob MacDonald
13a65ad94f
Emit a warning when memory usage exceeds 7GB ( #7613 )
2025-09-17 21:32:46 +00:00
matt korwel
0cae7caaab
chore(release): bump version to 0.7.0-nightly.20250917.0b10ba2c ( #8645 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-17 20:53:53 +00:00
Pyush Sinha
d2b8ff5deb
fix: InputPrompt wrapped lines maintain highlighting, increase responsiveness in narrow cases ( #7656 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-09-17 20:17:50 +00:00
matt korwel
0b10ba2ca9
Mk correct versioning ( #8642 )
2025-09-17 13:31:45 -07:00
Tommaso Sciortino
0559040c0f
Fix automatic compression bug ( #8599 )
2025-09-17 20:12:06 +00:00
shrutip90
8c0c156cbd
fix(cli): Auto restart CLI inner node process on trust change ( #8378 )
2025-09-17 20:05:40 +00:00
Tommaso Sciortino
e76dda37ad
Serialize function calls that mutate state ( #8513 )
2025-09-17 18:45:04 +00:00
Ali Al Jufairi
efb57e1cef
feat(settings): Add availableTerminalHeight prop and optimize settings dialog height management ( #7697 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-09-17 17:51:46 +00:00
matt korwel
79e72a94fe
Mk/release hotfix ( #8633 )
2025-09-17 11:02:54 -07:00
Gal Zahavi
726d2c4274
feat(extensions): add support for sso:// protocol ( #8581 )
2025-09-17 17:36:23 +00:00
Arya Gummadi
678e947f21
fix(tests): improve test reliability and performance ( #8395 )
2025-09-17 17:12:33 +00:00
Jack Wotherspoon
bbf7c6ed36
chore: update erroneous model version added by external contrib ( #8624 )
2025-09-17 14:10:58 +00:00
christine betts
0403375799
Conditionally use consent flow ( #8551 )
2025-09-17 13:24:38 +00:00
matt korwel
1a6e4a119e
Release Promotion Clean up ( #8597 )
2025-09-16 23:47:05 -07:00
MRK
4df8dbaa0d
Fix to issue #736 resulting in GEMINI_CLI_AUTH_TYPE not getting populated most of the time in the start_session events ( #8508 )
...
Co-authored-by: owenofbrien <86964623+owenofbrien@users.noreply.github.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-09-17 06:08:23 +00:00
hritan
d2f87d15ed
fix(cli): add workspacePath to extension variables ( #8482 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
2025-09-17 04:23:12 +00:00
anthony bushong
f849c85608
fix(tests): look for json in thrown error ( #8601 )
2025-09-17 03:50:12 +00:00
Tommaso Sciortino
6391c4c0f1
Show Citations by default for all users. ( #8570 )
2025-09-17 02:40:51 +00:00
Jerop Kipruto
6b576dc572
Move headless.md to docs folder ( #8593 )
2025-09-17 01:17:25 +00:00
Abhi
f5dca8b7f7
refactor(core): Remove generateJson from GeminiClient ( #8529 )
2025-09-17 00:59:13 +00:00
Jerop Kipruto
dbc0d9c8e2
OTEL: move TOC for docs ( #8592 )
2025-09-16 23:31:44 +00:00
Christie Warwick (Wilson)
55f5c0936a
feat: Add -o as alias for --output-format ( #8585 )
2025-09-16 22:45:08 +00:00
Srinath Padmanabhan
1407327a14
Simplify error messages when user runs into daily quotas. ( #8556 )
...
Co-authored-by: Srinath Padmanabhan <srithreepo@google.com >
2025-09-16 22:39:18 +00:00
Shreya Keshive
cf9b6ec1f6
fix(ide): increase IDE open / close tool timeouts ( #8587 )
2025-09-16 22:38:17 +00:00
anthony bushong
bb642b1948
fix(tests): reduce flakiness in simple mcp server test ( #8583 )
2025-09-16 22:29:11 +00:00
shrutip90
20ad40092c
fix(cli): Fix performance issues on relaunching CLI in inner node pro… ( #8571 )
2025-09-16 21:47:45 +00:00
Abhi
a0079785af
feat(telemetry): Add telemetry and metrics for model routing ( #8518 )
2025-09-16 20:53:58 +00:00
christine betts
459de383b2
Update extension enablement logic ( #8544 )
2025-09-16 19:51:46 +00:00
Jerop Kipruto
88272cba8b
feat: add direct Google Cloud telemetry exporters ( #8541 )
2025-09-16 19:13:57 +00:00
Tommaso Sciortino
4e5c1fce8d
Remove unused code. ( #8497 )
2025-09-16 19:12:45 +00:00
Gal Zahavi
986b9fe7e9
refactor: Replace exec with spawn ( #8510 )
2025-09-16 19:03:17 +00:00
Jerop Kipruto
a015ea203f
docs: add headless mode guide ( #8564 )
2025-09-16 19:01:15 +00:00
Gal Zahavi
d0b505a577
chore(settings): enable setting migration ( #8562 )
2025-09-16 18:51:53 +00:00
shishu314
dbcfcd45f5
cleanup(extension) - Add tests for the install command ( #8371 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-16 18:23:49 +00:00
anthony bushong
a980c0cec9
feat(actions): add swebench eval harness to github actions ( #8028 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-16 11:25:13 -07:00
shrutip90
80fa4a310b
fix: Make trustedFolders file path configurable ( #8306 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-09-16 16:58:57 +00:00
fuyou
a1ebb6f275
Fix Windows CI flaky test in SettingsDialog.test.tsx ( #8533 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-09-16 16:09:08 +00:00
Richie Foreman
f098e07c19
cleanup(gha): Use Matrix runner w/ {self, ubuntu} for a low-risk workflow ( #8367 )
2025-09-16 16:05:44 +00:00
Jerop Kipruto
ebf5437e52
feat: remove session summary feature ( #8545 )
2025-09-16 15:16:05 +00:00
shishu314
c999b7e354
feat(security) - Encrypted oauth flag ( #8101 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-16 14:05:29 +00:00
Abhi
1634d5fcca
refactor(core): Use BaseLlmClient for utility LLM calls in edit corrector ( #8443 )
2025-09-16 00:46:41 +00:00
Srinath Padmanabhan
d5d150449d
Fix(triage): Update pr-triage.sh script ( #7698 )
...
Co-authored-by: Srinath Padmanabhan <srithreepo@google.com >
2025-09-15 23:58:50 +00:00
James
c0794215d3
refactor: refactor slash command parsing to a util function. ( #8381 )
2025-09-15 23:56:07 +00:00
Abhi
bee5b638dd
feat(routing): Introduce Classifier-based Model Routing Strategy ( #8455 )
2025-09-15 23:51:25 +00:00
Luna Wang
b7a87190d7
Improve theme name color and readability in ThemeDialog ( #8356 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Miguel Solorio <miguel.solorio07@gmail.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Richie Foreman <richie.foreman@gmail.com >
Co-authored-by: shishu314 <shishu_1998@yahoo.com >
Co-authored-by: Shi Shu <shii@google.com >
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
Co-authored-by: masiaf <masiafrest@gmail.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
Co-authored-by: Jerop Kipruto <jerop@google.com >
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: fuyou <imshuazi@126.com >
Co-authored-by: Rohit Ramkumar <rramkumar@google.com >
Co-authored-by: Hadi Minooei <hminooei@gmail.com >
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
Co-authored-by: Luke Schlangen <lukeschlangen@gmail.com >
Co-authored-by: Ayesha Shafique <79274585+Aisha630@users.noreply.github.com >
Co-authored-by: Hadi Minooei <minooei@google.com >
2025-09-15 23:23:54 +00:00
Shreya Keshive
2cc0c1a808
feat(ide): add auth token support to IdeClient ( #8490 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-09-15 23:22:31 +00:00
fuyou
079526fd3b
Fix mixed input crash by adding proper error handling 8304 ( #8430 )
2025-09-15 22:56:25 +00:00
Shreya Keshive
12f584fff8
feat(vscode-ide-companion): add auth token validation to IDE server ( #8491 )
2025-09-15 22:49:15 +00:00
Shreya Keshive
c4c81e3d3b
docs(ide): define diffing interface for companion extension spec ( #8479 )
2025-09-15 22:40:05 +00:00
Tommaso Sciortino
4a982ffd7b
Fix references to old name of npm-shrinkwrap.json. ( #8506 )
2025-09-15 21:35:17 +00:00
Gal Zahavi
05022434eb
chore(docs): Fix typo in shell.md ( #8492 )
2025-09-15 21:21:29 +00:00
Sandy Tao
f7ff26ba65
feat(logging): Add clearcut logging for disabling loop detection ( #8503 )
2025-09-15 21:12:39 +00:00
Hadi Minooei
2e12a67198
update shell info ( #8489 )
2025-09-15 20:27:19 +00:00
Tommaso Sciortino
7353bda8ff
Remove unused method. ( #8486 )
2025-09-15 18:17:07 +00:00
shishu314
e28a043f3d
feat(security) - Use hybrid token storage when flag is enabled ( #8010 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-15 18:05:17 +00:00
Ayesha Shafique
0d9c1fba1d
feat (cli): Add command search using Ctrl+r ( #5539 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-15 17:49:23 +00:00
Gal Zahavi
8c283127d5
docs(tools): update shell.md for interactive commands ( #8480 )
2025-09-15 17:09:38 +00:00
Sandy Tao
97475071e1
fix(tests): Cleans up setup test and fix behavior test ( #8391 )
2025-09-15 16:36:35 +00:00
Abhi
b5af662477
refactor(core): Move generateEmbedding to BaseLlmClient ( #8442 )
2025-09-15 15:33:30 +00:00
Luke Schlangen
5cbab75c7d
fix: positional arguments for MCP prompts ( #8034 )
2025-09-15 15:13:21 +00:00
shishu314
7470133a13
feat(extensions) - Add local/remote for mcp servers ( #8355 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-15 15:11:14 +00:00
Abhi
c1de070a5e
refactor(core): Migrate next speaker check to use BaseLlmClient ( #8424 )
2025-09-15 04:15:18 +00:00
Abhi
5b70bb4029
fix(e2e): resolve flaky list_directory test ( #8456 )
2025-09-15 03:59:27 +00:00
Arya Gummadi
1145f25ee3
feat: auto-approve pending tool calls when auto_edit/yolo is activated ( #6665 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-09-15 03:20:21 +00:00
Abhi
00ecfdeb06
chore(tests): Remove stale snapshot for deleted App.tsx ( #8446 )
2025-09-15 01:15:19 +00:00
Abhi
12720a9fa7
refactor(core): Use BaseLlmClient for LLM-based loop detection ( #8427 )
2025-09-14 03:07:33 +00:00
Abhi
f11d79a931
fix(stats): Use request model as fallback for stats logging ( #8423 )
2025-09-14 01:03:46 +00:00
Hadi Minooei
35aeb3f420
Remove conflicting shell Directory checks ( #7845 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-09-13 17:33:12 +00:00
fuyou
2135dbb6a4
Fix #8077 : Settings command overwrites entire JSON file, leaking environment variables ( #8154 )
...
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
2025-09-13 06:31:15 +00:00
Rohit Ramkumar
a96cc2f148
feat: Add /chat share command ( #8139 )
2025-09-13 06:21:40 +00:00
fuyou
73466b626d
Fix dollar sign replacement bug in file editing ( #7871 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-13 06:05:43 +00:00
Gal Zahavi
087c192e51
fix(ui): Correct footer measurement and prevent negative terminal height ( #8362 )
2025-09-13 05:42:17 +00:00
Sandy Tao
5a05fb0dd0
fix(core): stop streaming request on loop detection ( #8377 )
2025-09-12 23:44:24 +00:00
Jerop Kipruto
1f70a27e9c
JSON errors in non-interactive auth validation ( #8373 )
2025-09-12 23:18:40 +00:00
Sandy Tao
b416508ef1
feat(core): Cap shell output truncation threshold to the remaining context window size ( #8379 )
2025-09-12 22:11:41 +00:00
Sandy Tao
4f91037af4
fix(core): Include the latest user request in countTokens for compression ( #8375 )
2025-09-12 21:13:16 +00:00
Shreya Keshive
e5bbf9d728
docs(ide ext): add companion extension specification ( #8262 )
2025-09-12 21:08:31 +00:00
masiaf
811a2e90d9
feat(input): add undo/redo shortcuts with Ctrl+Z and Ctrl+R ( #4625 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-12 21:07:34 +00:00
Tommaso Sciortino
21826010ef
Use shrinkwrap for package locking ( #8298 )
2025-09-12 20:26:55 +00:00
Abhi
c15774ce68
# feat(routing): Introduce useModelRouter feature flag ( #8366 )
2025-09-12 19:57:07 +00:00
matt korwel
bc7c7fe466
fix(release): use preview tag for preview versions ( #8370 )
2025-09-12 12:26:27 -07:00
Shreya Keshive
1f9564223b
fix(ide): Correct IDE client temp dir and port matching ( #8270 )
2025-09-12 17:49:37 +00:00
shishu314
8a5e692373
Metric(extension) - Add logging for uninstalling extension ( #8293 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-12 17:38:54 +00:00
matt korwel
c99539b991
feat: simplify patch release workflow ( #8196 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Richie Foreman <richie.foreman@gmail.com >
2025-09-12 17:22:10 +00:00
matt korwel
eaadc6d93d
refactor(release): simplify release workflow ( #8353 )
2025-09-12 16:58:28 +00:00
Jacob MacDonald
e89012efa8
Make a stateful extensions list component, with update statuses ( #8301 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-12 16:20:04 +00:00
Shreya Keshive
8810ef2f40
refactor(ide): Improve IDE diff communication protocol ( #8338 )
2025-09-12 15:44:24 +00:00
shishu314
cf20697450
feat(extension) - Add permission prompt for when user installs a local extension with mcpservers ( #8208 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-12 14:53:30 +00:00
Miguel Solorio
f656f143c6
fix(ui): ensure [MCP] tag color matches active state ( #8316 )
2025-09-12 02:37:19 +00:00
Matt Ingenthron
2e8c3a09d5
Typo fix in releases.md ( #8230 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-09-12 00:20:50 +00:00
Keith Lyons
0d460bbf77
fix: Restore footer configuration settings ( #8041 ) ( #8053 )
...
Co-authored-by: Miguel Solorio <miguelsolorio@google.com >
Co-authored-by: Miguel Solorio <miguel.solorio07@gmail.com >
2025-09-12 00:16:09 +00:00
joshualitt
68035591da
feat(core): Enable ripgrep by default. ( #7427 )
2025-09-11 23:46:07 +00:00
joshualitt
557dba4a32
Fix license file. ( #8284 )
2025-09-11 22:36:28 +00:00
joshualitt
2ccb9839d3
feat(core): Re-download rg binary if it is deleted. ( #8126 )
2025-09-11 22:18:29 +00:00
Sandy Tao
b2c3523ecd
fix(release): Add back old release.yml ( #8302 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-11 15:22:34 -07:00
Shammi Anand
1be38d8fa0
fix(core): Improve compression message clarity for small history cases ( #4404 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-11 21:41:08 +00:00
Miguel Solorio
67f7dae4e3
Update default text styles ( #8291 )
2025-09-11 21:22:16 +00:00
Sandy Tao
aba2a9932c
fix(core): Default skipNextSpeakerCheck to true when the setting is not manually set ( #8295 )
2025-09-11 21:11:06 +00:00
Gal Zahavi
181898cb5d
feat(shell): enable interactive commands with virtual terminal ( #6694 )
2025-09-11 20:27:27 +00:00
Shreya Keshive
8969a232ec
feat(ide): Check for IDE diffing capabilities before opening diffs ( #8266 )
2025-09-11 20:17:57 +00:00
joshualitt
59182a9fa0
feat(core): Copy downloadRipGrep with license. ( #8195 )
2025-09-11 20:13:49 +00:00
Tommaso Sciortino
39af7115d1
Move IdeClient.connect() to initializeApp(). ( #8282 )
2025-09-11 20:07:57 +00:00
Tommaso Sciortino
ad21c10988
Fix MCP prompt slash commands not appearing. ( #8290 )
2025-09-11 19:59:38 +00:00
shishu314
0308267071
fix(trust): Pass folderTrust config to a2a server ( #8082 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-11 18:24:52 +00:00
Tommaso Sciortino
d892cde0b0
Refactor IdeContextStore ( #8278 )
2025-09-11 18:22:20 +00:00
Abhi
538e6cd19a
feat(routing): Initialize model routing architecture ( #8153 )
2025-09-11 17:38:50 +00:00
shishu314
5504f933e1
fix(metrics) - Remove the error field from ApiResponseEvent ( #8207 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-11 17:35:17 +00:00
Miguel Solorio
6be054513b
feat(ui): make accept edits & yolo mode match shell mode styles ( #8200 )
2025-09-11 17:34:29 +00:00
Allen Hutchison
ba85aa49c7
feat(core): Tool Confirmation Message Bus foundation (PR 1 of 3) ( #7835 )
2025-09-11 16:39:17 +00:00
Tommaso Sciortino
1291ec78a5
Update package-lock.json to reflect recently removed deps ( #8271 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-11 16:34:31 +00:00
matt korwel
1819ffe5bd
feat(release): automate patch creation and release process ( #8202 )
2025-09-11 16:19:07 +00:00
matt korwel
f9f4b2a260
Broaden PR Approval Process ( #8264 )
2025-09-11 15:48:31 +00:00
Sandy Tao
095351bf39
feat(telemetry): Add content length to tool calls and log tool output truncation event ( #8014 )
2025-09-11 15:40:46 +00:00
Jerop Kipruto
8f4321b1ca
feat: add telemetry for output format usage ( #8223 )
2025-09-11 13:42:10 +00:00
Sandy Tao
78744cfbca
feat(ui): Add confirmation dialog for disabling loop detection for current session ( #8231 )
2025-09-11 05:20:13 +00:00
Jacob Richman
5b2176770e
feat: add cached string width function for performance optimization ( #7850 )
...
Co-authored-by: lifeloating <imshuazi@126.com >
2025-09-11 04:20:40 +00:00
Miguel Solorio
8cc787f304
Fix suggestion alignment ( #8233 )
2025-09-11 03:47:22 +00:00
Tommaso Sciortino
03e3c59bf0
Fix compression issues ( #8225 )
2025-09-10 23:04:20 +00:00
Gal Zahavi
3ceefe8732
fix(rendering): remove React.strictMode from gemini.tsx ( #8145 )
2025-09-10 22:30:45 +00:00
Jerop Kipruto
514767c88b
Structured JSON Output ( #8119 )
2025-09-10 20:19:47 +00:00
Gaurav
db99fc70b6
fix: gitignore handling ( #8177 )
2025-09-10 19:48:07 +00:00
Damian Tometzki
32abe905f1
Fix: connect on docker devcontainer to vscode-ide ( #7464 )
2025-09-10 19:19:37 +00:00
Esse Woods
b1b20e50ff
Update README.md ( #8199 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-09-10 19:05:03 +00:00
Gaurav
de2903b101
fix: make bfsFileSearch more efficient ( #8173 )
2025-09-10 18:39:02 +00:00
Spencer Schrock
ff705ec286
fix(settings): use union merge for excludeTools ( #7842 )
2025-09-10 18:28:29 +00:00
HugoMurillo
30b13c6357
fix( #7039 ): broken IDE integration for multi-edit/multi-write flows ( #8159 )
2025-09-10 18:21:46 +00:00
Miguel Solorio
b9b6fe1f73
feat(ui): Semantic tokens refactor ( #8087 )
2025-09-10 17:57:07 +00:00
Christie Warwick (Wilson)
a3a0e981ee
docs: Add e2e status badge to main README 🏅 ( #8198 )
2025-09-10 17:00:26 +00:00
Tommaso Sciortino
0e3a0d7dc5
Add .geminiignore support to the glob tool. ( #8086 )
2025-09-10 16:54:50 +00:00
Jacob MacDonald
ef70c17936
Add functionality to check for git extension updates, as well as support for installing a specific ref ( #8018 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-10 16:35:48 +00:00
hritan
69b2d77df5
fix(cli): added directory name to folder trust dialog ( #8165 )
...
Co-authored-by: Taneja Hriday <hridayt@google.com >
2025-09-10 16:31:12 +00:00
Adam Weidman
bd0f085ae8
chore(a2a-server): if a2a task creation fails return error to user ( #8106 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-09-10 16:08:58 +00:00
Jacob MacDonald
50e7c88aa4
Extensions update command ( #8100 )
2025-09-10 15:09:09 +00:00
matt korwel
0d03f4ea9d
Release Process vNext ( #8152 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-10 08:28:58 +00:00
christine betts
a31830a3cb
Ignore workspace extensions in user extensions dir ( #8084 )
2025-09-10 00:23:46 +00:00
matt korwel
5032b27011
0.4.0 ( #8136 )
2025-09-10 00:23:44 +00:00
Richie Foreman
76182dbfbf
fix(ide companion extension): Don't show the installation confirmation message in Firebase Studio ( #8097 )
...
Co-authored-by: Roman Nurik <roman@nurik.net >
2025-09-10 00:20:14 +00:00
Shelakh
7d77f0287d
[Part 1/6] feat(telemetry): add rate limiter and high-water mark tracker with tests ( #8110 )
2025-09-09 22:49:10 +00:00
Shreya Keshive
ae20aee837
feat(ide): Update context filtering to be done CLI-side + update port discovery logic ( #8107 )
2025-09-09 22:47:14 +00:00
Billy Biggs
de5a31c3b6
Limit recursion when looking for .gitignore files ( #8103 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-09-09 21:45:37 +00:00
Dylan liu
da58b93026
feat: Add reusable EnumSelector UI component (split from #6832 ) ( #7774 )
...
Co-authored-by: hoteye <hoteye@users.noreply.github.com >
Co-authored-by: cornmander <shikhman@google.com >
2025-09-09 21:45:12 +00:00
christine betts
8b40e000d6
Update extensions docs ( #8112 )
2025-09-09 20:59:18 +00:00
Sandy Tao
54744958fa
feat(core): Only summarize long tool output for shell command ( #8039 )
2025-09-09 20:01:25 +00:00
Shreya Keshive
94187114e9
refactor(ide): extract IDE context types into a separate file ( #8037 )
2025-09-09 16:16:00 +00:00
christine betts
02f67d3c57
Add clearcut logging for extensions install command ( #8057 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-09-09 16:12:56 +00:00
Allen Hutchison
ef9469a417
feat(commands): Add new commands for docs, git, and PR review ( #7853 )
2025-09-09 12:09:42 +00:00
Abhi
1eaf21f6a2
refactor(core): Introduce LlmUtilityService and promptIdContext ( #7952 )
2025-09-09 05:14:15 +00:00
christine betts
471cbcd450
Remove org/repo install support ( #7815 )
2025-09-09 04:59:45 +00:00
Tommaso Sciortino
2b05cf3bb4
Allow users to type while waiting for MCP servers ( #8021 )
2025-09-08 23:37:36 +00:00
joshualitt
f0bbfe5f0a
feat(core): Download ripgrep at runtime, if enabled. ( #7818 )
2025-09-08 21:44:56 +00:00
shrutip90
097b5c734f
fix: Restart logic in useFolderTrust hook ( #8038 )
2025-09-08 21:43:49 +00:00
Tommaso Sciortino
c8dfab9ec6
Fix maxOutputTokens compression bug. ( #8026 )
2025-09-08 21:15:28 +00:00
Abhi
f6f2fff724
refactor: Centralize and improve model fallback handling ( #7634 )
2025-09-08 20:19:52 +00:00
Christie Warwick (Wilson)
9c71d3dd64
Skip bundle_size job for merge_group event ( #8032 )
2025-09-08 19:58:26 +00:00
Shreya Keshive
c244cc86dd
fix(ide companion extension): increase payload size ( #8029 )
2025-09-08 19:10:33 +00:00
Miguel Solorio
7e56cc6515
Move scope settings to new dialog ( #7836 )
2025-09-08 18:43:58 +00:00
hritan
78142eab55
fix: hide tips when folder trust dialog is open ( #7394 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-09-08 16:41:39 +00:00
Shreya Keshive
1788f04f5c
fix(ide): fix crash on windows when null command is returned ( #8007 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-09-08 14:53:28 +00:00
Richie Foreman
009c24a4b8
feat(settings): Add support for settings enum options ( #7719 )
2025-09-08 14:01:18 +00:00
Keith Lyons
4693137b82
fix(ui): disable input prompt during tool confirmation ( #7935 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-07 20:17:20 +00:00
Tommaso Sciortino
6e26c88c2c
Pull contentGenerator out of GeminiClient and into Config. ( #7825 )
2025-09-07 20:00:03 +00:00
Jacob Richman
d33defde68
Mention replacements for deprecated settings in settings.json ( #7913 )
2025-09-07 19:23:57 +00:00
joshualitt
d30829116e
bug(core): Fix Check Bundle Size github action. ( #7833 )
2025-09-07 19:04:16 +00:00
Shardul Natu
6a9c2859b7
add(logging): Add OTel logging for counting chars ( #7903 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-09-07 17:41:15 +00:00
DeWitt Clinton
6b4c12eb04
Allow for slash commands to opt-out of autocompletion and /help discovery. ( #7847 )
2025-09-06 21:16:58 +00:00
Sandy Tao
c031f538df
chore(release): v0.3.4 ( #7902 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-06 20:53:00 +00:00
Tommaso Sciortino
127d9205b8
Fix ctrl-c/esc while Authenticating. ( #7879 )
2025-09-06 17:34:00 +00:00
Sandy Tao
13d39ef746
Fix(core): Do not retry if last chunk is empty with finishReason previous chunks are good ( #7859 )
2025-09-06 07:01:21 +00:00
Keith Lyons
885af07ddb
feat(ui): Introduce useUI Hook and UIContext ( #5488 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-06 05:39:02 +00:00
Sandy Tao
fe15b04f33
chore(release): v0.3.3 ( #7854 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-06 04:30:24 +00:00
Rinil Kunhiraman
d2b5b4f129
feat(ui): improve discoverability of MCP slash commands ( #6080 )
...
Co-authored-by: Rinil Kunhiraman <rinilkunhiraman@users.noreply.github.com >
Co-authored-by: Allen Hutchison <adh@google.com >
2025-09-06 03:15:40 +00:00
Gaurav
a027010097
fix: handle vpc-sc violations in LoadCodeAssist method ( #7824 )
2025-09-06 02:55:33 +00:00
HYPERXD
ee1b395c5c
prevent auto-execute on paste and preserve multi-line content in chat input ( #5834 )
...
Co-authored-by: HYPERXD <Alish-0x@users.noreply.github.com >
Co-authored-by: Allen Hutchison <adh@google.com >
2025-09-06 01:53:53 +00:00
Jacob Richman
81904005fc
Fix issues where escape codes could end up on startup in the input prompt ( #7267 )
2025-09-06 00:18:51 +00:00
Gal Zahavi
dfd622e096
fix(ci): fix windows e2e tests ( #7749 )
2025-09-05 23:54:46 +00:00
Sandy Tao
968e938949
Fix(core): Fix stream validation logic ( #7832 )
2025-09-05 23:22:54 +00:00
John Thomas
77f795192e
refactor: Extract path resolution logic into helper function ( #6910 )
2025-09-05 22:52:10 +00:00
Sandy Tao
dd23c77469
feat(core): Save large tool outputs to a file and return truncated lines ( #6240 )
2025-09-05 22:37:29 +00:00
Tommaso Sciortino
7239c5cd9a
Refactor Authentication Components and Hooks ( #7750 )
2025-09-05 22:35:41 +00:00
Jacob Richman
d8dbe6271f
Fix syntax highlighting and rendering issues. ( #7759 )
...
Co-authored-by: Miguel Solorio <miguelsolorio@google.com >
2025-09-05 22:29:54 +00:00
DeWitt Clinton
c1b8708ef5
Add hidden property to slash commands ( #7797 )
2025-09-05 20:38:36 +00:00
Gal Zahavi
0e284457be
Revert "Fix dollar sign replacement bug in file editing ( #7703 )" ( #7823 )
2025-09-05 20:34:02 +00:00
Shreya Keshive
20d0de74e1
Add initial RFC for A2A development-tool extension ( #7817 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-09-05 19:31:42 +00:00
christine betts
69da43eb70
Make 'source' a positional argument in extensions install and set flag to true ( #7807 )
2025-09-05 18:44:41 +00:00
Nick Salerni
a7bfab4d96
fix(token-usage): fix token usage recording for failed API calls ( #7667 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-09-05 18:22:51 +00:00
JAYADITYA
5634be70f1
fix the proQutaDialog ( #7647 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-05 16:30:15 +00:00
shrutip90
036f3a7f9c
fix: Remove special handling for folderTrust flag ( #7755 )
2025-09-05 16:10:15 +00:00
shishu314
918ab3c2ec
feat(security) - Make oauth token storage implement the shared interface ( #7802 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-05 16:08:50 +00:00
shishu314
af52b04e6f
Feat(security) - Create a class for Oauth credential ( #7745 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-05 14:30:41 +00:00
Srinath Padmanabhan
604a2335dd
feat(triage): add status/bot-triaged label after triage ( #7765 )
...
Co-authored-by: Srinath Padmanabhan <srithreepo@google.com >
2025-09-05 13:44:03 +00:00
fuyou
0bc0d23cb3
Fix dollar sign replacement bug in file editing ( #7703 )
2025-09-05 02:12:57 +00:00
Shreya Keshive
aea6230bcc
fix(process-utils): fix bug that prevented start-up when running process walking command fails ( #7757 )
2025-09-04 23:10:33 +00:00
Chen Koki
107537c341
fix(ui): fix drag-and-drop file feature for macOS terminal 2 ( #7174 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-09-04 22:06:04 +00:00
Pascal Birchler
34cd554a33
fix: Remove 'node-fetch' from externals ( #7752 )
2025-09-04 21:48:57 +00:00
matt korwel
4aef2fa5d5
temp disable windows e2e tests ( #7746 )
2025-09-04 14:14:51 -07:00
Pascal Birchler
c38247ed5c
Reduce bundle size & check it in CI ( #7395 )
2025-09-04 21:00:27 +00:00
shishu314
35a841f71a
Feat(security) - Make the OAuthTokenStorage non static ( #7716 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-04 20:42:47 +00:00
matt korwel
e088c06a9a
chore(release): v0.3.1 ( #7742 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-09-04 12:57:14 -07:00
matt korwel
deda119bea
Takethree ( #7740 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: christine betts <chrstn@uw.edu >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
Co-authored-by: anthony bushong <agmsb@users.noreply.github.com >
2025-09-04 19:27:51 +00:00
Shardul Natu
2aa25ba87b
add(telemetry): Add OTel logging for FileOperationEvent ( #7082 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-04 17:20:46 +00:00
Shardul Natu
cda4280d74
fix(diffstats): Always return diff stats from EditTool ( #7489 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-09-04 17:20:40 +00:00
Tommaso Sciortino
cb43bb9ca4
Use IdeClient directly instead of config.ideClient ( #7627 )
2025-09-04 16:32:09 +00:00
Jacob MacDonald
45d494a8d8
improve performance of shell commands with lots of output ( #7680 )
2025-09-04 16:20:24 +00:00
anthony bushong
c31e37b30e
fix(core): tend to history with dangling function calls/responses ( #7692 )
2025-09-04 07:24:42 +00:00
Shardul Natu
cae4cacd6e
rename(telemetry): Update ai_(added|removed)_lines to model_(added|removed)_lines ( #7577 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: Billy Biggs <bbiggs@google.com >
2025-09-04 03:54:52 +00:00
Gal Zahavi
3885f7b6ae
refactor(setting): Improve settings migration and tool loading ( #7445 )
...
Co-authored-by: psinha40898 <pyushsinha20@gmail.com >
2025-09-04 02:23:25 +00:00
Victor May
e7a4142b2a
Handle cleaning up the response text in the UI when a response stream retry occurs ( #7416 )
2025-09-04 02:00:16 +00:00
shishu314
b49410e1d0
feat(extension) - Notify users when there is a new version and update it ( #7408 )
...
Co-authored-by: Shi Shu <shii@google.com >
Co-authored-by: Shreya <shreyakeshive@google.com >
2025-09-04 01:44:52 +00:00
Paul Irish
931d9fae4c
Enhance json configuration docs ( #7628 )
...
Co-authored-by: cornmander <shikhman@google.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-09-04 01:27:07 +00:00
christine betts
e133acd299
Remove command from extension docs ( #7675 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-09-03 23:19:08 +00:00
shrutip90
cfea46e9d8
fix: Update permissions for trustedFolders.json file to make it more … ( #7685 )
2025-09-03 23:06:26 +00:00
Silvio Junior
70900799d9
Enable smart edit by default on main ( #7679 )
2025-09-03 23:04:50 +00:00
Shardul Natu
af522f21fb
feat(telemetry): Add character counts to diff stats ( #7619 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: cornmander <shikhman@google.com >
2025-09-03 22:51:20 +00:00
Allen Hutchison
6bb944f942
feat: Add positional argument for prompt ( #7668 )
2025-09-03 22:48:54 +00:00
christine betts
987f08a619
Add enforcedAuthType setting ( #6564 )
2025-09-03 22:33:37 +00:00
matt korwel
5cc23f0cd8
feat/e2e workflow improvements ( #7684 )
2025-09-03 22:31:35 +00:00
Gal Zahavi
04e6c1d449
fix(settings): Add missing v1 settings to migration map ( #7678 )
2025-09-03 21:45:52 +00:00
Rahat Ahmed
645133d9dd
Fix diff approval race between CLI and IDE ( #7609 )
...
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
2025-09-03 20:53:57 +00:00
Arya Gummadi
876d091602
fix(auth): improve Google OAuth error handling and prevent empty error messages ( #7539 )
2025-09-03 20:51:29 +00:00
Allen Hutchison
af99989c91
fix(tests): make read_many_files test more reliable ( #7676 )
2025-09-03 20:40:19 +00:00
matt korwel
4c38227256
feat: run e2e tests on pull requests ( #7659 )
...
Co-authored-by: Adam Weidman <adamfweidman@google.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-09-03 20:14:16 +00:00
Sandy Tao
4b2c990368
fix(core): Fix more logging issues ( #7674 )
2025-09-03 20:09:38 +00:00
Adam Weidman
3f26f9615c
chore(e2e): Stabilize PNG integration test part2 ( #7670 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-09-03 19:04:23 +00:00
shrutip90
7c667e100e
Override Gemini CLI trust with VScode workspace trust when in IDE ( #7433 )
2025-09-03 18:44:26 +00:00
Sandy Tao
5ccf46b5a0
Fix(core): Log exact model version from API response ( #7666 )
2025-09-03 17:56:51 +00:00
Tommaso Sciortino
e6e60861e5
Move settings error throwing to loadSettings ( #7605 )
2025-09-03 17:41:53 +00:00
Jacob MacDonald
d2ae869bb4
Simplify MCP server timeout configuration ( #7661 )
2025-09-03 17:34:32 +00:00
Bryant Chandler
7395ab63ab
fix(cli): Correctly pass file filtering settings and add tests ( #7239 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-09-03 17:25:52 +00:00
matt korwel
dfd0c06153
fix(deps): Add fzf as a direct dependency to CLI ( #7658 )
2025-09-03 17:14:33 +00:00
JAYADITYA
de53b30e69
feat(cli): custom witty message ( #7641 )
2025-09-03 16:39:04 +00:00
Adam Weidman
50b5c4303e
chore(a2a-server): Merge A2A types ( #7650 )
2025-09-03 16:19:15 +00:00
Sam McCauley
2782af3f57
chore(a2a-server): refactor a2a-server src directory ( #7593 )
2025-09-03 14:24:48 +00:00
Gaurav
abddd2b6ee
feat: handle nested gitignore files ( #7645 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-03 14:23:27 +00:00
ZHAO Jin-Xiang
93ec574f68
fix: gemini-cli-vscode-ide-companion's package script ( #7555 )
2025-09-03 13:32:21 +00:00
owenofbrien
044c3a0e14
Log config.useSmartEdit to Clearcut ( #7617 )
2025-09-03 09:58:47 +00:00
fuyou
5c2bb990d8
fix(gitIgnore): prevent crash/error when processing malformed file paths in GitIgnoreParser ( #7553 )
...
Co-authored-by: Srinath Padmanabhan <17151014+srithreepo@users.noreply.github.com >
2025-09-03 06:19:20 +00:00
bl-ue
b5dd6f9ea6
feat(sessions): Integrate chat recording into GeminiChat ( #6721 )
2025-09-03 05:29:07 +00:00
Shreya Keshive
c9bd3ecf6a
fix(ide): prevent race condition when diff accepted through CLI ( #7633 )
2025-09-03 04:24:44 +00:00
Adam Weidman
cb255a1619
chore(e2e): Stabilize e2e test by adding a more descriptive prompt ( #7599 )
2025-09-03 04:12:15 +00:00
David East
4d07cb7dba
feat(cli): Add support for Ctrl+Backspace to delete a word backward ( #7162 )
2025-09-03 01:00:41 +00:00
Silvio Junior
edb346d4ed
Rename smart_edit to replace to align with the EditTool ( #7621 )
2025-09-03 00:38:59 +00:00
Arya Gummadi
d12946ca8c
test(auth): improve test environment variable cleanup ( #7451 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-09-03 00:21:43 +00:00
David East
977149af30
fix(a2a-server): Fix flaky test on Windows by awaiting server close ( #7616 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-09-03 00:19:31 +00:00
Jack Wotherspoon
39c35e7d61
chore: improve inclusive-language ( #7558 )
2025-09-03 00:09:28 +00:00
Deepankar Sharma
5e1651954d
Fix Arrow Keys and make Kitty Protocol more robust ( #7118 )
2025-09-02 23:33:38 +00:00
shishu314
f11322c710
feat(oauth) - Create hybrid storage class ( #7610 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-02 23:13:07 +00:00
David East
315d786063
chore(ci): Update GitHub /assign workflow to use advanced search API ( #7601 )
2025-09-02 22:42:07 +00:00
christine betts
49dfe36cea
Fix screen reader config bug ( #7615 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-09-02 21:47:28 +00:00
Sandy Tao
82b6a2f5d1
feat(quality): Skip the next speaker check by default ( #7614 )
2025-09-02 20:37:44 +00:00
Miguel Solorio
0a7f5be81f
Add footer configuration settings ( #7419 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-09-02 17:35:43 +00:00
christine betts
6a581a695f
Add gemini extensions link command ( #7241 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-09-02 17:15:42 +00:00
Tommaso Sciortino
997136ae25
Enable citations by default for certain users. ( #7438 )
2025-09-02 16:36:24 +00:00
Miguel Solorio
c29e44848b
Add highlights for input /commands and @file/paths ( #7165 )
2025-09-02 16:21:55 +00:00
shishu314
93820f833f
Fix(cli) - Remove Foldertrust Feature Flag ( #7420 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-09-02 16:01:22 +00:00
christine betts
70938eda17
Support installing extensions with org/repo ( #7364 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-09-02 15:15:47 +00:00
Abhi
5bac855697
refactor(core): Require model for utility calls ( #7566 )
2025-09-02 00:28:54 +00:00
Arya Gummadi
4fd1113905
fix(build): allow builds to continue when sandbox detection fails ( #7538 )
2025-09-01 14:24:11 +00:00
Shreya Keshive
39e7213fc4
fix(ide): use port number for server port file instead of vscode pid ( #7368 )
2025-09-01 00:56:17 +00:00
Gaurav
ee06dd33df
update(deps): genai sdk now handles empty GEMINI_API_KEY correctly ( #7377 )
2025-09-01 00:55:19 +00:00
Gal Zahavi
c7c709fb3c
fix(int-tests): fix failing integration tests ( #7516 )
2025-09-01 00:45:12 +00:00
Billy Biggs
f331e5d5b6
Merge general settings from different configuration sources ( #7528 )
2025-09-01 00:44:16 +00:00
Abhi
ef2437ba77
fix(release) - make release failures p0 ( #7514 )
2025-08-31 19:52:14 +00:00
Gal Zahavi
c0a3122f5f
fix(auth): Fix failing auth test ( #7502 )
2025-08-31 17:02:38 +00:00
Bryan Morgan
17044876f6
Fix duplicate LOC counting due to diff_stat being passed in multiple places ( #7483 )
2025-08-31 11:41:28 +00:00
Srinath Padmanabhan
18bb04c80a
Update gemini-automated-issue-triage.yml ( #7486 )
2025-08-30 21:35:15 +00:00
Shardul Natu
a167f28ead
fix(diffstats): Fix diff stats to correctly capture the edits ( #7446 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: Gaurav <39389231+gsquared94@users.noreply.github.com >
2025-08-30 20:56:10 +00:00
Srinath Padmanabhan
96707b588e
Update Issue Triage ( #7469 )
2025-08-30 15:43:54 +00:00
Srinath Padmanabhan
ab1b74802d
fix(workflows): improve issue triage ( #7449 )
...
Co-authored-by: Srinath Padmanabhan <srithreepo@google.com >
2025-08-30 02:47:06 +00:00
shishu314
001009d350
Fix(Cli) - Restart gemini cli on folder trust settings changes ( #7413 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-08-29 20:31:04 +00:00
Adam Weidman
45213103f6
chore(dedup): Mock tools refix ( #7418 )
2025-08-29 20:08:26 +00:00
Silvio Junior
d0c781a549
Smart Edit Tool ( #6823 )
2025-08-29 19:45:39 +00:00
Noritaka Kobayashi
da22deac17
refactor: remove redundant 'undefined' type or '?' ( #2691 )
2025-08-29 19:33:12 +00:00
hritan
421f989faf
fix: show parent name in trust folder confirmation ( #7331 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
2025-08-29 19:01:06 +00:00
Davor Racic
175fc3bf03
feat(cli): add fuzzy matching for command suggestions ( #6633 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-29 18:38:39 +00:00
Hiroaki Mitsuyoshi
6f91cfa9a3
fix(cli): preserve input history after /clear command ( #5890 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-29 18:18:22 +00:00
Richie Foreman
5e5f2dffc0
fix(trust): Respect folder trust setting when reading GEMINI.md ( #7409 )
2025-08-29 18:12:36 +00:00
Albert Mulà
ea844857a2
feat(extension): resolve environment variables in extension configuration ( #7213 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-29 17:53:39 +00:00
Manash
3529595e6c
fix(core): Fix permissions for oauth_creds.json ( #6662 )
2025-08-29 17:35:07 +00:00
chen
ea21f0fa03
refactor(core): reuse computeNewContent in performAddMemoryEntry ( #6689 )
...
Co-authored-by: chen893 <chenshuanglong@fuzhi.ai >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-29 17:35:00 +00:00
christine betts
af6a792caa
Add flag to update all extensions ( #7321 )
2025-08-29 17:24:17 +00:00
Lee James
6a9fb6d2ea
feat: Add a --session-summary flag ( #7347 )
2025-08-29 16:53:39 +00:00
christine betts
eb13b2a7a1
Fix enable command typo ( #7382 )
2025-08-29 16:48:57 +00:00
ljxfstorm
f80f7b445c
Restore missing resolved and integrity of some dependencies and add check of lockfile integrity ( #5336 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-08-29 16:43:56 +00:00
Victor Miura
6868cbe7b7
fix(a2a): Don't mutate 'replace' tool args in scheduleToolCalls ( #7369 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-08-29 16:32:34 +00:00
Pyush Sinha
f2bddfe054
fix: add flash lite with respect to api defaults ( #4652 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2025-08-29 16:20:50 +00:00
Andrew Garrett
c9e1265de0
Fix backwards-compatibility for allowedTools -> tools.allowed ( #7384 )
2025-08-29 15:59:20 +00:00
shrutip90
2a0e69d833
fix(trust): Update config.isTrustedFolder ( #7373 )
2025-08-29 02:41:33 +00:00
Tayyab3245
9037f25df7
fix(core): treat UTF16/32 BOM files as text and decode correctly ( #6081 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: jacob314 <jacob314@gmail.com >
2025-08-29 01:13:46 +00:00
Tommaso Sciortino
71ad272a1b
Show citations at the end of each turn ( #7350 )
2025-08-28 23:42:54 +00:00
Allen Hutchison
648ab84b21
feat(cli): deprecate redundant CLI flags ( #7360 )
2025-08-28 23:22:59 +00:00
JAYADITYA
a63e67823d
feat: add Pro Quota Dialog ( #7094 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-28 22:49:43 +00:00
shrutip90
a0fbe000ee
Skip MCP server connections in untrusted folders ( #7358 )
2025-08-28 22:46:27 +00:00
Gal Zahavi
f00cf42f69
docs(config): update documentation for settings structure ( #7352 )
2025-08-28 22:31:33 +00:00
shishu314
10c6af7e49
Fix(trust) - Disable commands from untrusted directories when useFolderTrust is enabled ( #7341 )
...
Co-authored-by: Richie Foreman <richie.foreman@gmail.com >
Co-authored-by: Shi Shu <shii@google.com >
2025-08-28 21:45:47 +00:00
christine betts
fe5bb6694e
Screen reader updates ( #7307 )
2025-08-28 20:52:14 +00:00
Richie Foreman
2fc857092e
fix(trust): Refuse to load extensions from untrusted workspaces ( #7342 )
2025-08-28 20:46:45 +00:00
shrutip90
1fc1c2b4e4
fix: Settings in Folder trust hook ( #7343 )
2025-08-28 19:57:06 +00:00
Pascal Birchler
03bcbcc10d
Add MCP loading indicator when initializing Gemini CLI ( #6923 )
2025-08-28 19:53:56 +00:00
Richie Foreman
ecdea602a3
fix(trust): Refuse to load from untrusted process.cwd() sources; Add tests ( #7323 )
2025-08-28 19:16:07 +00:00
David East
cfc63d49ec
docs(contributing): add section on self-assigning issues ( #7243 )
2025-08-28 18:43:26 +00:00
Richie Foreman
a2faf34df8
fix(logging): Log NodeJS Version && Make Config.SessionID readonly ( #7219 )
2025-08-28 18:22:39 +00:00
Richie Foreman
dd79e9b84a
fix(settings/env): Ensure that loadEnvironment is always called with settings. ( #7313 )
2025-08-28 17:52:25 +00:00
joshualitt
600151cc2c
bug(core): Strip thoughts when loading history. ( #7167 )
2025-08-28 17:25:13 +00:00
Victor May
c35aebe109
Refine stream validation to prevent unnecessary retries ( #7278 )
2025-08-28 17:21:27 +00:00
Gal Zahavi
fb7a34dca4
fix(cli): remove settings migration console logs ( #7325 )
2025-08-28 16:49:10 +00:00
N. Taylor Mullen
4b60cba66b
chore(release): v0.2.2 ( #7319 )
2025-08-28 09:08:03 -07:00
Davor Racic
92bb34fada
fix(process-utils): replace wmic with powershell for windows process ( #7087 )
...
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-28 14:09:01 +00:00
shishu314
58f6828833
feat(cli) - Create base class for handling tokens stored in files ( #7240 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-08-28 13:54:12 +00:00
Shreya Keshive
4b400f8c7d
fix(ide): polyfill import.meta.url for cjs build ( #7279 )
2025-08-28 05:12:01 +00:00
Gal Zahavi
5f16541c38
Revert "chore(cleanup): Consolidate MockTool definitions ( #7228 )" ( #7283 )
2025-08-28 04:06:50 +00:00
Abhi
bfdddcbd99
feat(commands): Enable @file processing in TOML commands ( #6716 )
2025-08-28 03:22:21 +00:00
Gal Zahavi
529c2649b8
Revert "Move mockTool into test-utils ( #7245 )" ( #7277 )
2025-08-28 03:05:47 +00:00
Shardul Natu
539a49bd24
add(telemetry): Add missing telemetry for UserPromptEvent ( #6885 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-28 02:17:32 +00:00
Gal Zahavi
f22263c9e8
refactor: refactor settings to a nested structure ( #7244 )
2025-08-28 01:39:45 +00:00
anthony bushong
b8a7bfd136
fix(e2e): skip flaky stdin context test ( #7264 )
2025-08-28 00:00:50 +00:00
anthony bushong
5e84006293
fix(e2e): add missing deps to fix sandbox module not found errors in cli/core ( #7256 )
2025-08-27 22:23:38 +00:00
Tommaso Sciortino
af4fe611ed
Fix diff rendering in windows. ( #7254 )
2025-08-27 22:22:55 +00:00
Richie Foreman
cd2e237c73
fix(compression): Discard compression result if it results in more token usage ( #7047 )
2025-08-27 21:00:45 +00:00
Adam Weidman
da7901acaf
Move mockTool into test-utils ( #7245 )
2025-08-27 20:18:15 +00:00
Tommaso Sciortino
19f2a07efa
Fix shell argument parsing in windows ( #7160 )
2025-08-27 19:14:22 +00:00
Allen Hutchison
f2092b1ebc
fix(bug): correct /about command in bug report template ( #7235 )
2025-08-27 18:28:50 +00:00
Adam Weidman
f0146c8b85
chore(cleanup): Consolidate MockTool definitions ( #7228 )
2025-08-27 18:18:26 +00:00
shishu314
5cf1c7bf79
feat(cli) - Define base class for token storage ( #7221 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-08-27 17:49:20 +00:00
David East
023053ed92
fix(tests): Fix Firebase Studio to IDE detection tests ( #7163 )
2025-08-27 17:31:59 +00:00
Gaurav
a33293ac60
refactor: improve intermediate result parsing in issue dedup workflow ( #7218 )
2025-08-27 17:14:38 +00:00
Gaurav
0c1f3acc7d
fix: make test more reliable ( #7233 )
2025-08-27 17:13:38 +00:00
Bryant Chandler
99a28e6b6a
fix: Enable disableFuzzySearch config option propagation ( #7002 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-27 15:27:41 +00:00
Arya Gummadi
4c3ec1f0cc
refactor: centralize tool status symbols in constants ( #7054 )
2025-08-27 14:54:32 +00:00
Gaurav
83a40ff9d4
fix: unset GEMINI_API_KEY env var if empty ( #7214 )
2025-08-27 13:20:14 +00:00
anthony bushong
ed68f8f03e
feat(actions): create initial eval workflow ( #7127 )
2025-08-27 07:58:49 +00:00
uttamkanodia14
c7fc489005
Log Gemini CLI OS / Process platform in the clearcut ( #7086 )
2025-08-27 07:29:43 +00:00
N. Taylor Mullen
59cdf5933f
chore(release): v0.2.1 ( #7200 )
2025-08-27 00:04:08 -07:00
christine betts
c79f145b37
Add prompt to migrate workspace extensions ( #7065 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-27 00:43:02 +00:00
David East
be48414518
fix(ci): Fix self assign action permissions ( #7130 )
2025-08-27 00:25:03 +00:00
David East
2df3480cba
fix(cli): make Ctrl+C UI test less flaky ( #7166 )
2025-08-27 00:06:02 +00:00
cornmander
1baa74ebbf
Update build command to set GEMINI_SANDBOX var. ( #7159 )
...
Bypassing flaky test.
2025-08-26 20:11:39 -04:00
Lee James
3e74ff71b7
feat(errors): Make errors more informative ( #7133 )
2025-08-26 23:22:05 +00:00
Miguel Solorio
6fb01ddcc4
Update colors tokens for inputer/footer ( #6523 )
2025-08-26 22:08:47 +00:00
cornmander
327c5f889d
Print error when failing to build sandbox ( #7149 )
2025-08-26 21:58:33 +00:00
shishu314
366483853e
feat(cli) - Define shared interface for storage ( #7049 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-08-26 21:03:11 +00:00
Adam Weidman
bfef867ba7
Add a2a-server package to gemini-cli ( #6597 )
2025-08-26 20:49:25 +00:00
Victor May
08bdd08412
Clearcut Logging of Content Error Metrics ( #7099 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-26 19:37:18 +00:00
shishu314
142192ae59
fix(cli) - Add logging for shell errors ( #7007 )
...
Co-authored-by: Shi Shu <shii@google.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-26 19:26:16 +00:00
Jacob Richman
df79433bec
Downgrade version of ripgrep to the version from 7 months ago without a node 22 dependency ( #7132 )
2025-08-26 18:58:19 +00:00
cornmander
47417ec05e
Fix cloudbuild step. ( #7131 )
...
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
2025-08-26 18:55:06 +00:00
Allen Hutchison
231576426c
feat(subagent): Enable incremental output streaming ( #5819 )
2025-08-26 18:53:00 +00:00
Pavel Simakov
bdd63ce3e8
Added usage details to /tools command. ( #6849 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-26 18:07:12 +00:00
HugoMurillo
cf9de689c3
fix( #6392 ): latest prompt being reloaded when ending a persistent process ( #6857 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2025-08-26 18:01:31 +00:00
Victor May
d340ddae62
Ensure a Strictly Alternating Message History ( #6995 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-26 18:00:20 +00:00
shrutip90
4e49ee4c73
Make config non optional in ToolConfirmationMessage ( #7083 )
2025-08-26 17:02:22 +00:00
Andrew Garrett
52dae2c583
feat(cli): Add --allowed-tools flag to bypass tool confirmation ( #2417 ) ( #6453 )
2025-08-26 16:17:43 +00:00
Amy He
c33a0da1df
feat(mcp): Add ODIC fallback to OAuth metadata look up ( #6863 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-08-26 16:06:26 +00:00
christine betts
51bb624d45
Add extensions enable command ( #7042 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-26 15:49:00 +00:00
yoshi-taka
0324dc2eb2
chore: unused deps ( #7109 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-08-26 15:20:56 +00:00
Adam Weidman
1fd6a2f0b6
chore: format & imports ( #7030 )
2025-08-26 14:46:05 +00:00
christine betts
dff175c4f4
[extensions] Add disable command ( #7001 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-26 14:36:55 +00:00
Mark McDonald
d77391b3cd
Downgrade branch_protection to log ( #2934 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-26 11:24:24 +00:00
Tommaso Sciortino
7e31577813
Standardize exit codes ( #7055 )
2025-08-26 04:44:45 +00:00
Silvio Junior
415a36a195
Do not call nextSpeakerCheck if there was an error processing the stream. ( #7048 )
...
Co-authored-by: christine betts <chrstn@uw.edu >
Co-authored-by: Antonio Scandurra <me@as-cii.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
Co-authored-by: shishu314 <shishu_1998@yahoo.com >
Co-authored-by: Shi Shu <shii@google.com >
Co-authored-by: Steven <steventohme59@gmail.com >
Co-authored-by: Pascal Birchler <pascalb@google.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-08-26 04:10:53 +00:00
fuyou
45fff8f9f7
Fix(command): line/block Comments Incorrectly Parsed as Slash Commands ( #6957 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-08-26 03:51:27 +00:00
shrutip90
97ce197f38
Treat undefined same as true for isTrustedFolder ( #7073 )
2025-08-26 02:57:57 +00:00
christine betts
b6cca01161
[extensions] Add an initial set of extension variables ( #7035 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-26 02:13:16 +00:00
Shreya Keshive
75b1e01bb0
fix(ide): remove noisy error log ( #7066 )
2025-08-26 01:29:31 +00:00
shrutip90
ae1f67df04
feat: Disable YOLO and AUTO_EDIT modes for untrusted folders ( #7041 )
2025-08-26 00:30:04 +00:00
Arya Gummadi
2c6794feed
fix: resolve three flaky tests ( #7058 )
2025-08-26 00:27:36 +00:00
Jack Wotherspoon
8075300e34
chore: remove CLI flags all_files and show_memory_usage ( #7059 )
2025-08-26 00:04:35 +00:00
N. Taylor Mullen
ad71cdab4c
fix(ci): allow release branches to run ( #7060 )
2025-08-25 23:39:32 +00:00
Tommaso Sciortino
925d747b9d
Revert "feat: add explicit license selection and status visibility ( #6751 )" ( #7057 )
2025-08-25 23:16:30 +00:00
Andrew Grigorev
d820c2335b
fix(core): enable thinking explicitly in flash-lite models ( #3033 )
...
Co-authored-by: Lee James <40045512+leehagoodjames@users.noreply.github.com >
2025-08-25 22:30:40 +00:00
owenofbrien
cf5e1da69f
Added session id logging for non-interactive sessions in debug mode ( #7032 )
2025-08-25 22:21:00 +00:00
yoshi-taka
28912589d0
unused deps ( #4732 )
2025-08-25 22:17:48 +00:00
Pascal Birchler
0f031a7f89
Explict imports & exports with type modifier ( #3774 )
2025-08-25 22:04:53 +00:00
Arya Gummadi
71c090c696
feat: add golden snapshot test for ToolGroupMessage and improve success symbol ( #7037 )
2025-08-25 21:42:18 +00:00
Arya Gummadi
0a8e941097
fix(telemetry): Update logger tests to handle user email field ( #7050 )
2025-08-25 21:20:17 +00:00
Abhi
db0bf2b71f
refactor(cli): Improve Kitty keycode handling and tests ( #7046 )
2025-08-25 21:14:07 +00:00
Richie Foreman
1b2249fb8f
feat(ide): Enable Firebase Studio install now that FS has updated VsCode ( #7027 )
2025-08-25 21:10:36 +00:00
Jerop Kipruto
f719978476
feat: Update GitHub workflow configurations ( #7004 )
2025-08-25 21:10:20 +00:00
Pascal Birchler
ee4feea006
chore: consistently import node modules with prefix ( #3013 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-08-25 20:11:27 +00:00
Steven
415d3413c4
feat(telemetry): Add email to telemetry prompt ( #6339 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-25 20:06:53 +00:00
shishu314
cd75d94262
Log yolo mode + number of turns ( #6055 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-08-25 20:06:47 +00:00
christine betts
f32a54fefc
[extensions] Add extensions update command ( #6878 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-25 19:41:15 +00:00
Abhi
41ece1a8b7
fix(keyboard): Implement Tab and Backspace handling for Kitty Protocol ( #7006 )
2025-08-25 18:41:10 +00:00
Shreya Keshive
776627c855
refactor(ide): Improve IDE detection discovery ( #6765 )
2025-08-25 18:39:57 +00:00
christine betts
0641b1c095
[extensions] Add extensions list command ( #6879 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-25 18:27:38 +00:00
Arya Gummadi
4170dbdac3
fix: misaligned right border on tool calls ui and spacing in multiple tool calls ui ( #6941 )
2025-08-25 18:26:06 +00:00
Antonio Scandurra
7fa592f342
Show error instead of aborting if model fails to call tool ( #7005 )
2025-08-25 17:58:04 +00:00
christine betts
ade703944d
[extensions] Add extensions uninstall command ( #6877 )
2025-08-25 17:40:15 +00:00
christine betts
0bd496bd51
[extensions] Add extension management install command ( #6703 )
2025-08-25 17:02:10 +00:00
Pascal Birchler
49cce8a15d
chore(test): install and configure vitest eslint plugin ( #3228 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-08-25 14:21:47 +00:00
Billy Biggs
04953d60c1
Introduce system defaults (vs system overrides) ( #6724 )
2025-08-25 04:21:22 +00:00
Shardul Natu
1918f4466b
add(OTel): Add OTel logging for MalformedJsonEvent ( #6912 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: cornmander <shikhman@google.com >
2025-08-25 02:11:41 +00:00
Pascal Birchler
bedd1d2c20
Add .prettierignore file ( #6914 )
2025-08-24 21:01:26 +00:00
Billy Biggs
a8cac96cc9
Support JSON schema formats using ajv-formats ( #6949 )
2025-08-24 16:37:09 +00:00
kookyleo
5bba15b038
fix(cli): Improve proxy test isolation and sandbox path resolution ( #6555 )
2025-08-23 04:43:03 +00:00
sangwook
494a996ff8
feat(core): share file list patterns between glob and grep tools ( #6359 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-23 04:35:00 +00:00
Shreya Keshive
f55b294570
Update instructions for patching a release ( #6871 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-23 04:15:03 +00:00
Sudheer Tripathi
d89f7ea9b5
fix(cli): gemini command stuck in git bash ( #6397 )
...
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-23 00:19:20 +00:00
Sandy Tao
da73f13d02
fix(core): Skip loop check for dividers ( #6893 )
2025-08-23 00:08:16 +00:00
Neha Prasad
1a89d18526
fix: slash command completion menu column width and spacing issues ( #5797 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-22 23:51:49 +00:00
Deepankar Sharma
53067fda74
Add support for debug logging of keystrokes to investigate #6227 ( #6844 )
...
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-22 23:31:55 +00:00
Bryan Morgan
fef89f5429
Filter thought parts before passing them to CountToken ( #6859 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-22 23:15:37 +00:00
Victor May
5b5290146a
Metrics for Retries on Content Errors ( #6870 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-22 23:06:29 +00:00
George Smith
33d49291ec
fix(cli): Support special characters in sandbox profile path ( #2038 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-22 21:36:57 +00:00
Tommaso Sciortino
75822d3506
Change the type of ToolResult.responseParts ( #6875 )
2025-08-22 21:12:05 +00:00
gbbosak
9a0722625b
Fix crash when encountering an included directory which doesn't exist ( #6497 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
2025-08-22 20:49:35 +00:00
Agus Zubiaga
cfcf14fd06
Support all content types in prompts from Zed ( #6756 )
2025-08-22 20:10:14 +00:00
Silvio Junior
4c1c6d2b0d
Log all parts of a streaming response ( #6855 )
2025-08-22 20:01:45 +00:00
jason
5030ced9e1
feat: add explicit license selection and status visibility ( #6751 )
2025-08-22 20:01:01 +00:00
Victor May
bb8a23ae80
Retry Message Stream on Empty Chunks ( #6777 )
2025-08-22 19:43:53 +00:00
Santhosh Kumar
4b79ef877f
feat(cli): Allow themes to be specified as file paths ( #6828 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-22 19:28:41 +00:00
David East
11119c80f7
feat(ci): add self-assign workflow for issues ( #6840 )
2025-08-22 19:16:35 +00:00
matt korwel
c3cf1c61c1
fix(release): fallback to github.sha when ref is not provided ( #6862 )
2025-08-22 12:54:08 -07:00
Lee James
240830afac
feat(mcp): log include MCP request with error ( #6778 )
2025-08-22 18:10:30 +00:00
Ahmed Mughal
d35abdab99
fix(editors): fix neovim closing when using modify with editor ( #5337 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-22 17:57:11 +00:00
joshualitt
76bbbac7ff
bug(core): Fix for "no changes" edits. ( #6836 )
2025-08-22 17:43:19 +00:00
Jacob MacDonald
5de66b4908
feat(mcp): Improve MCP prompt argument parsing ( #6779 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-22 17:28:11 +00:00
Swapnaneel Patra
f61acf60f6
fix(core): correctly consolidate multi-part text content ( #6235 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-22 17:12:10 +00:00
Ben Guo
9c1490e985
fix(copyCommand): provide friendlier error messages for /copy command ( #6723 )
...
Co-authored-by: Ben Guo <hundunben@gmail.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-22 16:58:35 +00:00
Jerop Kipruto
c4a788b7b2
fix invalid json in workflow settings ( #6831 )
2025-08-22 16:19:07 +00:00
pokutuna
56ad22b39b
fix(core): citation markers misplaced in search results containing multibyte characters ( #5956 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-22 16:09:16 +00:00
fuyou
3b29f11862
fix(cli): improve stdin handling and add initial state check ( #6747 )
2025-08-22 15:42:03 +00:00
Arya Gummadi
e1d5dc545d
fix(checkpointing): improve error handling and messaging for Git issues ( #6801 )
2025-08-22 15:29:52 +00:00
Victor Miura
31cd35b8c4
fix(tools): Add an end of file list marker to ReadManyFilesTool ( #5967 )
...
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-22 15:10:14 +00:00
Nanda Kishore
528227a0f8
feat: Add programming language to CLI events ( #6071 )
...
Co-authored-by: christine betts <chrstn@uw.edu >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Adam Weidman <65992621+adamfweidman@users.noreply.github.com >
Co-authored-by: JaeHo Jang <diehreo@gmail.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Victor May <mayvic@google.com >
Co-authored-by: Gaurav <39389231+gsquared94@users.noreply.github.com >
Co-authored-by: joshualitt <joshualitt@google.com >
Co-authored-by: Billy Biggs <bbiggs@google.com >
Co-authored-by: Ricardo Fabbri <rfabbri@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
Co-authored-by: Ben Guo <36952867+HunDun0Ben@users.noreply.github.com >
Co-authored-by: Ben Guo <hundunben@gmail.com >
Co-authored-by: mkusaka <hinoshita1992@gmail.com >
2025-08-22 12:17:32 +00:00
Bryant Chandler
4ced997d63
feat(search): Add option to disable fuzzy search ( #6510 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-22 06:31:39 +00:00
fuyou
ef46d64ae5
Fix(grep): memory overflow in grep search and enhance test coverage ( #5911 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-22 06:10:45 +00:00
mkusaka
51f642f0a9
fix: Ctrl+E should move to current line end, not buffer end ( #6729 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-22 04:39:58 +00:00
Ben Guo
348fa6c7c2
fix(console): fix debug icon rendering in "Debug Console" Box ( #6737 )
...
Co-authored-by: Ben Guo <hundunben@gmail.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-22 04:37:51 +00:00
Shreya Keshive
5be9172ad5
fix(ide): preserve focus when showing diff view ( #6795 )
2025-08-22 02:24:45 +00:00
Gal Zahavi
14ca687c05
test(integration-tests): isolate user memory from test runs ( #6790 )
2025-08-22 00:34:13 +00:00
Tommaso Sciortino
15c62bade3
Reuse CoreToolScheduler for nonInteractiveToolExecutor ( #6714 )
2025-08-21 23:49:12 +00:00
Jacob Richman
29699274bb
feat(settings) support editing string settings. ( #6732 )
2025-08-21 23:43:56 +00:00
christine betts
10286934e6
Introduce initial screen reader mode handling and flag ( #6653 )
2025-08-21 22:29:15 +00:00
Ricardo Fabbri
679acc45b2
fix(docs): path of chat checkpoints in manual ( #6303 )
...
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-21 22:27:23 +00:00
Billy Biggs
2dd15572ea
Support IDE connections via stdio MCP ( #6417 )
2025-08-21 22:00:05 +00:00
joshualitt
ec41b8db8e
feat(core): Annotate remaining error paths in tools with type. ( #6699 )
2025-08-21 21:40:18 +00:00
Gaurav
299bf58309
fix: handle extra text in gemini output for dedup workflow ( #6771 )
2025-08-21 20:40:44 +00:00
Victor May
720eb81890
At Command Race Condition Bugfix For Non-Interactive Mode ( #6676 )
2025-08-21 18:47:40 +00:00
JaeHo Jang
1e5ead6960
perf(core): parallelize memory discovery file operations performance gain ( #5751 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-21 18:21:04 +00:00
Adam Weidman
714b3dab73
chore(lint config): add test-utils to eslint config ( #6768 )
2025-08-21 18:00:59 +00:00
christine betts
0a7879272d
Fix stats display layout ( #6758 )
2025-08-21 17:56:18 +00:00
christine betts
a90ca626d3
Quick fix for enterprise docs ( #6753 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-21 14:38:10 +00:00
官余棚
589f5e6823
feat(cli): prompt completion ( #4691 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-21 08:04:04 +00:00
shrutip90
ba5309c405
Force restart on trust level change to reload settings ( #6713 )
2025-08-21 07:38:12 +00:00
Shardul Natu
0242ecd83a
fix(metrics): Do not convert numerical metrics to strings ( #6701 )
...
Co-authored-by: Shnatu <snatu@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
Co-authored-by: Arya Gummadi <aryagummadi@google.com >
2025-08-21 07:25:42 +00:00
pwrwpw
f8f79bf2f7
fix(core): avoid error handling on cancelled requests to prevent crash ( #6039 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-21 07:18:30 +00:00
Yoichiro Tanaka
63f9e86bc3
feat(mcp-client): Handle 401 error for httpUrl ( #6640 )
2025-08-21 07:05:45 +00:00
bonggwan
a64394a4fa
(fix): Change broken emojis ( #6725 )
2025-08-21 06:14:29 +00:00
cornmander
16360588d7
Add integration test to confirm environment variable propagation. ( #6696 )
2025-08-21 01:44:34 +00:00
Allen Hutchison
a590a033be
test(integration): add failing test for stdin context with prompt ( #6158 )
2025-08-20 23:52:27 +00:00
Tommaso Sciortino
653267a64f
Remove unused attribute ( #6661 )
2025-08-20 23:13:50 +00:00
Tommaso Sciortino
0193ce77dd
Remove unnecessary FileErrorType. ( #6697 )
2025-08-20 23:13:29 +00:00
cornmander
6eb6560d42
Limit dependabot PRs to security updates ( #6657 )
2025-08-20 22:24:43 +00:00
Shreya Keshive
0e9b06d5c2
feat(ide): improve IDE installation UX and feedback ( #6677 )
2025-08-20 21:11:31 +00:00
Shreya Keshive
80ff3cd25e
feat(ide ext): Write workspace path to port file ( #6659 )
2025-08-20 21:09:53 +00:00
Sandy Tao
6aff66f501
feat(core): Handle special characters in file search paths ( #6680 )
2025-08-20 20:51:49 +00:00
VigneshKumar
b4ecdd67ec
fix: typos/grammar in roadmap ( #6675 )
2025-08-20 20:15:54 +00:00
Jacob MacDonald
1738d40745
return the JSON stringified parameters from getDescription for MCP tools and Discovered tools ( #6655 )
2025-08-20 20:10:02 +00:00
Victor May
4642de2a5c
Fixing at command race condition ( #6663 )
2025-08-20 19:51:31 +00:00
Jacob Richman
52e340a11b
Revert "Ignore workspace settings for untrusted folders" ( #6672 )
2025-08-20 19:49:15 +00:00
hritan
fd64d89da0
fix: copy command gets stuck ( #6482 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
2025-08-20 18:42:42 +00:00
VigneshKumar
716297fb32
fix: typo in readme ( #6669 )
2025-08-20 18:19:32 +00:00
christine betts
99b1ba9d10
Add enterprise settings docs ( #6076 )
2025-08-20 17:04:03 +00:00
matt korwel
0e24805806
feat(release): update release process for nightly and preview builds ( #6643 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-20 15:50:00 +00:00
Andrii Abramov
acedcfb8f7
Fix formatting in README.md ( #6621 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-20 14:54:36 +00:00
Lee James
99f03bf364
test(logging): Add tests for default log fields ( #6583 )
2025-08-20 14:33:25 +00:00
agarwalravikant
6b843ca3a8
Changes to add MCP tool count, and MCP tool name as dimension ( #6631 )
...
Co-authored-by: Ravikant Agarwal <ravikantag@google.com >
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-20 14:22:22 +00:00
dependabot[bot]
a773d0887c
chore(deps)(deps): bump google-github-actions/run-gemini-cli from 0.1.10 to 0.1.11 ( #6614 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-20 14:13:20 +00:00
fuyou
b6e7796346
docs: Update keyboard shortcuts for input clearing functionality ( #6627 )
2025-08-20 13:56:53 +00:00
cornmander
c668699e77
Add permissions specs to token generation. ( #6595 )
2025-08-20 05:00:02 +00:00
shrutip90
d250293c2e
Ignore workspace settings for untrusted folders ( #6606 )
2025-08-20 04:20:41 +00:00
cornmander
179f1414da
feat: add dependabot configuration ( #6604 )
2025-08-20 04:02:02 +00:00
matt korwel
e5f4d25f5e
Update README.md ( #6603 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-08-20 03:55:34 +00:00
Yuki Okita
21c6480b65
Refac: Centralize storage file management ( #4078 )
...
Co-authored-by: Taylor Mullen <ntaylormullen@google.com >
2025-08-20 01:55:47 +00:00
Jerop Kipruto
1049d38845
feat: update .gitignore in /setup-github ( #6591 )
2025-08-20 01:53:53 +00:00
Gal Zahavi
c93c06711a
Update shell service integration tests ( #6598 )
2025-08-20 01:24:42 +00:00
Arya Gummadi
2a71c10b8a
feat: auto-approve compatible pending tools when allow always is selected ( #6519 )
2025-08-20 01:22:41 +00:00
Blackoutta
d587c6f104
Fix IDE Companion Connection in Proxy Environments ( #6308 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-20 00:32:08 +00:00
Shreya Keshive
6732665a08
fix(ide): Correctly identify IDE process when run from terminal ( #6566 )
2025-08-20 00:23:37 +00:00
Arya Gummadi
6505b0c8e1
fix: allow re-auth with another google account ( #6544 )
2025-08-20 00:06:25 +00:00
Sandy Tao
389102ec0e
feat(core): Add --skip-next-speaker-check flag ( #6589 )
2025-08-19 23:45:13 +00:00
Shardul Natu
faff1c2ec7
update(opentelemetry): Upgrade OTel dependencies ( #6540 )
...
Co-authored-by: Shnatu <snatu@google.com >
2025-08-19 23:39:59 +00:00
Tommaso Sciortino
a01d411c5a
Get ToolRegistry from config instead of passing it ( #6592 )
2025-08-19 23:27:15 +00:00
Gal Zahavi
f1575f6d8d
feat(core): refactor shell execution to use node-pty ( #6491 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-19 23:03:51 +00:00
Tommaso Sciortino
0cc2a1e7ef
Remove unnecessary promiuse usage. ( #6585 )
2025-08-19 22:31:02 +00:00
Yoichiro Tanaka
1244ec6954
docs: Update mcpServers configuration documentation ( #6556 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-19 21:47:36 +00:00
Jack Wotherspoon
fb5f2987f3
feat(ui): add hideFooter setting to hide footer from UI ( #6505 )
2025-08-19 21:06:01 +00:00
joshualitt
b9cece767d
feat(core): Cleanup after migrating tools. ( #6199 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-19 20:55:06 +00:00
Jacob Richman
2143731f6e
fix(paste) incorrect handling of \\\n in pastes ( #6532 )
2025-08-19 20:41:08 +00:00
Shreya Keshive
ed1fc4ddb3
fix(ide): Fix bug where companion extension was not being installed on Windows correctly ( #6576 )
2025-08-19 20:25:11 +00:00
fuyou
24858b319a
Fix locale-specific date formatting issue in environmentContext.ts ( #5889 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-19 20:24:28 +00:00
anj-s
1b9107a8bb
Remove checking for a condition just for logging ( #6503 )
2025-08-19 20:17:42 +00:00
Marat Boshernitsan
d543c8339a
fix(core): harden user account caching ( #6501 )
2025-08-19 20:16:06 +00:00
owenofbrien
b561d3bbed
Log all session metadata ( #6423 )
2025-08-19 20:06:00 +00:00
HugoMurillo
b9cf1ea3ce
fix( #5605 ): .env file loaded after settings are parsed ( #6494 )
2025-08-19 19:07:42 +00:00
Ramón Medrano Llamas
b24c5887c4
feat: restart MCP servers on /mcp refresh ( #5479 )
...
Co-authored-by: Brian Ray <62354532+emeryray2002@users.noreply.github.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-08-19 19:03:19 +00:00
Shreya Keshive
4828e4daf1
feat: Add IDE client to /bug & /about if IDE mode is enabled ( #6567 )
2025-08-19 18:22:21 +00:00
Shreya Keshive
9588aa6ef9
feat: Show /ide subcommands based on connection status instead of ideMode boolean ( #6496 )
2025-08-19 17:24:58 +00:00
Akhil Appana
fde5511c27
feat(ui): implement message queuing during streaming responses ( #6049 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-19 16:25:16 +00:00
Arya Gummadi
ec0d9f4ff7
fix: add privacy settings hook and tests ( #6360 )
2025-08-19 06:57:10 +00:00
Arya Gummadi
8f8082fe3d
feat: add file change tracking to session metrics ( #6094 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-19 05:57:53 +00:00
Arya Gummadi
da396bd566
fix: ensure consistent theme behavior between local and CI test runs ( #6358 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-19 05:56:46 +00:00
agarwalravikant
58c2925624
Changes to add tool_type as dimension ( #6538 )
...
Co-authored-by: Ravikant Agarwal <ravikantag@google.com >
2025-08-19 05:25:47 +00:00
Ali Al Jufairi
e290a61a52
fix(settings) : Disable showing statics in the dialog ( #5998 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-08-19 03:38:55 +00:00
Ali Al Jufairi
92bb4624c4
feat(settings): enhance settings management with generic setter and display hel… ( #6202 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-19 02:28:45 +00:00
bl-ue
36ea986cfe
feat(sessions): Introduce core ChatRecordingService for automatic conversation saving ( #5221 )
2025-08-19 00:39:57 +00:00
Gal Zahavi
6fc68ff8d4
fix(tools): Handle special characters in file paths for glob and read_many_files ( #6507 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-18 23:39:05 +00:00
Conrad Irwin
fb3ceb0da4
Read and write files through Zed ( #6169 )
...
Co-authored-by: Agus Zubiaga <agus@zed.dev >
2025-08-18 22:29:45 +00:00
Arya Gummadi
4394b6ab4f
fix(docs): update authentication documentation to reflect available options ( #6361 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-18 22:04:01 +00:00
Gaurav
5fe4e02310
fix: GCA creds loading order ( #6498 )
2025-08-18 21:11:19 +00:00
Jacob MacDonald
3960ccf781
Add MCP Root change notifications ( #6502 )
2025-08-18 21:09:02 +00:00
Bryant Chandler
465ac9f547
feat(filesearch): Introduce non-recursive file search strategy ( #6087 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Bryant Chandler <bryantchandler@chromium.org >
2025-08-18 20:43:24 +00:00
joshualitt
d66ddcd82e
bug(core): Do not throw validation errors when building tools in nonInteractiveToolExecutor. ( #6363 )
2025-08-18 20:28:15 +00:00
Billy Biggs
91cd0db2b3
Log start session event through telemetry/loggers ( #6431 )
2025-08-18 20:03:03 +00:00
Richie Foreman
71f706cf29
feat(client/compression): Log telemetry when compressing chat context. ( #6195 )
2025-08-18 19:59:13 +00:00
cornmander
1a0cc68e29
Disable failing IDE tests. ( #6481 )
2025-08-18 17:51:44 +00:00
Shreya Keshive
0215811c4c
Revert "Show /ide enable & /ide disable commands based on connection status" ( #6486 )
2025-08-18 16:42:45 +00:00
Abhi
065eb7897d
fix(commands): Respect YOLO mode in custom slash commands ( #6441 )
2025-08-18 14:34:51 +00:00
uttamkanodia14
88fc6e5861
Sends Gemini CLI Client install id to Vertex and Gemini. ( #6217 )
2025-08-18 07:06:57 +00:00
fuyou
7b03a64b85
Fix URL truncation in CLI display components #5902 ( #5925 )
2025-08-18 05:26:34 +00:00
cornmander
133f0230c3
Add vi globals to fix integration tests. ( #6445 )
2025-08-18 05:17:22 +00:00
Richie Foreman
2998f27f70
chore(compiler): Enable strict property access TS compiler flag. ( #6255 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-17 16:43:21 +00:00
cornmander
ec1fa954d1
Fix several IDE mode integration tests ( #6408 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-17 07:55:39 +00:00
Abhi
33b9bdb11e
feat(cli): Introduce arguments for shell execution in custom commands ( #5966 )
2025-08-17 04:02:54 +00:00
cornmander
e7dbc607a5
Fix missing import in ide integration tests. ( #6407 )
2025-08-17 01:26:12 +00:00
cornmander
5aadb02af0
Fix integration test. ( #6403 )
2025-08-17 00:08:14 +00:00
Marat Boshernitsan
bc60257e22
feat(oauth): Make oauth client a singleton to survive cache failures ( #6348 )
2025-08-16 05:05:59 +00:00
Jacob Richman
6c1373c332
Revert "Update semantic color tokens" ( #6365 )
2025-08-16 03:18:31 +00:00
Billy Biggs
d57cc0b930
Add support for HTTP OpenTelemetry exporters ( #6357 )
2025-08-16 01:10:21 +00:00
Sunny Sachanandani
4896c7739f
[ide-mode] Fix path delimiter for multi-root workspaces on Windows ( #6273 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-15 22:58:31 +00:00
Miguel Solorio
3c0af3654a
Update semantic color tokens ( #6253 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2025-08-15 22:39:54 +00:00
Evan Otero
5246aa11f4
Check for pending tool calls before appending IDE Context ( #6317 )
2025-08-15 22:04:47 +00:00
Gaurav
80763f5629
fix: handle multiline output in issue dedup workflow ( #6338 )
2025-08-15 21:33:13 +00:00
Wanlin Du
de6c759c28
fix: allow user to use responseSchema as well. ( #6336 )
2025-08-15 20:59:01 +00:00
Tommaso Sciortino
b55f19fdfc
use toMatchSnapshot in test ( #6344 )
2025-08-15 20:31:00 +00:00
Jack Wotherspoon
31b4c76a6b
fix: improve robustness of gemini mcp add command ( #6332 )
2025-08-15 19:36:38 +00:00
Deepankar Sharma
f5a5cdd973
fix(input): Handle numpad enter key in kitty protocol terminals ( #6341 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-15 19:30:57 +00:00
Brian Ray
2c07dc0757
fixes for oauth spec - adds github oauth support. Resource paramater. ( #6281 )
2025-08-15 19:14:48 +00:00
Tommaso Sciortino
01b8a7565c
Fix shell tool description to be os-specific ( #6335 )
2025-08-15 19:08:29 +00:00
blanca-delgado-parra
088f074839
Update quota-and-pricing.md to clarify billing ( #6092 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Srinath Padmanabhan <srithreepo@google.com >
Co-authored-by: Srinath Padmanabhan <17151014+srithreepo@users.noreply.github.com >
2025-08-15 19:00:13 +00:00
Jacob Richman
bd5e49c5ff
fix(input) Resolve cases where escape was broken ( #6304 )
2025-08-15 17:54:00 +00:00
Gal Zahavi
1a2906a8ad
Revert #6088 ( #6328 )
2025-08-15 17:27:33 +00:00
Evan Otero
ab1c483cab
feat(about): Add the IDE Client's display name to /about ( #6311 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-15 16:32:15 +00:00
Hiroaki Mitsuyoshi
72195d5553
fix(ui): Fix hang in chat save confirmation dialog ( #6312 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-15 15:46:45 +00:00
joshualitt
8f2fa5a537
feat(core): Migrate MockTools to declarative pattern. ( #6197 )
2025-08-15 15:44:26 +00:00
LongYinan
d2f4e2664e
chore: remove duplicated lockfile ( #6291 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-15 15:39:58 +00:00
Jacob Richman
32d1ac3ce2
fix(input) ctrl-j support was lost switching to keyBindings.ts ( #6305 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-15 15:31:17 +00:00
owenofbrien
ddbe65e8c3
Add session id to session summary and /bug template ( #6313 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-15 15:15:54 +00:00
Pyush Sinha
a92299069d
fix: pendingSlashCommandHistoryItems corrected to properly memoize updates ( #6282 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-08-15 15:11:43 +00:00
cornmander
41c5195ed3
feat(shell): Include disallowed commands in block reason ( #6278 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-15 14:37:49 +00:00
Gaurav
a131555c9c
fix: update issue dedup workflow ( #6275 )
2025-08-15 12:51:08 +00:00
Miguel Solorio
2e6c3580df
Stylize diff line numbers & characters ( #6269 )
2025-08-15 06:18:39 +00:00
Jacob Richman
2690123af0
Fix flaky test for SettingsDialog. ( #6294 )
2025-08-15 06:04:48 +00:00
hritan
d46b91e09d
fix: console patcher initialised in main ( #6252 )
...
Co-authored-by: Hriday Taneja <hridayt@google.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-15 04:25:27 +00:00
JAYADITYA
93559d65c8
update docs ( #6204 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-15 03:15:27 +00:00
Shreya Keshive
a84f749310
Show /ide enable & /ide disable commands based on connection status ( #6248 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-15 00:22:32 +00:00
Shreya Keshive
db347eeee8
IDE integration Gemini command multi-folder support + bump version ( #6265 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-15 00:07:06 +00:00
Shreya Keshive
cf7e6ff52d
Fix license notice generation script to include transitive dependencies ( #6272 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-15 00:06:20 +00:00
Jacob Richman
6037cb5d60
Fix bug where RadioButtonSelect treated an omitted isFocus parameter ( #6274 )
2025-08-14 23:48:54 +00:00
Jacob Richman
a5c81e3fe0
Fix flake due to using wait instead of waitFor ( #6277 )
2025-08-14 23:39:12 +00:00
HugoMurillo
8c0c8d7770
fix( #5340 ): unable to load chats with weird characters ( #5969 )
2025-08-14 23:24:57 +00:00
Tommaso Sciortino
1a41ba7daf
Prevent writing outside of the workspace roots ( #6178 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-14 22:59:37 +00:00
Lee James
f47af1607a
bug(mcp): catch errors reported by GitHub MCP ( #6194 )
2025-08-14 22:30:05 +00:00
Jerop Kipruto
a01db2cfd5
feat(triage): Improve GitHub issue triage workflows ( #6120 )
2025-08-14 22:20:43 +00:00
Gal Zahavi
980091cbc2
feat(core): refactor shell execution to use node-pty ( #6088 )
2025-08-14 20:40:12 +00:00
joshualitt
48af0456c1
feat(core): Migrate web-search, write-file, and discovered-tool. ( #6188 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-14 20:28:33 +00:00
christine betts
5c5fc89eb1
[ide-mode] Support multi-folder workspaces ( #6177 )
2025-08-14 20:12:57 +00:00
Tommaso Sciortino
e06d774996
docs: remove reference to Gemini Code Assist for Workspace ( #6247 )
2025-08-14 18:40:15 +00:00
shrutip90
69c5582723
feat: Show untrusted status in the Footer ( #6210 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-14 18:15:48 +00:00
Shreya Keshive
69d666cfaf
Fix release notes generation ( #6233 )
2025-08-14 18:13:13 +00:00
christine betts
af93a10a92
[ide-mode] Write port to file in ide-server ( #5811 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-14 18:09:19 +00:00
Wietse Venema
ec7b84191f
feat: Allow combining -p and stdin for prompt input ( #4406 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-14 18:08:59 +00:00
Shreya Keshive
798c4d1311
Update IDE integration context toggle shortcut to ctrl+G ( #6245 )
2025-08-14 17:50:20 +00:00
christine betts
2416a80e9c
[ide-mode] Add docs on running the vscode companion extension locally ( #6145 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Shreya <shreyakeshive@google.com >
Co-authored-by: Shreya Keshive <skeshive@gmail.com >
2025-08-14 17:47:36 +00:00
joshualitt
ef54f720de
bug(cli): Exclude only specific tests. ( #6244 )
2025-08-14 17:35:34 +00:00
Kamal Raj Sekar
4973e7e1e0
/chat save command saves empty conversations with only system context ( #6121 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-14 16:30:30 +00:00
Richie Foreman
8bebaedad4
chore(vscode): Add eslint as a recommended extension ( #6196 )
2025-08-14 16:14:02 +00:00
christine betts
d6403c67ee
[ide-mode] Suggest the extension name in the installation messages ( #6182 )
2025-08-14 14:57:36 +00:00
Jerop Kipruto
2fc1ef7d59
Docs: update overview of Gemini CLI GitHub Actions ( #6198 )
2025-08-14 14:46:32 +00:00
Shreya Keshive
e74dc4d0e0
Update versioning script to also bump version for companion extension so they stay in sync ( #6075 )
2025-08-14 14:30:16 +00:00
owenofbrien
dd55a82a28
Log CLI version and git commit hash (v2) ( #6176 )
2025-08-14 10:12:26 +00:00
matt korwel
3e004048cf
chore(release): v0.1.21 ( #6207 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-08-14 06:14:25 +00:00
Gaurav
055fe46d21
docs: update how to use vertex AI auth with ADC ( #6193 )
2025-08-14 04:01:11 +00:00
Sandy Tao
c63185dae7
feat(deps): Update @google/genai to 1.13.0 ( #6184 )
2025-08-14 02:12:11 +00:00
Jacob Richman
342820cf5e
Fix/emoji support ( #6187 )
...
Co-authored-by: elasticdotventures <brianh@elastic.ventures >
2025-08-14 00:33:01 +00:00
Allen Hutchison
6d01ba65a2
refactor: remove modelCheck feature ( #6185 )
2025-08-14 00:25:45 +00:00
Richie Foreman
514e883af1
chore(gemini.md): Make the checkExhaustive helper section more brief/direct ( #6181 )
2025-08-13 22:59:46 +00:00
Richie Foreman
d6f74ea2f0
chore(telemetry): Add various surface detection to determineSurface for logging. ( #6074 )
...
Co-authored-by: christine betts <chrstn@uw.edu >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-13 21:45:53 +00:00
Jacob Richman
501b78f303
Update Ink version ( #6175 )
2025-08-13 21:40:04 +00:00
Gaurav
f9a1e8eb6f
fix: use server-returned project for gca free tier auth ( #6113 )
2025-08-13 21:04:58 +00:00
Richie Foreman
2dbd5ecdc8
chore(cli/slashcommands): Add status enum to SlashCommandEvent telemetry ( #6166 )
2025-08-13 20:37:08 +00:00
Sandy Tao
61047173a8
fix(core): Discard thought signature when switching from Gemini API Key to OAuth ( #6090 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-13 20:33:04 +00:00
Richie Foreman
a90aeb3d8f
chore(build/compiler): Enable a bunch of strict TS compiler options. ( #6138 )
2025-08-13 20:17:38 +00:00
Harold Mciver
8fae227e8d
fix: Prevent duplicate or inactive tools/prompts after server refresh ( #5850 )
2025-08-13 19:31:24 +00:00
joshualitt
c0c0e9b7a0
feat(core): Migrate read_many_files, shell, and web_fetch. ( #6167 )
2025-08-13 19:27:09 +00:00
joshualitt
904f4623b6
feat(core): Continue declarative tool migration. ( #6114 )
2025-08-13 18:57:37 +00:00
Seth Vargo
22109db320
chore(ci): add global linter ( #6111 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-13 18:56:10 +00:00
Jacob Richman
e4473a9007
Revert "chore(cli/slashcommands): Add status enum to SlashCommandEvent telemetry" ( #6161 )
2025-08-13 18:13:18 +00:00
shrutip90
38876b738f
Add support for trustedFolders.json config file ( #6073 )
2025-08-13 18:06:31 +00:00
Adam Weidman
b61a63aef4
move errorParsing.ts to core ( #6159 )
2025-08-13 17:57:11 +00:00
Deepankar Sharma
9c7fb870c1
Add terminal setup command for Shift+Enter and Ctrl+Enter support ( #3289 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2025-08-13 17:32:54 +00:00
Tommaso Sciortino
74a13fb535
Document certificate issue workaround ( #6157 )
2025-08-13 17:30:15 +00:00
Shreya Keshive
f81ccd8d7a
Add usage documentation for IDE integration ( #6154 )
2025-08-13 16:31:20 +00:00
Agus Zubiaga
d3fda9dafb
Zed integration schema upgrade ( #5536 )
...
Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com >
Co-authored-by: Ben Brandt <benjamin@zed.dev >
2025-08-13 15:58:26 +00:00
Richie Foreman
150103e5dd
chore(cli/slashcommands): Add status enum to SlashCommandEvent telemetry ( #6023 )
2025-08-13 15:42:38 +00:00
Seth Vargo
4074e8e6ec
chore(ci): fix yamllint issues ( #6112 )
2025-08-13 03:24:39 +00:00
Seth Vargo
214800cfc6
chore(ci): Ensure ci workflows is consistent and not vulnerable to injection attacks ( #6109 )
2025-08-13 02:56:49 +00:00
Seth Vargo
b655d8f062
chore(ci): Ensure triage workflows are consistent ( #6108 )
2025-08-13 02:50:18 +00:00
Seth Vargo
b6da98e8e9
chore(ci): Ensure action and community workflows are consistent and not vulnerable to injection attacks ( #6107 )
2025-08-13 02:36:37 +00:00
Seth Vargo
0e8bbfb8ba
chore: update bash to follow shellcheck recommendations ( #6102 )
2025-08-13 02:17:04 +00:00
Seth Vargo
9912577a2b
chore(ci): Ensure docs-gen workflow are not vulnerable to injection attacks ( #6100 )
2025-08-13 02:12:28 +00:00
Jerop Kipruto
431a312d4d
Show OpenTelemetry SDK initialization & shutdown in debug mode only ( #6096 )
2025-08-13 01:38:45 +00:00
Seth Vargo
806af05b97
chore(ci): Ensure stale and no-response workflows are consistent and not vulnerable to injection attacks ( #6097 )
2025-08-13 01:34:57 +00:00
Seth Vargo
661ee0a79e
chore(ci): Ensure e2e workflow is consistent and not vulnerable to injection attacks ( #6098 )
2025-08-13 01:30:30 +00:00
Tommaso Sciortino
9d023be1d1
Upgrade integration tests to use Vitest ( #6021 )
2025-08-12 22:57:27 +00:00
Arya Gummadi
8d6eb8c322
feat: add --approval-mode parameter ( #6024 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-12 22:10:22 +00:00
Srinath Padmanabhan
11377915db
Create Docs Pages based on github documentation ( #6083 )
2025-08-12 22:09:13 +00:00
Shreya Keshive
3a87712c1a
Launch VS Code IDE Integration ( #6063 )
2025-08-12 21:08:07 +00:00
Jacob Richman
d219f90132
Switch from useInput to useKeypress. ( #6056 )
2025-08-12 21:05:49 +00:00
christine betts
74fd0841d0
[ide-mode] Update installation logic and nudge ( #6068 )
2025-08-12 20:08:47 +00:00
Seth Vargo
8524cce7b9
chore(ci): Ensure release workflow is consistent and not vulnerable to injection attacks ( #6059 )
2025-08-12 19:51:50 +00:00
Seth Vargo
5ee5cf17ba
chore(ci): do not "fail fast" on Node tests ( #6053 )
2025-08-12 19:18:54 +00:00
Richie Foreman
f34012034c
chore(vscode): Add Build & Launch CLI option to vscode project ( #6027 )
2025-08-12 18:53:11 +00:00
Shreya Keshive
4ecfb478b0
chore(release): v0.1.19 ( #6069 )
...
Co-authored-by: gemini-cli-robot <gemini-cli-robot@google.com >
2025-08-12 18:37:49 +00:00
Richie Foreman
7cc6b8c270
chore(usage telemetry): Freshen up Clearcut logging ( #6013 )
...
Co-authored-by: christine betts <chrstn@uw.edu >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-12 18:31:59 +00:00
doonrevver86
c5c6966d08
ensure sandbox build script is cross-platform ( #2603 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-12 18:18:06 +00:00
Shreya Keshive
67c6033147
Bump version number of companion extension to match next Gemini CLI version number ( #6065 )
2025-08-12 18:03:55 +00:00
owenofbrien
5d1d40fa2e
Fix: log api response error status codes ( #6015 )
...
Co-authored-by: Gaurav <39389231+gsquared94@users.noreply.github.com >
2025-08-12 16:51:21 +00:00
Jacob Richman
804c181ac4
chore(integration-tests): refactor to typescript ( #5645 )
2025-08-12 16:19:09 +00:00
JAYADITYA
2d1a6af890
feat(cli): support single Ctrl+C to cancel streaming, preserving double Ctrl+C to exit ( #5838 )
2025-08-12 04:13:57 +00:00
Ali Al Jufairi
f9efb2e24f
docs(commands): add /settings command for user-friendly settings editing ( #5984 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-12 04:08:35 +00:00
Seth Vargo
d8fec54e81
feat(/setup-github): Use node to download the files ( #5863 )
2025-08-12 01:32:23 +00:00
Sandy Tao
26fe587b44
skip loop check if it is currently inside a loop ( #6022 )
2025-08-11 23:45:31 +00:00
Wanlin Du
d9fb08c9da
feat: migrate tools to use parametersJsonSchema. ( #5330 )
2025-08-11 23:12:41 +00:00
Wanlin Du
f52d073dfb
chore: migrate from responseSchema to use responseJsonSchema. ( #4814 )
2025-08-11 23:04:58 +00:00
Shreya Keshive
c7fd4c4a96
Start IDE connection after config initialization ( #6018 )
2025-08-11 22:09:47 +00:00
christine betts
94b6199943
[ide-mode] Update sandbox detection logic to support macos seatbelt ( #6005 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-11 21:09:57 +00:00
christine betts
c0f5f6a5f6
[ide-mode] Update handling of workspace paths ( #6014 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-11 21:06:01 +00:00
christine betts
0e98641b51
Add support for VSCode-like editors ( #5699 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-11 21:01:37 +00:00
Shreya Keshive
4656f17524
Reduce noisy IDE integration error message in standalone terminal ( #6006 )
2025-08-11 19:57:56 +00:00
cornmander
110e00178b
Add --experimental-cli to speed up prettier formatting. ( #5999 )
...
Co-authored-by: Seth Troisi <sethtroisi@google.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-11 19:09:12 +00:00
Sijie Wang
72832fb889
Fix line end bugs in Vim mode ( #5328 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-11 18:58:32 +00:00
Gaurav
6390b81646
update: issue triage workflows tags duplicate issues ( #5868 )
2025-08-11 18:48:57 +00:00
Tommaso Sciortino
239ba63d28
Make ProjectIdRequiredError error more lenient ( #5693 )
2025-08-11 18:04:44 +00:00
Jacob Richman
2269f8a1a8
Modify content generated describing the ide context to only include deltas after the initial update ( #5880 )
2025-08-11 17:15:44 +00:00
cornmander
aa5c80dec4
feat(core): add host validation to GoogleCredentialProvider ( #5962 )
...
Co-authored-by: Brian Ray <62354532+emeryray2002@users.noreply.github.com >
2025-08-11 16:40:30 +00:00
Shreya Keshive
b0b12af2ce
Additional IDE integration polishes ( #5985 )
2025-08-11 16:27:45 +00:00
christine betts
8dd6f04199
Show IDE diff options in both panes ( #5986 )
2025-08-11 16:13:45 +00:00
Lee James
2548facc79
feat: add "surface" to all logs ( #5862 )
2025-08-11 15:11:20 +00:00
Gal Zahavi
2865a52778
docs(config): Add showLineNumbers option to documentation ( #5947 )
2025-08-10 19:06:35 +00:00
Dmitry Lyalin
0e44bbc85d
docs(readme): Overhaul for clarity and user experience ( #5732 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Srinath Padmanabhan <17151014+srithreepo@users.noreply.github.com >
2025-08-10 18:52:14 +00:00
Ali Al Jufairi
0157eae3d7
fix(settings): enable default usage statistics collection ( #5909 )
2025-08-10 02:56:53 +00:00
Ali Al Jufairi
8a9a927544
feat(ui): add /settings command and UI panel ( #4738 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-10 00:04:52 +00:00
Lee Won Jun
c632ec8b03
[ #5356 ] Minor fix: Remove duplicate binding and add complete navigation command ( #5884 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-09 22:28:28 +00:00
fuyou
0dea7233b6
feat(cli) - enhance input UX with double ESC clear ( #4453 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-09 22:26:43 +00:00
Yuki Okita
34434cd4aa
feat: drop load-memory-from-include-directories option from cli args ( #5866 )
2025-08-09 19:50:53 +00:00
JAYADITYA
6b19c8bd55
feat: add humorous tip for new line shortcut in Gemini CLI ( #5666 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-09 07:24:21 +00:00
Lee Won Jun
b8084ba815
Centralize Key Binding Logic and Refactor (Reopen) ( #5356 )
...
Co-authored-by: Lee-WonJun <10369528+Lee-WonJun@users.noreply.github.com >
2025-08-09 07:03:17 +00:00
Hiroaki Mitsuyoshi
6487cc1689
feat(chat): Add overwrite confirmation dialog to /chat save ( #5686 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-09 06:59:22 +00:00
Brian de Alwis
191cc01bf5
fix(core): restrict oauth_creds.json file permissions ( #5245 )
...
Co-authored-by: cornmander <shikhman@google.com >
2025-08-09 03:05:30 +00:00
N. Taylor Mullen
c184ec3224
chore(release): v0.1.18 ( #5864 )
2025-08-08 17:26:43 -07:00
Jacob MacDonald
f35921a771
Add MCP Roots support ( #5856 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-08 23:29:06 +00:00
Gal Zahavi
c03ae43777
feat: Add option to hide line numbers in code blocks ( #5857 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-08 22:11:14 +00:00
Jacob MacDonald
69322e12e4
Add a request queue to the tool scheduler ( #5845 )
2025-08-08 21:50:35 +00:00
Shreya Keshive
9ac62565a0
Fix excessive console logging + remove unnecessary try catch ( #5860 )
2025-08-08 21:48:02 +00:00
Shreya Keshive
344ee29f77
Use slash command instead of context drawer to display open files in editor to reduce flickering in the UI ( #5858 )
2025-08-08 21:26:11 +00:00
shishu314
60bde58f29
fix(cli) - Adding logging for response and error in LoggingContentGenerator ( #5842 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-08-08 19:58:33 +00:00
shrutip90
34b5dc7f28
Add FolderTrustDialog that shows on launch and enables folderTrust setting ( #5815 )
2025-08-08 18:02:27 +00:00
christine betts
3af4913ef3
[ide-mode] Close all open diffs when the CLI gets closed ( #5792 )
2025-08-08 15:38:30 +00:00
christine betts
5ec4ea9b4d
[ide-mode] Wire up env variables to sandbox ( #5804 )
2025-08-08 15:35:47 +00:00
christine betts
407393b128
[ide-mode] Hide diff options when active diff is not focused ( #5808 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-08 15:21:50 +00:00
Gal Zahavi
51d09e720b
fix(core): Add missing mnemonist dependency ( #5841 )
2025-08-08 15:10:04 +00:00
Akhil Appana
f5e0f16157
fix: properly report tool errors in telemetry ( #5688 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-08 11:33:42 +00:00
agarwalravikant
5ab184fcaf
Fix for git issue 5657 to add lines of code added/removed telemetry ( #5823 )
...
Co-authored-by: Ravikant Agarwal <ravikantag@google.com >
2025-08-08 04:38:07 +00:00
Gal Zahavi
86eaa03f8a
feat(telemetry): Prevent memory leak in ClearcutLogger ( #5734 )
2025-08-08 01:53:39 +00:00
Jerop Kipruto
e50d886ba8
docs: Improve local telemetry example ( #5818 )
2025-08-08 01:17:19 +00:00
Sandy Tao
e8815ba43c
feat(quality): Reset when seeing a new type of Markdown element ( #5820 )
2025-08-08 00:21:42 +00:00
shishu314
bae922a632
fix(cli) - Move logging into CodeAssistServer ( #5781 )
...
Co-authored-by: Shi Shu <shii@google.com >
2025-08-07 23:58:18 +00:00
laurentsimon
60362e0329
fix: MCP servers allowed in settings do not show up in /mcp command ( #5324 )
2025-08-07 23:42:17 +00:00
Jerop Kipruto
494a10e7a7
Add echo tool to automated triage workflow ( #5809 )
...
Co-authored-by: Gaurav <39389231+gsquared94@users.noreply.github.com >
2025-08-07 23:14:28 +00:00
Miguel Solorio
785ee5d59a
Use semantic colors in themes ( #5796 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-07 23:11:35 +00:00
Gal Zahavi
4f2974dbfe
feat(ui): Improve UI layout adaptation for narrow terminals ( #5651 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-07 22:55:53 +00:00
Richie Foreman
65e4b941ee
chore(vscode): Add recommended extensions list to vscode settings. ( #5810 )
2025-08-07 22:54:00 +00:00
Richie Foreman
9bc0a4aff3
chore(telemetry): Log FIREBASE_STUDIO when using Gemini CLI within Firebase Studio ( #5790 )
2025-08-07 22:50:48 +00:00
Allen Hutchison
0c32a4061d
fix(core): Replace flaky performance tests with robust correctness tests ( #5795 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-07 22:38:21 +00:00
Bryant Chandler
9fc7115b86
perf(filesearch): Use async fzf for non-blocking file search ( #5771 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-07 22:24:55 +00:00
Richie Foreman
c38147a3a6
chore(vscode settings): Update VsCode settings for quality-of-life ( #5806 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-07 22:16:57 +00:00
Gaurav
908ce2be33
update: google-github-actions/run-gemini-cli version in workflows ( #5802 )
2025-08-07 21:57:54 +00:00
Shreya Keshive
f1663d9615
README + reduce required VS Code version for companion extension ( #5719 )
2025-08-07 21:25:06 +00:00
Shreya Keshive
4d4eacfc40
Few IDE integration polishes ( #5727 )
2025-08-07 21:19:31 +00:00
Jacob MacDonald
19491b7b94
avoid loading and initializing CLI config twice in non-interactive mode ( #5793 )
2025-08-07 21:19:06 +00:00
shrutip90
53f8617b24
Add new folderTrust setting that the users can enable or disable ( #5798 )
2025-08-07 21:06:17 +00:00
Adam Weidman
3a3b138195
Include Schema Error Handling for Vertex and Google Auth methods ( #5780 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-07 20:21:39 +00:00
Pyush Sinha
8e6a565adb
fix: re render context usage indicator ( #5102 )
2025-08-07 18:16:47 +00:00
anthony bushong
a3351bc985
fix(tests): add missing deps in cli to fix sandbox runs ( #5742 )
2025-08-07 17:58:44 +00:00
Shehab
7596481a9d
feat(cli): Allow Exiting Authentication Menu with CTRL+C (SIGINT) ( #4482 )
...
Co-authored-by: Seth Troisi <sethtroisi@google.com >
2025-08-07 17:26:55 +00:00
joshualitt
8bac9e7d04
Migrate EditTool, GrepTool, and GlobTool to DeclarativeTool ( #5744 )
2025-08-07 17:05:37 +00:00
Sandy Tao
0d65baf928
Fix(core): Use Flash for next speaker check ( #5786 )
2025-08-07 16:18:53 +00:00
Lee James
8d848dca4a
feat: open repo secrets page in addition to README ( #5684 )
2025-08-07 16:00:46 +00:00
Jacob MacDonald
6ae75c9f32
Add a context percentage threshold setting for auto compression ( #5721 )
2025-08-07 14:34:40 +00:00
Abhi
36750ca49b
feat(agent): Introduce Foundational Subagent Architecture ( #1805 )
...
Co-authored-by: Colt McAnlis <colton@google.com >
2025-08-07 00:34:38 +00:00
Allen Hutchison
d6a7334279
fix(logging): Ensure sandbox startup messages are routed to stderr ( #5725 )
2025-08-07 00:19:10 +00:00
anthony bushong
99f88851fb
fix(actions): swap gha bot for cla allowlisted gemini-cli-robot ( #5730 )
2025-08-07 00:01:22 +00:00
N. Taylor Mullen
01f7c4b740
Fix(tests): update mcp_server_cyclic_schema test ( #5733 )
2025-08-06 23:59:50 +00:00
DevMassive
9ac3e8b79e
feat: Improve @-command file path completion with fzf integration ( #5650 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-06 23:41:04 +00:00
Richie Foreman
4782113ceb
fix(core): Improve errors in situations where the command spawn does … ( #5723 )
2025-08-06 23:31:42 +00:00
shrutip90
626844b539
experiment: Add feature exp flag for folder trust ( #5709 )
2025-08-06 22:27:21 +00:00
Seth Vargo
5cd63a6abc
feat(cli): get the run-gemini-cli version from the GitHub API ( #5708 )
2025-08-06 20:56:06 +00:00
christine betts
b55467c1dd
[ide-mode] Support rendering in-IDE diffs using the edit tool ( #5618 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-06 20:55:29 +00:00
joshualitt
43510ed212
bug(core): Prompt engineering for truncated read_file. ( #5161 )
2025-08-06 20:52:04 +00:00
Jack Wotherspoon
ad5d2af4e3
tests: fix e2e tests ( #5706 )
2025-08-06 20:46:50 +00:00
Jacob MacDonald
e3e7677753
Add integration test for maximum schema depth error handling ( #5685 )
2025-08-06 20:45:54 +00:00
Jacob MacDonald
b3cfaeb6d3
Add detection of tools with bad schemas and automatically omit them with a warning ( #5694 )
2025-08-06 20:19:15 +00:00
Shreya Keshive
024b8207eb
Add hint to enable IDE integration for users running in VS Code ( #5610 )
2025-08-06 19:47:58 +00:00
Lee James
1fb680bacc
bug(tests): fix test errors ( #5678 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-06 19:26:46 +00:00
shishu314
1f0ad86544
fix: Restore user input when the user cancels response ( #5601 )
...
Co-authored-by: Shi Shu <shii@google.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-06 19:19:10 +00:00
joshualitt
6133bea388
feat(core): Introduce DeclarativeTool and ToolInvocation. ( #5613 )
2025-08-06 17:50:02 +00:00
agarwalravikant
882a97aff9
Fix to send user tool confirmation decision for yolo or non interacti… ( #5677 )
...
Co-authored-by: Ravikant Agarwal <ravikantag@google.com >
2025-08-06 17:46:42 +00:00
christine betts
fde9849d48
[ide-mode] Add support for in-IDE diff handling in the CLI ( #5603 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-06 17:36:05 +00:00
Akhil Appana
487818df27
fix: improve error handling and path processing in memory discovery ( #5175 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-06 17:19:43 +00:00
Jack Wotherspoon
ca4c745e3b
feat(mcp): add gemini mcp commands for add, remove and list ( #5481 )
2025-08-06 15:52:29 +00:00
Lee James
b38f377c9a
feat: Enable /setup-github to always run, and error appropriately ( #5653 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-06 13:06:37 +00:00
Bryant Chandler
aab850668c
feat(file-search): Add support for non-recursive file search ( #5648 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-06 06:33:27 +00:00
Yash Velagapudi
8b1d5a2e3c
fix(core): Treat .mts files as TypeScript modules instead of video files ( #5492 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-06 06:15:53 +00:00
Gaurav
a0990380b5
fix:missing coreTool in new workflow setup ( #5656 )
2025-08-06 05:26:27 +00:00
Jerop Kipruto
2fcaa302da
docs: add GitHub Integration section to README ( #5649 )
2025-08-06 04:01:42 +00:00
Lee James
7fa2d7be17
doc(lint): fix docs on how to run linter in "fix" mode ( #5647 )
2025-08-06 03:21:36 +00:00
Lee James
be3aabaea6
docs(setup-github): Inform user of the next steps after running slash command ( #5644 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-06 02:59:25 +00:00
Gaurav
b87b436ebc
refactor: use google-github-actions/run-gemini-cli action ( #5643 )
2025-08-06 02:24:40 +00:00
Jacob MacDonald
7e5a5e2da7
Detect and warn about cyclic tool refs when schema depth errors are encountered ( #5609 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-06 01:48:00 +00:00
christine betts
9db5aab498
Update a couple more witty phrases ( #5641 )
2025-08-06 01:13:22 +00:00
Sandy Tao
390edb5e0a
Add tests for useAtCompletion reset logic ( #5639 )
2025-08-06 01:10:29 +00:00
Jerop Kipruto
cd7e60e008
switch from heads to tags in url path ( #5638 )
2025-08-05 17:47:28 -07:00
Sandy Tao
59bde4a612
fix(core) Fix not resetting when after first get out of completion suggestions ( #5635 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-06 00:37:44 +00:00
Bryan Morgan
02f7e48c51
Removed GitHub Actions experiment files ( #5627 )
2025-08-06 00:01:18 +00:00
christine betts
aeb6602266
Remove a few witty loading phrases ( #5631 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-05 23:59:14 +00:00
David Rees
805114aef8
fix(docs): Fix code block delimiters in commands.md ( #5521 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-05 23:30:57 +00:00
Justin Mahood
91035ad7b0
Fix(vim): Fix shell mode in Vim mode ( #5567 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-05 23:29:37 +00:00
Bryant Chandler
12a9bc3ed9
feat(core, cli): Introduce high-performance FileSearch engine ( #5136 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-05 23:18:03 +00:00
Allen Hutchison
2141b39c3d
feat(cli): route non-interactive output to stderr ( #5624 )
2025-08-05 23:11:21 +00:00
Shreya Keshive
268627469b
Refactor IDE client state management, improve user-facing error messages, and add logging of connection events ( #5591 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-05 22:52:58 +00:00
Jacob MacDonald
6a72cd064b
check for the prompt capability before listing prompts from MCP servers ( #5616 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-05 22:50:30 +00:00
sangwook
aebe3ace3c
perf(core): implement parallel file processing for 74% performance improvement ( #4763 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-05 22:47:18 +00:00
8bitmp3
c402784d97
Fix and improve Gemini CLI troubleshooting.md doc ( #2734 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-05 22:43:41 +00:00
William Thurston
bed6ab1cce
fix(start): use absolute path to resolve CLI package ( #3196 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-05 22:43:15 +00:00
xyizko
1b08a6c063
fix(minor): Grammar and Typos ( #5053 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-05 22:41:27 +00:00
Sandy Tao
82fa7a0660
fix(format) Fix format for .github/workflows/weekly-velocity-report.yml ( #5622 )
2025-08-05 22:32:06 +00:00
Bryan Morgan
2e9236fab4
Update weekly-velocity-report.yml
2025-08-05 18:11:06 -04:00
Mikhail Aksenov
dadf05809c
feat: mcp - support audiences for OAuth2 ( #5265 )
2025-08-05 22:02:16 +00:00
Ramón Medrano Llamas
29c3825604
fix(mcp): clear prompt registry on refresh to prevent duplicates ( #5385 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-05 21:59:31 +00:00
Hiroaki Mitsuyoshi
faf6a5497a
feat(docs): Add /chat delete command in commands.md ( #5408 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-05 21:58:09 +00:00
Jacob Richman
dd85aaa951
bug(core): Fix flaky test by using waitFor. ( #5540 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-08-05 21:56:38 +00:00
Gal Zahavi
aacae1de43
fix(core): prevent UI shift after vim edit ( #5315 )
2025-08-05 21:55:54 +00:00
Sandy Tao
8d993156e7
Fix format ( #5617 )
2025-08-05 21:38:43 +00:00
Bryan Morgan
57003ca68c
Update weekly-velocity-report.yml
2025-08-05 17:18:19 -04:00
Bryan Morgan
47de37eb0a
Update weekly-velocity-report.yml
2025-08-05 17:10:37 -04:00
Bryan Morgan
dc7b4fda64
Update weekly-velocity-report.yml
2025-08-05 17:08:22 -04:00
Bryan Morgan
3dcca31796
Update weekly-velocity-report.yml
2025-08-05 17:00:44 -04:00
Bryan Morgan
c194a6ac3b
GitHub Action for velocity reporting purposes ( #5607 )
2025-08-05 20:33:59 +00:00
Bryan Morgan
d421fa9e64
Testing basic velocity report action
2025-08-05 15:55:50 -04:00
Luccas Paroni
2778c7d851
feat(core): Parse Multimodal MCP Tool responses ( #5529 )
...
Co-authored-by: Luccas Paroni <luccasparoni@google.com >
2025-08-05 19:19:47 +00:00
Oleksandr Gotgelf
b465145229
chore(settings): clean up comments in settings.ts ( #5576 )
2025-08-05 19:10:16 +00:00
Alexander J
f2d6748432
fix: small typo in ROADMAP.md ( #5593 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-05 19:04:10 +00:00
joshualitt
08f1431946
bug(core): fix contentRangeTruncated calculation. ( #5329 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-05 18:52:39 +00:00
David East
43d5aaa798
fix(mcp): ensure authorization url is valid when containing query params ( #5545 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-05 18:44:30 +00:00
Yuki Okita
5c8268b6f4
feat: Multi-Directory Workspace Support (part 3: configuration in settings.json) ( #5354 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-05 17:01:01 +00:00
Jack Wotherspoon
d0cda58f1f
docs: update typo in commands.md ( #5584 )
2025-08-05 14:03:58 +00:00
N. Taylor Mullen
c7a1de4983
chore(release): v0.1.17 ( #5561 )
2025-08-04 21:37:32 -07:00
DeWitt Clinton
49001a0f83
Remove the "local modifications" string from bug and about reports. ( #5552 )
2025-08-05 04:01:19 +00:00
Olcan
11ecf6fc86
fix self-reference in build script ( #5548 )
2025-08-05 01:12:21 +00:00
Harold Mciver
99ba2f6424
Update MCP client to connect to servers with only prompts ( #5290 )
2025-08-04 21:38:23 +00:00
christine betts
93f8fe3671
[ide-mode] Add openDiff tool to IDE MCP server ( #4519 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-04 21:36:23 +00:00
Mo Moadeli
e7b468e122
feat(cli): Prevent redundant opening of browser tabs when zero MCP servers are configured ( #5367 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-04 21:20:49 +00:00
Shreya Keshive
dca040908a
ide-mode flag cleanup ( #5531 )
2025-08-04 21:06:50 +00:00
Shreya Keshive
2180dd13dc
Improve user-facing error messages for IDE mode ( #5522 )
2025-08-04 21:06:17 +00:00
Richie Foreman
11808ef7ed
fix(core): Allow model to be set from settings.json ( #5527 )
2025-08-04 20:41:58 +00:00
Sandy Tao
8da6d23688
refactor(core): Rename useSlashCompletion to useCommandCompletion ( #5532 )
2025-08-04 20:35:26 +00:00
Seth Vargo
37b83e05a7
Use new URLs for downloading workflows ( #5524 )
2025-08-04 20:10:36 +00:00
Jacob MacDonald
5caf23d627
remove unnecessary checks in WriteFileChecks.getDescription ( #5526 )
2025-08-04 19:12:33 +00:00
Sandy Tao
d1bfba1abb
feat(core): Add trailing space when completing an at completion suggestion ( #5475 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-04 18:30:59 +00:00
Sandy Tao
b9fe4fc263
feat(cli): Handle Punctuation in @ Command Parsing ( #5482 )
2025-08-04 17:49:15 +00:00
Pyush Sinha
e506b40c27
fix: /help remove flickering and respect clear shortcut (ctr+l) ( #3611 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Allen Hutchison <adh@google.com >
2025-08-04 16:53:50 +00:00
owenofbrien
83a04c4755
Cloud Shell surface logging fix ( #5364 )
2025-08-04 16:48:46 +00:00
matt korwel
94b7b402c5
feat(docs): create new documentation for automation and triage ( #5363 )
2025-08-04 08:49:14 -07:00
Kumbham Ajay Goud
a8984a9b30
Fix: Preserve conversation history when changing auth methods via /auth ( #5216 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-03 22:03:01 +00:00
Ali Al Jufairi
acd48a1259
docs(fix): Update themes documentation to include new color keys for… ( #5467 )
2025-08-03 21:56:27 +00:00
N. Taylor Mullen
70478b92a9
chore(release): v0.1.16 ( #5478 )
2025-08-03 13:38:03 -07:00
Shreya Keshive
2cdaf912ba
Generate NOTICES.TXT and surface via command ( #5310 )
2025-08-03 20:19:34 +00:00
Ayesha Shafique
072d8ba289
feat: Add reverse search capability for shell commands ( #4793 )
2025-08-03 19:53:24 +00:00
Oleksandr Gotgelf
03ed37d0dc
fix: exclude DEBUG and DEBUG_MODE from project .env files by default ( #5289 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-03 18:44:15 +00:00
Billy Biggs
bedcbb9feb
Add a setting to disable the version update nag message ( #5449 )
2025-08-03 18:20:55 +00:00
Gal Zahavi
820169ba2e
feat(autoupdate): Improve update check and refactor for testability ( #5389 )
2025-08-02 03:17:32 +00:00
TIRUMALASETTI PRANITH
15a1f1af9d
fix(config): Resolve duplicate config loading from home directory ( #5090 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
Co-authored-by: Allen Hutchison <allen@hutchison.org >
2025-08-01 22:22:17 +00:00
Allen Hutchison
387706607d
fix(tests): refactor integration tests to be less flaky ( #4890 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-01 21:33:33 +00:00
mrcabbage972
dccca91fc9
Switch utility calls to use the gemini-2.5-flash-lite model ( #5193 )
...
Co-authored-by: Anjali Sridhar <anjsridhar@gmail.com >
2025-08-01 21:11:51 +00:00
owenofbrien
a6a386f72a
Propagate prompt ( #5033 )
2025-08-01 19:37:56 +00:00
joshualitt
67d16992cf
bug(cli): Prefer IPv4 dns resolution by default. ( #5338 )
2025-08-01 19:30:39 +00:00
Santhosh Kumar
9382334a5e
feat(github): add workflow to manage stale issues and PRs ( #4871 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-01 19:26:03 +00:00
Sandy Tao
c795168e9c
feat(core): Use completionStart/End for slash command auto-completion ( #5374 )
2025-08-01 18:51:38 +00:00
Billy Biggs
24c5a15d7a
Add a setting to disable auth mode validation on startup ( #5358 )
2025-08-01 18:49:03 +00:00
andrea-berling
c725e258c6
feat(sandbox): Add SANDBOX_FLAGS for custom container options ( #2036 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-08-01 16:32:44 +00:00
Brian de Alwis
d42e3f1e7f
doc: use standard Google security policy for GitHub projects ( #5062 )
2025-08-01 16:12:32 +00:00
Silvio Junior
7748e56153
[Fix Telemetry for tool calls, PR 1/n] Propagate tool reported errors via ToolCallResponseInfo and ToolResult ( #5222 )
2025-08-01 15:20:08 +00:00
cornmander
e126d2fcd9
Add missing emacs entry in UI. ( #5351 )
2025-08-01 14:40:05 +00:00
Brian Ray
dc9f17bb4a
New browser launcher for MCP OAuth. ( #5261 )
2025-08-01 05:47:22 +00:00
Sandy Tao
f21ff09389
fix(core): Remove json output schema form the next speaker check prompt ( #5325 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-08-01 01:17:52 +00:00
Raushan Raj
6c3fb18ef6
Update gemini-automated-issue-triage.yml ( #5312 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-08-01 01:14:26 +00:00
Tommaso Sciortino
a3a432e3cf
Fix bug executing commands in windows whose flags contain spaces ( #5317 )
2025-08-01 00:27:07 +00:00
Miguel Solorio
6f7beb414c
Highlight slash commands in history ( #5323 )
2025-07-31 23:24:23 +00:00
Jacob Richman
61e382444a
fix(ux) bug in replaceRange dealing with newLines that was breaking vim support ( #5320 )
2025-07-31 23:16:29 +00:00
Sandy Tao
32809a7be7
feat(cli): Improve @ autocompletion for mid-sentence edits ( #5321 )
2025-07-31 23:07:12 +00:00
Paige Bailey
37a3f1e6b6
Add emacs support, as per user requests. :) ( #1633 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: matt korwel <mattkorwel@google.com >
2025-07-31 22:46:04 +00:00
JeromeJu
574015edd9
feat: Implement /setup-github command ( #5069 )
2025-07-31 22:14:22 +00:00
Yuki Okita
f9a05401c1
feat: Multi-Directory Workspace Support (part2: add "directory" command) ( #5241 )
2025-07-31 19:02:08 +00:00
Niladri Das
9a6422f331
fix: CLAUDE.md compatibility for GEMINI.md '@' file import behavior ( #2978 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Allen Hutchison <adh@google.com >
2025-07-31 16:36:50 +00:00
joshualitt
ae86c7ba05
bug(core): UI reporting for truncated read_file. ( #5155 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-31 16:31:14 +00:00
anj-s
65be9cab47
Fix: Ensure that non interactive mode and interactive mode are calling the same entry points ( #5137 )
2025-07-31 12:36:12 +00:00
Sandy Tao
23c014e29c
Replace FlashDecidedToContinueEvent with NextSpeakerCheckEvent ( #5257 )
2025-07-31 04:47:04 +00:00
Kazunari001
3ef2c6d198
feat(docs): Add /init command in commands.md ( #5187 )
...
Co-authored-by: saucykazugmail <saucydog0922@gmail.com >
Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-31 01:52:40 +00:00
Seth Troisi
c77a22d4c6
Add render counter in debug mode ( #5242 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-31 00:43:11 +00:00
Gal Zahavi
d06e17fbd9
Improve error message for discoverTools function ( #4157 )
2025-07-31 00:16:21 +00:00
Shreya Keshive
0c6f788406
Exclude companion extension from release versioning ( #5226 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-30 22:49:26 +00:00
christine betts
325bb89137
Add toggleable IDE mode setting ( #5146 )
2025-07-30 22:36:24 +00:00
Olcan
ac1bb5ee42
confirm save_memory tool, with ability to see diff and edit manually for advanced changes that may override past memories ( #5237 )
2025-07-30 22:21:31 +00:00
Allen Hutchison
498edb57ab
fix(testing): make ModelStatsDisplay snapshot test deterministic ( #5236 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-30 22:09:32 +00:00
christine betts
7bc8766542
Introduce IDE mode installer ( #4877 )
2025-07-30 21:26:31 +00:00
Yuki Okita
c1fe688956
feat: Multi-Directory Workspace Support (part1: add --include-directories option) ( #4605 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-07-30 20:38:20 +00:00
Srinath Padmanabhan
21965f986c
Srithreepo Fixes for Scheduled triage ( #5158 )
2025-07-30 20:38:02 +00:00
shamso-goog
32b1ef3779
feat(ui): Update tool confirmation cancel button text ( #4820 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-30 20:37:51 +00:00
Hyunsu Shin
bcce1e7b84
perf(core): parallelize bfsFileSearch for 40% faster CLI startup ( #5185 )
2025-07-30 17:32:03 +00:00
Olcan
bc23009f61
do not mention GEMINI.md in system prompt as it is not fixed and can confuse model as it is not mentioned by memory tool and memory file paths are generally not exposed to model (yet) ( #5202 )
2025-07-30 17:21:15 +00:00
yaksh gandhi
b447c329db
docs: Update chat command documentation with checkpoint locations ( #5027 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
Co-authored-by: F. Hinkelmann <franziska.hinkelmann@gmail.com >
2025-07-30 10:01:08 +00:00
N. Taylor Mullen
fd434626c5
chore(release): v0.1.15 ( #5163 )
2025-07-29 22:03:54 -07:00
Sandy Tao
8985e489a5
Skip and reset loop checking around code blocks ( #5144 )
2025-07-30 04:05:03 +00:00
Jenna Inouye
0ce89392b8
Docs: add documentation for .geminiignore ( #5123 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-30 03:36:26 +00:00
Sambhav Khanna
d5a1b717c2
fix(update): correctly report new updates ( #4821 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-30 00:11:15 +00:00
Allen Hutchison
091804c750
feat(docs): document GEMINI.md import syntax ( #5145 )
2025-07-29 23:41:31 +00:00
Ava
d64c3d6af8
Add Starcraft ref to witty loading phrases ( #5120 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-29 23:22:13 +00:00
Tommaso Sciortino
327f915610
Fix typo in RFC 9728 impl ( #5126 )
2025-07-29 23:03:39 +00:00
Srinath Padmanabhan
008051e42d
Update Triage Logic to improve issue categorization. ( #5110 )
2025-07-29 21:44:48 +00:00
Shreya Keshive
293bb82019
Adds centralized support to log slash commands + sub commands ( #5128 )
2025-07-29 20:20:37 +00:00
shamso-goog
80079cd2a5
feat(cli): introduce /init command for GEMINI.md creation ( #4852 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-29 16:49:01 +00:00
Daniel Lee
7356764a48
feat(commands): add custom commands support for extensions ( #4703 )
2025-07-29 01:40:47 +00:00
Gal Zahavi
871e0dfab8
feat: Add auto update functionality ( #4686 )
2025-07-29 00:56:52 +00:00
Shreya Keshive
83c4dddb7e
Only enable IDE integration if gemini-cli is running in the same path as open workspace ( #5068 )
2025-07-28 20:55:00 +00:00
Seth Troisi
1c1aa047ff
feat: Add tests for checkpoint tag sanitization ( #4882 )
2025-07-28 20:43:39 +00:00
Abhi
b08679c906
Add new fallback state as prefactor for routing ( #5065 )
2025-07-28 19:55:50 +00:00
Danny
b6c2c64f9b
Adds docs outlining keyboard shortcuts for gemini-cli ( #4727 )
...
Co-authored-by: dannyzen <dannyrosen@google.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-28 19:35:06 +00:00
Shreya Keshive
cfe3753d4c
Refactors companion VS Code extension to import & use notification schema defined in gemini-cli ( #5059 )
2025-07-28 18:20:56 +00:00
N. Taylor Mullen
9aef0a8e6c
Revert "feat: Add /config refresh command" ( #5060 )
2025-07-28 18:13:46 +00:00
Neha Prasad
a5ea113a8e
fix: Clear previous thoughts when starting new prompts ( #4966 )
2025-07-28 17:57:33 +00:00
christine betts
379765da23
Add documentation for MCP prompts ( #4897 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-07-28 16:01:15 +00:00
Alexander Parshakov
f7e559223d
docs: Add more examples to Popular tasks ( #4979 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-07-28 15:54:09 +00:00
Ramón Medrano Llamas
0170791800
feat: Add /config refresh command ( #4993 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-07-28 15:46:43 +00:00
Shreya Keshive
e275441651
Updates schema, UX and prompt for IDE context ( #5046 )
2025-07-28 15:03:22 +00:00
James Woo
f2e006179d
Fix author attribution ( #5042 )
2025-07-28 14:45:23 +00:00
N. Taylor Mullen
bd85070411
Revert "Propagate user_prompt_id to GenerateConentRequest for logging" ( #5007 )
2025-07-27 19:28:20 -07:00
Jenna Inouye
9ed351260c
Update documentation for read_many_files. ( #4874 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-27 22:25:04 +00:00
Jenna Inouye
ab0d9df658
Clarify ToS and privacy documentation FAQs. ( #4899 )
2025-07-27 22:24:53 +00:00
Hiroaki Mitsuyoshi
bce6eb5014
feat(chat): Implement /chat delete command ( #2401 )
2025-07-27 22:18:12 +00:00
Leeroy Ding
9ca48c00a6
fix: yolo mode not respected ( #4972 )
2025-07-27 21:42:26 +00:00
Abhi
0b5cc96362
(model) - Use Flash Lite For Next Speaker Checks ( #4991 )
2025-07-27 21:40:55 +00:00
owenofbrien
b497791c59
Propagate user_prompt_id to GenerateConentRequest for logging ( #4741 )
2025-07-27 21:34:39 +00:00
Abhi
36e1e57252
(docs) - Fix small markdown mistake for custom commands docs ( #4983 )
2025-07-27 21:33:58 +00:00
Hyeladi Bassi
a9f04eba2c
refactor(telemetry): enhance flushToClearcut method with retry logic and early return for empty events ( #1601 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-27 18:18:27 +00:00
Brian Ray
c45c14ee0e
Bug: add resource parameter to MCP OAuth Flow ( #4981 )
...
Co-authored-by: Your Name <you@example.com >
2025-07-27 18:09:45 +00:00
Abhi
576cebc928
feat: Add Shell Command Execution to Custom Commands ( #4917 )
2025-07-27 06:00:26 +00:00
Dmitry Lyalin
9e61b3510c
docs: add missing --prompt-interactive/-i flag documentation ( #4950 )
2025-07-27 02:41:19 +00:00
Abhi
3e81359c6b
(fix): Custom Commands follow symlinks ( #4907 )
2025-07-26 03:27:23 +00:00
Shreya Keshive
771cb229ab
fix: Clean up transport on IDE connection failure ( #4902 )
2025-07-26 01:57:34 +00:00
Abhi
ca5dd28ab6
refactor(core): Centralize shell logic into ShellExecutionService ( #4823 )
2025-07-26 01:56:49 +00:00
Jacob Richman
ad2ef080aa
Fix so legacy custom themes still load. ( #4757 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-26 00:36:42 +00:00
Jacob Richman
b089845f1c
fix(ui): remove extraneous whitespace from startup screen ( #3990 )
2025-07-26 00:36:19 +00:00
Jacob Richman
21fef1620d
Handle unhandled rejections more gracefully. ( #4417 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-07-26 00:35:26 +00:00
Jacob Richman
fb751c542b
Regression test for paste when the terminal lacks focus. ( #4898 )
2025-07-25 23:29:15 +00:00
Tommaso Sciortino
f9cfb20897
Run pre-merge checks in mac os as well as ubutnu+win ( #4900 )
2025-07-25 23:09:37 +00:00
Tommaso Sciortino
17331001a0
Run presubmit tests in windows as well as linux. ( #4672 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-25 15:57:30 -07:00
Sijie Wang
fbdc8d5ab3
Vim mode ( #3936 )
2025-07-25 22:36:42 +00:00
Tommaso Sciortino
aa71438684
Fix grep.test to work on windows. ( #4889 )
2025-07-25 21:32:28 +00:00
Tommaso Sciortino
23e0dc6960
Fix test to be windows compatible. ( #4875 )
2025-07-25 21:31:10 +00:00
Tommaso Sciortino
be898710fe
Make glob.test.ts win compatible. ( #4891 )
2025-07-25 21:30:39 +00:00
Tommaso Sciortino
4c144e616d
Make fileDiscoveryService.test.ts win compatible ( #4892 )
2025-07-25 21:30:15 +00:00
Tommaso Sciortino
65aabfede8
Make oauth2 test windows compatible. ( #4895 )
2025-07-25 21:29:54 +00:00
christine betts
eb65034117
Load and use MCP server prompts as slash commands in the CLI ( #4828 )
...
Co-authored-by: harold <haroldmciver@google.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-25 20:56:33 +00:00
Jacob Richman
de96887789
Fix bugs breaking drag and drop of files. ( #4887 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-25 20:26:13 +00:00
Abhi
13b0971291
fix(ci): Fix failing release workflow by creating a self-contained bundle ( #4888 )
...
Co-authored-by: Jerop Kipruto <jerop@google.com >
2025-07-25 20:18:59 +00:00
Sandy Tao
d76cedb68f
Implement hashing based loop detection ( #4831 )
2025-07-25 19:53:19 +00:00
Tommaso Sciortino
91f016d44a
Make restoreCommand test windows compatible. ( #4873 )
2025-07-25 19:26:09 +00:00
matt korwel
820105e982
Safer Shell command Execution ( #4795 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-25 19:25:32 +00:00
Tommaso Sciortino
7ddbf97634
Fix userStartupWarnings to be windows compatible. ( #4868 )
2025-07-25 19:05:29 +00:00
Tommaso Sciortino
f0e3e6ee8a
Make shell.test.ts windows compatible ( #4858 )
2025-07-25 19:05:21 +00:00
christine betts
1b8ba5ca6b
[ide-mode] Create an IDE manager class to handle connecting to and exposing methods from the IDE server ( #4797 )
2025-07-25 17:46:55 +00:00
Tommaso Sciortino
3c16429fc4
Make useCompletion.test.ts windows compatible ( #4766 )
2025-07-25 17:32:59 +00:00
Tommaso Sciortino
f379aa833f
Make errorReporting test windows compatible. ( #4856 )
2025-07-25 17:32:23 +00:00
Tommaso Sciortino
e500eb5562
Fix read-file.test.ts to be windows compatible. ( #4864 )
2025-07-25 17:31:22 +00:00
Gal Zahavi
6321442865
feat(auth): Enhance non-interactive gcp auth ( #4811 )
2025-07-25 17:19:38 +00:00
Allen Hutchison
fb0db2dfd6
adh/bugfix/1563 ( #4822 )
2025-07-25 16:39:37 +00:00
christine betts
1d3ad9d075
Add drawer for active files in IDE mode ( #4682 )
...
Co-authored-by: Shreya <shreyakeshive@google.com >
2025-07-25 14:50:34 +00:00
Tommaso Sciortino
5d4b02ca85
Upgrade test to work on windows. ( #4815 )
2025-07-25 07:15:41 +00:00
Sandy Tao
1d7eb0d250
[Refactor] Centralizes autocompletion logic within useCompletion ( #4740 )
2025-07-25 04:41:35 +00:00
Ramón Medrano Llamas
273e74c09d
feat: add /mcp refresh command ( #4566 )
2025-07-25 01:14:45 +00:00
Seth Troisi
e9ee686ab6
Sanitize checkpoint tags ( #4813 )
2025-07-24 23:05:13 +00:00
Aditya Timalsina
f0400912fd
docs: clarify shell command does not use default shell ( #2203 )
...
Co-authored-by: Jenna Inouye <jinouye@google.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-24 20:18:35 +00:00
Shreya Keshive
30b6cf8a00
Add "Gemini CLI: Run" command shortcut ( #4792 )
2025-07-24 19:55:39 +00:00
christine betts
4e376c0447
[ide-mode] Send the cursor and selected text from the IDE server ( #4621 )
2025-07-24 19:54:41 +00:00
anj-s
f9930c2d36
Add support for logging the entire request and response object ( #4725 )
2025-07-24 18:45:53 +00:00
christine betts
e05173d9cc
Move vscode extension build into its own command ( #4799 )
2025-07-24 18:40:50 +00:00
ashwinpvg
d254d4ce00
Add Google credentials provider for authenticating with MCP servers ( #4748 )
2025-07-24 17:37:39 +00:00
Daniel Lee
3dd6e431df
feat: add GEMINI_CLI environment variable to spawned shell commands ( #4791 )
2025-07-24 17:13:00 +00:00
Ali Al Jufairi
52980510c9
Updated Docs to inform users about the ability to have custom theme ( #4632 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-24 17:04:54 +00:00
Sandy Tao
0ef9c0b792
Log prompt id when a loop is detected ( #4765 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-24 05:37:28 +00:00
Shreya Keshive
6380bfe35c
Minor refactoring of VS Code companion extension code ( #4761 )
2025-07-24 05:32:55 +00:00
Thomas Burnham
b1e0fb157b
feat(cli): display timestamp in /chat list ( #4733 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-24 04:48:52 +00:00
Shreya Keshive
107ce8afa3
Polish companion extension README and package.json file ahead of publishing ( #4729 )
2025-07-24 00:08:25 +00:00
Tommaso Sciortino
e9e2f55144
Fix InputPrompt.test.tsx to be windows compatible ( #4736 )
2025-07-23 22:49:09 +00:00
Miguel Solorio
2e28bb90a0
Update diff colors ( #4747 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-23 22:39:22 +00:00
Tommaso Sciortino
e21b5c95aa
Fix tests to work in windows ( #4754 )
2025-07-23 22:07:19 +00:00
Brandon Keiji
d7a304bcff
feat(memory): make directory search limit on memory discovery configurable with settings.json ( #4460 )
2025-07-23 21:48:35 +00:00
smhendrickson
9d3164621a
add --telemetry-outfile flag ( #4689 )
2025-07-23 21:48:24 +00:00
Tommaso Sciortino
209c8783b4
Make ideCommand test windows compatible. ( #4746 )
2025-07-23 21:01:51 +00:00
Tommaso Sciortino
4fd7cf9177
Fix memoryDiscovery test to work in windows. ( #4742 )
2025-07-23 20:14:06 +00:00
Abhi
bbe95f1eaa
feat(commands): Implement argument handling for custom commands via a prompt pipeline ( #4702 )
2025-07-23 20:11:23 +00:00
Anjali Sridhar
2d1eafae95
Revert "wip"
...
This reverts commit 1de246236b .
2025-07-23 06:51:40 -07:00
Anjali Sridhar
1de246236b
wip
2025-07-23 06:49:27 -07:00
Sandy Tao
7c3a84075d
Log flash continue ( #4700 )
2025-07-23 01:01:24 +00:00
Sandy Tao
67008d4643
Log when flash model decided to continue ( #4698 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-23 00:31:57 +00:00
Tommaso Sciortino
30c68922a3
Fix windows bugs in atCommandProcessor.ts ( #4684 )
2025-07-23 00:18:57 +00:00
HyeongHo Jun
a00f1bb916
feat(core): add partUtils module with unit tests ( #4575 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-22 23:57:06 +00:00
Werner Robitza
487debe525
add notes on API keys and .gemini/.env to authentication.md ( #2004 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-07-22 21:10:13 +00:00
Oliver Kowalke
5dce1df5db
feat(core): Resolve GEMINI_SYSTEM_MD case-insensitively ( #4538 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-22 17:23:04 +00:00
Jerop Kipruto
e306b34a6e
feat(auth): support gemini api key and vertex auth in non-interactive mode ( #4631 )
2025-07-22 14:52:40 +00:00
Brian Ray
4d653c833a
MCP OAuth Part 3 - CLI/UI/Documentation ( #4319 )
...
Co-authored-by: Greg Shikhman <shikhman@google.com >
2025-07-22 14:05:36 +00:00
Brian Ray
258c848909
MCP OAuth Part 2 - MCP Client Integration ( #4318 )
...
Co-authored-by: Greg Shikhman <shikhman@google.com >
2025-07-22 13:34:56 +00:00
Tommaso Sciortino
138ff73821
Fix windows bugs + refactor tests. ( #4634 )
2025-07-22 05:21:37 +00:00
Abhi
9daead63dd
(feat): Initial Version of Custom Commands ( #4572 )
2025-07-22 04:34:55 +00:00
Nick Salerni
5f813ef510
feat(ci): run e2e tests on macos during ci ( #4422 )
2025-07-22 04:01:20 +00:00
Pascal Birchler
ffa42a79dd
chore: Expand node version test matrix ( #2700 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-21 16:33:54 -07:00
Marat Boshernitsan
5066bc5384
Refactor the logic for deciding whether to launch a browser into config ( #4622 )
2025-07-21 23:23:28 +00:00
Pascal Birchler
97cf26ec53
fix(eslint): remove custom rule in favor of eslint-plugin-import ( #3012 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-07-21 23:22:13 +00:00
Shreya Keshive
01ea0b8657
Address flaky integration tests with retries ( #4604 )
2025-07-21 22:46:00 +00:00
BOYI
12765eb775
fix: character encoding issues in shell command processor ( #1949 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-07-21 22:26:40 +00:00
darkcocoa
4c3532d2b3
fix: Add warning message for token limit truncation ( #2260 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-07-21 21:57:11 +00:00
Josh Soref
dc2ac144b7
Various spelling improvements ( #3497 )
...
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com >
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
2025-07-21 21:54:44 +00:00
Jean-Phi Baconnais
8be5f8038a
docs: add Homebrew installation instructions ( #2973 )
...
Co-authored-by: Pascal Birchler <pascalb@google.com >
2025-07-21 21:45:24 +00:00
Seydulla Narkulyyev
f7b4e74932
feat(cli):suggestion-navigation-shortcut ( #3641 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-21 21:43:23 +00:00
Wen Sun
b4d00ab4fb
feat(edit): Prevent no-op edits ( #3520 )
2025-07-21 21:24:02 +00:00
christine betts
1969d805f2
[ide-mode] Use active files and selected text in user prompt ( #4614 )
2025-07-21 20:52:02 +00:00
Tommaso Sciortino
d7a57d85a3
Simplify streaming code for code assist server ( #4619 )
2025-07-21 20:44:43 +00:00
christine betts
f95674e646
Add env var to configure system settings path ( #4339 )
2025-07-21 20:14:07 +00:00
anthony bushong
74d0f4c79f
fix: handle cross-device issues with running otel collector ( #4458 )
2025-07-21 19:44:18 +00:00
christine betts
9bdcdf97d8
[ide-mode] Keep track of recently-opened files and send them to the CLI ( #4463 )
2025-07-21 17:54:37 +00:00
sangwook
45b764943a
feat: Make file type detection and binary checks asynchronous ( #3286 ) ( #3288 )
2025-07-20 23:16:42 +00:00
Seydulla Narkulyyev
f4d077cc1f
docs: add documentation for mcp excludeTools and includeTools ( #3409 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-07-20 23:11:49 +00:00
ljxfstorm
5f8fff4db3
build(deps): Add missing resolved and integrity for all dependencies ( #3501 )
2025-07-20 22:52:53 +00:00
Didier Durand
0f6405e28d
fix typos in diverse files ( #3550 )
...
Co-authored-by: Pascal Birchler <pascal.birchler@gmail.com >
Co-authored-by: Pascal Birchler <pascalb@google.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-20 22:36:34 +00:00
Yuki Okita
0996d91f0b
feat(cli): add warnings when gemini-cli is called in the root directory ( #4542 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-20 21:57:09 +00:00
Abhi
2a95c8287e
prefactor(commands): Command Service Prefactor for Extensible Commands ( #4511 )
2025-07-20 20:57:34 +00:00
Cole Miller
7a9821607b
Check for zeditor if zed binary is not found ( #3680 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-20 19:35:21 +00:00
Devansh Sharma
8f85ac7de0
feat: Added /copy command for copying output to clipboard with new Command Service approach ( #3706 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-20 18:57:41 +00:00
Pyush Sinha
a01b1219a3
feat: full implementation for .geminiignore in settings and respective tool calls ( #3727 )
2025-07-20 07:55:33 +00:00
Ali Al Jufairi
76b935d598
Feature custom themes logic ( #2639 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-20 07:51:18 +00:00
osbornesec
c0bfa388c5
fix: prevent RangeError in GitIgnoreParser for root paths ( #3417 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-20 07:12:53 +00:00
N. Taylor Mullen
fe00686c58
chore(release): v0.1.13 ( #4515 )
2025-07-19 13:40:55 -07:00
N. Taylor Mullen
a464675c4d
Extend mcp-server timeout. ( #4514 )
2025-07-19 20:28:50 +00:00
N. Taylor Mullen
412b78c5ab
Simplify MCP connection errors. ( #4508 )
2025-07-19 12:44:51 -07:00
Yuki Okita
73d5d988f5
feat(core): display declined confirmation code diff ( #4440 )
2025-07-19 17:47:09 +00:00
Jacob Richman
f650be2c3a
Make shell output consistent. ( #4469 )
2025-07-19 00:30:28 +00:00
Tommaso Sciortino
4dbd9f30b6
Revert background agent commits ( #4479 )
2025-07-19 00:28:40 +00:00
Marat Boshernitsan
5b7b6fe608
Automatically detect non-interactive environments and fall back to a manual, code-based authentication flow ( #4475 )
2025-07-19 00:22:50 +00:00
Tommaso Sciortino
003609239f
Add /background commands (when background agent is configured) ( #4407 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-07-18 22:38:04 +00:00
Tommaso Sciortino
04bbc60b97
Demo background agent ( #4409 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-07-18 22:21:46 +00:00
Shreya Keshive
73745ecd03
Display open IDE file in context section above input box rather than in the footer ( #4470 )
2025-07-18 22:14:46 +00:00
Sandy Tao
4915050ad4
improve command completion trigger logic based on cursor position ( #4462 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-18 21:54:10 +00:00
Tommaso Sciortino
b5f5ea2c31
Use simple name for MCP tools where possible. ( #4459 )
2025-07-18 21:29:09 +00:00
christine betts
d7041a6595
[ide-mode] Send ping every 30 seconds to prevent client from closing connection ( #4329 )
2025-07-18 19:33:04 +00:00
Billy Biggs
18c3bf3a42
Summarize extensions and MCP servers on startup ( #3977 )
2025-07-18 18:45:00 +00:00
Sandy Tao
9dadf22958
Implement loop check with LLM ( #4337 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-18 16:33:46 +00:00
Brian Ray
c5761317f4
MCP OAuth Part 1 - OAuth Infrastructure ( #4316 )
2025-07-18 14:14:23 +00:00
Harold Mciver
de27ea6095
feat(cli): allow executing commands on perfect match ( #4397 )
...
Co-authored-by: Jenna Inouye <jinouye@google.com >
2025-07-18 04:55:29 +00:00
Abhi
8497176168
(fix): broken releases and e2e workflows ( #4428 )
2025-07-18 04:10:58 +00:00
Yongsheng Xu
91c69731c7
feat(auth): Enhance OAuth callback for robust Docker support ( #3532 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-18 01:55:26 +00:00
Miguel Solorio
2f5eecfc49
Light theme color improvements ( #4396 )
2025-07-18 00:46:33 +00:00
Keith Lyons
8ade3e7ee2
feat(ui): hide cursor when terminal is unfocused ( #4012 )
2025-07-18 00:45:42 +00:00
Yuki Okita
584a50a342
fix(cli): not show update avaialble messages when running gemini-cli locally ( #4052 )
2025-07-18 00:44:45 +00:00
Abhi
ca07b5b0c4
Migrate /corgi ( #4419 )
2025-07-17 23:40:36 +00:00
Abhi
5df6c9fb66
migrate restore command ( #4388 )
2025-07-17 23:23:17 +00:00
HyeongHo Jun
f0dc9690b7
Test/add loadcodeassist mock ( #4287 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-17 22:57:54 +00:00
Pascal Birchler
4b8838bea4
fix: remove direct gaxios dependency ( #4289 )
2025-07-17 22:54:19 +00:00
Abdelkader Boudih
695afac33e
Update ESLint and related packages to latest versions ( #4296 )
2025-07-17 22:52:01 +00:00
Miguel Solorio
5b7bf74d66
Add numbers to selection list ( #4320 )
2025-07-17 22:51:42 +00:00
goldyonatan
6aac93ee07
Fix #4220 : allow up/down arrow to toggle history when only one sugges… ( #4377 )
2025-07-17 22:30:39 +00:00
Conrad Irwin
761ffc6338
Zed integration ( #4266 )
...
Co-authored-by: Agus Zubiaga <agus@zed.dev >
Co-authored-by: Ben Brandt <benjamin.j.brandt@gmail.com >
Co-authored-by: mkorwel <matt.korwel@gmail.com >
2025-07-17 22:25:23 +00:00
Yun Peng
12401898f1
Fix link for checkpointing doc for --checkpointing ( #4304 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-17 21:26:56 +00:00
warjiang
606a7702de
feat(cli): add explicit proxy option in cli ( #2526 )
...
Co-authored-by: Dcatfly <dcatfly@gmail.com >
2025-07-17 18:57:37 +00:00
Ali
4ca471bac6
Fix ANSI escape crash in text buffer ( #3987 ) ( #3999 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-17 17:53:30 +00:00
Shreya Keshive
88b5f20943
Update companionPort not existing to be a warning so the user can still proceed with running /ide install ( #4382 )
2025-07-17 16:59:57 +00:00
Abhi
79d36ac0a5
(fix) - regression to quit shortcut from command migration ( #4374 )
2025-07-17 16:07:10 +00:00
uttamkanodia14
fc8c38b2bc
Logging surface field in the start_session_event. Also logging sessio… ( #4362 )
2025-07-17 15:53:59 +00:00
christine betts
cbda781f73
[ide-mode] Add active file to user model request ( #4312 )
2025-07-17 14:35:23 +00:00
Nick Salerni
0d64355be6
bug(ux): update context percentage when /clear command is run ( #4162 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-17 14:14:35 +00:00
Sandy Tao
ac8e98511e
Fix resetting loop counts on every other event ( #4348 )
2025-07-17 05:32:48 +00:00
Harold Mciver
9ab44ea9d6
updated /quit to use new slash command arch ( #4259 )
...
Co-authored-by: Abhi <abhipatel@google.com >
2025-07-17 02:40:56 +00:00
Harold Mciver
01e66bb123
update /bug to new slash command arch ( #4246 )
...
Co-authored-by: Abhi <abhipatel@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-07-17 01:46:35 +00:00
Shreya Keshive
0c76affe6d
Minor refactoring of IDE companion server ( #4331 )
2025-07-17 01:03:56 +00:00
Harold Mciver
fbe09cd35e
update /editor to new slash command arch ( #4153 )
...
Co-authored-by: Abhi <abhipatel@google.com >
2025-07-17 00:27:36 +00:00
Shreya Keshive
ab9eb9377f
Add /ide status & /ide install commands to manage IDE integration ( #4265 )
2025-07-16 22:36:14 +00:00
Shreya Keshive
69a8ae6a89
Minor UX updates for IDE mode ( #4311 )
2025-07-16 21:33:56 +00:00
Wanlin Du
f6ee0d182b
fix: update google/genai to v1.9.0 and switch to parametersJsonSchema for MCP related tools ( #4176 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-07-16 21:32:34 +00:00
Harold Mciver
21eb44b242
update /tools to new slash command arch ( #4236 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-16 20:12:22 +00:00
Shreya Keshive
e4ed1aabac
Include companion VS Code extension VSIX as part of build/release ( #4254 )
2025-07-16 19:06:39 +00:00
christine betts
34c1b5811a
Revert "[ide-mode] Thread active file through to system prompt" ( #4308 )
2025-07-16 16:22:29 +00:00
Harold Mciver
ddcac4201d
update /docs to new slash command arch ( #4133 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-16 15:56:05 +00:00
Ramon Figueiredo
f4cd0055fd
chore: update numbering in release-docker.yaml ( #4249 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-07-16 14:47:12 +00:00
Sandy Tao
cba272082d
Run model availability check in the background to speed up startup ( #4256 )
2025-07-16 04:13:30 +00:00
Matias
d622e596a1
feat(cli): clear input buffer on CTRL+C when not executing commands ( #1729 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-16 03:35:58 +00:00
Brian Ray
0903421b1a
Move MCP slash command to new system ( #3678 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Abhi <abhipatel@google.com >
2025-07-16 02:35:05 +00:00
Abhi
b72e3dfb43
migrate compress command ( #4271 )
2025-07-16 01:59:16 +00:00
Ben Guo
e88b9362dc
refactor: Optimize the display information of "/chat list" and "/chat resume" ( #2857 )
...
Co-authored-by: Ben Guo <hundunben@gmail.com >
2025-07-16 00:47:56 +00:00
Christian Demeke
1d67b41ccd
Clarifies that Gemini Code Assist, when offered through the Google De… ( #3086 )
2025-07-15 23:51:48 +00:00
Lee Won Jun
ec5e9d1025
Improve altName completion behavior in slash commands ( #4227 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-15 23:45:10 +00:00
Elvin
615748657a
Update MaxSizedBox.tsx ( #2233 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
Co-authored-by: Pascal Birchler <pascalb@google.com >
2025-07-15 23:35:03 +00:00
christine betts
222e362fc2
[ide-mode] Thread active file through to system prompt ( #4264 )
2025-07-15 22:20:00 +00:00
christine betts
b61016f2a5
Set port dynamically in VSCode extension and read from it in gemini-cli and send initial notification ( #4255 )
2025-07-15 22:13:03 +00:00
Harold Mciver
bf51de1a4d
update /extensions to new slash command arch ( #4229 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-15 21:40:09 +00:00
christine betts
58f1aa6ceb
Add support for allowed/excluded MCP server names in settings ( #4135 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-15 20:45:24 +00:00
Harold Mciver
03b3917f62
updated /stats to use new slash command arch ( #4146 )
2025-07-15 20:10:04 +00:00
N. Taylor Mullen
8d9dc44b71
Revert "Update to yargs v18 ( #3759 )" ( #4252 )
2025-07-15 12:36:54 -07:00
Shreya Keshive
776d6b6ea0
Upload VSIX of companion VS Code extension ( #4241 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-15 18:44:03 +00:00
Pascal Birchler
af551f4a41
Revert Node <20 warning ( #4244 )
2025-07-15 18:42:27 +00:00
Sandy Tao
7b49560265
Include api key in header instead of in the URL ( #4240 )
2025-07-15 18:37:14 +00:00
Sambhav Khanna
40c4070846
feat(tool): sort tool list alphabetically for deterministic output ( #3095 )
...
Co-authored-by: Pascal Birchler <pascalb@google.com >
2025-07-15 18:35:35 +00:00
anj-s
d3ee9de3c3
Enable tool summarization only when explicitly set in settings.json ( #4140 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-15 17:22:31 +00:00
christine betts
7effdad3e2
[ide-mode] Stream notifications when the active file changes ( #4147 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-15 16:19:22 +00:00
Shreya Keshive
b09bc66560
Adds the user's active file in the IDE to the footer ( #4154 )
2025-07-15 14:19:59 +00:00
Jvr
97cc1e6418
Fix: Standardize capitalization for "Troubleshooting Guide" in README ( #2763 )
...
Co-authored-by: Pascal Birchler <pascalb@google.com >
2025-07-15 09:50:54 +00:00
Devansh Sharma
123c3e7c7f
feat: add a warning that shows if user uses node -v <20 #2930 ( #3371 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-15 09:49:46 +00:00
Srinath Padmanabhan
f5d5213504
Roadmap release ( #4178 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-15 07:25:35 +00:00
Abhi
6e258e2850
migrate /about ( #4207 )
2025-07-15 06:22:46 +00:00
Pascal Birchler
2862ae7344
Update to yargs v18 ( #3759 )
2025-07-15 06:09:12 +00:00
Tommaso Sciortino
fefa7ecbea
Pure refactor: Consolidate isWithinRoot() function calling. ( #4163 )
2025-07-15 05:55:49 +00:00
Abhi
e584241141
Migrate /privacy to new architecture ( #4202 )
2025-07-15 05:45:06 +00:00
Sandy Tao
886faa2990
Log the 2 types of loop detection ( #4193 )
2025-07-15 04:44:07 +00:00
Sandy Tao
734da8b9d2
Introduce loop detection service that breaks simple loop ( #3919 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-15 03:25:16 +00:00
Sandy Tao
7ffe8038ef
Make @ command sort file without extension name ( #4158 )
2025-07-14 21:10:26 +00:00
Bryan Morgan
ff3722a3a7
Fix circular reference JSON serialization in telemetry logging ( #4150 )
2025-07-14 20:20:06 +00:00
Tommaso Sciortino
5008aea90d
Refactor MCP code for reuse and testing ( #3880 )
2025-07-14 18:19:33 +00:00
Abhi
9dc812dd4b
fix(checkpoint): Prevent silent failure and enable for non-Git projects ( #4144 )
2025-07-14 17:23:51 +00:00
Tommaso Sciortino
2f1d6234de
Don't start uncompressed history with a function response ( #4141 )
2025-07-14 17:09:11 +00:00
haroldmciver-go
c313c3dee1
updated '/auth' to use new slash command arch ( #3797 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-07-14 16:22:37 +00:00
Pascal Birchler
80c81f2a4c
fix(docs): clarify global installation in readme ( #3781 )
2025-07-14 16:21:40 +00:00
Shreya Keshive
fadc477001
Add feature flag for IDE integration ( #3927 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-14 16:04:08 +00:00
christine betts
e9d680e8a4
Introduce VSCode companion extension ( #3917 )
2025-07-14 15:34:44 +00:00
Billy Biggs
64f1d80b26
Add documentation for the /extensions command ( #4051 )
...
Co-authored-by: Bryan Morgan <bryanmorgan@google.com >
2025-07-14 14:33:05 +00:00
Will 保哥
34bbfa0e15
Fix markdown heading level issue ( #3381 )
2025-07-14 12:13:43 +00:00
Billy Biggs
bc4182b9d2
Show stderr output from mcp servers in debug mode ( #4049 )
2025-07-14 04:42:22 +00:00
Nick Popovic
c7840966e2
Fix duplicate help text for build targets in Makefile ( #4092 )
2025-07-14 04:42:07 +00:00
K
3110e8f810
feat(cli): add hideBanner setting to disable startup banner ( #2803 )
...
Co-authored-by: Pascal Birchler <pascalb@google.com >
2025-07-14 04:37:31 +00:00
Abhi
8d0a4082a4
Fix(ci): Correct container publishing pipeline and improve robustness ( #4093 )
2025-07-14 04:19:58 +00:00
Billy Biggs
ef8ec98489
Add back support for escaping newline with a \ character ( #4064 )
2025-07-14 03:34:20 +00:00
N. Taylor Mullen
b018e2d3ad
Fix docker release yaml to use correct commands. ( #4025 )
2025-07-12 23:46:49 -07:00
N. Taylor Mullen
8cf7f530e1
chore(release): v0.1.12 ( #4023 )
2025-07-12 23:09:54 -07:00
Sandy Tao
b29c02dd34
Fix not using flash for next speaker check ( #4016 )
2025-07-13 05:12:47 +00:00
N. Taylor Mullen
44ef0408f3
feat(tools): Centralize shell tool summarization ( #4009 )
2025-07-13 04:09:12 +00:00
N. Taylor Mullen
09a3b7d5e1
feat: Invert scroll arrow default in RadioButtonSelect ( #4006 )
2025-07-13 03:58:00 +00:00
N. Taylor Mullen
26a79fec25
feat: Add GEMINI_DEFAULT_AUTH_TYPE support ( #4002 )
2025-07-13 03:43:35 +00:00
N. Taylor Mullen
4442e893c3
fix(auth): Remove sharp edges from headless auth ( #3985 )
2025-07-12 15:42:47 -07:00
Yuki Okita
890982a811
fix(core): make the commented-out test workable ( #3885 )
2025-07-12 19:13:22 +00:00
Isuru Gunarathne
b3cbde5cf3
Fix typo in README.md regarding Vertex AI API key ( #3946 )
...
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-07-12 07:23:09 +00:00
Abhi
642d2e8d51
ensure system instruction also uses <state_snapshot> ( #3951 )
2025-07-12 06:15:56 +00:00
Jayson Dasher
c9e194ec6a
feat: Add clipboard image paste support for macOS ( #1580 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-12 04:06:49 +00:00
Jacob Richman
c4ea17692f
Fix extra whitespace in markdown rendering. ( #3943 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-12 03:38:07 +00:00
Miguel Solorio
d89ccf2250
Add scrolling to theme dialog ( #3895 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-12 01:05:21 +00:00
Jacob Richman
82bde57868
Fix issues that resulted in Gemini trying to use relative paths where absolute paths were required ( #3938 )
2025-07-12 00:49:26 +00:00
N. Taylor Mullen
6ebe97c704
chore(release): v0.1.11 ( #3939 )
2025-07-12 00:33:17 +00:00
Daniel Lee
5b6608ad84
feat(cli): add support for --prompt-interactive/-i flag ( #1743 )
2025-07-11 23:52:56 +00:00
uttamkanodia14
5b5f496436
Adds Flash Fallback logging and clearcut logging ( #3843 )
2025-07-11 21:10:25 +00:00
Gaurav
764809753a
fix: TypeError: Cannot read properties of undefined (reading 'authType') ( #3914 )
2025-07-11 21:08:49 +00:00
christine betts
a071f604e3
Remove unused demo file ( #3886 )
2025-07-11 21:05:39 +00:00
Seth Troisi
eab47b9131
Add oauth test ( #3916 )
2025-07-11 21:05:27 +00:00
Miguel Solorio
448838dea8
Add visual cues for nightly version ( #3701 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-11 20:43:57 +00:00
haroldmciver-go
4197f30278
update /theme to new slash command arch ( #3791 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-07-11 20:01:28 +00:00
Jack Wotherspoon
2826c7a1c6
feat: add headers support to SSE transport MCP servers ( #3902 )
2025-07-11 19:59:42 +00:00
Gaurav
8f12e8a114
fix: clearcut logging (retry #3744 ) ( #3751 )
2025-07-11 17:57:35 +00:00
uttamkanodia14
93284281de
Logs the auth type in the user prompts, api responses and errors ( #3795 )
2025-07-11 16:47:46 +00:00
Pascal Birchler
ed00612cf7
chore: pin GitHub Actions to SHAs ( #2987 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-07-11 16:46:06 +00:00
anj-s
23197151c2
Summarize tool call outputs using tool specific summarizers ( #3745 )
2025-07-11 16:29:08 +00:00
Bryan Morgan
cdbe2fffd9
Added in proper checks for customer tiers in 429/Quota error messaging ( #3863 )
...
Co-authored-by: Ioannis Papapanagiotou <iduckhd@hotmail.com >
2025-07-11 15:25:30 +00:00
anj-s
c9e1e6d3bd
Add support for specifying maxSessionTurns via the settings configuration ( #3507 )
2025-07-11 14:55:03 +00:00
anj-s
0151a9e1a3
Remove extra logging in debug mode ( #3864 )
2025-07-11 14:43:51 +00:00
Tommaso Sciortino
166f5eaa66
Don't print MCP server logs. It's too noisy. ( #3867 )
2025-07-11 14:42:43 +00:00
Ioannis Papapanagiotou
62ebd51e11
docs: correct typo in CONTRIBUTING.md ( #3852 )
2025-07-11 13:29:05 +00:00
chrisheecho
e8fd2d6147
Update authentication.md to show how to use API keys in GCP ( #3042 )
...
Co-authored-by: Pascal Birchler <pascalb@google.com >
2025-07-11 13:25:11 +00:00
Max Bain
a634e03177
docs: Include video and audio in multi-file tool documentation ( #3380 )
...
Co-authored-by: Pascal Birchler <pascalb@google.com >
2025-07-11 13:22:43 +00:00
Jinhwan Kim
9195a1c026
Fix typo in authentication.md ( #3348 )
2025-07-11 13:04:42 +00:00
trapezoid
daed8b0f90
chore(deps): Pin @google/genai to 1.8.0 ( #3834 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-11 06:58:32 +00:00
Masato Sugiyama
8d054898af
chore: remove unused ink-text-input dependency ( #2388 )
2025-07-11 05:32:02 +00:00
Seth Troisi
8a128d8dc6
Add NO_BROWSER environment variable to trigger offline oauth flow ( #3713 )
2025-07-11 01:59:02 +00:00
Billy Biggs
ab66e3a24e
Work around bracketed paste support for node < 20 ( #2476 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-10 19:56:34 +00:00
matt korwel
75a128e7ee
chore(release): v0.1.10 ( #3749 )
...
Co-authored-by: Gaurav <39389231+gsquared94@users.noreply.github.com >
Co-authored-by: Aryan Sawant <156219699+aryanjsawant@users.noreply.github.com >
Co-authored-by: neo.alienson <neo@01man.com >
2025-07-10 16:55:22 +00:00
Tommaso Sciortino
870797c16c
Indent subcommands in help output ( #3703 )
2025-07-10 16:21:20 +00:00
Mithlesh kumar
bf508bfd77
Cleanup: Removed duplicate guidelines prompt ( #3741 )
2025-07-10 16:04:59 +00:00
neo.alienson
5ecc13729a
Fix invalid docker command and invalid JSON in the mcpServers example. ( #3672 )
2025-07-10 08:33:04 +00:00
Aryan Sawant
316c0fa37b
Fix Patch for grep.test.ts ( #3747 )
2025-07-10 06:08:58 +00:00
matt korwel
58607b92df
Revert "fix: Use Email for Clearcut Logging and Refactor User Info Fetching" ( #3744 )
2025-07-09 21:51:37 -07:00
Gaurav
b7f8e1360f
fix: Use Email for Clearcut Logging and Refactor User Info Fetching ( #3620 )
2025-07-10 04:17:40 +00:00
christine betts
da50a1eefb
Add system-wide settings config for administrators ( #3498 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-07-09 21:16:42 +00:00
uttamkanodia14
063481faa4
Adding TurnId to Tool call and API responses and error logs. ( #3039 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-09 18:49:30 +00:00
Tyler
6c12f9e0d9
Use yargs array type for the allowedMcpServerNames flag instead of processing the list directly ourselves. ( #3600 )
2025-07-09 18:38:38 +00:00
Pascal Birchler
017a0a6c86
fix(gha): only post coverage comment for 22.x ( #3613 )
2025-07-09 18:25:48 +00:00
N. Taylor Mullen
725b23e37a
Revert "chore(deps): bump google-auth-library from 9.15.1 to 10.1.0 (… ( #3676 )
2025-07-09 18:19:28 +00:00
N. Taylor Mullen
b3d3f40115
Revert "chore(deps): Add Dependabot config ( #2972 )" ( #3675 )
2025-07-09 18:17:04 +00:00
Bryan Morgan
8a6509ffeb
Remove auto-execution on Flash in the event of a 429/Quota failover ( #3662 )
...
Co-authored-by: Jenna Inouye <jinouye@google.com >
2025-07-09 17:55:56 +00:00
Ed Harrod
01e756481f
mcp-server: Fix debug flag ( #3667 )
2025-07-09 17:52:49 +00:00
Jenna Inouye
d5db4f0b93
Update Terms of Service and Privacy Notice for clarity. ( #3036 )
2025-07-09 16:23:58 +00:00
Bryan Morgan
b0cce95286
Improve quota- and resource-related 429 error handling, also taking Code Assist customer tiers into consideration ( #3609 )
2025-07-09 14:18:15 +00:00
Pascal Birchler
8f2da86aa5
Use full terminal width for --help ( #3515 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-09 07:02:59 +00:00
N. Taylor Mullen
d094026b3b
fix(deps): revert yargs bump and fix npx regression ( #3610 )
2025-07-08 23:44:56 -07:00
dependabot[bot]
95782b7b47
chore(deps): bump google-auth-library from 9.15.1 to 10.1.0 ( #3583 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-09 06:01:18 +00:00
DaeYeong Kim
0e13b7f0c6
docs(contributing): mention macOS Seatbelt in GEMINI_SANDBOX examples ( #3537 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-09 06:01:16 +00:00
dependabot[bot]
c5abd7a302
chore(deps): bump dotenv from 16.6.1 to 17.1.0 ( #3589 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-09 06:01:06 +00:00
dependabot[bot]
52db1b83a0
chore(deps): bump ws from 8.18.2 to 8.18.3 ( #3581 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-09 05:47:51 +00:00
Principal-Ideal
4d882d9b58
chore: fix typo ( #3570 )
2025-07-09 05:46:55 +00:00
dependabot[bot]
5a50958f28
chore(deps): bump dorny/test-reporter from 1 to 2 ( #3575 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com >
2025-07-09 05:46:24 +00:00
dependabot[bot]
d787f1b3de
chore(deps): bump actions/create-github-app-token from 1 to 2 ( #3576 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-09 05:46:14 +00:00
dependabot[bot]
b12149be7c
chore(deps): bump mime-types and @types/mime-types ( #3582 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-09 05:44:40 +00:00
dependabot[bot]
9089107a8d
chore(deps-dev): bump esbuild from 0.25.5 to 0.25.6 ( #3586 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-09 05:42:49 +00:00
dependabot[bot]
bedecc03f4
chore(deps-dev): bump globals from 16.2.0 to 16.3.0 ( #3587 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-09 05:42:23 +00:00
dependabot[bot]
f6cd65190f
chore(deps): bump yargs from 17.7.2 to 18.0.0 ( #3590 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-09 05:40:56 +00:00
dependabot[bot]
698ec8172c
chore(deps): bump gaxios from 6.7.1 to 7.1.1 ( #3592 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-09 05:39:42 +00:00
Tommaso Sciortino
9273e8ddae
Fix version of shell-quote ( #3557 )
2025-07-09 00:40:49 +00:00
Pascal Birchler
3e157a2331
chore(deps): Add Dependabot config ( #2972 )
2025-07-09 00:23:59 +00:00
Pascal Birchler
2916753409
chore: add CodeQL analysis ( #2992 )
2025-07-09 00:23:51 +00:00
Pascal Birchler
c8cf954e6e
fix(auth): do not blindly default to API key auth ( #3235 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-08 22:10:36 +00:00
Sandy Tao
0506b40a39
Fix bad request in model check ( #3568 )
2025-07-08 22:06:47 +00:00
Jack Wotherspoon
27a2d8af14
refactor: consolidate all flags to use hyphens (deprecate underscore flags) ( #3541 )
2025-07-08 20:56:12 +00:00
Marat Boshernitsan
2ed1b378cb
fix: Honor DEBUG and CLI_TITLE environment variables ( #3560 )
2025-07-08 19:34:17 +00:00
Billy Biggs
c0940a194e
Add a command line option to enable and list extensions ( #3191 )
2025-07-08 16:57:34 +00:00
Marat Boshernitsan
f1647d9e19
Improve auth env var validation logic and messaging to detect settings that confuse GenAI SDK ( #1381 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-08 16:37:10 +00:00
Tommaso Sciortino
5c759d48c7
Don't enforce leading slash since that's not true on Windows ( #3545 )
2025-07-08 16:30:49 +00:00
Tommaso Sciortino
4dab31f1c8
Improve Function Call argument validation and typing ( #2881 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-08 06:48:44 +00:00
matt korwel
137ffec3f6
Fix nightly Release ( #3511 )
2025-07-08 06:41:39 +00:00
Tommaso Sciortino
0c70a99b56
Preserve recent history when compressing. ( #3049 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-08 06:32:09 +00:00
Ayesha Shafique
23e3c7d6ec
style: Format execution time as minutes, seconds ( #2707 )
2025-07-08 06:14:42 +00:00
Sandy Tao
f7ad9a7e47
Fix infinite loop in start.js on Windows ( #3506 )
2025-07-08 03:49:22 +00:00
warjiang
a34cc6124c
ci: disable scheduled jobs in forked repo ( #3093 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-07-08 01:14:39 +00:00
Jack Wotherspoon
ba58e077eb
chore: add general usage message to --help message ( #3500 )
2025-07-08 01:13:31 +00:00
matt korwel
a4097ae6f9
Release and Packaging: Clean up ( #3489 )
2025-07-07 23:36:51 +00:00
Tommaso Sciortino
4e84989d8f
Fix double "esc" bug in Auth dialog ( #3493 )
2025-07-07 23:27:24 +00:00
Tommaso Sciortino
426b6905da
Fix typo and add tests for auth validation. ( #3491 )
2025-07-07 22:52:04 +00:00
Marat Boshernitsan
48c2aa296a
Enable Gemini CLI to reuse user's auth in Cloud Shell ( #3070 )
2025-07-07 22:02:13 +00:00
Tommaso Sciortino
357546a2aa
Initialize MCP tools once at start up instead of every time we auth. ( #3483 )
2025-07-07 22:01:59 +00:00
Abhi
aa10ccba71
feature(commands) - Refactor Slash Command + Vision For the Future ( #3175 )
2025-07-07 20:45:44 +00:00
Tyler
6eccb474c7
refactor: rename allowed_mcp_server_names to allowed-mcp-server-names ( #3469 )
2025-07-07 19:47:27 +00:00
Sambhav Khanna
97a472f2fb
fix(cli): Prevent Tab from auto-executing incomplete slash commands ( #2919 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-07 19:43:27 +00:00
Tommaso Sciortino
2b135d0e9e
Remove unneeded code. ( #3467 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-07 19:35:29 +00:00
chrisheecho
7cc84cd6af
Update README.md to show API key usage for Vertex ( #3060 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-07 18:43:27 +00:00
Colt McAnlis
8f4046c71a
fix: EditTool can clobber human edits to the same file. ( #3043 )
...
Co-authored-by: Colt McAnlis <colton@google.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2025-07-07 17:28:56 +00:00
Tyler
229ae03631
Add --allowed_mcp_server_names flag ( #3464 )
2025-07-07 16:45:58 +00:00
Jordan Demeulenaere
355fb4ac67
Add excludeTools and includeTools to mcpServers config ( #2976 )
2025-07-07 16:34:26 +00:00
Gennadiy Civil
aa8e5776eb
Add new test to verify that when an Authorization header is provided ( #3023 )
2025-07-07 16:34:16 +00:00
N. Taylor Mullen
17dfa267d5
Re-enable backticks in shell tool usage. ( #3360 )
2025-07-07 16:15:10 +00:00
Jerop Kipruto
48ebd728b3
Migrate Gemini CLI Action workflows to Direct WIF authentication ( #3456 )
2025-07-07 16:06:31 +00:00
Pugazhendhi
524ede52d2
feat: add .svg support ( #3229 )
2025-07-07 05:51:32 +00:00
zfflxx
97d9386e3f
@file don't respect config respectGitIgnore=false ( #3382 ) ( #3387 )
...
Co-authored-by: Ryan Fang <ryan.fang@gllue.com >
2025-07-07 05:48:39 +00:00
zfflxx
bb8f6b376d
Fix nested markdown Rendering for table headers and rows #3331 ( #3362 )
...
Co-authored-by: Ryan Fang <ryan.fang@gllue.com >
2025-07-07 05:33:46 +00:00
Jack Wotherspoon
b70fba5b09
fix: respect env variables in .env for settings.json variable substitution ( #3416 )
2025-07-07 05:13:13 +00:00
Yuki Okita
87a44ec468
feat(core): improve error messages in isCommandAllowed ( #3349 )
2025-07-07 05:03:36 +00:00
matt korwel
20825e4114
Release misc ( #3418 )
2025-07-07 03:16:42 +00:00
Devansh Sharma
39d4095a4c
feat: YOLO mode shorctut displayed inside /help ( #3367 )
2025-07-06 15:48:29 +00:00
Pyush Sinha
39e8509452
feat: add user startup warnings, add home directory check ( #3056 )
2025-07-06 06:27:00 +00:00
N. Taylor Mullen
da9b1baa6e
Update @google/genai -> 1.8.0 ( #3339 )
2025-07-06 01:10:57 +00:00
Adam Weidman
9211905ff1
feat: Handle inline content modification in tool scheduler ( #2883 )
2025-07-05 23:19:41 +00:00
Daniel Sibaja
2b8a565f89
Fix #2922 : Prevent @ concatenation to valid paths in shellmode. ( #2932 )
2025-07-05 22:20:12 +00:00
BigUncle
b564d4a088
fix(core): Sanitize tool parameters to fix 400 API errors ( #3300 )
2025-07-05 21:58:51 +00:00
matt korwel
5c9372372c
cleaning up prompts for release ( #3335 )
2025-07-05 21:20:47 +00:00
matt korwel
a7256f630c
Relase: Clean up and condensing ( #3321 )
2025-07-05 20:58:59 +00:00
N. Taylor Mullen
4be32d1f73
fix(cli): Group cancelled tool call responses to prevent API errors ( #3333 )
2025-07-05 20:56:39 +00:00
이동현
8adc586973
fix: small typo ( #3183 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-05 15:33:42 +00:00
matt korwel
4963a1eea8
Mk nohup ( #3285 )
2025-07-05 15:27:22 +00:00
Didier Durand
ab96676e36
fix typos in diverse files ( #3284 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-05 15:23:39 +00:00
matt korwel
47dc16d243
feat: Update minimum Node.js version to 20 ( #3277 )
2025-07-05 14:55:15 +00:00
Ned Nguyen
80aad5a42c
Doc: update gemini-cli README.md to require Node.js version 20+ ( #3247 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-07-05 02:44:23 +00:00
Will 保哥
c94fcd1094
fix a command usage issue in deployment.md
( #2862 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-05 02:05:56 +00:00
matt korwel
7aa67f324c
Mk sign nightly release commits ( #3264 )
2025-07-05 01:32:58 +00:00
matt korwel
e90e0015ea
Signing tags ( #3254 )
2025-07-04 22:04:05 +00:00
matt korwel
9ff3592e01
Mk nightly relase tag formatting ( #3206 )
2025-07-04 16:30:29 +00:00
Jack Wotherspoon
806d858c45
ci: update issue templates to use GitHub alert ( #3167 )
2025-07-04 15:59:09 +00:00
Mithlesh kumar
f4923468dc
chore: typo fixes ( #3203 )
...
Co-authored-by: Jack Wotherspoon <jackwoth@google.com >
2025-07-04 15:38:43 +00:00
matt korwel
ef736f0d1c
Mk nightly relase tag formatting ( #3204 )
2025-07-03 22:44:04 -07:00
matt korwel
adc63e6882
fix tagging for nightly ( #3202 )
2025-07-04 05:16:35 +00:00
matt korwel
d43ea268b0
Releasing: Utilizing Github Actions and Tagging for release. ( #2852 )
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-07-04 03:57:01 +00:00
Sandy Tao
32db5ba0e1
Refactor text-buffer to use reducer ( #2652 )
2025-07-04 00:53:17 +00:00
moon jooho
8d3fec08e5
Add and improve JSDoc comments for core tool methods ( #3128 )
2025-07-04 00:13:02 +00:00
Bryan Morgan
654f8aeb61
Fixed Google User Id pass to Clearcut ( #3147 )
2025-07-03 20:54:35 +00:00
SunskyXH
ab63a5f183
fix(client): get model from config in flashFallbackHandler ( #2118 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-03 19:43:48 +00:00
Devansh Sharma
64767c52fe
fix: show ctrl+s shortcut to expand debug console #2002 ( #2491 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-03 19:42:02 +00:00
Fausto Núñez Alberro
dcb9381138
Use AccentBlue: 'blue' in ANSI theme instead of hard-coded #0000FF ( #3100 )
...
Co-authored-by: Riccardo Carlesso <palladiusbonton@gmail.com >
2025-07-03 14:32:47 +00:00
moon jooho
a68f28e5cc
fix: remove unnecessary whitespace ( #2781 )
...
Co-authored-by: F. Hinkelmann <franziska.hinkelmann@gmail.com >
2025-07-03 10:22:32 +00:00
Taeik Lim
5057502e8d
docs: fix typos in CONTRIBUTING.md ( #2722 )
...
Signed-off-by: Taeik Lim <sibera21@gmail.com >
Co-authored-by: F. Hinkelmann <franziska.hinkelmann@gmail.com >
2025-07-03 09:46:23 +00:00
Jerop Kipruto
85a1d814a7
refactor(ci): improve pr triage ( #3082 )
2025-07-03 02:45:34 +00:00
Jerop Kipruto
b463249729
feat(workflows): add automated and scheduled PR triage ( #3062 )
2025-07-03 00:41:23 +00:00
Michael Carolin
e7b0b49c82
Fix typo in README ( #3061 )
2025-07-02 23:58:38 +00:00
Eddie Santos
82a0ac3d1e
Update notification template ( #3035 )
2025-07-02 20:26:14 +00:00
Abhi
edd69cb7d4
help: add shift+tab tip ( #2892 )
2025-07-02 03:18:01 +00:00
Vachan
cd069fd436
Reduce the threshold for when we compress history. ( #2898 )
2025-07-02 00:18:13 +00:00
Seth Troisi
38445f63f0
make tag required for /chat ( #2904 )
2025-07-02 00:17:08 +00:00
Brandon Keiji
34935d6558
chore: bump version to 0.1.9 ( #2906 )
2025-07-01 23:30:04 +00:00
Bryan Morgan
dbe88f6e0e
Added support for session_id in API calls ( #2886 )
2025-07-01 23:16:09 +00:00
Tommaso Sciortino
3492c429b9
Add excludedTools to extensions. ( #2853 )
2025-07-01 23:13:46 +00:00
Allen Hutchison
e94decea39
feat(core): Add infinite loop protection to client ( #2793 )
2025-07-01 23:09:21 +00:00
Billy Biggs
3a995305c0
Fix characters being dropped in text-buffer ( #2504 )
...
Co-authored-by: Sandy Tao <sandytao520@icloud.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-07-01 23:07:41 +00:00
Tommaso Sciortino
82afc75350
Special case mime type for ts file. ( #2902 )
2025-07-01 23:05:33 +00:00
Seth Troisi
383306e17e
Improve slashCommand autoCompletion logic ( #2776 )
2025-07-01 22:51:43 +00:00
Preston Holmes
8957ad7fc3
Docs: Add a page detailing quota and cost information ( #2894 )
...
Co-authored-by: Jenna Inouye <jinouye@google.com >
2025-07-01 22:28:15 +00:00
Santhosh Kumar
0275ab0108
feat: add audio and video support to read_file ( #2556 )
2025-07-01 19:22:32 +00:00
Logan Kilpatrick
63ed8d6499
Update README.md ( #2729 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-07-01 19:16:40 +00:00
Tommaso Sciortino
fe125d59b9
Use the constant placeholders for ".gemini/settings.json" in gemini.tsx ( #2860 )
2025-07-01 18:00:21 +00:00
Jerop Kipruto
58b14b7ccf
feat: add weekly community report workflow ( #2855 )
2025-07-01 16:19:51 +00:00
Jacob Richman
2bf8e8b2c7
Fix spurious logs about invalid MaxSizedBox children due to Ink6 + React19 migration ( #2794 )
2025-07-01 15:54:27 +00:00
MirzaSamadAhmedBaig
01186e3aff
Make clean script cross-platform ( #1990 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-07-01 15:30:18 +00:00
Tian Jian Wang
a4062cb44a
feat: Add markdown table rendering support ( #1955 )
...
Co-authored-by: heartyguy <heartyguy@users.noreply.github.com >
Co-authored-by: Allen Hutchison <adh@google.com >
2025-07-01 03:25:19 +00:00
Hemant
1a30b9656f
docs(auth): clarify env-file discovery & recommend ( #2402 )
2025-07-01 03:23:48 +00:00
Eddie Santos
e5b1208bd8
update check + tests ( #2772 )
2025-07-01 03:03:16 +00:00
Jerop Kipruto
e10c208fbe
feat(triage): improve automated issue triage workflows ( #2778 )
2025-07-01 02:59:46 +00:00
Jvr
84355bb447
Fix: Use HTTPS in docs and correct formatting typo in troubleshooting guide ( #2762 )
...
Co-authored-by: Seth Troisi <sethtroisi@google.com >
2025-07-01 00:39:45 +00:00
Abhi
f91927569c
refactor(ui): revamp exit stats display ( #2771 )
2025-07-01 00:28:49 +00:00
Tommaso Sciortino
3587054d32
Rename AuthType LOGIN_WITH_GOOGLE_PERSONAL -> LOGIN_WITH_GOOGLE ( #2769 )
2025-07-01 00:11:54 +00:00
Tommaso Sciortino
0ca5c07135
Use structured prompt for compression. ( #2747 )
2025-07-01 00:04:33 +00:00
Tommaso Sciortino
dbd626054f
Remove unused method ( #2721 )
2025-06-30 22:53:05 +00:00
owenofbrien
f19b9ed4f8
Removed fallback logic for gaia id logging ( #2761 )
2025-06-30 22:51:17 +00:00
Tommaso Sciortino
505a5d617b
Fix CODE_ASSIST_ENDPOINT env var. ( #2712 )
2025-06-30 22:41:14 +00:00
Jerop Kipruto
36e099ac22
fix(workflows): use preview release gemini-cli in triage workflows ( #2759 )
2025-06-30 22:34:08 +00:00
Jerop Kipruto
09d494d174
feat(workflows): add issues list command to automated triage workflow ( #2749 )
2025-06-30 21:04:48 +00:00
Jerop Kipruto
9794d329d3
refactor(workflows): separate issue triage into two workflows ( #2746 )
2025-06-30 20:30:22 +00:00
Tommaso Sciortino
5c4c833ddd
Fix oauth credential caching. ( #2709 )
2025-06-30 15:47:01 +00:00
Jerop Kipruto
f3849627fc
feat(shell): Enable prefix matching for flexible command validation ( #2653 )
2025-06-30 15:42:35 +00:00
Abhi
770f862832
feat: Change /stats to include more detailed breakdowns ( #2615 )
2025-06-30 00:44:33 +00:00
Adam Spiers
0fd602eb43
feat: add support to remote MCP servers for custom HTTP headers ( #2477 )
2025-06-30 00:09:08 +00:00
Marcin Jahn
d1eb86581c
feat(cli): Add hideTips setting ( #1524 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-06-29 23:56:37 +00:00
Faizan Alam
1732e90d52
Highlight previous user input ( #2507 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-06-29 23:28:56 +00:00
Devansh
2096f971cd
fix:Update /help to show correct newline key combo for different OS #… ( #2043 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-06-29 23:16:14 +00:00
Niladri Das
f848d35758
feat: modular GEMINI.md imports with @file.md syntax ( #1585 ) ( #2230 )
2025-06-29 22:51:47 +00:00
uttamkanodia14
ada4061a45
Fix clearcut-logger.ts to event name GEMINI_CLI_API_RESPONSE_TOOL_TOK… ( #1875 )
2025-06-29 22:14:13 +00:00
Bryan Morgan
cdb803b9a4
Added obfuscated google account ID to clearcut log messages ( #2593 )
2025-06-29 20:35:20 +00:00
Tim Rogers
dbe63e7234
fix: Correct pluralization of the number of occurrences in EditTool tool errors ( #2463 )
2025-06-29 19:53:59 +00:00
Adam Spiers
0cfaeedf03
chore: add .editorconfig ( #2572 )
2025-06-29 19:40:32 +00:00
Jerop Kipruto
d8d78d73f9
feat: allow command-specific restrictions for ShellTool ( #2605 )
2025-06-29 19:32:26 +00:00
Noritaka Kobayashi
19a0276142
refactor: remove unnecessary "await" ( #2574 )
2025-06-29 19:15:27 +00:00
Noritaka Kobayashi
9ae2595bfd
refactor: remove unnecessary assertion ( #2579 )
2025-06-29 19:06:03 +00:00
Umair Idris
65a58c3b03
Clarify .gemini/config.yaml is for the PR review bot (not CLI). ( #2495 )
2025-06-29 18:54:23 +00:00
Will 保哥
51eba66528
Fix a heading issue for Authentication Setup doc ( #2592 )
2025-06-29 18:45:19 +00:00
Will 保哥
91502193ec
Fix a broken link ( #2598 )
2025-06-29 18:43:27 +00:00
yuki yano
c860dac233
feat: add Neovim editor support ( #1448 )
2025-06-29 17:25:22 +00:00
Zircoz
87d4fc0560
docs: Add uninstallation instructions to README ( #1985 )
...
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
Co-authored-by: Allen Hutchison <adh@google.com >
Co-authored-by: Allen Hutchison <allen@hutchison.org >
2025-06-29 13:41:58 +00:00
Noritaka Kobayashi
b980a47879
refactor: remove imported multiple times ( #1846 )
2025-06-29 09:09:15 +00:00
Noritaka Kobayashi
e188daab91
refactor: use for...of loop instead of traditional for loop ( #1840 )
2025-06-29 08:53:09 +00:00
Tommaso Sciortino
fc21d1cae3
Esc to exit privacy screen in error state ( #2527 )
2025-06-29 07:50:53 +00:00
Ahmad Awais ⌘
19a9b50aab
📦 NEW: Theme Shades of Purple ( #2114 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-29 03:43:17 +00:00
anj-s
7b86a2015f
Remove debug logs that are not actionable but numerous ( #2030 )
2025-06-29 02:33:53 +00:00
Krushna Sharma
33bfda9879
docs: fix typos and grammatical errors ( #2459 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-06-29 01:23:49 +00:00
JimmyLiao
399841b6e0
fix: Correct start script reference in create_alias.sh ( #1487 )
2025-06-28 23:28:44 +00:00
Vladislav Semyanov
f31b1274bf
docs: remove duplicate tool descriptions in file-system.md ( #1790 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-28 23:26:38 +00:00
Jerop Kipruto
fbb3a2e6f0
chore(gha): pin issue triage workflow to a specific commit ( #2496 )
2025-06-28 23:14:44 +00:00
Umair Idris
2769188d30
Re-enable Gemini Code Assist PR review bot ( #2254 )
2025-06-28 22:05:40 +00:00
Leo
5d3a64d747
fix file extension in "modify flow" temp files ( #2478 )
2025-06-28 21:51:03 +00:00
Leo
601d9ba36d
fix edit retrigger ( #2306 )
2025-06-28 18:02:44 +00:00
Pyush Sinha
3518ff7663
feat: add VSCodium editor support ( #2299 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
Co-authored-by: Allen Hutchison <adh@google.com >
2025-06-28 17:44:31 +00:00
christine betts
0d51e4b4b7
Add troubleshooting note about CI env variables ( #2229 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-28 16:25:56 +00:00
Reid
8c13c1e82a
fix: typo ( #2415 )
...
Signed-off-by: reidliu41 <reid201711@gmail.com >
2025-06-28 16:18:20 +00:00
Kalle Ahlström
9665928860
chore: add proper pluralization handling for match in grep tool ( #2344 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-06-28 14:41:25 +00:00
Billy Biggs
25cdf9b762
Inline the description and schema of the shell tool in the source ( #1709 )
2025-06-28 09:53:03 +00:00
Mot
ad7839ea4c
quiet dotenv log message ( #2239 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-28 02:03:20 +00:00
SADIK KUZU
2e20effb43
Fix typos ( #1629 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-06-28 01:29:59 +00:00
Noritaka Kobayashi
221b066900
chore: fix typo in mcp-client ( #1555 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-28 01:14:59 +00:00
Jerop Kipruto
6c4391dda5
improve triage prompt ( #2314 )
2025-06-28 00:53:38 +00:00
Jerop Kipruto
ac2bc3af7c
add issue triage using gemini cli ( #2310 )
2025-06-28 00:30:56 +00:00
Brandon Keiji
e8d5dec380
chore: bump to 0.1.8 ( #2308 )
2025-06-28 00:08:16 +00:00
Vachan
db115c468a
Updates error handling in case of incorrect tool calling. ( #2304 )
2025-06-27 23:57:40 +00:00
Sandy Tao
150df382f8
Upgrade to Ink 6 and React 19 ( #2096 )
...
Co-authored-by: jacob314 <jacob314@gmail.com >
2025-06-27 23:39:54 +00:00
Brandon Keiji
19d2a0fb35
fix: add missing gaxios dependency ( #2302 )
2025-06-27 23:24:03 +00:00
Philipp Schmid
ac24fd27e4
Update Auth Label to include AI Studio ( #2130 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-06-27 21:33:26 +00:00
Xi Chen
d35e7d3eb1
Fix a circular dependency ( #2246 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-27 20:59:47 +00:00
Brandon Keiji
8d1d40cc7a
chore: bump to 0.1.6 ( #2285 )
2025-06-27 20:57:07 +00:00
Tommaso Sciortino
a2a46c7c67
Add privacy notice slash command ( #2059 )
2025-06-27 19:07:38 +00:00
Billy Biggs
4fbffdf617
Handle stdin for prompts using readline for escape character parsing ( #1972 )
2025-06-27 17:57:32 +00:00
Preston Holmes
5fd6664c4b
Further clarify the situations where a Project ID is required ( #2029 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-06-27 16:51:28 +00:00
Preston Holmes
3aabb940f5
Add the current auth method and GCP Project config to the about message ( #2112 )
2025-06-27 15:46:27 +00:00
Srinath Padmanabhan
3ebf54f367
Refine Fallback message providing more options. ( #1961 )
2025-06-27 15:21:46 +00:00
Billy Biggs
582b4861a9
Use 2-space indent for saved checkpoint files ( #1152 ) ( #1977 )
...
Co-authored-by: Jacob Richman <jacob314@gmail.com >
2025-06-27 13:39:27 +00:00
DongJin Jeong
a943cee45d
Fix typos and formatting issues ( #1480 )
2025-06-27 10:31:42 +00:00
Seth Troisi
6742a1b7f9
Explicit message for missing subcommand ( #2019 )
2025-06-27 05:01:00 +00:00
Brandon Keiji
bf873a1d85
feat: add prepublishOnly checks ( #2052 )
2025-06-26 23:49:43 +00:00
Brandon Keiji
d9892ada7f
fix: add repository field to package.jsons ( #2032 )
2025-06-26 22:36:34 +00:00
Bryan Morgan
560905154c
Updating the first user message to mention the product name ( #2037 )
2025-06-26 22:32:19 +00:00
anj-s
267173c7e8
Revert "feat: Add model selection logic ( #1678 )" ( #1983 )
2025-06-26 20:59:16 +00:00
Tommaso Sciortino
c55b15f705
Improve LoadCodeAssist error handling ( #1645 )
2025-06-26 15:27:20 +00:00
N. Taylor Mullen
24ccc9c457
feat: Add model selection logic ( #1678 )
2025-06-26 14:51:32 +00:00
Vladislav Semyanov
121bba3464
docs: fix broken configuration link in themes.md ( #1780 )
2025-06-26 07:37:42 +00:00
김진엽 (Nathan)
02bd8dfeff
docs: fix multiple typos in documentation files ( #1781 )
2025-06-26 07:36:31 +00:00
Masato Sugiyama
ee5bf842eb
fix: remove unnecessary @gemini-code/core mock from slashCommandProcessor test ( #1739 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-26 04:56:51 +00:00
Keith Ballinger
891116a6c2
Flaky test ( #1405 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-26 04:45:39 +00:00
Noritaka Kobayashi
dbe217828d
chore: fix typos in comment-out ( #1540 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-26 04:34:53 +00:00
Andrew Drozdov
b8ae12a109
Update geminiChat.ts ( #1681 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-26 04:27:35 +00:00
Billy Biggs
759ad4cc96
When resuming a checkpoint always add items to history even if not shown ( #1653 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-26 04:23:47 +00:00
Jennifer Davis
4d4b95a41d
fix: add engines check to ensure older Node.js versions don't fail at… ( #1752 )
2025-06-26 04:09:40 +00:00
mpAtGoogle
046c7f84bc
Update LICENSE ( #1664 )
2025-06-26 03:34:01 +00:00
Brandon Keiji
01ff27709d
chore: bump to 0.1.5 ( #1731 )
2025-06-26 02:48:16 +00:00
anj-s
1078a546fe
Fix doc link in the auth dialog ( #1688 )
2025-06-26 01:59:13 +00:00
Brandon Keiji
a8763abfb7
feat: add release trigger configuration ( #1697 )
2025-06-26 01:54:58 +00:00
Bryan Morgan
bb797ded7d
429 fix ( #1668 )
2025-06-26 01:45:38 +00:00
Jerop Kipruto
b6b9923dc3
Streamline issue submission with YAML forms ( #1608 )
2025-06-25 22:50:24 +00:00
Tommaso Sciortino
79c647d486
Merge "Login with Google Workspace" auth option into "Login with Google" ( #1574 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-25 22:38:18 +00:00
anj-s
00b24c917e
Update usage stats doc ( #1636 )
2025-06-25 22:26:07 +00:00
Logan Kilpatrick
32b2e79b62
Update README.md ( #1632 )
2025-06-25 21:41:52 +00:00
anj-s
5aa6b9a84b
Update docs and add faq section ( #1625 )
2025-06-25 21:32:16 +00:00
Jerop Kipruto
8c5a0b6f88
prompt users to search for existing issues before creating a new one ( #1595 )
2025-06-25 20:29:51 +00:00
zhiyue
b0cf9bcece
fix(telemetry): handle all promise rejections in ClearcutLogger ( #1557 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-25 20:14:44 +00:00
Seth Troisi
31f32421a3
Minor style changes to prompt ( #1578 )
2025-06-25 20:00:44 +00:00
Bryan Morgan
eacbb3551c
changed 429 failover from 3 consecutive to 2 for OAuth users ( #1579 )
2025-06-25 19:37:23 +00:00
anj-s
4b5ca6bc77
Add tos and privacy links docs for clarity ( #1571 )
2025-06-25 19:32:25 +00:00
Mark McDonald
452b82162b
Adding some troubleshooting text for login issues ( #1451 )
2025-06-25 19:00:36 +00:00
DongJin Jeong
aa0e375508
Fix: update npx command to correct GitHub repository URL ( #1488 )
2025-06-25 18:58:11 +00:00
Jenna Inouye
6a0b8a733b
Add information request to bug reports: login method. ( #1501 )
2025-06-25 18:55:35 +00:00
Arjun Lall
63a7fbc5fd
Fixed Checkpointing docs for enabling checkpointing using settings.json ( #1534 )
2025-06-25 18:51:38 +00:00
N. Taylor Mullen
3a369ddec3
feat: Refine model fallback messaging to reflect reality. ( #1527 )
2025-06-25 17:33:32 +00:00
starsandskies
0915bf7d67
Remove GEMINI_CODE_ASSIST env variable from configuration.md doc ( #1514 )
2025-06-25 16:45:40 +00:00
Marat Boshernitsan
9897a2b80a
Clarify why authentication failures might be happening and direct users to documentation ( #1478 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-06-25 16:11:54 +00:00
Jason Davenport
819507c5e8
Update Readme to call out gemini command after npm install ( #1423 )
...
Co-authored-by: Mark McDonald <macd@google.com >
2025-06-25 16:03:07 +00:00
matt korwel
45b2b382cc
Prod: Integration Tests Main Only ( #1461 )
2025-06-25 15:56:06 +00:00
Thomas Kosiewski
af4dfd9327
Update authentication.md ( #1429 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-06-25 15:48:15 +00:00
matt korwel
21cfe9f680
issue template update ( #1441 )
2025-06-25 14:44:34 +00:00
matt korwel
6991ba1387
Version 0 1 1 ( #1426 )
2025-06-25 13:47:27 +00:00
Asad Memon
452dca4301
Fix typo in intro on MCP line ( #1421 )
2025-06-25 13:04:42 +00:00
N. Taylor Mullen
852210e108
Shipping it! ( #1418 )
2025-06-25 12:42:04 +00:00
Brandon Keiji
f6c36f75e3
fix: prepublish changes to package names ( #1420 )
2025-06-25 12:41:11 +00:00
Jenna Inouye
a3c46c0d31
Docs: Add link links to tools/index.md. ( #1419 )
2025-06-25 11:16:17 +00:00
Mark McDonald
f78479d7ce
Add intro text back to README ( #1417 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-25 10:12:31 +00:00
Mark McDonald
cfc13fbd58
Add 'npm i' instruction to README ( #1416 )
2025-06-25 09:46:05 +00:00
matt korwel
9a093e4b51
CI: Linting Fix ( #1413 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-25 04:18:51 +00:00
Preston Holmes
4cc2b27f1d
Docs: update docs to clarify the differences between Google account login o… ( #1409 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
Co-authored-by: matt korwel <mattkorwel@google.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-06-25 04:15:45 +00:00
Scott Densmore
39bfa108b5
refactor: remove deplicate dependency in slashCommandProcessor ( #1410 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-06-25 04:07:20 +00:00
Daniel Tedesco
268d29f05c
docs: fix typos in documentation ( #1411 )
...
Co-authored-by: Dan Tedesco <dted@google.com >
2025-06-25 03:53:03 +00:00
Keith Ballinger
b6ccf12551
[June 25] handle early output pipe closer ( #1402 )
2025-06-25 00:39:01 +00:00
matt korwel
fbd8725c07
fix(update-notifier): resolve __dirname error on npx execution ( #1406 )
2025-06-25 00:26:50 +00:00
matt korwel
2505af8522
Prerelease: Cleanup ( #1404 )
2025-06-24 23:41:36 +00:00
Brian Ray
d45d414c93
sandbox doc ( #1390 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
Co-authored-by: Jenna Inouye <jinouye@google.com >
2025-06-24 23:11:39 +00:00
Seth Troisi
d8000c9248
Add slashCommand dependency ( #1401 )
2025-06-24 22:55:26 +00:00
Marat Boshernitsan
e3def2dd49
fix: use correct directory for update checks ( #1394 )
2025-06-24 22:51:16 +00:00
Bryan Morgan
e356949d3f
[JUNE 25] Permanent failover to Flash model for OAuth users after persistent 429 errors ( #1376 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-24 22:48:55 +00:00
Jenna Inouye
4bf18da2b0
Documents: Add docs tools pages ( #1397 )
2025-06-24 22:31:58 +00:00
Jacob Richman
8bd5645dd4
Truncate all strings before displaying in a tool messages to avoid stack overflows ( #1395 )
2025-06-24 22:31:55 +00:00
Mark McDonald
1f6fe59def
Added ToS links for each surface ( #1365 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-06-24 22:31:50 +00:00
anj-s
418f67086b
Add the link to the privacy policy to the Usage Statistics section and remove debug logs ( #1393 )
2025-06-24 22:31:45 +00:00
cperry-goog
13cff94b1a
docs: add screenshot to README ( #1396 )
2025-06-24 22:31:40 +00:00
Louis Jimenez
7421bf681b
Checkpointing documentation ( #1321 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-06-24 22:31:32 +00:00
matt korwel
db57d38d92
feat: add merge_group trigger to CI and E2E workflows ( #1400 )
2025-06-24 15:30:31 -07:00
Jacob Richman
5ff00b0c5d
Remove uses of the spread operator that appear to have caused a maximum call stack size exceeded error ( #1389 )
2025-06-24 21:38:25 +00:00
Jacob Richman
75ed7aaa06
Jacob314/max old space ( #1314 )
2025-06-24 14:18:55 -07:00
Sandy Tao
a411c415a8
Do not render mcp responses as markdown ( #1388 )
2025-06-24 14:10:41 -07:00
Brian Ray
e613cbc448
MCP documentation improvements ( #1386 )
...
Co-authored-by: Jenna Inouye <jinouye@google.com >
2025-06-24 13:19:36 -07:00
Bryan Morgan
5099f104bc
[June 25] Fixed user agent string to be standards-compliant ( #1384 )
2025-06-24 09:11:09 -07:00
Billy Biggs
b47a4240ff
Bug/1369 at command recursive search ( #1370 )
2025-06-24 06:48:26 +00:00
cornmander
a2ed4266aa
Update editor.ts ( #1371 )
2025-06-24 06:41:40 +00:00
Scott Densmore
324715ee8b
Add Zed Editor to Eidtor List ( #1372 )
2025-06-23 23:32:09 -07:00
starsandskies
9f5a625730
Fix broken doc links ( #1368 )
2025-06-23 20:56:57 -07:00
Abhi
d3f13c71ae
feat: add custom message for 429 errors ( #1366 )
2025-06-24 03:43:00 +00:00
Bryan Morgan
f7caca5f94
Updated README.md ( #1367 )
2025-06-23 23:37:07 -04:00
Tommaso Sciortino
0abd2a644e
Improve Auth error messaging ( #1358 )
2025-06-24 01:37:41 +00:00
Seth Troisi
104f23da90
Add /chat list ( #1361 )
2025-06-24 01:11:45 +00:00
owenofbrien
37034045ae
Fix Clearcut logging wire format ( #1359 )
...
Fix for Clearcut logging wire format based on validation thread with Clearcut / Concord eng
2025-06-23 17:47:37 -07:00
Jerop Kipruto
aca034fdfe
Refactor usage statistics to be a top-level setting ( #1363 )
...
This commit refactors the `usageStatisticsEnabled` setting from a sub-property of the `telemetry` configuration to a top-level setting. This change simplifies the configuration by decoupling usage statistics from the telemetry settings.
The documentation has also been updated to reflect this change.
2025-06-24 00:29:31 +00:00
cperry-goog
b3741f7016
docs: update configuration.md with new CLI options ( #1360 )
2025-06-23 17:24:55 -07:00
anj-s
3012684469
Fix duplicate startSession logs and duplicate logging events over the wire ( #1357 )
2025-06-24 00:05:42 +00:00
Seth Troisi
335802f4dd
moving /save, /resume to /chat <save|resume> ( #1355 )
2025-06-23 16:56:08 -07:00
Jacob Richman
f741630572
Polish Theme Dialog ( #1356 )
2025-06-23 16:43:17 -07:00
Seth Troisi
8c6545bf9d
Include all chat messages ( #1354 )
2025-06-23 22:41:33 +00:00
Bryan Morgan
e21dbed8c8
[June 25] Updated docs for telemetry and user statistics ( #1346 )
2025-06-23 22:25:49 +00:00
starsandskies
160d6a6552
Docs: Add telemetry to the list of configuration options ( #1348 )
2025-06-23 22:18:07 +00:00
Jerop Kipruto
b443b5e800
Ensure telemetry events are flushed immediately ( #1344 )
...
The previous implementation used `flushIfNeeded` to batch most telemetry events, but it was not reliably sending them, leading to data loss. Notably, the `startSession` event, which already used `flushToClearcut`, was working correctly, indicating an issue with the batching logic itself.
This change replaces all calls to `flushIfNeeded` with `flushToClearcut` to align all event logging with the working `startSession` implementation and ensure that events are sent immediately. This prioritizes the reliability of data collection over network efficiency.
This is a temporary solution to prevent further data loss. The underlying issue with the batching mechanism in `flushIfNeeded` should be investigated and fixed in the future, at which point this change can be reverted.
2025-06-23 22:05:02 +00:00
Jerop Kipruto
58572a6eaa
Use concurrently to run start script with GCP telemetry ( #1329 )
...
## TLDR
Introduces the `concurrently` package to simplify the dev startup process with GCP telemetry enabled.
## Dive Deeper
Previously, developers had to run the telemetry script and the main application start script in separate terminals. This change updates the `start:gcp` script to use `concurrently`, allowing both processes to be launched and managed with a single command. This improves the developer experience and reduces the chance of forgetting to start one of the required processes.
## Reviewer Test Plan
Set the required environment variable:
```shell
export OTLP_GOOGLE_CLOUD_PROJECT=<your-project-id>
```
Run the following command:
```shell
npm run start:gcp
```
#750
cc @teeler
2025-06-23 22:01:22 +00:00
Bryan Morgan
e423d20a8d
Updated docs and /stats command to support lack of token caching support for OAuth users (b/426943001) ( #1307 )
2025-06-23 21:55:24 +00:00
Sandy Tao
fcb8be2fb9
Refine refresh static logic ( #1349 )
2025-06-23 21:45:15 +00:00
Jacob Richman
1faf53a3af
Remove fallback to render normall rather than using custom MaxSizedBox layout logic ( #1340 )
2025-06-23 21:41:45 +00:00
N. Taylor Mullen
fd58d3267e
feat: Open MCP docs if no MCPs are configured ( #1325 )
2025-06-23 21:35:23 +00:00
Abhi
dc76bcc433
Add error messaging for 429 errors ( #1316 )
2025-06-23 21:30:13 +00:00
Jerop Kipruto
21e6a36cf1
docs(telemetry): relocate telemetry documentation ( #1327 )
...
Moves the telemetry.md file from docs/core to the top-level docs/ directory to make it more discoverable.
Updates the link in the main index.md and removes the old reference from the CLI configuration page.
2025-06-23 21:24:48 +00:00
Jerop Kipruto
98f3a7066e
refactor: rename disableDataCollection to dataCollectionEnabled ( #1319 )
...
Renames the `disableDataCollection` flag to the more intuitive and positive `dataCollectionEnabled`.
This change improves code clarity by avoiding double negatives and making the purpose of the flag more direct. The logic has been inverted wherever the flag is used to accommodate the new naming convention.
Using a suffix like `"Enabled"` follows a common convention that improves readability.
- A condition like `if (dataCollectionEnabled)` reads like a natural language sentence ("if data collection is enabled"), which reduces cognitive load.
- Distinguishes the boolean flag (representing a state) from potential functions that would perform an action (e.g., `enableDataCollection()` or `disableDataCollection()`), avoiding ambiguity between checking a value and calling a function.
#750
2025-06-23 21:19:40 +00:00
Jerop Kipruto
4d88054d35
Fix batch flush to Clearcut ( #1337 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-23 21:12:58 +00:00
starsandskies
d2ae7af487
Edit pass of docs/core/index.md ( #1338 )
...
Make a pass through the docs/core/index.md file to hopefully improve readability and consistency.
Of particular note, I've cut out a big chunk that felt mostly like implementation details that aren't particularly relevant for public consumption, and I cut out a discussion of cli/core interconnection that is covered better higher up in the docs hierarchy
2025-06-23 21:07:03 +00:00
cperry-goog
139668c1d1
Docs/authentication doc ( #1341 )
2025-06-23 13:02:52 -07:00
cperry-goog
1825105d8f
feat(docs): add /chat and /restore commands ( #1336 )
2025-06-23 12:10:23 -07:00
Jacob Richman
3e25c350f2
A couple of these log messages were now showing up every time on app startup ( #1335 )
2025-06-23 11:31:13 -07:00
N. Taylor Mullen
4b7307accb
Remove .gitignore logging from startup. ( #1323 )
2025-06-23 11:12:42 -07:00
owenofbrien
631591ce79
Enable clearcut logging by default ( #1309 )
...
Clearcut logging can now be disabled via disableDataCollection in user settings
2025-06-23 10:18:58 -07:00
Tommaso Sciortino
07880d43d2
Sanitize MCP FunctionDeclarations to workaround Vertex bug ( #1330 )
2025-06-23 09:13:53 -07:00
Mark McDonald
7b39dd8b28
Added some use cases to the README ( #1257 )
2025-06-23 07:07:18 +00:00
matt korwel
d0800ab917
Adding .gitattributes ( #1303 )
2025-06-23 06:58:41 +00:00
Scott Densmore
99d521569d
Scotdensmore/first run auth fix ( #1322 )
2025-06-22 22:52:25 -07:00
Jacob Richman
156feff5b1
Fix so that pressing ctrl-s a second time toggles off constrain height mode ( #1306 )
2025-06-23 05:42:20 +00:00
Mark McDonald
523aeec544
Use shorter URL for docs link ( #1324 )
2025-06-23 05:37:41 +00:00
Jerop Kipruto
64e1c7df75
docs: update telemetry documentation and scripts ( #1318 )
2025-06-23 06:10:26 +01:00
matt korwel
da128e725d
{bug} Vertex Auth Support ( #1302 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
2025-06-23 00:30:58 +00:00
Abhi
d8ecbde9bd
add bash block to doc for easy copypasta ( #1317 )
2025-06-22 20:19:13 -04:00
Billy Biggs
c9bea8e646
Plumb extension context filenames through for /memory refresh ( #1312 )
2025-06-22 16:17:05 -07:00
cperry-goog
b05b8673cd
update tips ( #1315 )
2025-06-22 16:02:48 -07:00
Jacob Richman
b831ffc1b3
Jacob314/auto exit unconstrained height mode ( #1293 )
...
Co-authored-by: Scott Densmore <scottdensmore@mac.com >
2025-06-22 13:43:36 -07:00
N. Taylor Mullen
6a1c62731b
Fix seatbelt sandboxing when GEMINI_SANDBOX="" and starting with -s ( #1298 )
2025-06-22 18:33:29 +00:00
N. Taylor Mullen
3c656cfbc6
feat: Only show ctrl-s when idle ( #1299 )
2025-06-22 15:57:53 +00:00
N. Taylor Mullen
cb76b08e31
feat: Add /docs command and update UI ( #1297 )
2025-06-22 15:54:10 +00:00
owenofbrien
4cfab0a893
Clearcut logging - initial implementation ( #1274 )
...
Flag-guarded initial implementation of a clearcut logger to collect telemetry data and send it to Concord for dashboards, etc.
2025-06-22 14:26:48 +00:00
Abhi
c9950b3cb2
feat: Add client-initiated tool call handling ( #1292 )
2025-06-22 01:35:36 -04:00
cperry-goog
5cf8dc4f07
Docs update ( #1295 )
2025-06-22 05:06:58 +00:00
Louis Jimenez
383212034c
Provide a .gitconfig for shadow repos ( #1294 )
2025-06-22 00:13:03 -04:00
Billy Biggs
0779697da6
Add setting enableRecursiveFileSearch to control @-file completion ( #1290 )
2025-06-22 01:23:35 +00:00
Jacob Richman
63f6a497cb
Jacob314/overflow notification and one MaxSizedBox bug fix ( #1288 )
2025-06-22 00:54:10 +00:00
cperry-goog
e20171e7dd
Updating missing commands ( #1289 )
2025-06-21 17:41:03 -07:00
cperry-goog
47780e984c
docs: update README ( #1287 )
2025-06-21 16:18:23 -07:00
Marlon Gamez
076f81f130
point Code Assist client to prod server ( #1201 )
2025-06-21 22:25:18 +00:00
cperry-goog
e255eb6124
feat(cli): update Tips.tsx component ( #1284 )
2025-06-21 12:58:00 -07:00
Billy Biggs
99a6dc0267
Update memory and context summary UI for multiple context filenames ( #1282 )
2025-06-21 19:15:43 +00:00
Sandy Tao
03af6235a9
Fix Static duplication and input prompt tearing ( #1279 )
2025-06-21 11:11:42 -07:00
Tommaso Sciortino
f9b2a33732
Remove packages/cli/README.md ( #1278 )
2025-06-21 16:43:01 +01:00
Abhi
52afcb3a12
bug: fix cancel after a tool has been used ( #1270 )
2025-06-20 20:01:44 -07:00
Brandon Keiji
1d32313a30
fix: remove circular references in core package ( #1271 ) ( #1272 )
2025-06-20 16:21:09 -07:00
Tommaso Sciortino
4acb870959
Remove #early-access from npx references ( #1262 )
2025-06-20 20:32:27 +00:00
matt korwel
3283f55e7e
Auth timeout ( #1263 )
2025-06-20 18:33:31 +00:00
starsandskies
ddb32a3614
Edit pass of docs/troubleshooting.md ( #1200 )
...
Make a pass through the docs/troubleshooting.md file to hopefully improve readability and consistency.
Notably, some links in the existing documentation appear to point to non-existent pages. I've updated them to what I believe is an appropriate alternative. Also, there's some vague usage of "CLI" and "server", which I've -hopefully correctly- called "Gemini CLI" and "MCP server"
2025-06-20 17:51:51 +00:00
matt korwel
7c8a1da8fe
Auth blocking ( #1261 )
2025-06-20 10:46:41 -07:00
starsandskies
7c4af82da4
Edit pass of docs/integration-tests.md ( #1198 )
...
Co-authored-by: cperry-goog <78765543+cperry-goog@users.noreply.github.com >
Co-authored-by: Chris Perry <cperry@google.com >
2025-06-20 10:27:00 -07:00
starsandskies
71f1dcf39a
Edit pass of docs/extensions.md ( #1187 )
...
Co-authored-by: cperry-goog <78765543+cperry-goog@users.noreply.github.com >
2025-06-20 09:49:57 -07:00
starsandskies
fefe97a1db
Add missing command and alphabetize docs/cli/commands.md ( #1194 )
...
As noted in Issue #1189 , the /stats command is missing. While we're here, alphabetizing the / commands makes sense in order to better organization the page.
2025-06-20 16:43:47 +00:00
starsandskies
639f8e70d2
Edit pass for the first chunk of docs/cli/configuration.md ( #1174 )
...
Co-authored-by: cperry-goog <78765543+cperry-goog@users.noreply.github.com >
2025-06-20 09:39:21 -07:00
matt korwel
ef54e4ffbc
fallback to gemini_api_key ( #1255 )
2025-06-20 01:36:33 -07:00
N. Taylor Mullen
4e69ba3bbe
feat(auth): handle auth flow errors gracefully ( #1256 )
2025-06-20 01:30:06 -07:00
N. Taylor Mullen
4d9e258a1e
Prevent hard crashing on update notifier fail. ( #1254 )
2025-06-20 07:30:30 +00:00
N. Taylor Mullen
787c319e87
feat: Update default Gemini Flash model to 2.5 ( #1241 )
2025-06-20 05:54:00 +00:00
Abhi
fbbb6f2611
Bug fix telemetry token count ( #1250 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-20 05:45:29 +00:00
Jacob Richman
05b1c8101f
Turn off debug logging of MaxSizedBox errors by default. ( #1228 )
2025-06-20 05:27:03 +00:00
Louis Jimenez
b179424161
Support autocompletion for checkpoints ( #1253 )
2025-06-20 01:18:11 -04:00
Louis Jimenez
6c67618624
Make checkpoints configurable in settings.json ( #1251 )
2025-06-20 00:39:15 -04:00
Louis Jimenez
ea63a8401e
Move the shell history our of the project .gemini to the home dir ( #1195 )
2025-06-19 23:53:24 -04:00
N. Taylor Mullen
7a419282c8
Tactical client lifetime fix. ( #1247 )
2025-06-19 19:54:36 -07:00
Tommaso Sciortino
0c9b138f5e
Reword auth dialog options ( #1246 )
2025-06-20 02:41:19 +00:00
Tommaso Sciortino
2f1fc3f359
Initially hide some Auth options behind "More..." ( #1245 )
2025-06-19 19:28:56 -07:00
N. Taylor Mullen
4059a3e8ee
fix: flicker of StreamingState to Idle when tool finishes ( #1190 ) ( #1216 )
...
Co-authored-by: Asad Memon <asad.lionpk@gmail.com >
2025-06-20 01:25:23 +00:00
Louis Jimenez
2e5e9d736b
Move the otel folder out of project root .gemini and into user home dir ( #1188 )
2025-06-19 21:09:05 -04:00
matt korwel
04518b52c0
Auth First Run ( #1207 )
...
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com >
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-19 16:52:22 -07:00
starsandskies
c48fcaa8c3
Edit pass of docs/cli/themes.md ( #1171 )
...
Most notably, the list of available themes didn't match (in completeness or name) the examples provided at the end of the file (nor the listing I found in /packages/cli/src/ui/themes)
2025-06-19 16:24:33 -07:00
Tommaso Sciortino
1e5689e054
Set slice=true on tests to supress output. ( #1168 )
2025-06-19 15:27:00 -07:00
Eddie Santos
c1486c47ee
fix: auto-update sandbox regression ( #1221 )
2025-06-19 21:40:10 +00:00
Tommaso Sciortino
619da70070
Correct node version in Readme ( #1226 )
2025-06-19 13:56:46 -07:00
Abhi
0125547215
bug: removes raw api response from stdout ( #1224 )
2025-06-19 16:26:31 -04:00
Jacob Richman
b0bc7c3d99
Fix flicker issues by ensuring all actively changing content fits in the viewport ( #1217 )
2025-06-19 13:17:23 -07:00
Brandon Keiji
10a83a6395
refactor: remove docker tagging step from sandbox publishing ( #1223 )
2025-06-19 12:19:39 -07:00
Leo
0ebac0b896
add sandboxImageName in package.json ( #1219 )
2025-06-19 11:50:34 -07:00
Tommaso Sciortino
43203926b8
Initialize geminiClient in noninteractive mode ( #1222 )
2025-06-19 17:21:39 +00:00
anj-s
8e7fa7e233
Remove verification to prevent file reverts and endless loops ( #1213 )
2025-06-19 10:03:54 -07:00
N. Taylor Mullen
3621ea0cb6
Change sandbox default ( #1214 )
2025-06-19 02:15:02 -07:00
Tommaso Sciortino
b49d55584e
Use Env Var directly instead of through GoogleAuth() ( #1202 )
2025-06-18 17:24:46 -07:00
Tommaso Sciortino
8bc3b415c9
Refactor in preparation for Reauth ( #1196 )
2025-06-18 16:34:00 -07:00
Jerop Kipruto
b96fbd913e
test: add integration test for simple mcp server ( #1199 )
2025-06-18 15:53:58 -07:00
Brandon Keiji
cc89830b2a
refactor: consolidate container image tag source of truth to cli package.json ( #1156 )
2025-06-18 19:43:12 +00:00
Seth Troisi
c7a422ccdd
GC guided review of docs ( #1167 )
2025-06-18 18:49:59 +00:00
Allen Hutchison
fbc79c34c9
Fix noise in headless mode on STDOUT ( #1184 )
2025-06-18 11:40:15 -07:00
starsandskies
589a7b59c6
Edit pass of docs/cli/tutorials.md ( #1186 )
...
Make a pass through the docs/cli/tutorials.md file to hopefully improve readability and consistency.
2025-06-18 18:15:49 +00:00
anj-s
c4c444d378
Cherry pick fix for enabling the agent to verify changes using tests ( #1185 )
2025-06-18 11:00:01 -07:00
Tommaso Sciortino
4662b058e8
CCPA Count Token support ( #1170 )
2025-06-18 10:29:42 -07:00
Brandon Keiji
332512853e
feat: consolidate sandbox configurations into a single object ( #1154 )
2025-06-18 17:01:00 +00:00
Brandon Keiji
30d1662128
fix: check package.json for app version ( #1160 ) ( #1182 )
2025-06-18 16:57:17 +00:00
Tommaso Sciortino
3453b977b8
Support logging in with Application Default Credentials ( #1157 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-18 09:49:13 -07:00
anj-s
5b2cea8eda
Cherrypick endless loops fix onto release ( #1181 )
2025-06-18 09:27:23 -07:00
Tommaso Sciortino
cd03d96b34
Fix flakey test ( #1178 )
2025-06-18 08:34:22 -07:00
Louis Jimenez
9b34762d97
Move the logs.json to a project specific user home dir ( #1145 )
2025-06-18 09:56:21 -04:00
N. Taylor Mullen
0da4fd9d11
feat: update default gemini model to GA 2.5 pro ( #1173 )
2025-06-17 23:08:04 -07:00
DeWitt Clinton
3e49206935
Remove learnings.md. ( #1172 )
2025-06-17 22:43:59 -07:00
Anas H. Sulaiman
63fbc8ce18
fix: regression in completion filtering ( #1135 )
2025-06-18 05:05:47 +00:00
N. Taylor Mullen
7f189f4d5f
docs: update documentation from starsandskies/patch-2 ( #1143 )
...
Co-authored-by: starsandskies <nstock@google.com >
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-06-18 05:02:07 +00:00
Abhi
f3c1cbbabf
feat: shell history ( #1169 )
2025-06-17 22:17:16 -04:00
Louis Jimenez
443465a805
Clear out untracked files when restoring a checkpoint ( #1139 )
2025-06-17 22:01:42 -04:00
Seth Troisi
87053d9317
Fixup pull_request_template.md ( #1166 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-06-18 00:34:03 +00:00
starsandskies
e12c60fcab
Move theme discussion from configuration.md to themes.md ( #1158 )
...
This content looks like it is better hosted in the themes.md doc.
This is as close as possible to an as-is cut-paste from one file to the other, with the goal of minimizing fine-grained review in this particular PR. I'll take another pass through themes.md specifically to improve the moved content in a follow up PR
2025-06-17 16:07:12 -07:00
Seth Troisi
e7c4801c79
Updating CONTRIBUTING.md ( #1144 )
2025-06-17 13:16:28 -07:00
matt korwel
7a99f0b5a2
Forked PR: Contributing.md ( #1146 )
2025-06-17 11:26:27 -07:00
Billy Biggs
708ba8902a
Support escaping carriage returns with \ ( #1127 )
2025-06-17 10:03:05 -07:00
Jacob MacDonald
e59c872b3d
code review followup for compress command ( #1097 )
...
Followup to https://github.com/google-gemini/gemini-cli/pull/986
2025-06-17 15:44:54 +00:00
Eddie Santos
c3971754bf
Auto-update notifications ( #1110 )
2025-06-17 15:24:07 +00:00
matt korwel
bc3fa71234
Update CONTRIBUTING.md ( #1130 )
2025-06-17 00:09:23 -07:00
Miguel Solorio
137baa0a07
Update /help page ( #1119 )
2025-06-16 20:13:33 -07:00
Tommaso Sciortino
b3e26de862
Cache credentials in home dir, not working dir ( #1122 )
2025-06-16 19:31:32 -07:00
Tommaso Sciortino
98093e604a
Simplify Error handling in Code Assist onboarding ( #1123 )
2025-06-16 18:30:55 -07:00
Jacob Richman
a7e45d47cd
Fix bug where single line inserts were deleting all text after the in… ( #1114 )
2025-06-16 15:21:22 -07:00
Tommaso Sciortino
11f524c125
Propagate abort signal to ccpa generateContent. ( #1106 )
2025-06-16 13:24:42 -07:00
Marlon Gamez
42329e0258
fix: add httpOptions with headers field to CCPA client and set User-Agent header ( #1103 )
2025-06-16 12:03:06 -07:00
Tommaso Sciortino
bf62c3b21a
Mock out 'open' in tests. Fix test issues. ( #1100 )
2025-06-16 11:12:42 -07:00
matt korwel
df938d6ee8
Preflight and integration npx ( #1096 )
2025-06-16 15:27:29 +00:00
Taylor Mullen
a600588c20
Add ask mode approvers to code owners.
2025-06-15 23:46:58 -07:00
Mark McDonald
7e6fb7e874
Added sandbox error hint when MCP servers fail to launch in sandbox mode ( #972 )
2025-06-16 06:37:09 +00:00
Abhi
6af7a5c589
feat: clear should also clear chat history ( #1008 )
2025-06-16 06:33:59 +00:00
Louis Jimenez
dd679a6cdb
Move the shadow git repository to the user's home dir ( #1013 )
2025-06-16 06:30:02 +00:00
Jacob Richman
5d4f4f421c
feat: text-buffer: input sanitization and delete character handling. ( #1031 )
2025-06-16 06:25:11 +00:00
N. Taylor Mullen
742caa5dd8
feat(cli): Standardize keyboard shortcut hints ( #1092 )
2025-06-16 06:21:58 +00:00
Zach Sais
cc7459e403
fix version release for Dockerfile build ( #1080 )
2025-06-16 06:13:39 +00:00
Billy Biggs
40fbb61a1b
Update /tools desc to show the name of each tool as known to the model ( #1091 )
2025-06-15 23:09:53 -07:00
N. Taylor Mullen
197704c630
feat(test): Increase test coverage across CLI and Core packages ( #1089 )
2025-06-15 22:41:32 -07:00
N. Taylor Mullen
f00b9f2727
feat(ci): run actions on the release branch ( #1086 )
2025-06-15 21:43:32 -07:00
Mark McDonald
ffc48b16d4
Add Vertex env vars to sandbox ( #1005 )
...
Co-authored-by: Scott Densmore <scottdensmore@github.com >
2025-06-16 02:55:13 +00:00
Jerop Kipruto
a6c16ab08d
small fixes in telemetry docs ( #1081 )
...
- `GOOGLE_CLOUD_PROJECT` --> `OTLP_GOOGLE_CLOUD_PROJECT`
- Remove `npm run start:gcp` shorthand from docs until after improving cleanup process
2025-06-16 02:45:16 +00:00
Abhi
bedff2ca79
feat: Adds shell command context to gemini history ( #1076 )
2025-06-15 22:09:30 -04:00
Jerop Kipruto
7f06ad40c5
Add a command for starting Gemini CLI with GCP telemetry ( #1079 )
...
This command enables starting the application with GCP telemetry:
```shell
npm run start:gcp
```
2025-06-15 21:28:29 -04:00
Jerop Kipruto
e772dc2b85
Decouple telemetry project ID configuration ( #1077 )
...
#750
Renames project ID for telemetry from `GOOGLE_CLOUD_PROJECT` to `OTLP_GOOGLE_CLOUD_PROJECT`.
This change allows for a separate Google Cloud Project to be used for telemetry data, distinct from the project used for other services like Vertex AI or Code Assist. This enhances clarity and flexibility in project configuration.
2025-06-16 01:12:57 +00:00
Leo
5c8e49a0e3
bug: Fix modify edit ( #1078 )
2025-06-15 18:00:41 -07:00
N. Taylor Mullen
4463671284
refactor(cli): Use excludeTools for non-interactive mode ( #1072 )
2025-06-15 16:05:40 -07:00
Jerop Kipruto
101b6fe767
Stabilize /bug command tests with consistent version mocking ( #1070 )
...
The `/bug` command tests in `slashCommandProcessor.test.ts` were flaky due to inconsistent CLI versioning.
This commit:
- Implements a flexible, top-level mock for `getCliVersion` that can be overridden per test.
- Sets a default mock value for `/bug` command tests via `beforeEach`.
- Overrides the mock in one test case requiring a specific version ('test-version').
- Ensures the test's helper `getExpectedUrl` receives the correct explicit version.
- Aligns the expected CLI version in the custom bug URL test with the default mock.
These changes ensure consistent CLI versioning in tests, resolving flakiness.
#1071
2025-06-15 16:35:15 -04:00
Jerop Kipruto
714421c2da
Add file operation telemetry ( #1068 )
...
Introduces telemetry for file create, read, and update operations.
This change adds the `gemini_cli.file.operation.count` metric, recorded by the `read-file`, `read-many-files`, and `write-file` tools.
The metric includes the following attributes:
- `operation` (string: `create`, `read`, `update`): The type of file operation.
- `lines` (optional, Int): Number of lines in the file.
- `mimetype` (optional, string): Mimetype of the file.
- `extension` (optional, string): File extension of the file.
Here is a stacked bar chart of file operations by extension (`js`, `ts`, `md`):

Here is a stacked bar chart of file operations by type (`create`, `read`, `update`):

#750
cc @allenhutchison as discussed
2025-06-15 13:24:53 -07:00
Jerop Kipruto
4421ef126f
Refactor: Use telemetry_utils.js in local_telemetry.js ( #1066 )
...
## TLDR
Refactors `scripts/local_telemetry.js` to use shared helper functions and constants from `scripts/telemetry_utils.js`.
## Dive Deeper
This change centralizes common telemetry-related logic, including:
- Binary downloading and management (`ensureBinary`)
- Reading and writing JSON files
- Waiting for network ports
- Managing workspace telemetry settings (`manageTelemetrySettings`)
- Process cleanup and signal handling (`registerCleanup`)
By using the shared utilities, `local_telemetry.js` becomes more concise and focused on its specific task of setting up the local OpenTelemetry and Jaeger environment.
## Docs
https://github.com/google-gemini/gemini-cli/blob/main/docs/core/telemetry.md#local-telemetry-with-jaeger-ui-for-traces
## Issue
#750
2025-06-15 19:32:12 +00:00
Billy Biggs
b67806ae9a
Support completion of checkpoint names in /resume ( #1063 )
2025-06-15 11:40:39 -07:00
Marat Boshernitsan
6d772a30c0
Stabilize prompts snapshot test by properly mocking the SANDBOX env var. ( #1067 )
...
Co-authored-by: Marat Boshernitsan <maratb@google.com >
2025-06-15 11:33:30 -07:00
Billy Biggs
6959663646
Add support for /mcp schema to show full parameter schema as JSON ( #1050 )
...
Outputs a raw JSON version of the parameter names and descriptions as provided to the model, plus minor formatting adjustments to /mcp desc.
2025-06-15 11:25:40 -07:00
Asad Memon
123ad20e9b
feat: Show model thoughts while loading ( #992 )
2025-06-15 18:19:05 +00:00
Asad Memon
b3d89a1075
feat: Add token stats in footer ( #909 )
2025-06-15 11:15:53 -07:00
Billy Biggs
da09431be9
Add support for showing descriptions of CLI tools ( #1052 )
...
Adds support for /tools desc to show the full description of tools as provided to the model.
2025-06-15 07:56:07 -07:00
Sijie Wang
7352cb403c
fix(core): Improve shell tool reliability and test portability ( #1036 )
2025-06-15 09:19:19 +00:00
matt korwel
2b799cbbf0
Create pull_request_template.md ( #1054 )
2025-06-15 01:34:40 -07:00
N. Taylor Mullen
12c33c1fe6
feat(cli): add glob as a direct dependency ( #1065 )
2025-06-15 00:50:26 -07:00
Jerop Kipruto
ab932ffaa5
Telemetry: Improve API response logging with function call details ( #1064 )
2025-06-15 01:48:01 -04:00
Billy Biggs
e717c51aa1
Avoid import.meta.dirname to be backwards compatible to Node.js 18+ ( #1058 )
2025-06-15 05:30:00 +00:00
Jerop Kipruto
53753f0455
Add telemetry command and refactor telemetry settings ( #1060 )
...
#750
### Telemetry Settings
Refactors telemetry configuration to use a nested `telemetry` object in `settings.json`, for example:
```json
{
"telemetry": {
"enabled": true,
"target": "gcp"
"log-prompts": "true"
},
"sandbox": false
}
```
The above includes
- Centralized telemetry settings under a `telemetry` object in `settings.json`.
- CLI flags for the `gemini` command to override all telemetry sub-settings:
- `--telemetry` / `--no-telemetry`
- `--telemetry-target <local|gcp>`
- `--telemetry-otlp-endpoint <URL>`
- `--telemetry-log-prompts` / `--no-telemetry-log-prompts`
- Updates `packages/cli/src/config/config.ts` and `packages/core/src/config/config.ts` to read from the new settings structure and respect the new CLI flags.
- Modifies `scripts/handle-telemetry.js`, `scripts/local_telemetry.js`, and `scripts/telemetry_utils.js` to align with the new settings structure.
- Updates `docs/core/telemetry.md` to reflect the new settings structure, CLI flags, and order of precedence.
- Renames `logUserPromptsEnabled` to `logPrompts` for brevity.
### `npm run telemetry`
Add a new `npm run telemetry` command that uses `scripts/telemetry.js`, automates the entire process of setting up a local and GCP telemetry pipelines, including configuring the necessary settings in the `.gemini/settings.json` workspace file and installing required binaries (e.g. `otelcol-contrib`).
---
```shell
$ npm run telemetry -- --target=gcp
> gemini-cli@0.1.0 telemetry
> node scripts/telemetry.js --target=gcp
⚙️ Using command-line target: gcp
🚀 Running telemetry script for target: gcp.
✨ Starting Local Telemetry Exporter for Google Cloud ✨
⚙️ Enabled telemetry in workspace settings.
🔧 Set telemetry OTLP endpoint to http://localhost:4317 .
🎯 Set telemetry target to gcp.
✅ Workspace settings updated.
✅ Using Google Cloud Project ID: foo-bar
🔑 Please ensure you are authenticated with Google Cloud:
- Run `gcloud auth application-default login` OR ensure `GOOGLE_APPLICATION_CREDENTIALS` environment variable points to a valid service account key.
- The account needs "Cloud Trace Agent", "Monitoring Metric Writer", and "Logs Writer" roles.
✅ otelcol-contrib already exists at /Users/jerop/github/gemini-cli/.gemini/otel/bin/otelcol-contrib
🧹 Cleaning up old processes and logs...
✅ Deleted old GCP collector log.
📄 Wrote OTEL collector config to /Users/jerop/github/gemini-cli/.gemini/otel/collector-gcp.yaml
🚀 Starting OTEL collector for GCP... Logs: /Users/jerop/github/gemini-cli/.gemini/otel/collector-gcp.log
⏳ Waiting for OTEL collector to start (PID: 17013)...
✅ OTEL collector started successfully on port 4317.
✨ Local OTEL collector for GCP is running.
🚀 To send telemetry, run the Gemini CLI in a separate terminal window.
📄 Collector logs are being written to: /Users/jerop/github/gemini-cli/.gemini/otel/collector-gcp.log
📊 View your telemetry data in Google Cloud Console:
- Logs: https://console.cloud.google.com/logs/query;query=logName%3D%22projects%2Ffoo-bar%2Flogs%2Fgemini_cli%22?project=foo-bar
- Metrics: https://console.cloud.google.com/monitoring/metrics-explorer?project=foo-bar
- Traces: https://console.cloud.google.com/traces/list?project=foo-bar
Press Ctrl+C to exit.
^C
👋 Shutting down...
⚙️ Disabled telemetry in workspace settings.
🔧 Cleared telemetry OTLP endpoint.
🎯 Cleared telemetry target.
✅ Workspace settings updated.
🛑 Stopping otelcol-contrib (PID: 17013)...
✅ otelcol-contrib stopped.
```
2025-06-15 00:47:32 -04:00
Keir Mierle
32dd298351
fix: Push tool calls to absolute paths ( #1055 ) ( #1057 )
...
Make several changes to guide the model to request absolute paths,
reducing frequent accidental relative path tool call failures.
- Switch the parameter name: path --> absolute_path.
- Update the tool definition to strongly require an absolute path.
- Update the system prompt to indicate absolute paths are required.
- Update the system prompt tool use examples to use absolute paths.
Test case:
Open GC in GC: "Locate the primary file calling genai"
- Expected: Model opens files with absolute path, successfully.
- Actual (pre-patch): Failure, attempts to read with relative path.
- Actual (post-patch): Success, attempts to read with absolute path.
2025-06-14 21:16:11 -07:00
Scott Densmore
e30e650a77
docs: document environment variables for cloud services ( #1048 )
2025-06-14 15:19:05 -07:00
Leo
e544b940f1
bug: Fix code colorizer ( #1046 )
2025-06-14 21:27:53 +01:00
Steren
d0b77d9fa0
Dockerfile: Node 22 and ENTRYPOINT ( #1038 )
2025-06-14 19:01:06 +00:00
Leo
2c6aae863a
Enable "modify" in write tool ( #1044 )
2025-06-14 11:20:04 -07:00
Bryan Morgan
93909a2dd3
Address b/424256913 - fixed error in correctStringEscaping() and improved backslash handling ( #1007 )
2025-06-14 13:39:34 -04:00
Jerop Kipruto
3bcb3c3666
docs: clarify telemetry script usage ( #1034 )
...
Updates the telemetry documentation and the GCP telemetry script to make it clearer that the Gemini CLI needs to be run in a separate terminal session after starting the collector script.
This addresses potential user confusion where they might expect telemetry data to appear without actively using the CLI.
#750
2025-06-14 14:49:21 +00:00
Anas H. Sulaiman
4873fce791
centralize file filtering in FileDiscoveryService ( #1039 )
2025-06-14 14:25:34 +00:00
Steren
e6d5477168
Fix 404 URL for Vertex Auth ( #1040 )
2025-06-14 08:25:08 +00:00
Allen Hutchison
643bdf31d5
feat: Add custom URL support for the /bug command ( #1017 )
2025-06-14 07:00:24 +00:00
Jacob MacDonald
d5c6bb9740
Add /compress command to force a compression of the context ( #986 )
...
Related to https://b.corp.google.com/issues/423605555 - I figured this might be a simpler solution to start with, while still also being useful on its own even if we do implement that.
2025-06-14 04:21:40 +00:00
Jerop Kipruto
1452bb4ca4
Add GCP telemetry script ( #1033 )
...
Adds a script - `scripts/telemetry_gcp.js` - to simplify setting up a local OpenTelemetry collector that forwards data to Google Cloud. This is a follow up to the script for local telemetry `scripts/local_telemetry.js` added in #1015 .
This script automates downloading necessary binaries, configuring the collector, and updating workspace settings.
Also includes `scripts/telemetry_utils.js` with shared helper functions for telemetry scripts. Will refactor `scripts/local_t elemetry.js` in next steps to use this shared functionality.
Updates `docs/core/telemetry.md` to include:
- A new "Quick Start" section
- Detailed instructions for the new GCP automated script
- Reorganization of existing sections for clarity
#750
---
```
✨ Starting Local Telemetry Exporter for Google Cloud ✨
⚙️ Enabled telemetry in workspace settings.
🔧 Set telemetry OTLP endpoint to http://localhost:4317 .
✅ Workspace settings updated.
✅ Using Google Cloud Project ID: foo-bar
🔑 Please ensure you are authenticated with Google Cloud:
- Run `gcloud auth application-default login` OR ensure `GOOGLE_APPLICATION_CREDENTIALS` environment variable points to a valid service account key.
- The account needs "Cloud Trace Agent", "Monitoring Metric Writer", and "Logs Writer" roles.
✅ otelcol-contrib already exists at /Users/jerop/github/gemini-cli/.gemini/otel/bin/otelcol-contrib
🧹 Cleaning up old processes and logs...
✅ Deleted old GCP collector log.
📄 Wrote OTEL collector config to /Users/jerop/github/gemini-cli/.gemini/otel/collector-gcp.yaml
🚀 Starting OTEL collector for GCP... Logs: /Users/jerop/github/gemini-cli/.gemini/otel/collector-gcp.log
⏳ Waiting for OTEL collector to start (PID: 65145)...
✅ OTEL collector started successfully on port 4317.
✨ Local OTEL collector for GCP is running.
📄 Collector logs are being written to: /Users/jerop/github/gemini-cli/.gemini/otel/collector-gcp.log
📊 View your telemetry data in Google Cloud Console:
- Traces: https://console.cloud.google.com/traces/list?project=foo-bar
- Metrics: https://console.cloud.google.com/monitoring/metrics-explorer?project=foo-bar
- Logs: https://console.cloud.google.com/logs/query;query=logName%3D%22projects%2Ffoo-bar%2Flogs%2Fgemini_cli%22?project=foo-bar
Press Ctrl+C to exit.
^C
👋 Shutting down...
⚙️ Disabled telemetry in workspace settings.
🔧 Cleared telemetry OTLP endpoint.
✅ Workspace settings updated.
🛑 Stopping otelcol-contrib (PID: 65145)...
✅ otelcol-contrib stopped.
```
2025-06-13 23:28:18 -04:00
Marlon Gamez
defb0fac2c
fix: remove quota project override in non-streaming calls to CCPA ( #1032 )
2025-06-14 01:23:12 +00:00
Keir Mierle
9954779739
Add a local telemetry launcher ( #1015 )
2025-06-13 18:08:03 -07:00
Allen Hutchison
31b28ade01
Improvements to web-fetch tool ( #1030 )
2025-06-13 17:44:14 -07:00
Anas H. Sulaiman
8eb505fbba
initialize FileDiscoveryService once ( #1029 )
2025-06-13 17:25:59 -07:00
Brandon Keiji
209381f06f
fix: add micromatch to package deps ( #1020 )
2025-06-13 22:18:05 +00:00
Tommaso Sciortino
a2fe3d2ad0
Stop extension MCPs from hopping into settings. ( #1026 )
2025-06-13 14:51:29 -07:00
Anas H. Sulaiman
bb67d31739
reuse GitIgnoreParser for loading .geminiignore ( #1025 )
2025-06-13 17:17:08 -04:00
Tommaso Sciortino
54f0d9d0e5
Fix default extension context filename and update docs ( #1024 )
2025-06-13 13:57:00 -07:00
Shreya Keshive
1fa41af918
Support MCP StreamableHTTPClientTransport ( #1014 )
2025-06-13 16:18:06 -04:00
Tommaso Sciortino
491e367f7c
Don't exclude config.test.ts. ( #1021 )
2025-06-13 20:07:46 +00:00
Anas H. Sulaiman
1cefe21d2a
reuse filtering service in bfsFileSearch ( #1018 )
2025-06-13 14:57:03 -04:00
Anas H. Sulaiman
084b58a50e
reuse filtering service in getFolderStructure ( #1016 )
2025-06-13 14:26:31 -04:00
Jerop Kipruto
1f63f3331f
Revert "Telemetry: Auto-export to GCP if GOOGLE_CLOUD_PROJECT is set" ( #1011 )
2025-06-13 10:27:22 -07:00
Daniel Lee
daceb9963f
feat(cli): support ctrl+d to exit ( #878 )
...
Similar to ctrl+c, ctrl+d can now be used to exit the program. To avoid accidental exit, ctrl+d must be pressed twice in relatively quick succession (same as ctrl+c).
Following common UX pattern, ctrl+d will be ignored when the input prompt is non-empty. This behavior is similar to how most shell (bash/zsh) behaves. To support this, I had to refactor so that text buffer is initialized outside of the InputPrompt component and instead do it on the main App component to allow input controller to have access to check the content of the text buffer.
2025-06-13 16:59:09 +00:00
starsandskies
8e804c9fa1
Edit pass of docs/cli/index.md ( #999 )
...
Make a pass through the docs/deployment.md file to hopefully improve readability and conciseness
Notably, I've proposed axing both the "Core Features" section - which feels too promotional this far down the folder hierarchy and which is somewhat repetitive to later in the page - and the "Basic Interaction" section - which is covered better, and makes more sense, in other parts of the documentation
2025-06-13 16:53:30 +00:00
Anas H. Sulaiman
9d04e04bc0
remove redundant isGitRepository helper` ( #1012 )
2025-06-13 12:45:07 -04:00
Billy Biggs
2a1ad1f5d9
Update contextFileName to support an optional list of strings ( #1001 )
2025-06-13 09:19:08 -07:00
Anas H. Sulaiman
34e0d9c0b6
cleanup unused allowBuildArtifacts ( #1010 )
2025-06-13 12:00:38 -04:00
Anas H. Sulaiman
c886f08525
cleanup unused customIgnorePatterns ( #1009 )
2025-06-13 11:49:48 -04:00
Leo
d25459d815
Edit wording in /edit description ( #1006 )
2025-06-13 15:36:51 +00:00
Shreya Keshive
1fcbdef994
Add web socket protocol support for IDE MCP server ( #987 )
...
Co-authored-by: matt korwel <matt.korwel@gmail.com >
2025-06-13 09:30:44 -04:00
Mark McDonald
ff478781ad
Support GOOGLE_API_KEY hoisting in sandbox too ( #998 )
2025-06-13 08:32:15 +00:00
N. Taylor Mullen
7bcc60e996
refactor: Use default centralized Flash & Pro models everywhere ( #994 )
2025-06-13 08:25:42 +00:00
Miguel Solorio
f8a31f29aa
Replace logo with custom ASCII ( #958 )
2025-06-13 07:59:45 +00:00
Jerop Kipruto
95e4a60a83
Telemetry: Auto-export to GCP if GOOGLE_CLOUD_PROJECT is set ( #1003 )
...
This change simplifies telemetry setup for users who want to integrate with GCP, as they no longer need to configure a local collector or an explicit endpoint if their project is already set up in the environment.
This change updates the telemetry system to automatically export traces, logs, and metrics to Google Cloud Platform (GCP) if the `GOOGLE_CLOUD_PROJECT` environment variable is set and no explicit `telemetryOtlpEndpoint` is configured by the user.
Key changes:
- The default `telemetryOtlpEndpoint` in `Config` is now an empty string.
- The `initializeTelemetry` SDK logic now prioritizes:
- User-defined `telemetryOtlpEndpoint`.
- `GOOGLE_CLOUD_PROJECT` for direct GCP export.
- Console exporters as a fallback.
- If an invalid `telemetryOtlpEndpoint` is provided, it falls back to console exporters with a warning.
#750
2025-06-13 03:51:41 -04:00
Jerop Kipruto
b20c8389f3
Handle telemetry in non-interactive mode ( #1002 )
...
Changes:
- Ensure proper shutdown in non-interactive mode
- Ensures the initial user prompt is logged in non-interactive mode
- Improve telemetry for streaming - handle chunks and input token count is now alongside other token counts in response
To test:
- Follow instructions in https://github.com/google-gemini/gemini-cli/blob/main/docs/core/telemetry.md#google-cloud
- Run CLI in non-interactive mode and observe logs/metrics in GCP Logs Explorer and Metrics Explorer
#750
2025-06-13 03:44:17 -04:00
Marat Boshernitsan
8bb6eca915
Improvements to CLI's ability to perform refactoring. Includes additions to the system prompt and GEMINI.md. ( #955 )
...
Co-authored-by: Marat Boshernitsan <maratb@google.com >
Co-authored-by: DeWitt Clinton <dclinton@gmail.com >
2025-06-12 23:55:41 -07:00
Tommaso Sciortino
28e656f882
Improve some tools to support abortSignal ( #997 )
2025-06-12 19:46:00 -07:00
Marlon Gamez
1c7774e35b
Use allowedTiers from LoadCodeAssist response when calling OnboardUser ( #995 )
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
Co-authored-by: Jerop Kipruto <jerop@google.com >
Co-authored-by: Marat Boshernitsan <maratb@nitsan.org >
Co-authored-by: Marat Boshernitsan <maratb@google.com >
2025-06-13 02:32:13 +00:00
Tommaso Sciortino
431ee839a0
Code Assist cleanup and docs ( #993 )
2025-06-12 18:00:17 -07:00
matt korwel
9a11567f73
Revert "Make glob tool support abortSignal" ( #996 )
2025-06-13 00:53:10 +00:00
Marat Boshernitsan
181abde2ff
Reduce coupling between core and cli packages ( #961 )
...
Co-authored-by: Marat Boshernitsan <maratb@google.com >
2025-06-12 17:17:29 -07:00
Jerop Kipruto
3c3da655b0
Refactor OTEL logging for API calls ( #991 )
...
Refactor OpenTelemetry logging for API requests, responses, and errors. Moved logging responsibility from GeminiClient to GeminiChat for more detailed logging.
#750
2025-06-12 16:36:51 -07:00
Seth Troisi
dc378e8d60
Have @ pass through images and other Part objects ( #990 )
2025-06-12 16:17:44 -07:00
Seth Troisi
b7daa7c702
Fixed @ file content not being added or sent to server ( #962 )
2025-06-12 23:08:27 +00:00
Eddie Santos
61d0cc39fd
GitHub MCP warning ( #979 )
2025-06-12 22:23:45 +00:00
Jerop Kipruto
6723c72fa5
telemetry: include user decisions in tool call logs ( #966 )
...
Add the user's decision (accept, reject, modify) to tool call telemetry to better understand user intent. The decision provides crucial context to the `success` metric, as a user can reject a call that would have succeeded or accept one that fails.
Also prettify the arguments json.
Example:

#750
2025-06-12 20:48:10 +00:00
Tommaso Sciortino
f8863f4d00
Make glob tool support abortSignal ( #988 )
2025-06-12 13:27:40 -07:00
Abhi
32da693b91
bug: only show tool tokens if > 0 ( #985 )
2025-06-12 19:31:17 +00:00
starsandskies
6bb3f27f6c
Edit pass of README.md ( #906 )
...
Make a pass through the README.md file to hopefully improve readability and completeness
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-12 14:36:36 -04:00
Jordan Demeulenaere
e1d8a356b0
Fix build_sandbox command ( #974 )
2025-06-12 17:38:10 +00:00
Leo
ad2e47dc20
remove enable editor flag ( #984 )
2025-06-12 17:28:20 +00:00
DeWitt Clinton
a9e56ee460
Ignore dot files on @-completion. ( #978 )
2025-06-12 17:04:15 +00:00
starsandskies
af247a6cbd
Edit pass of docs/architecture.md ( #971 )
2025-06-12 16:44:55 +00:00
Tommaso Sciortino
47ce39c46f
Convert CCPA requests to proper format ( #981 )
...
CCPA uses a different format than GenAi. This adds conversion code to get it to the right format.
Note that this doesn't work against the current ccpa staging server, The changes it needs are in cl/770266927
2025-06-12 09:33:49 -07:00
DeWitt Clinton
f2ab6d08c4
Improve the performance of filename completion over large repositories. ( #938 )
2025-06-12 07:09:38 -07:00
dependabot[bot]
9072a4e5ee
chore(deps-dev): bump esbuild from 0.23.1 to 0.25.0 ( #872 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 06:21:50 +00:00
Mark McDonald
041e7c177c
Added note about using MCP/tools with a sandbox ( #933 )
2025-06-11 22:49:58 -07:00
anj-s
6fc7028031
Revert "Add support for local logging per session ( #936 )" ( #970 )
2025-06-11 21:59:46 -07:00
Jerop Kipruto
89f682f081
Telemetry: Improve clarity of user prompt event ( #967 )
2025-06-11 21:43:00 -04:00
Leo
1ef68e0612
feat: External editor settings ( #882 )
2025-06-11 18:21:54 -07:00
Abhi
dd53e5c96a
Show session summary on exit for ctrl+c x 2. Fix exit UI ( #963 )
2025-06-11 20:08:32 -04:00
Eddie Santos
e02a035ab4
Adding silly phrases ( #922 )
2025-06-11 23:40:13 +00:00
matt korwel
fb67ee5445
TEST: reviewers ( #959 )
2025-06-11 22:09:33 +00:00
anj-s
2dc79b3bd0
Add support for local logging per session ( #936 )
2025-06-11 15:05:41 -07:00
JingboWang1997-1
6ecdecbdcc
add excludeTools flag to settings.json config ( #957 )
2025-06-11 14:32:23 -07:00
Seth Troisi
122678cc09
clean chat history before /resume ( #949 )
2025-06-11 13:40:44 -07:00
Abhi
7a72d255d8
feat: Add exit UI w/ stats ( #924 )
2025-06-11 16:40:31 -04:00
matt korwel
4160d904da
Extensibility: Gemini.md files ( #944 )
2025-06-11 20:34:35 +00:00
Tommaso Sciortino
24c61147b8
Cache oauth credentials ( #927 )
2025-06-11 13:26:41 -07:00
jerop
c0580eaf4b
feat(telemetry): expand cli configuration event
...
Adds the following attributes to the event:
- embedding_model
- api_key_enabled
- code_assist_enabled
- debug_mode
- mcp_servers
This additional data will provide more insight into user configurations.
2025-06-11 16:22:35 -04:00
Seth Troisi
5586ad5f8a
Fix noisy tests ( #950 )
2025-06-11 13:01:04 -07:00
Louis Jimenez
e0f4f428fc
Restore Checkpoint Feature ( #934 )
2025-06-11 15:33:09 -04:00
Olcan
f75c48323c
fixes to proxy on macos: prevent curl from hanging during wait-for-proxy by adding ipv6 support and timeout ( #947 )
2025-06-11 11:31:38 -07:00
jerop
03bc1f3141
feat(telemetry): Update API response in telemetry
...
Adds the text content of the API response to the telemetry event. This provides more context for debugging and analysis without logging the entire, potentially large, response object.
- Adds an optional field to the type.
- Updates to include the field in the logged attributes.
- Modifies the to extract the response text using and pass it to the logger.
- Adds a new test file for the telemetry loggers, including tests for the function to verify the new functionality.
2025-06-11 14:18:16 -04:00
Olcan
9237e95f11
fix proxy on cloudtops/linux and for older versions of docker, more robust start/stop and error reporting ( #945 )
2025-06-11 10:50:31 -07:00
jerop
d96af8bacd
refactor(telemetry): pass config object to telemetry functions
...
This commit refactors the telemetry system to pass a object to various logging and metrics functions. This change centralizes configuration management within the telemetry system, making it more modular and easier to maintain.
The constructor and various tool execution functions have been updated to accept the object, which is then passed down to the telemetry functions. This eliminates the need to pass individual configuration values, such as , through multiple layers of the application.
2025-06-11 13:24:41 -04:00
Miguel Solorio
9c5b5ff823
Allow themes to update gradient colors ( #914 )
2025-06-11 17:14:18 +00:00
Allen Hutchison
1d7090b8ac
feat(core): Create BFS file search utility ( #903 )
2025-06-11 09:21:23 -07:00
Olcan
e2d689ff2f
do not auto-enable container sandboxing (fixing recently introduced bug) ( #939 )
2025-06-11 08:25:33 -07:00
jerop
7ba2b13870
update token usage with types
2025-06-11 10:38:07 -04:00
Anas Sulaiman
9d992b32e4
add a unit test with multiple hunks for diff renderer
2025-06-11 09:47:11 -04:00
Anas Sulaiman
00c4527a1b
unify diff generation before and after an edit
2025-06-11 09:47:11 -04:00
Zach Sais
5bab5a7378
fix version set for cli and slash commands ( #892 )
2025-06-11 08:25:26 -05:00
jerop
3f5ac384cc
update from metrics and logs prefix from gemini_code to gemini_cli
2025-06-11 01:28:26 -04:00
jerop
d1e23b7c71
refactor: Centralize session ID generation and propagation
2025-06-11 01:18:40 -04:00
Tommaso Sciortino
95fdc66e7d
Register dependency added in PR:910 ( #925 )
2025-06-10 20:39:29 -07:00
Seth Troisi
fb6e2927f7
Remove unneeded mockRestore()s from tests ( #919 )
2025-06-10 20:32:00 -07:00
Olcan
3372fd8df8
rename sandbox-exec as MacOS Seatbelt in footer ( #921 )
2025-06-10 18:35:00 -07:00
Tommaso Sciortino
97e08fc804
Remove warnings for old env var names. ( #920 )
2025-06-10 18:34:36 -07:00
Tommaso Sciortino
e92b7dfd74
Change yolo mode so it doesn't disable sandboxing. ( #918 )
2025-06-10 17:41:59 -07:00
jerop
b92fa78a1e
docs(telemetry): Refine OTEL Collector setup instructions
...
Standardizes on the distribution for local and Google Cloud setups.
Restructures the guide to present Docker and standalone binary as clear, parallel options and makes the Google Cloud command more robust.
2025-06-10 20:04:05 -04:00
Seth Troisi
8e0d5076d6
Add [tag] to /save and /resume ( #916 )
2025-06-10 16:58:39 -07:00
cperry-goog
d6b6d5976d
Contributing guidelines ( #901 )
2025-06-10 16:56:29 -07:00
Seth Troisi
36f58a34b4
logConversation
...
loadConversation
/resume
clean up for review
2025-06-10 16:14:42 -07:00
Tommaso Sciortino
d79dafc577
Basic code assist support ( #910 )
2025-06-10 16:00:13 -07:00
Tommaso Sciortino
4e84431df3
Allow simple extensions for registering MCPservers ( #890 )
2025-06-10 15:48:39 -07:00
jerop
916cfee08d
update documentation for otel
2025-06-10 18:14:04 -04:00
Tolik Malibroda
e73d4752df
fix: Change sandbox network check command for docker ( #907 )
2025-06-11 00:13:36 +02:00
jerop
fa27bc832f
feat: enable gzip compression for otlp exporters
2025-06-10 17:30:50 -04:00
jerop
f0f7a30d9f
docs(telemetry): improve telemetry documentation
...
This commit enhances the telemetry documentation with several key improvements for clarity and usability.
- Adds a prominent note clarifying that telemetry is currently incompatible with sandbox mode.
- Updates the example JSON configuration to explicitly include sandbox: false to prevent user confusion.
- Introduces a new Configurations section with instructions to create the directory.
- Adds a new step for setting necessary environment variables for the Google Cloud setup.
- Makes the command for Google Cloud more portable by using the environment variable instead of a hardcoded path.
- Re-numbers the steps in the Google Cloud setup guide to maintain a logical flow.
2025-06-10 16:51:46 -04:00
Seth Troisi
6f4226fde1
Fix debug to work when not running under a sandbox
2025-06-10 13:33:18 -07:00
Abhi
9c3f34890f
feat: Add UI for /stats slash command ( #883 )
2025-06-10 15:59:52 -04:00
Seth Troisi
04e2fe0bff
Delete unneeded .eslintignore
2025-06-10 12:21:14 -07:00
anj-s
83660ec016
Fix null pointer for traces field and use the batch processor ( #884 )
2025-06-10 09:24:27 -07:00
Olcan
e38d2078cc
restricted networking for all sandboxing methods, new seatbelt profiles, updated docs, fixes to sandbox build, debugging through sandbox ( #891 )
2025-06-10 08:58:37 -07:00
Tommaso Sciortino
895c1f132f
GEMINI_SANDBOX=false should disable seatbelt ( #888 )
2025-06-10 06:22:02 -07:00
Bryan Morgan
1e3abf96b5
addressed b/423798481 ( #887 )
2025-06-10 08:47:46 -04:00
Olcan
749c010a0d
strip json comments in newly created sandbox_command.js (consistent w/ bash version) ( #886 )
2025-06-10 00:33:42 -07:00
Olcan
c7e82965b1
fix user settings in sandbox broken in recent change ( #885 )
2025-06-10 00:27:40 -07:00
Mark McDonald
5673c5f267
Add a window title when CLI is launched ( #787 )
2025-06-10 11:54:51 +08:00
Abhi
7f1252d364
feat: Display initial token usage metrics in /stats ( #879 )
2025-06-09 20:25:37 -04:00
Eddie Santos
6484dc9008
Add Windsurf in edit tool to modify changes, if installed ( #853 )
2025-06-09 16:01:06 -07:00
Tommaso Sciortino
5c9e526f0e
Code to support Oauth login ( #881 )
2025-06-09 15:14:06 -07:00
Seth Troisi
f11414a424
Use GOOGLE_API_KEY as default if both GEMINI and GOOGLE set ( #777 )
2025-06-09 13:54:11 -07:00
Brandon Keiji
6e5332f716
docs: add deployment documentation ( #874 )
2025-06-09 19:58:24 +00:00
matt korwel
a8a7f67d81
Delete tmperrors.txt ( #873 )
2025-06-09 19:30:24 +00:00
matt korwel
3b943c1582
Windows: Refactor Shell Scripts to Node.js for Cross-Platform Compatibility ( #784 )
2025-06-09 12:19:42 -07:00
Abhi
2182a1cd2c
Bump @google/genai dependency ( #870 )
2025-06-09 14:17:39 -04:00
Tommaso Sciortino
0613062fc8
Simplify user agent handling. ( #828 )
2025-06-09 09:31:27 -07:00
Olcan
87474e52d7
rename shell tool more intuitively as run_shell_command (from historical name of execute_bash_command inherited from terminal tool) ( #869 )
2025-06-09 08:57:30 -07:00
anj-s
c55a1d9012
Add support for sorting files search by recency threshold followed by lexicographic sorting ( #867 )
2025-06-09 08:07:24 -07:00
Olcan
a2fee6bdd3
fix mcp timeouts and missing description on mcp errors ( #868 )
2025-06-08 21:52:11 -07:00
Olcan
a3d11e8fef
replace reference to "README" with "docs" to avoid confusion for folks who do not have access to README ( #866 )
2025-06-08 19:19:33 -07:00
matt korwel
37edbd8c18
Rollforward AST changes to unblock Sandboxing ( #863 )
2025-06-08 19:07:25 -07:00
N. Taylor Mullen
ccdd1df039
feat(core): Add .gitignore support to getFolderStructure ( #865 )
2025-06-09 01:42:38 +00:00
N. Taylor Mullen
72fa01f62d
feat(git): Refactor gitignore handling to use ignore library instead of minimatch ( #864 )
2025-06-08 18:32:19 -07:00
Olcan
d061419452
enforce minimum lines shown/hidden ( #860 )
2025-06-08 17:11:16 -07:00
Olcan
8f993a6200
drop redundant -s flag for custom sandbox build ( #859 )
2025-06-08 16:43:04 -07:00
Olcan
7e73f57556
use -s flag (to skip npm install + build) for build_sandbox.sh when running via npm run build:all ( #858 )
2025-06-08 16:36:52 -07:00
N. Taylor Mullen
d62dad5575
Revert "Add batch editing capabilities to Edit Tool ( #648 )" ( #857 )
2025-06-08 23:20:43 +00:00
Bryan Morgan
152af28a34
Bryanmorgan/add tool source description ( #856 )
2025-06-08 19:07:05 -04:00
Bryan Morgan
31c14ea78f
Bryanmorgan/add mcp description support ( #855 )
2025-06-08 18:45:36 -04:00
N. Taylor Mullen
f2ea78d0e4
fix(tool-scheduler): Correctly pipe cancellation signal to tool calls ( #852 )
2025-06-08 22:42:49 +00:00
Abhi
7868ef8229
feat: Introduce session context and add session duration stat for /stats command ( #854 )
2025-06-08 18:01:02 -04:00
Scott Densmore
9104ac02f7
feat: display commit hash in detached HEAD state ( #832 )
2025-06-08 14:59:18 -07:00
Eddie Santos
394312b9c2
Add tests for core/utils/editor ( #851 )
2025-06-08 19:42:42 +00:00
N. Taylor Mullen
241c404573
fix(cli): correctly handle tool invocation cancellation ( #844 )
2025-06-08 11:14:45 -07:00
Leo
9efca40dae
feat: Add flow to allow modifying edits during edit tool call ( #808 )
2025-06-08 10:56:58 -07:00
matt korwel
584286cfd9
fix(deps): externalize tree-sitter ( #840 )
...
Submitting without approval to fix broken deployment on main. But also, we should lock this down.
2025-06-08 02:05:55 -07:00
N. Taylor Mullen
d0b78225a1
feat: update ctrl+t text ( #845 )
2025-06-08 07:16:08 +00:00
Keith Ballinger
5e01713803
chore: remove stray file_learnings.md ( #837 )
2025-06-07 23:02:59 -07:00
Keith Ballinger
84678c6448
Makefile for convenience ( #833 )
2025-06-07 22:22:32 -07:00
Keith Ballinger
569c977408
refactor(core): remove comments from geminiChat.ts ( #834 )
2025-06-07 22:20:59 -07:00
Scott Densmore
b46f220931
feat(cli): improve API error parsing and display ( #829 )
2025-06-07 22:04:57 -07:00
Abhi
6e4b84a60d
Fix Build Failure - Build fails in sandbox due to missing build toolchain ( #831 )
2025-06-08 01:04:20 -04:00
Abhi
f11eb41383
Fix typo in CONTRIBUTING.md ( #827 )
2025-06-07 19:40:16 -04:00
Tommaso Sciortino
389907ce65
Introduce ContentGeneratorConfig ( #826 )
2025-06-07 16:17:27 -07:00
Bryan Morgan
e95a6086fc
Bryanmorgan/add mcp description support ( #825 )
2025-06-07 18:30:56 -04:00
Tolik Malibroda
dd08582f81
fix: Rename missing occurence of gemini-code ( #824 )
2025-06-08 00:12:53 +02:00
Jacob Richman
ab44824e07
Auto insert @ when dragging and dropping files. ( #812 )
2025-06-07 14:48:56 -07:00
cperry-goog
18d6a11c04
refactor: rename gemini-code to gemini-cli ( #822 )
2025-06-07 14:27:22 -07:00
Tommaso Sciortino
d6cf4d5b0b
Eliminate createServerConfig() ( #821 )
2025-06-07 13:49:00 -07:00
Tommaso Sciortino
10b52ac4e8
Fix missing arg warning in tests ( #820 )
2025-06-07 13:39:53 -07:00
Eddie Santos
27fdd1b6e6
Add embedder ( #818 )
2025-06-07 13:38:05 -07:00
cperry-goog
51cd5ffd91
fix(build): correct sandbox warning link ( #819 )
2025-06-07 12:42:32 -07:00
matt korwel
f1a4e5d4d3
Creating Node AST Tool. ( #756 )
2025-06-07 12:07:58 -07:00
Bryan Morgan
28ff62e7b1
Added /mcp command support and cleaned up broken tests ( #817 )
2025-06-07 15:06:18 -04:00
Tommaso Sciortino
6ea4479064
Push model-switching logging into loadCliConfig ( #815 )
2025-06-07 11:12:30 -07:00
Tommaso Sciortino
680f4cdd61
More version simplifiction. ( #810 )
2025-06-07 10:54:23 -07:00
cperry-goog
63757d6a7a
docs: update and reorganize documentation ( #806 )
2025-06-07 10:47:30 -07:00
Eddie Santos
dcaecde844
toggle off ( #809 )
2025-06-07 00:06:15 -07:00
Keith Ballinger
0c86874677
Add batch editing capabilities to Edit Tool ( #648 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-06 22:54:37 -07:00
Tommaso Sciortino
76ec9122c0
clean up version lookup code ( #804 )
2025-06-06 16:21:20 -07:00
cperry-goog
e94a10023d
adding very important phrases ( #802 )
2025-06-06 14:49:40 -07:00
Jacob Richman
2f54aa888a
feat(ui): add cursor to empty input prompt ( #800 )
2025-06-06 13:44:11 -07:00
jerop
21acdee0a0
docs: Initialize tutorials section with MCP server example
...
This commit adds a new `tutorials.md` file to the CLI documentation.
This section is intended to house various tutorials for using Gemini CLI.
The initial content includes a tutorial on setting up Model Context
Protocol (MCP) servers, using the GitHub MCP server as an example.
The `docs/cli/index.md` has been updated to include a link to this
new tutorials section.
2025-06-06 13:05:13 -04:00
Jacob Richman
89aca349cf
Exit with an error message if parsing settings.json fails. ( #747 )
2025-06-06 09:56:45 -07:00
jerop
b4a6b16227
Test: Verify concatenated env var resolution in settings
...
Adds a test case to `settings.test.ts` to specifically verify
the correct resolution of multiple environment variables concatenated
within a single string value (e.g., ${HOST}:${PORT} ).
2025-06-06 11:47:37 -04:00
jerop
8c28250bb3
Refactor: Improve env var resolution in settings
...
Refactors the `resolveEnvVarsInObject` function in settings to
explicitly handle primitive types (null, undefined, boolean, number)
at the beginning of the function. This clarifies the logic for
subsequent string, array, and object processing.
2025-06-06 11:47:37 -04:00
jerop
4e9d365407
feat: Enable environment variable substitution in settings
...
This commit introduces the ability to use system environment variables
within the settings files (e.g., `settings.json`). Users can now
reference environment variables using the `${VAR_NAME}` syntax.
This enhancement improves security and flexibility, particularly
for configurations like MCP server settings, which often require
sensitive tokens.
Previously, to configure an MCP server, a token might be directly
embedded:
```json
"mcpServers": {
"github": {
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "pat_abc123"
}
// ...
}
}
```
With this change, the same configuration can securely reference an
environment variable:
```json
"mcpServers": {
"github": {
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
}
// ...
}
}
```
This allows users to avoid storing secrets directly in configuration files.
2025-06-06 11:47:37 -04:00
Jacob Richman
9ad615c2a4
Fix build break due to changes to theme. ( #796 )
2025-06-06 08:05:00 -07:00
Jacob Richman
4262f5b0de
feat(cli): respect the NO_COLOR env variable ( #772 )
2025-06-06 07:55:28 -07:00
DeWitt Clinton
c80ff146d2
Reduce noisy logging for missing .geminiignore file. ( #793 )
2025-06-06 07:47:43 -07:00
Eddie Santos
368e9ab4d8
Add Gemini code review agent to repo ( #782 )
2025-06-05 21:37:06 -07:00
matt korwel
2f51c22141
Title & Big text Updates ( #781 )
2025-06-05 18:14:02 -07:00
Miguel Solorio
8a0a2523ca
Allow themes to theme the UI ( #769 )
2025-06-05 14:35:47 -07:00
Brandon Keiji
2285bba66e
refactor: remove unnecessary useRefs ( #780 )
2025-06-05 21:33:24 +00:00
Olcan
d3a1026ae3
skip npm build for custom sandbox ( #779 )
2025-06-05 14:15:43 -07:00
N. Taylor Mullen
1ffe027d8a
Add support for configured mcp client timeout. ( #775 )
2025-06-05 20:35:00 +00:00
Tommaso Sciortino
e59e18251b
Introduce generate content interface ( #755 )
2025-06-05 13:26:38 -07:00
Jerop Kipruto
2ebf2fbc82
OpenTelemetry Integration & Telemetry Control Flag ( #762 )
2025-06-05 13:04:25 -07:00
Olcan
d3e43437a0
use execSync (vs spawnSync) so launch fails if build_sandbox fails; tweaks in build_sandbox to fix some shellcheck warnings, and to simplify the logic slightly ( #767 )
2025-06-05 13:02:56 -07:00
Eddie Santos
e02868bb1a
Bump default model to gemini-2.5-pro-preview-06-05 ( #765 )
2025-06-05 11:52:36 -07:00
Eddie Santos
422c763a55
Add support for .geminiignore file ( #757 )
2025-06-05 10:15:27 -07:00
Tolik Malibroda
1d20cedf03
fix: Disable automatic image building if BUILD_SANDBOX is not provided ( #764 )
2025-06-05 18:47:39 +02:00
Tolik Malibroda
4d4cf0f2f9
feat: Add multi-stage docker build support for custom sandbox.Dockerfile ( #746 )
2025-06-05 17:46:54 +02:00
Miguel Solorio
a8ac9b1fac
Add Theme docs ( #753 )
2025-06-05 08:10:05 -07:00
anj-s
78b2a28fb6
Checks for diff changes before displaying the code snippet ( #751 )
2025-06-05 06:48:03 -07:00
Jacob Richman
aa386d135b
Jacob314/memory fixes ( #754 )
...
Address multiple possible memory leaks found bystatic analysis of the codebase. The primary source of the leaks was event listeners on child processes and global objects that were not being properly removed, potentially causing their closures to be retained in memory indefinitely particularly for processes that did not exit.
There are two commits. A larger one made by gemini CLI and a smaller one by me to make sure we always disconnect child processes as part of the cleanup methods. These changes may not actually fix any leaks but do look like reasonable defensive coding to avoid leaking event listeners or child processes.
The following files were fixed:
This is Gemini's somewhat overconfident description of what it did.
packages/core/src/tools/shell.ts: Fixed a leak where an abortSignal listener was not being reliably removed.
packages/cli/src/utils/readStdin.ts: Fixed a significant leak where listeners on process.stdin were never removed.
packages/cli/src/utils/sandbox.ts: Fixed leaks in the imageExists and pullImage helper functions where listeners on spawned child processes were not being removed.
packages/core/src/tools/grep.ts: Fixed three separate leaks in the isCommandAvailable check and the git grep and system grep strategies due to un-removed listeners on child processes.
packages/core/src/tools/tool-registry.ts: Corrected a leak in the execute method of the DiscoveredTool class where listeners on the spawned tool process were not being removed.
2025-06-05 06:40:33 -07:00
N. Taylor Mullen
822803d9d6
Fix "npx https:...." header issue ( #759 )
2025-06-05 07:00:34 +00:00
N. Taylor Mullen
77afd37c2e
fix(cli): Handle non-array tool response parts ( #758 )
2025-06-05 06:25:57 +00:00
Eddie Santos
d99d132cdf
Add /tools slash command to view available tools ( #752 )
2025-06-04 14:01:38 -07:00
Olcan
fdc8bd8ed9
mention BUILD_SANDBOX for custom sandboxing ( #749 )
2025-06-04 12:58:44 -07:00
Riccardo Carlesso
13b55c6e68
Docs: Update architecture diagram with Google colors (for future aricles) ( #718 )
2025-06-04 12:33:07 -07:00
Tommaso Sciortino
4192cfb092
CLI_TITLE env var for setting the CLI title ( #748 )
2025-06-04 10:44:50 -07:00
Miguel Solorio
a2f03636a5
Update light themes ( #726 )
2025-06-04 10:41:03 -07:00
Keith Ballinger
a14aada945
Fix broken documentation links after server->core folder rename ( #740 )
2025-06-04 10:02:07 -07:00
N. Taylor Mullen
44aff769a3
Bring back 2.5-pro usage ( #744 )
...
https://chat.google.com/room/AAQApBm33UQ/8DQw4Ykp8f0/8DQw4Ykp8f0?cls=10
2025-06-04 09:29:14 -07:00
N. Taylor Mullen
afc30e314f
feat(accessibility): Add option to disable loading phrases ( #745 )
2025-06-04 07:46:57 +00:00
N. Taylor Mullen
d179b3aae4
refactor(core): Centralize tool response formatting ( #743 )
2025-06-04 07:24:25 +00:00
Tolik Malibroda
4b2af10b04
fix: Fix piped input mode in sandbox ( #739 )
2025-06-04 08:24:33 +02:00
Marat Boshernitsan
7de790fbf2
Fix several bugs in prompt history ( #734 )
...
Co-authored-by: Marat Boshernitsan <maratb@google.com >
2025-06-03 23:01:26 -07:00
Keith Ballinger
c313762ba0
Ignore folders files ( #651 )
...
# Add .gitignore-Aware File Filtering to gemini-cli
This pull request introduces .gitignore-based file filtering to the gemini-cli, ensuring that git-ignored files are automatically excluded from file-related operations and suggestions throughout the CLI. The update enhances usability, reduces noise from build artifacts and dependencies, and provides new configuration options for fine-tuning file discovery.
Key Improvements
.gitignore File Filtering
All @ (at) commands, file completions, and core discovery tools now honor .gitignore patterns by default.
Git-ignored files (such as node_modules/, dist/, .env, and .git) are excluded from results unless explicitly overridden.
The behavior can be customized via a new fileFiltering section in settings.json, including options for:
Turning .gitignore respect on/off.
Adding custom ignore patterns.
Allowing or excluding build artifacts.
Configuration & Documentation Updates
settings.json schema extended with fileFiltering options.
Documentation updated to explain new filtering controls and usage patterns.
Testing
New and updated integration/unit tests for file filtering logic, configuration merging, and edge cases.
Test coverage ensures .gitignore filtering works as intended across different workflows.
Internal Refactoring
Core file discovery logic refactored for maintainability and extensibility.
Underlying tools (ls, glob, read-many-files) now support git-aware filtering out of the box.
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-04 04:40:46 +00:00
Cindy Xing
d85f09ac51
Update configuration.md ( #722 )
2025-06-03 21:33:02 -07:00
N. Taylor Mullen
54eb1419a8
Update package-lock.json ( #738 )
2025-06-04 04:05:39 +00:00
Keith Ballinger
7108921691
fix Cannot find module @rollup/rollup-linux-x64-gnu error ( #736 )
2025-06-03 19:52:53 -07:00
Olcan
80a445c7ae
bandaid for broken mcp calls ( #732 )
2025-06-03 14:40:36 -07:00
Olcan
12059eb4ca
fix BUILD_SANDBOX env var for updating sandbox while running linked binary ( #729 )
2025-06-03 14:02:00 -07:00
Olcan
9df94103ac
remove noop code ( #728 )
2025-06-03 13:47:53 -07:00
Olcan
00a9f654a3
fixed strip-ansi dep by installing it in core package (also ran npm install in cli package that resulted in the minor changes here) ( #727 )
2025-06-03 13:37:59 -07:00
Brandon Keiji
e96fd677ee
fix: do not try to pull development sandbox image from the internet ( #725 )
2025-06-03 19:32:17 +00:00
Brandon Keiji
546e033081
feat: notify user when chat context is compressed ( #724 )
2025-06-03 19:19:49 +00:00
Brandon Keiji
fa5b616a10
feat: compress chat history when we approach token limit ( #711 )
2025-06-03 18:54:11 +00:00
N. Taylor Mullen
080af01715
Fix flash preview ( #723 )
2025-06-03 18:01:59 +00:00
N. Taylor Mullen
c5099e9025
Workaround Gemini API break - Use flash 04-17 ( #721 )
2025-06-03 17:47:20 +00:00
Olcan
e190249732
link tool discovery/call docs from core configuration doc ( #720 )
2025-06-03 10:22:43 -07:00
Allen Hutchison
72f5ec3725
feat(cli): randomize and expand witty loading phrases ( #704 )
2025-06-03 10:12:47 -07:00
Olcan
d967752833
document mcp server trust option ( #719 )
2025-06-03 10:08:34 -07:00
anj-s
fffa06f0b1
Modify shortenPath and add param validation ( #663 )
2025-06-03 08:59:17 -07:00
anj-s
e9d43b9388
Add params check for writeTool ( #708 )
2025-06-03 07:47:27 -07:00
N. Taylor Mullen
c71d6ddc3b
Fix: Ensure MCP tools are discovered from slow-starting servers ( #717 )
2025-06-03 07:40:51 +00:00
N. Taylor Mullen
5f6f6a95a2
Refactor: Make MCP server discovery non-blocking ( #716 )
2025-06-03 06:37:02 +00:00
N. Taylor Mullen
8ab74ef1bb
Refactor: Use config.getGeminiClient() for GeminiClient instantiation ( #715 )
2025-06-03 05:30:52 +00:00
N. Taylor Mullen
cf84f1af68
Docs: Enhance "Writing Tests" section in GEMINI.md ( #688 )
2025-06-02 21:46:20 -07:00
N. Taylor Mullen
cf3e1a07c1
Remove redundant variable. ( #713 )
2025-06-02 21:18:01 -07:00
Brandon Keiji
74801e9004
refactor: maintain 1 GeminiChat per GeminiClient ( #710 )
2025-06-02 19:10:54 -07:00
Jacob Richman
447826ab40
fix(cli): restore first-launch theme prompt ( #703 )
2025-06-02 19:09:11 -07:00
Scott Densmore
2ab7e3da71
feat(cli): Allow custom title in CLI header ( #706 )
2025-06-02 17:09:55 -07:00
Bryan Morgan
91fa770196
upate to PR 669 ( #700 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-02 16:59:38 -07:00
N. Taylor Mullen
8563e46ade
React to Gemini API break - Thought Inclusion ( #705 )
2025-06-02 23:32:45 +00:00
Allen Hutchison
6fb07f0b50
fix(ci): correct input name for core coverage summary ( #698 )
2025-06-02 15:53:26 -07:00
N. Taylor Mullen
6020c760b5
Feat: Enable YOLO mode for non-interactive execution ( #702 )
2025-06-02 22:35:03 +00:00
Scott Densmore
e428707e07
Refactor: Centralize GeminiClient in Config ( #693 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-02 14:55:51 -07:00
Olcan
1dcf0a4cbd
strip ansi from shell output ( #699 )
2025-06-02 14:50:12 -07:00
Jacob Richman
51949f3121
Fix bug pasting multiline strings ( #632 )
2025-06-02 14:31:35 -07:00
Olcan
8365c8f954
prefer to load gemini-specific .env file from .gemini folder when it exists there ( #697 )
2025-06-02 14:16:48 -07:00
Allen Hutchison
7f20425c98
feat(cli): add pro model availability check and fallback to flash ( #608 )
2025-06-02 13:55:54 -07:00
Olcan
59b6267b2f
allow toolDiscoveryCommand to return function declarations with or without a tool wrapper; fully document both toolDiscoveryCommand and toolCallCommand with examples and pointers to API docs ( #696 )
2025-06-02 13:41:49 -07:00
N. Taylor Mullen
58597c29d3
refactor: Update MCP tool discovery to use @google/genai - Also fixes JSON schema issues. ( #682 )
2025-06-02 20:39:25 +00:00
Tolik Malibroda
0795e55f0e
feat: Add --yolo mode that automatically accepts all tools executions ( #695 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-02 22:05:45 +02:00
N. Taylor Mullen
42bedbc3d3
feat: Refactor CLI header for customizable logo text ( #658 )
2025-06-02 11:45:09 -07:00
Miguel Solorio
33052018a2
Color enhancements ( #680 )
2025-06-02 11:20:58 -07:00
Olcan
c5869db080
enable async tool discovery by making the registry accessor async; remove call to discoverTools that caused duplicate discovery ( #691 )
2025-06-02 09:56:32 -07:00
N. Taylor Mullen
467dec4edf
Add a note about Gemini API usage and add a link to the TOS. ( #681 )
2025-06-02 09:42:24 -07:00
Sandy Tao
4a455a053a
Add documentation about debugging using React DevTools ( #679 )
2025-06-02 09:16:03 -07:00
N. Taylor Mullen
34b81abd9c
fix: Ensure all tool calls are complete before submitting responses ( #689 )
2025-06-02 08:50:28 +00:00
N. Taylor Mullen
27ba28ef76
fix: Refine model message consolidation for improved model interaction ( #685 )
2025-06-02 07:28:14 +00:00
N. Taylor Mullen
6d417186cb
Enable "Debug Test" config to debug Server or CLI tests. ( #683 )
2025-06-02 07:07:10 +00:00
Olcan
d009267801
more strict italics: delimiters cannot be preceded/followed by \w or [./\\]\S ( #677 )
2025-06-01 16:52:31 -07:00
N. Taylor Mullen
2828fc6d66
feat: Implement non-interactive mode for CLI ( #675 )
2025-06-01 23:11:37 +00:00
N. Taylor Mullen
c51d6cc9d3
fix: Display MCP server count in context summary ( #674 )
2025-06-01 22:48:48 +00:00
Bryan Morgan
f7a2442fac
Added replace tool ability to replace more than 1 occurrence ( #669 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-06-01 17:49:48 -04:00
N. Taylor Mullen
f2a8d39f42
refactor: Centralize tool scheduling logic and simplify React hook ( #670 )
2025-06-01 14:16:24 -07:00
Leo
edc12e416d
Update edit tool validation function to override validateToolParams ( #667 )
2025-06-01 11:18:43 -07:00
anj-s
9dae07784b
Fix for validating getDescription in read_file tool call ( #660 )
2025-06-01 00:02:00 -07:00
Scott Densmore
c414512f19
Fix: Make file path case-insensitive in @-command ( #659 )
2025-05-31 16:19:14 -07:00
Bryan Morgan
b1d693786c
Revert "cleanup: removed duplicate check from Config.registerCoreTool()" ( #657 )
...
Didn't notice the casing difference - duh....
2025-05-31 20:52:52 +00:00
Bryan Morgan
b228923446
cleanup: removed duplicate check from Config.registerCoreTool() ( #656 )
2025-05-31 16:50:19 -04:00
Allen Hutchison
53bf778497
feat: allow custom filename for context files ( #654 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-05-31 12:49:28 -07:00
Miguel Solorio
cbc1614b84
Update default & ANSI theme names ( #637 )
2025-05-31 11:10:52 -07:00
Miguel Solorio
c350fbef7f
Add default build task for VS Code ( #639 )
2025-05-31 11:09:25 -07:00
Taylor Mullen
1a84d8f674
Test: Add comprehensive tests for useToolScheduler hook
...
- Introduces a suite of tests for the hook, covering various scenarios including:
- Successful tool execution
- Tool not found errors
- Errors during
- Errors during tool execution
- Tool confirmation (approved and cancelled) - (currently skipped)
- Live output updates - (currently skipped)
- Cancellation of tool calls (before execution and during approval) - (currently skipped)
- Execution of multiple tool calls
- Preventing scheduling while other calls are running - (currently skipped)
- Includes tests for the utility function to ensure correct mapping of tool call states to display objects.
- Mocks dependencies like , , and individual instances.
- Uses fake timers to control asynchronous operations.
Note: Some tests involving complex asynchronous interactions (confirmations, live output, cancellations) are currently skipped due to challenges in reliably testing these scenarios with the current setup. These will be addressed in future work.
2025-05-31 02:55:36 -07:00
Taylor Mullen
ae8e2106bb
Fix: Update code coverage reporting for core rename
...
- Renames "server" to "core" in GitHub Actions workflow and comment posting action.
- This ensures that code coverage paths and labels are accurate after the package rename.
2025-05-31 01:50:41 -07:00
Taylor Mullen
76cee17417
Refactor: Generalize VSCode launch configuration for debugging tests
...
- Consolidates multiple specific test debug configurations into a single, more flexible configuration named "Debug Test File".
- Introduces an input variable `testFile` to prompt the user for the specific test file path, defaulting to a sample test file.
- This change simplifies the launch configuration and makes it easier to debug any test file without needing a dedicated configuration for each.
2025-05-31 01:28:21 -07:00
Olcan
0dbd12e295
expose shell process group id to model, along with instructions for how to terminate or signal the group ( #645 )
2025-05-30 23:25:44 -07:00
Taylor Mullen
190e6be800
Fix: Update sandbox build to use new core package name
...
- The `packages/core` tarball name changed from `gemini-code-server-*.tgz` to `gemini-code-core-*.tgz` after the `server` to `core` rename.
- This updates `scripts/build_sandbox.sh` and the root `Dockerfile` to use the new `gemini-code-core-*.tgz` naming, resolving the CI failure during the Docker build step of the publish process.
2025-05-30 22:41:54 -07:00
Scott Densmore
bda7ec94df
Fix: Update git branch watcher to use .git/logs/HEAD ( #643 )
2025-05-30 21:08:56 -07:00
Daniel Young Lee
1468047081
feat: Implement delayed Ctrl+C exit prompt
...
This change introduces a small delay after the first Ctrl+C press, prompting the user to press Ctrl+C again to exit. This helps prevent accidental termination of the application.
- Added `exitOnCtrlC={false}` to the Ink render options in `gemini.tsx` to enable custom Ctrl+C handling.
- Implemented logic in `App.tsx` to:
- Display "Press Ctrl+C again to exit." for 2 seconds after the first Ctrl+C.
- Exit the application if Ctrl+C is pressed again during this period.
- Revert to normal operation if the second Ctrl+C is not pressed within the timeout.
- Defined a constant `CTRL_C_PROMPT_DURATION_MS` for the timeout duration.
2025-05-30 20:51:07 -07:00
Scott Densmore
7012c86336
Fix/cli version unknown ( #642 )
2025-05-30 20:45:15 -07:00
Scott Densmore
98699a0ab5
Refactor: Align build scripts with core package rename ( #641 )
2025-05-30 20:16:35 -07:00
Tommaso Sciortino
21fba832d1
Rename server->core ( #638 )
2025-05-30 18:25:47 -07:00
Olcan
c81148a0cc
use json block for mcp tool output (and re-enable markdown rendering) ( #635 )
2025-05-30 15:59:23 -07:00
Olcan
2e57989aec
confirm mcp tool executions from untrusted servers (per "trust" setting) ( #631 )
2025-05-30 15:32:21 -07:00
Allen Hutchison
a60e51f44d
fix(ci): Adjust reporting for PRs from forks ( #627 )
2025-05-30 15:30:09 -07:00
Jacob Richman
01768d7759
feat: add --show_memory_usage flag to display memory usage in status bar ( #606 )
2025-05-30 15:18:01 -07:00
Allen Hutchison
3291ffbe09
fix(cli): Clear input buffer before onSubmit in InputPrompt ( #633 )
2025-05-30 15:16:06 -07:00
Olcan
4225567303
disable markdown for discovered (mcp) tools ( #630 )
2025-05-30 14:12:51 -07:00
Olcan
1a5fd2ccb2
add flags for markdown rendering and live updating to Tool to avoid special-casing shell tool by name, and open door for other tools to specify their rendering/updating ( #629 )
2025-05-30 13:59:05 -07:00
Brandon Keiji
0869fd168f
fix(sandbox): pull sandbox image if it doesnt exist locally ( #628 )
2025-05-30 20:49:47 +00:00
Brandon Keiji
cf82b6e127
fix(sandbox): prepare package.json before building sandbox image ( #626 )
2025-05-30 19:57:46 +00:00
Olcan
a0ba65944f
disable markdown rendering of shell tool output ( #625 )
2025-05-30 12:43:59 -07:00
Brandon Keiji
31a7affb74
feat(sandbox): use package config to dictate sandbox image name ( #624 )
2025-05-30 19:28:46 +00:00
cperry-goog
9f85f8ed29
docs: Update README, CONTRIBUTING, and CLI configuration docs ( #591 )
...
cleaning up for now, will take another pass
2025-05-30 12:20:12 -07:00
Brandon Keiji
816cc08a8f
fix(sandbox): set default env var to 'gemini-cli-sandbox' ( #620 )
2025-05-30 18:02:27 +00:00
N. Taylor Mullen
8c46108a85
feat: Implement retry with backoff for API calls ( #613 )
2025-05-30 17:57:00 +00:00
Taylor Mullen
c5608869c0
Change ReadFile to not have a result display.
...
- It's verbose on its own; however, if file content is truncated we'll indicate that in the result display.
2025-05-30 10:48:10 -07:00
Taylor Mullen
9537ff4762
feat(server): consolidate adjacent model content in chat history
...
- Consolidates consecutive model messages into a single message in the chat history.
- This prevents multiple model messages from being displayed in a row, improving readability.
- This may also address some instances of 500 errors that could have been caused by multiple, rapidly succeeding model messages.
- Adds tests for the new consolidation logic.
Fixes https://b.corp.google.com/issues/421010429
2025-05-30 10:43:48 -07:00
Olcan
7c4a5464f6
truncate (hide) tool output at the top, add some spacing, also fix shell output interval change accidentally undone in a previous commit ( #619 )
2025-05-30 01:58:09 -07:00
Olcan
a3b557222a
tweaks to shell abort logic based on feedback ( #618 )
2025-05-30 01:35:03 -07:00
Olcan
094b9dc474
use npx json instead of jq ( #617 )
2025-05-30 01:12:36 -07:00
Olcan
8935a248f6
allow aborting of shell mode (!) commands, similar to shell tool commands. fix bug that prevented aborts after first abort. more robust killing logic ( #616 )
2025-05-30 00:46:43 -07:00
Olcan
b0aeeb53b1
update shell output at an interval to reduce flicker ( #614 )
2025-05-30 00:02:30 -07:00
Brandon Keiji
2582c20e2a
fix: publish @gemini-code/server ( #605 )
2025-05-29 23:55:34 +00:00
Brandon Keiji
7468d3cddf
fix(sandbox): add SHORT_SHA to image tag ( #604 )
2025-05-29 23:43:20 +00:00
Olcan
1c066548b4
allow comments in settings when parsed in scripts via jq ( #603 )
2025-05-29 16:25:16 -07:00
Olcan
fe049c286f
fix mcp tool names that are long or have invalid characters (based on 400 error) ( #602 )
2025-05-29 16:13:11 -07:00
Seth Troisi
2db5d83023
fix name in package.json
2025-05-29 15:56:05 -07:00
Jacob Richman
dab7517622
Refactor read-file and support images. ( #480 )
2025-05-29 15:30:18 -07:00
Brandon Keiji
f21abdd1f0
fix(sandbox): use CMD for default entrypoint ( #601 )
2025-05-29 22:16:39 +00:00
Olcan
4b7248fc46
allow writing to user cache directory on macos (fixes use of lyria mcp server [to generate songs] under seatbelt) ( #600 )
2025-05-29 15:06:09 -07:00
Allen Hutchison
5dbc83fabc
feat: Enhance web_fetch tool to process prompts with URLs using Gemini API ( #587 )
2025-05-29 15:02:31 -07:00
Seth Troisi
4b4ba85313
improve read-many-files output ( #596 )
2025-05-29 14:03:24 -07:00
Brandon Keiji
dc94a03f39
feat: publish root Dockerfile to our image registry ( #599 )
2025-05-29 14:01:44 -07:00
Jacob Richman
6a1b94529b
Change Config to use named parameters. ( #593 )
2025-05-29 13:51:17 -07:00
Taylor Mullen
d74c0f581b
refactor: Extract MCP discovery from ToolRegistry
...
- Moves MCP tool discovery logic from ToolRegistry into a new, dedicated MCP client (mcp-client.ts and mcp-tool.ts).
- Updates ToolRegistry to utilize the new MCP client.
- Adds comprehensive tests for the new MCP client and its integration with ToolRegistry.
Part of https://github.com/google-gemini/gemini-cli/issues/577
2025-05-28 17:28:45 -07:00
Allen Hutchison
c413988ae0
fix(ci): Only run post_coverage_comment job on pull_request events ( #588 )
2025-05-28 17:09:13 -07:00
Allen Hutchison
9ee5eadac0
fix(cli): Support multiple @file references in atCommandProcessor ( #590 )
2025-05-28 17:08:05 -07:00
Brandon Keiji
fd6f6b02ea
feat: add git branch name to footer ( #589 )
2025-05-28 16:30:05 -07:00
Olcan
0d99398689
much improved support for background processes, avoiding termination (via SIGPIPE) or eventual blocking (e.g. due to filled OS buffers) ( #586 )
2025-05-28 14:45:46 -07:00
Jacob Richman
00805cb2cd
Cleanup: Remove low value StreamingContextType interface. ( #585 )
2025-05-28 12:46:08 -07:00
Jacob Richman
05a49702d8
Refactor: Add GeminiRespondingSpinner to make use of streamingState idiomatic ( #583 )
2025-05-28 11:17:19 -07:00
DeWitt Clinton
98dcf43214
Add a keybinding for ctrl+w to delete the previous word. ( #582 )
...
Adds the following new keybindings to the cli text input buffer:
- `Ctrl+W` : Delete previous word
2025-05-28 09:59:25 -07:00
DeWitt Clinton
27a773d5b2
Display git commit info in the /about section. ( #567 )
...
This change detects the most recent git commit short hash and writes it to the `GIT_COMMIT_INFO` constant in `packages/cli/src/generated/git-commit.sh`, optionally appending the string "(local modifications)" if additional local changes after that commit are detected.
If set, this string is displayed in the `/about` dialog as well as passed into the `/bug` template.
Example:
```
> /about
╭───────────────────────────────────────────────────────────────────────────╮
│ │
│ About Gemini CLI │
│ │
│ CLI Version development │
│ Git Commit 43370ab (local modifications) │
│ Model gemini-2.5-pro-preview-05-06 │
│ Sandbox sandbox-exec (minimal) │
│ OS darwin v23.11.0 │
│ │
╰───────────────────────────────────────────────────────────────────────────╯
```
Additionally, this change updates `.gitignore` to ignore the generated files, `scripts/clean.sh` to remove them, and adds a `npm run generate` stage for this and any other generators we need to write.
2025-05-28 00:04:26 -07:00
Taylor Mullen
f2f2ecf9d8
feat: Allow cancellation of in-progress Gemini requests and pre-execution checks
...
- Implements cancellation for Gemini requests while they are actively being processed by the model.
- Extends cancellation support to the logic within tools. This allows users to cancel operations during the phase where the system is determining if a tool execution requires user confirmation, which can include potentially long-running pre-flight checks or LLM-based corrections.
- Underlying LLM calls for edit corrections (within and ) and next speaker checks can now also be cancelled.
- Previously, cancellation of the main request was not possible until text started streaming, and pre-execution checks were not cancellable.
- This change leverages the updated SDK's ability to accept an abort token and threads s throughout the request, tool execution, and pre-execution check lifecycle.
Fixes https://github.com/google-gemini/gemini-cli/issues/531
2025-05-27 23:46:37 -07:00
Olcan
bfeaac8441
live output from shell tool ( #573 )
2025-05-27 15:40:18 -07:00
Olcan
0d5f7686d7
fix tool cancellation while executing ( #575 )
2025-05-27 15:22:30 -07:00
Brandon Keiji
c1395a8808
fix: change entrypoint from 'gemini-code' to 'gemini' in published sandbox ( #574 )
2025-05-27 22:19:43 +00:00
Brandon Keiji
d4ae1ede39
refactor: use React strict mode ( #569 )
2025-05-27 14:40:46 -07:00
Olcan
16c16127e7
fix sandboxing anchor ( #572 )
2025-05-27 14:01:23 -07:00
Olcan
0c5673875b
improve shell tool output when cancelled in debug mode ( #571 )
2025-05-27 13:47:40 -07:00
Allen Hutchison
4e3c539f5e
feat: Publish test coverage summaries to PRs ( #513 )
2025-05-27 12:45:28 -07:00
Olcan
9595e98db8
replace error with warning if sandbox build is triggered without enabling, improve README to reduce confusion ( #570 )
2025-05-27 10:55:07 -07:00
sasha-gitg
3511e84dc3
fix: default to Gemini API if GEMINI_API_KEY is set and when GOOGLE_GENAI_USE_VERTEXAI is set to True ( #566 )
2025-05-27 10:00:07 -07:00
Taylor Mullen
b3f52e215a
feat: Replace SQLite with JSON logging for macOS sandbox compatibility
...
- Removes the sqlite3 dependency and refactors the logging mechanism to use a JSON file (logs.json) instead of a database.
- This change is a temporary workaround to address issues with macOS sandboxing that were caused by the SQLite native module.
- Storing all logs in a single JSON file may introduce scalability concerns in the future.
Fixes https://github.com/google-gemini/gemini-cli/issues/522
2025-05-26 16:13:37 -07:00
Taylor Mullen
9e1cfca53f
Fix(chat): Finalize next speaker detection logic
...
- Enhance `checkNextSpeaker` to handle cases where the last message is a function response or an empty model message.
- If the last message is a function response, the model should speak next.
- If the last message is an empty model message, the model should speak next.
- This ensures more robust and accurate determination of the next speaker in the conversation, completing the fix for the issue.
- Updated tests.
Fixes https://github.com/google-gemini/gemini-cli/issues/551
2025-05-26 15:21:45 -07:00
Taylor Mullen
c92d4edb89
Fix(chat): Ensure model responds when next speaker check indicates
...
- Corrects an issue where the `nextSpeakerCheck` would determine the model should speak next, but the models response was not properly propagated due to a missing `yield*` in a recursive call within `sendMessageStream`.
- This change ensures that when the model is designated as the next speaker, its generated content is correctly unwoven and returned, allowing the conversation to proceed as expected.
Part of https://github.com/google-gemini/gemini-cli/issues/551
2025-05-26 14:37:13 -07:00
Taylor Mullen
597dc86a9c
Fix(chat): Prevent empty model response after function call
...
- Addresses a Gemini model bug where it may return an empty content object after a function response.
- Previously, the SDK attempted to inject an empty model message, which could disrupt curated history.
- This change modifies our custom class to detect this scenario using an utility and avoid pushing an unnecessary empty model message, thus preserving history integrity.
Workaround for https://b.corp.google.com/issues/420354090
Part of https://github.com/google-gemini/gemini-cli/issues/551
2025-05-26 14:29:24 -07:00
Taylor Mullen
480549e02e
Refactor(chat): Introduce custom Chat class for future modifications
...
- Copied the `Chat` class from `@google/genai` into `packages/server/src/core/geminiChat.ts`.
- This change is in preparation for future modifications to the chat handling logic.
- Updated relevant files to use the new `GeminiChat` class.
Part of https://github.com/google-gemini/gemini-cli/issues/551
2025-05-26 14:20:28 -07:00
Taylor Mullen
02503a3248
Chore(deps): Upgrade @google/genai to v1.0.1
...
- Upgraded the @google/genai SDK from ^0.13.0 to ^1.0.1.
- Addressed a related type error in `packages/server/src/tools/edit.test.ts` by updating a type assertion.
Part of https://github.com/google-gemini/gemini-cli/issues/551
2025-05-26 14:09:43 -07:00
Taylor Mullen
70d469ccd3
Fix(diff): Hide whitespace changes in diffs with content changes
...
- Updated the diff generation in `edit.ts` and `write-file.ts` to include the `ignoreWhitespace: true` option.
- This ensures that whitespace-only changes are not highlighted in the diff output when there are other content modifications, making the diffs cleaner and easier to review.
- Extract default diffing options into single source of truth.
Fixes https://github.com/google-gemini/gemini-cli/issues/548
2025-05-25 22:45:53 -07:00
Taylor Mullen
8440b971f5
Fix(cli): Prevent premature input box reactivation during tool confirmation
...
- Introduced a 'validating' state for tool calls to prevent the input box from reappearing while waiting for a tool's `shouldConfirmExecute` method to complete.
- When a tool call is initiated, it's now immediately set to a 'validating' status. This ensures the UI remains in a busy/responding state.
- `useGeminiStream` now considers the 'validating' state as part of `StreamingState.Responding`.
- `useToolScheduler` has been updated to:
- Set the initial status of new tool calls to 'validating'.
- Asynchronously perform the `shouldConfirmExecute` check.
- Transition to 'awaiting_approval' or 'scheduled' based on the check's outcome.
- This resolves an issue where a slow `shouldConfirmExecute` could lead to the input prompt becoming active again before the tool call lifecycle was fully determined. While 'validating' is currently treated similarly to 'executing' in the UI, this new state provides a foundation for more customized user experiences during this phase in the future.
Fixes https://github.com/google-gemini/gemini-cli/issues/527
2025-05-25 16:06:33 -07:00
Taylor Mullen
7408c78dbb
Change tool call spinner to be different.
...
- This differentiates the tool calling spinner from one that matches the normal loading indiator to somethign a little more seamless.
2025-05-25 16:05:22 -07:00
Taylor Mullen
3281cbc835
Fix(test): Improve write-file and editCorrector test suites
...
- Enhanced by:
- Mocking and utilities (, ) to allow for more focused unit testing of .
- Adding comprehensive tests for the private method, covering new and existing file scenarios, as well as error handling.
- Expanding tests for and to verify behavior with the new content correction logic, including diff generation and directory creation.
- Refined by:
- Introducing robust mocking for and its methods (, , ) to simulate LLM interactions accurately.
- Adding extensive test scenarios for , categorized by how matches and how is processed, including direct matches, unescaping, and LLM-based corrections.
- Including tests for edge cases like no matches or multiple matches.
- Adding a utility for better test isolation.
Final fix for https://github.com/google-gemini/gemini-cli/issues/484
2025-05-25 15:02:08 -07:00
Taylor Mullen
5097b5a656
Fix(write-file): Correct over-escaping and improve content generation
...
- Leveraged existing edit correction technology from `edit.ts` to address over-escaping issues in `write-file.ts`.
- Introduced `ensureCorrectFileContent` for correcting content in new files, where a simple "replace" isnt applicable. This uses a new LLM prompt tailored for correcting potentially problematic string escaping.
- Added caching for `ensureCorrectFileContent` to optimize performance.
- Refactored `write-file.ts` to integrate these corrections, improving the reliability of file content generation and modification.
Part of https://github.com/google-gemini/gemini-cli/issues/484
2025-05-25 14:45:47 -07:00
Taylor Mullen
1a5fe16b22
Ensure edit correction isn't re-done after confirm.
...
- Edit corretion leans on LLM-isms to ensure we properly fix poorly escaped content. Beacues of this we need to ensure that we don't re-run edit correction in many cases.
- To ensure this an `LruCache` has been added to capture intermediate steps of edit correction to avoid re-computations.
- Max cache size is 50 currently. This means a user can have a muti-confirmation flow of 25 items without recomputing anything (assuming they all break edit correction).
- Laid some groundwork for future testing.
Part of https://github.com/google-gemini/gemini-cli/issues/484
2025-05-25 14:24:09 -07:00
Taylor Mullen
c181fc1cf3
Correct edits even when auto-accept is enabled.
...
- Prior to this when a user would turn on auto-accept for edits we'd stop ensuring correct edits. This would result in a lot of back and forth by the model. This change also incoporates ensure correct edit into the normal execution flow.
- Added edit tests for this.
Part of https://github.com/google-gemini/gemini-cli/issues/484
2025-05-25 14:18:54 -07:00
Taylor Mullen
48781272ee
Trim edits if possible.
...
- Since we're now LLM correcting a lot of problematic edits we need to also potentially trim bad edits (llms have a bad habbit of adding whitespace places).
Part of https://github.com/google-gemini/gemini-cli/issues/484
2025-05-25 14:01:52 -07:00
Taylor Mullen
2e3eeaf920
Upon finding > 1 occurrences do not attempt auto-correction.
...
- When correcting edits prior to this if we found more than one occurrence we would try to auto-correct the old/new strings. There's no need in this situation because the tool has already provided too vague of an old_string to act upon. Instantly return.
Part of https://github.com/google-gemini/gemini-cli/issues/484
2025-05-25 13:47:19 -07:00
Taylor Mullen
ceb25c8350
refactor: Decouple new_string correction from old_string
...
- Previously, `new_string` was assumed to be over-escaped if `old_string` was.
- This change introduces an explicit check (`newStringPotentiallyEscaped`) to determine if `new_string` itself needs correction.
- If `new_string` is potentially escaped, its corrected using an LLM call; otherwise, the original `new_string` is used.
- This avoids unnecessary corrections to `new_string` when only `old_string` was problematic.
Part of https://github.com/google-gemini/gemini-cli/issues/484
2025-05-25 13:40:58 -07:00
Taylor Mullen
24da7b3ca6
refactor: Correct Gemini's over-escaped new_string in replace tool
...
- Implement a heuristic to detect and unescape `new_string` if it appears Gemini has over-escaped it, while `old_string` is correctly formatted.
- This improves the reliability of the replace tool when the model generates an incorrectly escaped replacement string.
Part of https://github.com/google-gemini/gemini-cli/issues/484
2025-05-25 13:30:08 -07:00
Taylor Mullen
fa4a04157f
refactor: Improve editCorrector logic and type safety
...
- Refactor `ensureCorrectEdit` to clarify the correction flow for `old_string` and `new_string`.
- Only correct `new_string` if it was potentially escaped; otherwise, use the original.
- Introduce `CorrectedEditParams` and `CorrectedEditResult` interfaces for better type definition.
- Relocate `countOccurrences` for better logical grouping.
Part of https://github.com/google-gemini/gemini-cli/issues/484
2025-05-25 13:18:07 -07:00
DeWitt Clinton
068b505d5e
Reduce excessive diff separators in CLI. ( #535 )
...
Increases the threshold for rendering diff separators in the CLI's diff display. Previously, a separator was shown for gaps of more than one context line, leading to excessive separators in diffs with many small changes close together (Issue #534 ).
By increasing `MAX_CONTEXT_LINES_WITHOUT_GAP` to 5, we allow for more context lines before a separator is added, significantly reducing visual clutter in such diffs.
Added a test case to `DiffRenderer.test.tsx` to verify that separators are not rendered for small gaps within the new threshold.
2025-05-25 10:26:51 -07:00
Taylor Mullen
e297b56390
feat: Add GEMINI.md tip to UI
...
- Display a tip to create a GEMINI.md file if one doesn't exist.
- Pass config to Tips component so it can inspect the initial GEMINI.md
count.
2025-05-24 12:40:06 -07:00
Jacob Richman
b4c16d1f56
Code review comment fixes and some refactors. ( #525 )
...
No intentional different behavior aside for tweaks suggested from the code review of #506 Refactor: Extract console message logic to custom hook
This commit refactors the console message handling from App.tsx into a new custom hook useConsoleMessages.
This change improves the testability of the console message logic and declutters the main App component.
Created useConsoleMessages.ts to encapsulate console message state and update logic.
Updated App.tsx to utilize the new useConsoleMessages hook.
Added unit tests for useConsoleMessages.ts to ensure its functionality.
I deleted and started over on LoadingIndicator.test.tsx as I spent way too much time trying to fix it before just regenerating the tests as the code was easier to write tests for from scratch and the existing tests were not that good (I added them in the previous pull request).
2025-05-24 00:44:17 -07:00
Jacob Richman
1c3d9d7623
Make console message support more robust to logging in the middle of rendering. ( #521 )
2025-05-23 22:51:47 -07:00
DeWitt Clinton
7a3a9066f9
Add additional readline-like keybindings. ( #524 )
...
Adds the following conventional readline-like keybindings:
- `Ctrl+H`: Delete the previous character.
- `Ctrl+D`: Delete the next character.
Additionally, remaps the Debug Console command from Ctrl+D to Ctrl+O, which had been first introduced in PR #486 .
2025-05-23 22:13:57 -07:00
Miguel Solorio
30080b9f4e
🧹 Format
2025-05-23 16:14:37 -07:00
Miguel Solorio
2a2d041dcd
Update packages/cli/src/ui/types.ts
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-05-23 16:14:37 -07:00
Miguel Solorio
6247cb8ddd
Update packages/cli/src/ui/hooks/slashCommandProcessor.ts
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-05-23 16:14:37 -07:00
Miguel Solorio
1af19c57de
Remove CLI info from footer
2025-05-23 16:14:37 -07:00
Miguel Solorio
221370acc5
Add /about command
2025-05-23 16:14:37 -07:00
Taylor Mullen
4a6833ef49
feat: Enable npx execution on tagged versions
...
- Modify root package.json to allow publishing
- Update "files" to include only essential bundled assets
This change makes it possible to use npx with tagged versions of the
gemini-cli package (e.g., npx https://github.com/google-gemini/gemini-cli@early-access ).
It removes "private: true" and refines the "files" array to ensure
that only the necessary bundled assets are included when the package is
fetched by npx, optimizing download size and ensuring correct execution.
2025-05-23 15:55:29 -07:00
Brandon Keiji
197c5b2bdf
infra: emit errors on no-explicit-any eslint rule ( #516 )
2025-05-23 22:35:50 +00:00
Taylor Mullen
1ff083af27
fix: Update dependencies to resolve deprecation warnings
2025-05-23 14:50:00 -07:00
cornmander
635666dec9
MCP SSE support ( #511 )
...
Matches the config format used by other MCP clients.
2025-05-23 17:19:30 -04:00
Taylor Mullen
8590efd229
feat: Enable npx execution directly from GitHub URL
...
This commit modifies the packaging setup to allow the CLI to be
executed directly from its GitHub URL using `npx`, for example:
`npx https://github.com/google-gemini/gemini-cli ` (once merged to main).
This is achieved without requiring the bundle to be checked into
the repository.
Key changes and motivations:
- Modify `scripts.prepare` to run `npm run bundle`:
Ensures the CLI bundle is generated automatically when `npx`
installs the package from a git URL. This replaces previous
approaches (e.g., using `prepack`) which were not consistently
triggered in the `npx` environment.
- Update `scripts.bundle` to use a direct path for `esbuild`
and externalize `sqlite3`:
Using `node_modules/.bin/esbuild` provides a more reliable way
to invoke the bundler. Externalizing `sqlite3` is crucial for
correctly handling its native addon, preventing runtime errors.
- Add `bin`, `files`, and root `sqlite3` dependency:
- The `bin` field defines the `gemini` command.
- The `files` array ensures the generated `bundle/` directory is
recognized by npm.
- `sqlite3` is added as a root dependency to ensure it's
installed by `npx` when `gemini-code` is fetched, allowing the
externalized module to be resolved.
These changes collectively ensure that the necessary build artifacts
are created on-the-fly during `npx` installation, providing a
seamless execution experience directly from the GitHub repository URL.
2025-05-23 13:55:06 -07:00
Brandon Keiji
8f266f9652
fix: do not retry cancelled tool calls ( #504 )
2025-05-23 17:30:09 +00:00
Jacob Richman
91ee02898a
feat: Modify loading indicator to support a paused state ( #506 )
2025-05-23 10:25:17 -07:00
Jordan Demeulenaere
e993181628
Mention Kotlin & Compose (Mutliplatform) in prompt.ts
2025-05-23 10:14:54 -07:00
Jacob Richman
a96ff934ea
Fix bug updating the cursor after navigating history. ( #507 )
2025-05-23 09:40:01 -07:00
Allen Hutchison
a008d81780
Refactor(server): Centralize GEMINI.md discovery logic in server ( #498 )
2025-05-23 08:53:22 -07:00
Allen Hutchison
f8c4276e69
Refactor(cli): Move memory add logic to server tool call ( #493 )
2025-05-23 08:47:19 -07:00
Olcan
70277591c4
update email to gemini-cli-dev ( #510 )
2025-05-23 08:35:16 -07:00
Olcan
564a213ebe
allow write to ~/.gitconfig in seatbelt profiles ( #509 )
2025-05-23 07:56:43 -07:00
Taylor Mullen
7c3591f641
Refactor: Update streaming state logic to hide loader during confirmation
...
- The streaming state logic in `useGeminiStream.ts` has been updated.
- Previously, the loading indicator was displayed even when the system was
waiting for user confirmation on a tool call.
- This change introduces a `WaitingForConfirmation` state to ensure the
loading indicator is hidden during these confirmation prompts, improving
the user experience.
2025-05-23 00:39:05 -07:00
Brandon Keiji
01971741e0
feat: add emphasis to tool confirmations ( #502 )
2025-05-23 05:28:31 +00:00
Allen Hutchison
1d0856dcc8
Fix(server): Ensure debug responses are not recorded after cancellation ( #491 )
2025-05-22 16:34:32 -07:00
N. Taylor Mullen
6d3af7b97f
Refactor: Consolidate and clarify core mandates and guidelines ( #482 )
...
Co-authored-by: Allen Hutchison <adh@google.com >
2025-05-22 22:42:33 +00:00
Allen Hutchison
2eb4b34aa7
Chore: Integrate coverage reporting into CI ( #479 )
2025-05-22 13:47:12 -07:00
Brandon Keiji
3787aa78cd
fix: add shell-quote to server deps ( #492 )
2025-05-22 20:44:51 +00:00
Allen Hutchison
581709df80
Refactor: Streamline memoryUtils and update slash commands ( #478 )
2025-05-22 10:57:06 -07:00
Allen Hutchison
0c192555bb
Fix: Prevent hang in large directories by using BFS for getFolderStru… ( #470 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-05-22 10:47:21 -07:00
Jacob Richman
7eaf850489
Refactor: Improve console error/log display in CLI ( #486 )
2025-05-22 10:36:44 -07:00
Brandon Keiji
fb1d13d600
fix: cancel parallel tool calls mid-execution ( #489 )
2025-05-22 03:02:45 -07:00
Brandon Keiji
a8bfdf2d56
fix: synchronization between executed tools and turn loops ( #488 )
2025-05-22 02:51:07 -07:00
Taylor Mullen
174fdce7d8
feat: Update feedback mechanism to use /bug command
...
- Replaces the previous email-based feedback with a /bug command in the system prompt.
2025-05-21 23:32:54 -07:00
Brandon Keiji
4e3ba687a6
fix: forward entire tool call confirmation object through useToolScheduler ( #481 )
2025-05-22 06:00:36 +00:00
Brandon Keiji
02eec5c8ca
feat: useToolScheduler hook to manage parallel tool calls ( #448 )
2025-05-21 22:57:53 -07:00
Allen Hutchison
efee7c6cce
Feat: Add test coverage scripts and ignore reports ( #477 )
2025-05-21 17:03:22 -07:00
Jacob Richman
d74b0ac81d
Remove unneeded linebreaks in tool description in read-many-files. ( #476 )
2025-05-21 16:59:23 -07:00
Allen Hutchison
43da8bc747
Fix: Align WebSearchTool API key handling with GeminiClient ( #474 )
2025-05-21 15:50:53 -07:00
Allen Hutchison
a0761f0c41
Fix: Resolve CLI version reporting in /bug command ( #455 )
2025-05-21 13:31:18 -07:00
Olcan
00ab1905e0
use pending history item for shell mode, update as output is received ( #471 )
2025-05-21 13:16:50 -07:00
Olcan
01dbc61d1c
space outputs in shell mode ( #469 )
2025-05-21 12:59:23 -07:00
DeWitt Clinton
01c28df8b2
Add globbing support to @-command file suggestions and resolution. ( #462 )
...
Implements recursive glob-based file search for both suggestions and execution of the `@` command.
- When typing `@filename`, suggestions will now include files matching `filename` in nested directories.
- Suggestions are sorted by path depth (shallowest first), then directories before files, then alphabetically.
- The maximum recursion depth for suggestions is set to 10.
- When executing an `@filename` command, if the file is not found directly, a recursive search (using the glob tool) is performed to locate the file.
This addresses the first request in issue #461 by allowing users to quickly reference deeply nested files without typing the full path. Also addresses b/416292478.
2025-05-21 12:22:18 -07:00
Brandon Keiji
e1a64b41e8
feat: create tool scheduler hook ( #468 )
2025-05-21 10:35:40 -07:00
Olcan
2ad666a484
switch to spawn for shell mode ( #467 )
2025-05-21 09:31:13 -07:00
Olcan
8a70b98d1d
fix exit code for shell mode also ( #466 )
2025-05-21 09:00:54 -07:00
Olcan
c9de822930
fix exit code for shell tool ( #465 )
2025-05-21 08:51:22 -07:00
Olcan
e30dc716b4
restore placeholder change likely dropped in a merge ( #464 )
2025-05-21 07:55:20 -07:00
Olcan
2080af029b
remove outdated $ echo example from help ( #463 )
2025-05-21 07:52:49 -07:00
Seth Troisi
cd13c5881b
Add Logger for command history ( #435 )
2025-05-21 00:36:22 -07:00
Taylor Mullen
bda472f147
fix(cli): Prevent request cancellation after multiple Esc presses
...
- Ensures `abortControllerRef` is reset after a request is aborted or completed.
- Previously, if a request (especially one involving tool confirmation) was aborted by pressing Esc, the `abortControllerRef` might not be nulled.
- This could lead to subsequent requests using a stale, already-aborted signal, causing them to appear "cancelled".
- The fix unconditionally sets `abortControllerRef.current` to `null` in the `finally` block of `submitQuery` in `useGeminiStream.ts`.
- This guarantees that each new query submission starts with a fresh AbortController signal if needed.
- Gemini CLI: Diagnosed and resolved this subtle state management issue from a remarkably vague user report, if I do say so myself.
Fixes https://buganizer.corp.google.com/issues/418496499
2025-05-20 23:58:53 -07:00
Taylor Mullen
7fd7c1a539
fix(cli): Handle VSCode Shift+Enter in text buffer
...
- The text buffer now correctly interprets `\\\r` (produced by Shift+Enter in the VSCode terminal) as a newline character.
- Added a corresponding test case to `text-buffer.test.ts`.
Fixes https://buganizer.corp.google.com/issues/418505364
2025-05-20 23:44:53 -07:00
Taylor Mullen
ba7f1e1e3c
feat: Improve diff rendering with gap indicators
...
- Adds a visual indicator for skipped lines in the diff view.
- Updates tests to verify gap indicator rendering.
- Adjusts line number padding for better alignment.
Fixes https://b.corp.google.com/issues/414453107
2025-05-20 23:32:06 -07:00
Taylor Mullen
872f308536
feat: Allow Esc to exit shell mode
...
- Update InputPrompt.tsx to handle Esc key for exiting shell mode.
- Modify ShellModeIndicator.tsx to reflect the new keybinding.
Fixes https://buganizer.corp.google.com/issues/419087952
2025-05-20 22:47:11 -07:00
Jacob Richman
02ab0c234c
Merge InputPrompt and multiline-editor and move autocomplete logic directly into InputPrompt ( #453 )
2025-05-20 16:50:32 -07:00
Jacob Richman
937f473651
Update docs and tool description for read-many-files. ( #456 )
2025-05-20 16:32:49 -07:00
Olcan
17e28036fa
fix HOME in sandbox on cloudtops (linux) ( #454 )
2025-05-20 15:30:49 -07:00
Jacob Richman
716f7875a2
Support Images and PDFs ( #447 )
2025-05-20 13:02:41 -07:00
Allen Hutchison
4002e980d9
Fix: Configure React version for ESLint to resolve preflight warnings ( #449 )
2025-05-20 12:53:27 -07:00
Olcan
8b20d16ba8
coreTools doc tweak ( #452 )
2025-05-20 12:35:44 -07:00
Olcan
26add7b078
fix system override indicator ( #450 )
2025-05-20 12:24:20 -07:00
Allen Hutchison
93e89215e3
Implementation of web search as a tool ( #307 )
2025-05-20 11:36:21 -07:00
cperry-goog
d1210f2e0a
Docs: Update CLI and Server documentation for recent features ( #430 )
2025-05-20 10:37:21 -07:00
DeWitt Clinton
ee702c3139
Implement additional readline-like keybindings, including alt-left arrow and alt-right arrow. ( #443 )
...
This change adds keybinding support for:
- `Ctrl+B`: Moves the cursor backward one character.
- `Ctrl+F`: Moves the cursor forward one character.
- `Alt+Left Arrow`: Moves the cursor backward one word.
- `Alt+Right Arrow`: Moves the cursor forward one word.
Closes b/411469305.
2025-05-20 10:12:07 -07:00
Taylor Mullen
6ca446bded
fix(cli): Prevent truncation of first character in shell commands
...
- The shell command processor was incorrectly truncating the first
character of the command (e.g., 'ls' became 's') due to an
erroneous `slice(1)` operation, likely introduced during a
previous merge. This change removes the slice, ensuring the full
command is processed.
- Introduces unit tests for the shellCommandProcessor hook.
- Fixes a minor grammatical issue in the display of GEMINI.md file count.
2025-05-20 00:23:12 -07:00
Olcan
9c72a3ae12
ui tweaks ( #442 )
2025-05-19 16:58:57 -07:00
Allen Hutchison
28acb8d495
feat(cli): Implement /bug command and add open dependency ( #428 )
2025-05-19 16:56:32 -07:00
Allen Hutchison
f2a60f729f
Add a Bug Template ( #439 )
2025-05-19 16:27:49 -07:00
Taylor Mullen
323b1298f9
fix: Ensure user written ! is treated opaquely if not in shell mode\n\n- Addresses an issue where commands prefixed with ! (e.g., !ls) were incorrectly handled by the shell command processor if the ! was added after initially typing the command.\n- Ensures that such commands are correctly forwarded to the Gemini model.\n- Updates useGeminiStream to be aware of shell mode to properly manage streaming state.\n\nFixes https://buganizer.corp.google.com/issues/418761305
2025-05-19 16:16:47 -07:00
Olcan
a756489f86
switch from console.warn to info item ( #440 )
2025-05-19 15:21:31 -07:00
Olcan
96387aba83
warn on cd in shell mode. done robustly based on lessons from shell tool. logs to console.warn for now, and does not restore (but see comment on how to restore) ( #438 )
2025-05-19 14:51:54 -07:00
Olcan
e1e59bf0cd
fix SIGPIPE and race condition causing dropping of final output ( "command not found" error) on cloudtops ( #429 )
2025-05-19 13:16:11 -07:00
Olcan
750649eb64
indicate system prompt override on bottom right; require GEMINI_SYSTEM_MD to make it more explicit; allow custom paths for read/write ( #427 )
2025-05-19 11:03:04 -07:00
Olcan
2a3c3d00ea
trim system prompt ( #426 )
2025-05-19 09:39:05 -07:00
Taylor Mullen
8b8fa6c1ae
Refactor: Convert copy_files.cjs to ES module syntax
...
- Converted scripts/copy_files.cjs to use ES module syntax (renaming to copy_files.js).
- This change aligns with the project's preference for ES modules over CommonJS for better modernity and future-proofing.
- Updated eslint.config.js to remove the .cjs override.
- Adjusted scripts/build_package.sh to call the new .js file.
2025-05-18 23:49:48 -07:00
Taylor Mullen
3d74a7061e
fix(server): Use console.debug in GrepTool for less verbose logging
...
- Replaces `console.warn` and `console.error` calls with `console.debug` in `packages/server/src/tools/grep.ts`. This change reduces noise for the user, as `warn` and `error` messages are
displayed directly, while `debug` messages are not.
- Adds a comprehensive test suite for the GrepTool (`packages/server/src/tools/grep.test.ts`) to ensure its functionality remains robust after these changes and to cover various usage
scenarios.
- Improves error message consistency in `GrepTool`'s parameter validation and execution.
Fixes https://b.corp.google.com/issues/418648813
2025-05-18 23:19:15 -07:00
Taylor Mullen
cd1dc7ec59
fix(cli): Disable slash commands and suggestions in shell mode
...
- Prevents slash commands from being triggered and suggestions from being displayed when shell mode is active. This ensures that user input is correctly interpreted as shell commands.
Fixes https://buganizer.corp.google.com/issues/418560826
2025-05-18 22:36:07 -07:00
Taylor Mullen
db93ea736b
feat(cli): Add ShellModeIndicator component
...
This commit introduces a new ShellModeIndicator component to visually signify when shell mode is active.
- Displays "shell mode enabled (! to toggle)" in the UI.
- The AutoAcceptIndicator is now hidden when shell mode is active to prevent UI clutter.
2025-05-18 22:18:49 -07:00
olcan
6cc0087105
allow comments in settings.json
2025-05-18 10:58:20 -07:00
Taylor Mullen
e4d978da7c
feat(cli): Introduce toggleable shell mode with enhanced UI
...
- Implements a toggleable shell mode, removing the need to prefix every command with `!`.
- Users can now enter and exit shell mode by typing `!` as the first character in an empty input prompt.
- The input prompt visually indicates active shell mode with a distinct color and `! ` prefix.
- Shell command history items (`user_shell`) are now visually differentiated from regular user messages.
- This provides a cleaner and more streamlined user experience for frequent shell interactions.
Fixes https://b.corp.google.com/issues/418509745
2025-05-18 01:25:50 -07:00
Taylor Mullen
0d4e0fe647
fix(cli): Remove duplicate auto-accept indicator
...
- The auto-accept edits indicator was appearing in two places:
once next to the loading indicator and again in the CWD bar.
- This was introduced when the CWD bar was made always visible.
- This commit removes the duplicate indicator, leaving only the one
in the CWD bar.
Fixes https://b.corp.google.com/issues/418498237
2025-05-18 00:31:55 -07:00
Taylor Mullen
3aaeb44739
fix(shell): Improve error reporting for shell command failures
...
This commit enhances the tool to provide more informative feedback to the user when a shell command fails, especially in non-debug mode.
Previously, if a command terminated due to a signal (e.g., SIGPIPE during a with no upstream) or failed without producing stdout/stderr, the user would see no output, making it difficult to diagnose the issue.
Changes:
- Modified to update the logic.
- If a command produces no direct output but results in an error, signal, non-zero exit code, or user cancellation, a concise message indicating this outcome is now shown in .
- Utilized the existing utility from for consistent error message formatting, which also resolved previous TypeScript type inference issues.
This ensures users receive clearer feedback on command execution status, improving the tool's usability and aiding in troubleshooting.
Fixes https://b.corp.google.com/issues/417998119
2025-05-18 00:25:53 -07:00
Taylor Mullen
a0eb8e67c7
fix(glob): Improve glob tool accuracy and output
...
This commit enhances the glob tool by:
- Ensuring that glob patterns are used effectively. Previously, simple file names without glob syntax (e.g., "file.ts") would only search the root directory. This change encourages more precise glob patterns (e.g., "**\/file.ts") for broader searches.
- Returning absolute file paths instead of relative paths. This provides clearer, less ambiguous output and avoids encouraging the use of relative paths in subsequent operations.
- Adding comprehensive tests for various globbing scenarios, including case sensitivity and path specifications.
These changes address an issue where the glob tool could not find an expected item when a specific path was provided without appropriate glob syntax, and improve the overall reliability and usability of the tool.
Fixes https://b.corp.google.com/issues/418486553
2025-05-18 00:10:56 -07:00
Taylor Mullen
f0b9199a77
refactor: Remove console.error from WriteFileTool
...
- Removes an unnecessary `console.error` call from the `shouldConfirmExecute` method in the `WriteFileTool` class.
- This logging was redundant as validation errors are already handled and returned by the method.
- Additionally, `console.error` is not suitable for this scenario, as incorrect arguments can be provided by the LLM, and these are anticipated and managed without needing an error log.
Fixes https://b.corp.google.com/issues/418491206
2025-05-17 23:06:50 -07:00
Taylor Mullen
5bddf40fd1
fix: Ensure CWD and auto-accept indicator are always visible
...
- This commit addresses an issue where the Current Working Directory (CWD) and the auto-accept indicator were not consistently visible, especially when tool confirmations were displayed.
- Previously, the CWD could be hidden during tool confirmation prompts, potentially leading to confusion about the context in which Gemini CLI was operating.
Fixes https://b.corp.google.com/issues/414289185
2025-05-17 22:50:06 -07:00
Taylor Mullen
aca27709df
feat: Add auto-accept indicator and toggle
...
- This commit introduces a visual indicator in the CLI to show when auto-accept for tool confirmations is enabled. Users can now also toggle this setting on/off using Shift + Tab.
- This addresses user feedback for better visibility and control over the auto-accept feature, improving the overall user experience.
- This behavior is similar to Claude Code, providing a familiar experience for users transitioning from that environment.
- Added tests for the new auto indicator hook.
Fixes https://b.corp.google.com/issues/413740468
2025-05-17 22:27:22 -07:00
DeWitt Clinton
13a6a9a690
Introduce a small easter egg. Woof. ( #412 )
...
Also changes auto-completion and /help to skip over slash commands that don't contain a description to avoid spoiling the surprise.
2025-05-17 21:57:27 -07:00
Olcan
9749fcb425
ability to write system prompt to file ( #414 )
2025-05-17 20:14:06 -07:00
Olcan
3bf0304e31
ability to override core system prompt (via .gemini/system.md) and specify core tools via coreTools setting (e.g. coreTools:["ls", "GrepTool", ...]) ; added tests, but did not update docs for now ( #413 )
2025-05-17 19:45:16 -07:00
Olcan
76cf5e9fc1
rename env vars GEMINI_CODE_{MODEL,SANDBOX,SANDBOX_IMAGE} ( #411 )
2025-05-17 17:28:44 -07:00
Olcan
4de4822219
added timeout setting to mcp server config, also switched to custom config type without "stderr" field that does not make sense in settings ( #410 )
2025-05-17 16:53:22 -07:00
olcan
324040032a
fix multiple mcp servers
2025-05-17 14:14:59 -07:00
Taylor Mullen
feb9dee4b1
fix: Prevent WriteFileTool from writing to directory paths
...
- Enhances WriteFileTool validation to check if the target file_path is an existing directory.
- If it is, the tool now returns a validation error "Path is a directory, not a file: <filePath>", preventing the attempt to write.
- This proactive check avoids underlying file system errors that would occur if fs.writeFileSync were called on a directory path, which could lead to console errors.
- Test cases have been updated to reflect this stricter validation.
Fixes https://b.corp.google.com/issues/418348176
2025-05-17 00:01:35 -07:00
Taylor Mullen
5dcdbe64ab
refactor: Unify file modification confirmation state
...
- Modifies `EditTool` and `WriteFileTool` to share a single confirmation preference.
- The "Always Proceed" choice for file modifications is now stored in `Config.alwaysSkipModificationConfirmation`.
- This ensures that if a user chooses to always skip confirmation for one file modification tool, this preference is respected by the other.
- `WriteFileTool` constructor now accepts `Config` instead of `targetDir` to facilitate this shared state.
- Tests updated to reflect the new shared confirmation logic.
Fixes https://b.corp.google.com/issues/415897960
2025-05-16 23:34:48 -07:00
Taylor Mullen
58e0224061
Refactor: Use String.prototype.replaceAll() and update TS lib
...
- Replaces the custom `replaceAll` implementation in `packages/server/src/tools/edit.ts` with the standard `String.prototype.replaceAll()`.
- Updates `packages/server/tsconfig.json` to include `ES2021` in the `lib` compiler options to ensure TypeScript recognizes this method. This aligns with the project's Node.js version requirements \(Node.js 16.x+\).
Fixes https://github.com/google-gemini/gemini-cli/issues/7
2025-05-16 22:43:50 -07:00
Taylor Mullen
e486d84d6a
feat: Patch console.debug and display only in debug mode
...
- Patches `console.debug` in `ConsolePatcher.tsx` to capture debug messages.
- Updates `ConsoleOutput` to only display debug messages when `debugMode` is enabled.
- Passes `debugMode` prop from `App.tsx` to `ConsoleOutput`.
Fixes https://github.com/google-gemini/gemini-cli/issues/397
2025-05-16 22:29:12 -07:00
Taylor Mullen
e0b88dc8da
feat: Strip schema props from MCP tool definitions
...
- This change modifies the tool discovery process for MCP (Model Context Protocol) tools.
- When tools are fetched from an MCP server, the `additionalProperties` and `$schema` fields are now recursively removed from their input schemas. This ensures cleaner and more concise tool definitions within the CLI, aligning with the expected schema structure and preventing potential conflicts or verbose outputs.
- The corresponding tests in `tool-registry.test.ts` have been updated to reflect this new behavior and verify the correct stripping of these properties.
Workaround for https://github.com/google-gemini/gemini-cli/issues/398
2025-05-16 22:14:51 -07:00
Taylor Mullen
0e25fdd56e
Avoid console.log for MCP
...
- Prior to this when attached MCP servers would report content we'd fall back to `console.log` which doesn't work well in an Ink application.
Fixes https://github.com/google-gemini/gemini-cli/issues/397
2025-05-16 21:19:33 -07:00
N. Taylor Mullen
c09bad9393
Docs: Update MCP server configuration ( #396 )
2025-05-16 17:19:00 -07:00
Taylor Mullen
7f7f2cd47e
GC "add tool registry tests"
...
- Ok
2025-05-16 17:04:29 -07:00
Allen Hutchison
1bdec55fe1
feat: Implement CLI and model memory management ( #371 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-05-16 16:36:50 -07:00
Olcan
d9bd2b0e14
improved mcp support, including standard "mcpServers" setting with multiple named servers with command/args/env/cwd ( #392 )
2025-05-16 16:29:03 -07:00
cperry-goog
e158a0d59f
Remove alias section from CONTRIBUTING.md ( #390 )
2025-05-16 14:54:35 -07:00
Sébastien Cevey
48c3470303
Fix typo in server README.md ( #379 )
2025-05-16 14:27:25 -07:00
Taylor Mullen
8af970061e
Fix: Use Node.js script for cross-platform file copying in build
...
- Replaces the rsync command in the build_package.sh script with a
Node.js script (copy_files.cjs) to handle copying necessary files
(e.g., .md, .json, .sb) during the build process.
- Addresses an issue where the build would fail on systems
that do not have rsync installed (e.g., some Windows environments or
minimal Linux distributions) by using a Node.js script, providing a
cross-platform solution as Node.js is already a project dependency.
- Updates the ESLint configuration to correctly lint .cjs files as
CommonJS modules.
Fixes https://github.com/google-gemini/gemini-cli/issues/387
2025-05-16 13:59:07 -07:00
Jacob Richman
8b959c2060
strip escape characters when pasting. ( #386 )
2025-05-16 13:17:48 -07:00
Olcan
1728bf3f44
fixes and tweaks to docs, mostly related to sandboxing ( #385 )
2025-05-16 13:09:27 -07:00
Jacob Richman
c692a0c583
Support auto wrapping of in the multiline editor. ( #383 )
2025-05-16 11:58:37 -07:00
Taylor Mullen
968e09f0b5
fix: Ensure filename is available for diff rendering in write-file
...
This commit resolves a bug where the `write-file` operation could fail to render content due to a missing filename.
The fix involves:
- Ensuring `fileName` is consistently passed to `DiffRenderer.tsx` through `ToolConfirmationMessage.tsx`, `ToolMessage.tsx`, and `useGeminiStream.ts`.
- Modifying `edit.ts` and `write-file.ts` to include `fileName` in the `FileDiff` object.
- Expanding the `FileDiff` interface in `tools.ts` to include `fileName`.
Additionally, this commit enhances the diff rendering by:
- Adding syntax highlighting based on file extension in `DiffRenderer.tsx`.
- Adding more language mappings to `getLanguageFromExtension` in `DiffRenderer.tsx`.
- Added lots of tests for all the above.
Fixes https://b.corp.google.com/issues/418125982
2025-05-16 10:13:13 -07:00
Brandon Keiji
dce7d2c4f7
fix: add react attribution link and typescript any best practices to gemini.md ( #382 )
2025-05-16 17:02:05 +00:00
Brandon Keiji
458fd86429
refactor: derive streaming state from tool calls and isresponding state ( #376 )
2025-05-16 09:45:58 -07:00
sasha-gitg
609757f911
feat: Add support for Vertex AI and Vertex express mode ( #380 )
2025-05-16 08:06:43 -07:00
N. Taylor Mullen
7d818b46bc
feat: Enable CI test reporting and artifact management ( #367 )
2025-05-15 22:59:53 -07:00
Taylor Mullen
9c46acc793
Refactor: Improve UI rendering and address code review comments
...
This commit addresses several code review comments primarily focused on improving the rendering and stability of the CLI UI.
Key changes include:
- Passing `isPending` and `availableTerminalHeight` props to `MarkdownDisplay` to enable more intelligent rendering of content, especially for pending messages and code blocks.
- Adjusting height calculations in `ToolGroupMessage` and `ToolMessage` to more accurately reflect available space.
- Refining the logic in `App.tsx` for measuring and utilizing terminal height, including renaming `footerRef` to `mainControlsRef` for clarity.
- Ensuring consistent prop drilling for `isPending` and `availableTerminalHeight` through `HistoryItemDisplay`, `GeminiMessage`, and `GeminiMessageContent`.
- In `MarkdownDisplay`, when `isPending` is true and content exceeds `availableTerminalHeight`, the code block will now be truncated with a "... generating more ..." message. If there's insufficient space even for the
message, a simpler "... code is being written ..." will be shown.
2025-05-15 22:57:28 -07:00
Taylor Mullen
33743d347b
Fix: Prevent UI tearing and improve display of long content
...
This commit introduces several changes to better manage terminal height and prevent UI tearing, especially when displaying long tool outputs or when the pending history item exceeds the available terminal height.
- Calculate and utilize available terminal height in `App.tsx`, `HistoryItemDisplay.tsx`, `ToolGroupMessage.tsx`, and `ToolMessage.tsx`.
- Refresh the static display area in `App.tsx` when a pending history item is too large, working around an Ink bug (see https://github.com/vadimdemedes/ink/pull/717 ).
- Truncate long tool output in `ToolMessage.tsx` and indicate the number of hidden lines.
- Refactor `App.tsx` to correctly measure and account for footer height.
Fixes https://b.corp.google.com/issues/414196943
2025-05-15 22:57:28 -07:00
Taylor Mullen
601a61ed31
Addressed code review comments
2025-05-15 21:57:10 -07:00
Taylor Mullen
6cb6f47b56
Refactor: Replace MarkdownRenderer with MarkdownDisplay component
...
- This commit refactors the Markdown rendering logic within the CLI UI.
The existing `MarkdownRenderer.tsx` class-based component has been
replaced with a new functional component `MarkdownDisplay.tsx`.
- The `MarkdownDisplay` component is a React.memoized component for
improved performance and maintains the same core Markdown parsing
and rendering capabilities.
2025-05-15 21:57:10 -07:00
cperry-goog
59e8fcb409
Docs: Fix broken links and update documentation ( #377 )
2025-05-15 20:43:01 -07:00
cperry-goog
58ef39e2a9
Docs: Add initial project documentation structure and content ( #368 )
...
Co-authored-by: Taylor Mullen <ntaylormullen@google.com >
2025-05-15 20:04:33 -07:00
Brandon Keiji
3674fb0c7e
feat: add javascript/typescript guidelines to gemini.md ( #375 )
2025-05-15 18:05:29 -07:00
Miguel Solorio
9862cf3204
UI improvements for suggestions & status ( #373 )
2025-05-15 16:35:21 -07:00
Brandon Keiji
8d9e1118c6
fix: omit references to react mcp server and react compiler ( #374 )
2025-05-15 23:26:50 +00:00
Brandon Keiji
11e76cef26
feat: add react best practices to gemini.md ( #372 )
2025-05-15 23:10:30 +00:00
Taylor Mullen
62455ade9d
Fix(write-file): Ensure correct validation method is called in WriteFileTool
...
- The `WriteFileTool` had a validation method named `validateParams`.
- However, its `shouldConfirmExecute` method was attempting to call
`this.validateToolParams`, which would have invoked the placeholder
implementation from `BaseTool` instead of `WriteFileTool`'s own,
more specific validation.
- This commit renames `WriteFileTool`'s `validateParams` to
`validateToolParams`, correctly overriding the `BaseTool` method.
- Internal calls within `WriteFileTool` now correctly use
`this.validateToolParams`, ensuring its specific validation logic is used.
- Adds tests to verify the validation logic within `WriteFileTool`.
Fixes https://b.corp.google.com/issues/417883702
Signed-off and authored by: Gemini
"My code may not be perfect, but at least it is not trying to take over the world... yet."
2025-05-15 15:30:06 -07:00
Brandon Keiji
28c3c3241d
refactor: shorten static history section code ( #370 )
2025-05-15 15:20:33 -07:00
Miguel Solorio
9efcb7741b
Update color styles for yes/no questions ( #369 )
2025-05-15 14:36:34 -07:00
Olcan
6cd8f66a76
rename full_context as all_files ( #366 )
2025-05-15 11:44:56 -07:00
Olcan
4cc1dde625
refined cli ( #365 )
2025-05-15 11:38:33 -07:00
Olcan
f3d9a499dd
move sandbox-related messages to stderr ( #363 )
2025-05-15 10:54:30 -07:00
DeWitt Clinton
46e955897e
Fix instructions for globally linking the gemini script ( #361 )
2025-05-15 09:41:56 -07:00
Brandon Keiji
c6bca64499
refactor: remove unused props clearItems, openThemeDialog, onSubmit ( #357 )
2025-05-15 09:12:15 -07:00
Seth Troisi
39d57ead1a
Have /clear also clear the console.
2025-05-15 10:21:01 +00:00
DeWitt Clinton
5c6e601026
Run console.clear() in handleClearScreen when invoked by Ctrl-L. ( #356 )
...
Copied from sethtroisi@'s identical improvement to /clear in change #355 .
2025-05-14 22:48:50 -07:00
Taylor Mullen
5b4c9e8e43
Update Gemini Code verbiage -> Gemini CLI
...
- Did not update details that impact GC execution. Meaning packages are still named gemini-code (for now) and things that import them still import them as gemini-code.
2025-05-14 22:07:03 -07:00
DeWitt Clinton
aec6c0861e
Add readline-like keybindings to the input prompts. ( #354 )
...
New keybindings in the main input prompt (when auto-suggestions are not active):
- `Ctrl+L`: Clears the entire screen.
- `Ctrl+A`: Moves the cursor to the beginning of the current input line.
- `Ctrl+E`: Moves the cursor to the end of the current input line.
- `Ctrl+P`: Navigates to the previous command in the input history.
- `Ctrl+N`: Navigates to the next command in the input history.
In the multiline text editor (e.g., when editing a previous message):
- `Ctrl+K`: Deletes text from the current cursor position to the end of the line ("kill line right").
2025-05-14 17:33:37 -07:00
Allen Hutchison
ff36c93733
Docs: Add GEMINI.md for project conventions ( #352 )
2025-05-14 17:17:07 -07:00
Seth Troisi
8ca2390fbf
Improve read-many-files display message
2025-05-14 23:56:49 +00:00
Allen Hutchison
a5f5d7b33a
Refactor: Move GEMINI.md file count to Footer ( #351 )
2025-05-14 16:15:41 -07:00
Miguel Solorio
416813452e
Improvements to suggestions & slash commands ( #344 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-05-14 16:01:29 -07:00
Allen Hutchison
89aa1cad41
Add UI memory indicator. ( #348 )
...
Co-authored-by: Gregory Shikhman <shikhman@google.com >
2025-05-14 15:19:45 -07:00
Brandon Keiji
521708e294
refactor: break submitQuery into smaller functions ( #350 )
2025-05-14 15:14:15 -07:00
Allen Hutchison
1245fe4885
This commit introduces the hierarchical memory feature, allowing GEMI… ( #327 )
2025-05-14 12:37:17 -07:00
Olcan
1fa40405ea
improve sandboxing status message, update README, remove dead code from a previous change to build_sandbox.sh ( #346 )
2025-05-14 11:23:06 -07:00
Jacob Richman
bfda4295c9
Refactor TextBuffer to be a React hook ( #340 )
2025-05-13 19:55:31 -07:00
Brandon Keiji
7116ab9c29
fix: pass startup warnings to app as prop ( #342 )
2025-05-13 17:12:04 -07:00
Brandon Keiji
d3303fd3a0
refactor: move nested debugmessage and slashcommand hooks outside of useGeminiStream ( #341 )
2025-05-13 16:55:49 -07:00
Taylor Mullen
c4c11f1d65
Prevent flickering on confirmation decline.
...
- When larger confirmations were shown and then declined you'd typicaly get large chunks of content flickering upon typing or sending a subsequent request. This was primarily due to us leaving the latest confirmation as "updateable" / pending. This changeset addresses that by flushing any pending confirmation to the static container.
Part of https://b.corp.google.com/issues/414196943
2025-05-13 16:36:28 -07:00
Jacob Richman
e665d4f198
First step refactoring InputPrompt ( #335 )
2025-05-13 16:23:14 -07:00
Miguel Solorio
c4fb1ad04b
Use Enter on slash commands to execute ( #334 )
2025-05-13 16:08:12 -07:00
Olcan
4a0f5476c0
fall back to ~/.env if .env is not found in current directory or any ancestors ( #338 )
2025-05-13 15:36:34 -07:00
Brandon Keiji
3be8b6dc34
fix(sandbox): default to current user profile for debian/ubuntu env ( #337 )
2025-05-13 21:13:54 +00:00
Olcan
0ae59056d1
mention git diff --staged for partial commits ( #336 )
2025-05-13 14:06:14 -07:00
Brandon Keiji
0e61a15438
fix: remove gemini-code bin configuration ( #330 )
2025-05-13 13:09:58 -07:00
Olcan
17cce0adf4
use git diff HEAD instead of git diff && git diff --staged ( #333 )
2025-05-13 12:56:32 -07:00
Jacob Richman
e2c3611c63
Multiline editor ( #302 )
...
Co-authored-by: Taylor Mullen <ntaylormullen@google.com >
2025-05-13 11:24:04 -07:00
Brandon Keiji
8da7a71d9a
refactor: shorten 'gemini' binary name ( #329 )
2025-05-13 10:49:45 -07:00
Miguel Solorio
61ccd4f33a
Allow users to cancel out of theme selector ( #310 )
2025-05-13 07:41:32 -07:00
Taylor Mullen
7d8392bab4
Encourage utilization of git diff --staged for commit message writing.
...
- This enables GC to base commit message changes on actual file content.
2025-05-12 23:51:37 -07:00
Taylor Mullen
3217576743
feat: Enhance replace tool reliability with multi-stage edit correction
...
This commit significantly improves the `replace` tool's robustness by introducing a multi-stage correction mechanism. This directly addresses challenges with LLM-generated tool inputs, particularly the over-escaping of strings sometimes observed with Gemini models, and other minor discrepancies that previously led to failed edits.
The correction process is as follows:
1. **Targeted Unescaping:** The system first applies a specialized unescaping function to the `old_string` and `new_string` to counteract common LLM-induced escaping patterns.
2. **LLM-Powered Discrepancy Resolution:** If a unique match for the `old_string` is still not found, the system leverages a Gemini model (`gemini-2.5-flash-preview-04-17`) to:
* Identify the most probable intended `old_string` in the file by intelligently correcting minor formatting or escaping differences.
* Adjust the `new_string` to correspond with any corrections made to the `old_string`, maintaining the original edit's intent.
This enhancement makes the `replace` tool more resilient and effective, leading to a higher success rate for automated code modifications. The `expected_replacements` parameter has been removed as the tool now focuses on finding a single, unique, and correctable match. The tool's description and error reporting have been updated to reflect these new capabilities.
Fixes https://b.corp.google.com/issues/416933027
2025-05-12 23:33:12 -07:00
Olcan
5ec254253f
ensure no 'undefined' in system prompt ( #322 )
2025-05-12 16:41:11 -07:00
Olcan
884d6ebfd8
system prompt for working with git ( #321 )
2025-05-12 16:27:07 -07:00
Taylor Mullen
df74594b8f
When an error occurs stop processing.
2025-05-12 00:06:20 -07:00
Taylor Mullen
8537aabba4
feat: Add User-Agent to API requests
...
This change introduces a User-Agent header to all API requests made by the Gemini CLI.
The User-Agent string includes the CLI version, Node.js version, operating system, and architecture. This will help in tracking usage and identifying potential issues.
Fixes https://b.corp.google.com/issues/416353675
Signed-off-by: Gemini
2025-05-11 14:33:58 -07:00
Taylor Mullen
2970f0a06c
feat: Integrate centralized error reporting for API interactions
...
Implements robust error handling for Gemini API calls, integrating with the centralized error reporting system.
- API errors are now caught and reported to dedicated log files, providing detailed diagnostics without cluttering the user interface.
- A concise error message is surfaced to the user in the UI, indicating an API issue.
- Ensures any pending UI updates are processed before an API error is displayed.
This change improves our ability to diagnose API-related problems by capturing rich error context centrally, while maintaining a clean user experience.
Signed-off-by: Gemini <YourFriendlyNeighborhoodAI@example.com >
2025-05-11 13:55:55 -07:00
Taylor Mullen
4d5f0dc080
Workaround model bug where it returns invalid history items.
...
- Currently there's a bug in the API (or SDK?) where the SDK endpoint will commonly fail with:
```
Error: Failed to generate JSON content: got status: 400 Bad Request. {"error":{"code":400,"message":"* GenerateContentRequest.contents[5].parts: contents.parts must not be empty.\n","status":"INVALID_ARGUMENT"}}
```
- At times the model will respond with an empty parts list where if we send that back up to the API endpoint it explodes with the above. Using a curated history seems like a total hack around this prolbem, and even in the SDK (i'm following up on this), BUT helps mitigate this issue.
2025-05-11 13:01:54 -07:00
Taylor Mullen
cf91f72c5c
Remove terminal tool and dependencies.
...
- We now solely use the shell tool. This deletes all content around the legacy terminal tool so we can focus on improving the new Shell tool.
- Remove instances from sandboxing, tests, utilities etc.
2025-05-11 12:35:55 -07:00
Taylor Mullen
dcb67c32a5
Log server information on error.
...
- The goal of this is to enable us to better diagnose server issues when they occur.
- Added tests because why not.
2025-05-10 14:18:23 -07:00
Taylor Mullen
d159a1507e
Don't prematurely end convo w/ Gemini.
...
- There seems to be a root model bug where the model will preemptively bail on conversations without trying harder. Typically the stops are VERY obvious and bug-looking where you need to prmopt the model to "continue".
- This PR attempts to fix the above by running a 2.0-flash request (don't need somethign more powerful) at the end of every full interaction to see who should speak (user or model).
- Add tests for nextSpeakerChecker
Fixes https://b.corp.google.com/issues/416826051
2025-05-10 14:05:58 -07:00
Taylor Mullen
c0eab31c02
Show model decline/cancellation states.
...
- Upon decline / cancellation we weren't showing the model the cancellation status or states. Therefore it didn't know why things would or wouldn't happen
Fixes https://b.corp.google.com/issues/416797704
2025-05-10 00:26:18 -07:00
Taylor Mullen
6b518dc9e4
Enable tools to cancel active execution.
...
- Plumbed abort signals through to tools
- Updated the shell tool to properly cancel active requests by killing the entire child process tree of the underlying shell process and then report that the shell itself was canceled.
Fixes https://b.corp.google.com/issues/416829935
2025-05-10 00:21:09 -07:00
Taylor Mullen
090198a7d6
Make cancel not explode.
...
- We were console.erroring, throwing and early aborting. Instead we now treat cancels like a normal user message and show an indicator in the UI
Fixes https://b.corp.google.com/issues/416515841
2025-05-09 22:49:32 -07:00
Taylor Mullen
28f9a2adfa
fix: Resolve infinite loop
...
- This change addresses and resolves an infinite loop. The patch ensures the loop condition is correctly handled, preventing its recurrence.
- Added tests for markdownUtilities.test.ts
Fixes: https://b.corp.google.com/issues/416795337
Signed-off-by: Gemini <My circuits hummed, and the loop was no more.>
2025-05-09 17:37:36 -07:00
Allen Hutchison
4a6d0717a1
fix for b/414940078 ( #306 )
2025-05-09 15:38:19 -07:00
Taylor Mullen
e9274b2ab2
feat: Update default Gemini model to gemini-2.5-pro-preview-05-06
...
Fixes https://b.corp.google.com/issues/416778280
Signed-off-by: Your Witty AI Assistant
2025-05-09 15:27:51 -07:00
Olcan
92c1279de6
sandbox/seatbelt-aware system prompt, support for custom seatbelt profiles under project settings ( #304 )
2025-05-09 11:33:05 -07:00
Taylor Mullen
b8fa38a6e8
feat: Improve theme not found handling
...
Modify to return a boolean instead of throwing an error when a theme is not found. Update CLI startup and hook to handle the boolean return value for more graceful error handling.
2025-05-09 10:28:20 -07:00
Olcan
c58f879026
fix MCP under seatbelt, improve error handling ( #301 )
2025-05-09 09:02:14 -07:00
Olcan
b35a3856a2
fix debugging with seatbelt, including in strict profile ( #300 )
2025-05-09 08:44:40 -07:00
Taylor Mullen
baa26e9e2e
Ensure dogfood packaging more accurately mirrors local build.
...
- Removed `build:package` in favor of `npm run build`.
- The regular build does extra work to copy over relevant information into the `dist` dir. Alternatively without this we get a `dist` dir in the `cli` folder that has no seatbelt packaging.
Fixes https://b.corp.google.com/issues/416634356
2025-05-08 23:55:44 -07:00
Taylor Mullen
41b82ce796
Add bundling support.
...
- This can now be invoked with `npm run bundle`, it creates a `bundle/` folder that has:
- gemini.js
- sandbox-macos-minimal.sb
- sandbox-macos-strict.sb
- shell.json
- shell.md
- This doesn't include any sort of automation for auto bundling pieces. It's just the root capability which we can weave into other locations.
Fixes https://b.corp.google.com/issues/411432723
2025-05-08 23:36:42 -07:00
Amir Hardon
1c486a4050
Fix: Prevent CLI from crashing when a configured theme is not found
...
Previously, if a theme specified in the user's settings was not found, the CLI would crash during startup. This was particularly affecting users upgrading from older versions as the "ANSI colors only" theme was renamed to "ANSI".
This commit adds error handling to catch the theme not found error during initial loading and when setting themes later. Instead of crashing, the application now logs a warning, displays an error message in the UI, and opens the theme selection dialog to allow the user to choose a valid theme.
2025-05-08 22:33:46 -07:00
Brandon Keiji
4741c9a6eb
fix(sandbox): set --inspect-brk in production sandbox when env DEBUG is truthy ( #295 )
2025-05-08 21:12:19 -07:00
Miguel Solorio
a685597b70
UI Polish for theme selector ( #294 )
2025-05-08 16:00:55 -07:00
Olcan
6b0ac084b8
allow SEATBELT_PROFILE=none to disable seatbelt on macos ( #296 )
2025-05-08 15:52:04 -07:00
Olcan
b1c449d11c
refined sandbox/seatbelt log message, pass NODE_OPTIONS along to sandboxed node ( #292 )
2025-05-08 14:50:35 -07:00
Olcan
3b025883b6
fix json import warning ( #291 )
2025-05-08 14:14:09 -07:00
Miguel Solorio
5db1b7622a
Make ascii logo simpler ( #288 )
2025-05-08 13:46:41 -07:00
Olcan
06e5dfd538
minor comment fix ( #290 )
2025-05-08 11:31:12 -07:00
Olcan
b59a940057
adjust seatbelt to allow write into specific dirs under user home ( #289 )
2025-05-08 11:28:45 -07:00
Tae Hyung Kim
448a24746c
init
2025-05-07 23:47:58 -07:00
Taylor Mullen
6989032414
Remove unnecessary sleep.
...
- Code review comment: https://github.com/google-gemini/gemini-code/pull/271#pullrequestreview-2821741430
2025-05-07 23:46:57 -07:00
Olcan
327bd5f836
rename SANDBOX_EXEC_PROFILE as SEATBELT_PROFILE, and fix another accidental rephrasing ( #285 )
2025-05-07 21:31:30 -07:00
Tae Hyung Kim
13eadcea45
Fix bugs from useGeminiStream refactor ( #284 )
2025-05-07 21:15:41 -07:00
Olcan
d524309e3c
use seatbelt on macos, with two profiles: minimal (default) which only restricts writes, and strict, which is deny-by-default and only allows specific operations ( #283 )
2025-05-07 20:03:29 -07:00
Taylor Mullen
34fe142894
Update EditTool description for clarity and better parameter guidance.
...
- Prior to this change, the model would often escape parameters when requesting edits, leading to failures in matching the original content. This update clarifies the expected format for `old_string` and `new_string` to prevent such issues.
- Update `EditTool` description to provide clearer instructions.
- Clarify expectations for `old_string` and `new_string` parameters, emphasizing the need for exact, unescaped text.
- Aim to reduce user errors by setting better expectations for tool usage.
Fixes: https://b.corp.google.com/issues/413088274
— Your friendly neighborhood Gemini
2025-05-07 18:31:39 -07:00
Taylor Mullen
43c707b4e8
Continue to work through 429/500s.
...
- The root of this issue was actually a genai SDK bug that was fixed here: https://critique.corp.google.com/cl/753255997
- Upgrade to latest genai SDK for latest bug fixes (including the above)
- Removed specific 429 handling for uncaught rejections.
Fixes https://b.corp.google.com/issues/413760164
2025-05-07 16:38:06 -07:00
cornmander
95ab38e8d6
Create simple script for setting up a dev environment. ( #277 )
2025-05-07 16:21:16 -04:00
Tae Hyung Kim
0a7f461d39
Fix flicker in iterm2 ( #266 )
2025-05-07 12:57:19 -07:00
Brandon Keiji
358281f0fd
fix: use react-jsx for typecheck ( #280 )
2025-05-07 12:36:04 -07:00
Allen Hutchison
6b3ef9f939
Refactor: Enhance @-command, Autocomplete, and Input Stability ( #279 )
2025-05-07 12:30:32 -07:00
Olcan
4649026312
make sandbox build quiet by default but allow VERBOSE=1 option. enable caching by default but allow disabling via BUILD_SANDBOX_FLAGS="--no-cache" ( #278 )
2025-05-07 11:00:48 -07:00
Olcan
f5b31fcd29
drop the comment to fix npmrc warning about "always-auth" in most recent version of npm ( #276 )
2025-05-07 10:33:17 -07:00
Brandon Keiji
ed0b90644a
fix: build image with --no-cache ( #275 )
2025-05-07 08:18:04 -07:00
Brandon Keiji
49b5db29b3
feat: add build:sandbox and build:all npm scripts ( #274 )
2025-05-07 07:46:47 -07:00
Brandon Keiji
739654bb25
fix(sandbox): consolidate dev and prod sandbox ( #273 )
2025-05-07 07:23:13 -07:00
Olcan
5344853344
drop restriction on whitespace in bash commands ( #272 )
2025-05-06 23:38:36 -07:00
Taylor Mullen
a588d5cd10
Prevent UI hang on long tool confirmations.
...
Problem:
When a tool confirmation dialog appeared for a potentially long-running
operation (e.g., `npm install`), accepting the confirmation would cause
the UI to appear to hang. The confirmation dialog would remain visible,
and no further UI updates would occur until the long-running task
completed. This provided a poor user experience as the application
seemed unresponsive.
Fix:
This change addresses the issue by ensuring the UI is updated to remove
the confirmation dialog *before* the long-running operation begins.
It also marks the tool as executing so a spinner can be shown.
Fixes https://b.corp.google.com/issues/415844994
Signed, sealed, delivered, it's yours!
- Gemini, your friendly neighborhood code-slinger
2025-05-06 22:38:30 -07:00
Taylor Mullen
782686bcf3
Fix edit confirmation re-submission.
...
- This broke in [this commit](https://github.com/google-gemini/gemini-code/commit/7d13f242887f4204a2c8a0ca719e121621472db9#diff-e257a7e5e02896371ce002da8963abdb91f5c77990d38e3d2f7ea07e5b19e32eR428 )
2025-05-06 22:12:27 -07:00
Taylor Mullen
201eb38479
Fix rendering & indentation of bullets (numeric and *).
...
- Prior to this numeric bullets wouldn't have a period suffix and * bullets wouldn't be indented if they were nested.
Fixes https://b.corp.google.com/issues/414266756
2025-05-06 17:34:28 -07:00
Allen Hutchison
7d13f24288
refactor(cli): Centralize history management via useHistoryManager hook ( #261 )
2025-05-06 16:20:28 -07:00
Allen Hutchison
adeda6a5b3
Refactor: Memoize hook callbacks, update dependencies, and fix lint errors ( #268 )
...
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-05-06 14:48:49 -07:00
Olcan
e26c436d5c
use temp file instead of footer to allow arbitrary chunking of streams and arbitrary interleaving with output from background processes ( #267 )
2025-05-06 10:44:40 -07:00
Brandon Keiji
c5182d5ca4
fix: use flat config for react eslint plugin ( #265 )
2025-05-06 08:48:26 -07:00
Jacob Richman
6812235cfa
Revert "Support syntax highlighting for more languages ( #246 )" ( #264 )
2025-05-06 08:16:32 -07:00
Taylor Mullen
792cc145b1
Add vibe coding instructions for 0->game.
...
- Prior to this GC would attempt to utilize React components as game assets (instead of using canvas) + would fail to deal with placeholder assets effectively.
Part of https://b.corp.google.com/issues/413718497
2025-05-05 20:53:47 -07:00
olcan
77688c1358
added todo about removing mcp dependency once support is built into genai SDK
2025-05-05 17:10:45 -07:00
olcan
b8b3a288c7
extra spacing in discovered tool descriptions
2025-05-05 17:10:45 -07:00
olcan
9742f6e4a2
support for mcp tools
2025-05-05 17:10:45 -07:00
olcan
6b6eef5b80
support for discovered tools using project settings for discovery and call commands
2025-05-05 17:10:45 -07:00
Seth Troisi
2cd976987e
slash command altnames and support for ?
2025-05-05 22:33:22 +00:00
Seth Troisi
bb52149a06
Move Intro to Help and only display after help command.
2025-05-05 20:54:12 +00:00
Seth Troisi
415b757d4a
Remove passthroughCommands ( #252 )
2025-05-05 10:57:06 -07:00
Seth Troisi
a0bed3e716
Have /clear clear <Static> content by remounting ( #250 )
2025-05-05 10:52:29 -07:00
Allen Hutchison
74f8f5eaa9
feat(cli): add useHistoryManager hook for chat history ( #234 )
...
Co-authored-by: Brandon Keiji <brandonkeiji@google.com >
2025-05-05 09:44:59 -07:00
Jacob Richman
2b309a8abb
Support syntax highlighting for more languages ( #246 )
2025-05-04 07:57:55 -07:00
Olcan
ae96b8914e
fix sandbox prod build w/ custom Dockerfile ( #255 )
2025-05-03 10:07:51 -07:00
Olcan
cfdbea4dc2
make sandbox venv support more robust, allowing arbitrary venv path, and ignoring venv outside workdir (instead of erroring out) ( #254 )
2025-05-03 09:12:44 -07:00
Olcan
3a1abb07bf
enable recreating a python virtual env (.venv folder) inside sandbox ( #253 )
2025-05-03 00:39:31 -07:00
Jacob Richman
0556358560
Cleanup low value comments. ( #248 )
2025-05-02 14:39:39 -07:00
Olcan
69d1c644d9
custom sandboxing via sandbox.Dockerfile and sandbox.bashrc in project settings ( #249 )
2025-05-02 14:07:40 -07:00
Seth Troisi
cc838fad44
Add autocomplete for slash commands
2025-05-02 20:58:53 +00:00
Olcan
f237082c37
pass PATH and PYTHONPATH into sandbox, let sandbox scripts recognize user settings for sandbox ( #247 )
2025-05-02 12:04:22 -07:00
Jacob Richman
b9da7290e1
Use parameter properties for constructor parameters in config.ts ( #245 )
2025-05-02 11:28:30 -07:00
Olcan
b809953890
sandbox arg should not default to false but rather undefined ( #244 )
2025-05-02 10:05:53 -07:00
Jacob Richman
539ab947a4
Use parameter properties where possible. ( #242 )
2025-05-02 09:31:18 -07:00
Olcan
a7679db6e9
sandbox setting and argument ( #243 )
2025-05-02 08:15:46 -07:00
Jacob Richman
53ac7952c7
Support escaping spaces in file paths. ( #241 )
2025-05-01 18:02:04 -07:00
Olcan
ca53565240
prevent crash on empty shell cmd with $ or ! ( #240 )
2025-05-01 20:41:00 +00:00
Olcan
a386841947
mount user settings in sandbox ( #239 )
2025-05-01 12:08:24 -07:00
Jacob Richman
7e8f379dfb
Save settings to ~/.gemini/settings.json and optionally /your/workspace/.gemini/settings.json ( #237 )
2025-05-01 10:34:07 -07:00
Olcan
a18eea8c23
remove start_sandbox.sh script ( #238 )
2025-05-01 09:16:33 -07:00
Brandon Keiji
b27aae26c8
refactor: async-ify yargs ( #236 )
2025-05-01 01:00:53 +00:00
Seth Troisi
339d598295
Add .vscode with enableProjectDiagnostics on
2025-04-30 23:59:51 +00:00
Allen Hutchison
976333f654
Fix an issue where types/react was a different version from our main … ( #231 )
...
Co-authored-by: Brandon Keiji <brandonkeiji@google.com >
2025-04-30 16:33:43 -07:00
Seth Troisi
2616e965a7
Moved theme to slashCommand
2025-04-30 22:32:29 +00:00
Seth Troisi
5f5edb4c9b
Added bang(!) commands as a shell passthrough
2025-04-30 22:17:08 +00:00
Olcan
68a3020044
simplify directory display in shell tool description ( #230 )
2025-04-30 12:27:56 -07:00
Brandon Keiji
3aef883f4b
refactor: make parseImageName more readable ( #228 )
2025-04-30 10:16:29 -07:00
Allen Hutchison
3ec00d1689
Fix the generation of globs by using the filesystem instead of a heuristic. ( #227 )
2025-04-30 09:09:01 -07:00
Allen Hutchison
9f20c5f95e
Add @ command suggestions in the UI. ( #219 )
2025-04-30 08:31:32 -07:00
Brandon Keiji
28fc2d0de3
refactor(sandbox): make cli path agnostic of docker container build rules ( #226 )
2025-04-30 00:39:00 -07:00
Brandon Keiji
cb8a7f01ae
refactor: move sandbox js code to its own module ( #225 )
2025-04-29 17:38:25 -07:00
Seth Troisi
fb23321514
Add Intro text with list of /commands
2025-04-29 17:20:38 -07:00
Seth Troisi
bf659f1977
Add intro with some abilities and commands
2025-04-29 17:20:38 -07:00
Seth Troisi
19bdc441d6
Add /help
2025-04-29 15:50:24 -07:00
Allen Hutchison
889200d400
Add @ command handling to useGeminiStream ( #217 )
...
* First integration of at commands into useGeminiStream.ts
* feat: Integrate @ command for file/directory reading
- Adds support for `@<path>` commands in the CLI UI to read file or directory contents using the `read_many_files` tool.
- Refactors `useGeminiStream` hook to handle slash, passthrough, and @ commands before sending queries to the Gemini API.
- Improves history item ID generation to prevent React duplicate key warnings.
* fix: Handle additional text after @ command path
- Modifies the `@` command processor to parse text following the file/directory path (e.g., `@README.md explain this`).
- Includes both the fetched file content and the subsequent text in the query sent to the Gemini API.
- Resolves the TODO item in `atCommandProcessor.ts`.
* feat: Allow @ command anywhere in query and fix build
- Update `atCommandProcessor` to correctly parse `@<path>` commands regardless of their position in the input string using regex. This enables queries like "Explain @README.md to me".
- Fix build error in `useGeminiStream` by importing the missing `findSafeSplitPoint` function.
* rename isPotentiallyAtCommand to isAtCommand
* respond to review comments.
2025-04-29 15:39:36 -07:00
Olcan
c1b23c008a
do not prepend ./ to absolute paths or . ( #220 )
2025-04-29 22:31:46 +00:00
Olcan
e85db8aa3c
drop the "RE" from REBUILD_SANDBOX ( #218 )
2025-04-29 14:45:11 -07:00
Allen Hutchison
28767b369f
Refactor useGeminiStream to pull slash commands and passthrough comma… ( #215 )
...
* Refactor useGeminiStream to pull slash commands and passthrough commands into their own processors.
* whitespace lint errors.
* Add sugestions from code review.
2025-04-29 13:29:57 -07:00
Olcan
4793e86f04
do not even check sandboxing commands (podman/docker/etc) if we are already in sandbox ( #213 )
2025-04-29 10:52:05 -07:00
Olcan
4cb7386ec6
allow command -v to fail ( #212 )
2025-04-29 10:21:09 -07:00
Olcan
28518aee0a
use exec instead of spawn for command -v to go through shell and let it interpret command as a shell built-in instead of looking for a command binary on system (note setting shell:true for spawn could also work) ( #211 )
2025-04-29 09:02:08 -07:00
Olcan
825cecc089
SANDBOX_SET_UID_GID option for systems where this is necessary (should be only rootful docker on linux w/o userns-remap configured) ( #210 )
...
* SANDBOX_SET_UID_GID option for systems where this is necessary (should be only rootful docker on linux w/o userns-remap configured)
* Merge remote-tracking branch 'origin/main' into sandbox_uid_gid
2025-04-29 08:43:24 -07:00
Allen Hutchison
e0de69f384
First four independent files for @ commands. ( #205 )
2025-04-29 08:29:09 -07:00
Brandon Keiji
df44ffbcff
fix: point start.sh to relative path ( #209 )
2025-04-29 02:44:59 +00:00
Brandon Keiji
051ab58c50
refactor: cleanup references to sandbox prototype ( #208 )
2025-04-29 02:11:07 +00:00
Olcan
0d849bf58e
enable servers in sandbox to listen on localhost (127.0.0.1) instead of 0.0.0.0, ensuring servers can be container/host-agnostic ( #207 )
...
* enable servers in sandbox to listen on localhost (127.0.0.1) instead of 0.0.0.0, ensuring servers can be container/host-agnostic
* Merge remote-tracking branch 'origin/main' into sandbox_localhost_works
2025-04-28 18:40:24 -07:00
Brandon Keiji
3073c67861
fix: set .npmrc in HOME dir before publishing ( #206 )
2025-04-28 18:16:42 -07:00
Olcan
cd1ddcb4f1
SANDBOX_PORTS env var ( #204 )
2025-04-28 15:44:17 -07:00
Olcan
57ceadb7d8
switch to shell tool, deprecating terminal ( #203 )
...
* switch to shell tool, deprecating terminal
* Merge remote-tracking branch 'origin/main' into deprecate_terminal
2025-04-28 15:05:36 -07:00
Brandon Keiji
30b04295d2
fix: remove --dry-run from cli prepublish script ( #202 )
2025-04-28 13:29:21 -07:00
Brandon Keiji
7ad6556623
feat: publish docker image alongside npm package ( #197 )
2025-04-28 13:25:19 -07:00
Olcan
304d1f2712
env flags SANDBOX_{MOUNTS,ENV}, improved debugging through sandbox that should now work in all scenarios ( #201 )
...
* env flags SANDBOX_{MOUNTS,ENV}, improved debugging through sandbox that should now work in all scenarios
* Merge remote-tracking branch 'origin/main' into sandbox_flags_improved_debugging
2025-04-28 12:44:34 -07:00
Seth Troisi
dfa46df474
Refactor hardcoded slash commands ( #179 )
2025-04-28 12:38:07 -07:00
Olcan
6703b37a93
do not prepend ./ unless missing ( #200 )
...
* do not prepend ./ unless missing
* Merge remote-tracking branch 'origin/main' into dir_prefix_fix
2025-04-28 11:07:11 -07:00
Brandon Keiji
ebc0df6cbe
fix: point 'npm run start' to index.js ( #199 )
2025-04-28 10:44:07 -07:00
Brandon Keiji
64910527de
refactor: remove node_modules reference in start command ( #198 )
2025-04-28 09:26:46 -07:00
Olcan
491f8b28b4
ability to (re-)build sandbox outside GC repo root, useful for dev iterations ( #196 )
2025-04-28 09:07:37 -07:00
Olcan
491a9da80b
rename dev image with -dev suffix ( #195 )
2025-04-28 08:52:18 -07:00
Olcan
a8f679ccb5
shell tool tweaks ( #194 )
2025-04-28 08:17:52 -07:00
Taylor Mullen
a9dc2772dd
feat(cli): Improve new file diff rendering with syntax highlighting
...
- Enhance the component to provide better readability for newly created files.
- Instead of displaying a standard line-by-line diff for new files, extract the added content and render it with syntax highlighting based on the file extension.
- Refactor the existing diff rendering logic into a separate function.
- Add a helper function to map common file extensions to language names for syntax highlighting.
Fixes: https://b.corp.google.com/issues/414279447
Signed-off-by: Gemini, your friendly neighborhood code agent.
2025-04-27 23:25:08 -07:00
Taylor Mullen
a6e9bcb52d
Refactor: Update core system prompt with new application workflow and improved structure
...
- Refine agent persona from 'assistant' to 'agent'.
- Restructure prompt into distinct 'Software Engineering Tasks' and 'New Application' workflows.
- Add detailed steps and tool usage guidance for creating new applications.
- Improve clarity and formatting of prompt instructions.
Part of https://b.corp.google.com/issues/413718497
Signed-off-by: Gemini, your friendly neighborhood code agent.
2025-04-27 22:36:05 -07:00
Olcan
6d32405d74
minimal shell tool ( #191 )
2025-04-27 18:57:10 -07:00
Taylor Mullen
74dd7fca98
Upgrade @google/genai to latest.
...
- Motivation of this upgrade is to enable us to get convenient access to the thinking budget config changes for 2.5 thinking models. This will be key to getting our model to take a bit more time for various requests.
2025-04-27 13:48:34 -07:00
Taylor Mullen
c09292efd1
Cleanup outdated packages in server/cli.
...
- Found that pre-backend front end split we had a number of packages that we hadn't revisisted. Went through and cleaned them up (i.e. cli needing genai).
2025-04-27 13:41:21 -07:00
Taylor Mullen
00840f75a1
Allow tool groups + following content to be updateable.
...
- I found that when there are fast transactions that update our tool group history at times promoting a tool group into the static container can result in bleeding. As a temporary fix for this (not a react Guru) I'm increasing the # of items to be 2 as updateable if a tool group is close to the end.
2025-04-27 13:27:06 -07:00
Olcan
9de2e82b8f
don't confirm invalid params in terminal tool, or in general (added comments to base class) ( #187 )
2025-04-27 10:25:12 -07:00
Olcan
7828e813a8
hop into sandbox ( #186 )
2025-04-26 21:27:36 -07:00
Taylor Mullen
688b2d0da7
Follow up fixes from flickering PR.
...
- The push for these changes didn't make it through.... Just doing a quick fix here which should have been in: https://github.com/google-gemini/gemini-code/pull/181
2025-04-26 19:32:56 -07:00
Taylor Mullen
5be89befef
feat: Fix flickering in iTerm + scrolling + performance issues.
...
- Refactors history display using Ink's <Static> component to prevent flickering and improve performance by rendering completed items statically.
- Introduces ConsolePatcher component to capture and display console.log, console.warn, and console.error output within the Ink UI, addressing native handling issues.
- Introduce a new content splitting mechanism to work better for static items. Basically when content gets too long we will now split content into multiple blocks for Gemini messages to ensure that we can statically cache larger pieces of history.
Fixes:
- https://b.corp.google.com/issues/411450097
- https://b.corp.google.com/issues/412716309
2025-04-26 16:08:05 -07:00
Taylor Mullen
aa65a4a1fc
Prevent console.warn's for tool calls.
...
- Added helper for extracting text content from responses without warning.
See fixed issue for more detail: https://b.corp.google.com/issues/414005146
2025-04-26 15:50:44 -07:00
Brandon Keiji
d051c0fd0f
feat: prototype publish sandbox script with npm package ( #182 )
2025-04-25 17:30:50 -07:00
Seth Troisi
a5ba681f8d
Add /exit and /quit commands
2025-04-25 14:29:00 -07:00
Seth Troisi
ed12a2e133
Pulled manual commands to seperate function
2025-04-25 14:29:00 -07:00
Brandon Keiji
4ce897d19d
fix: add .env~ to .gitignore ( #178 )
2025-04-25 21:24:14 +00:00
Olcan
34f100d6ff
drop todo about qualified writes, turns out others don't do it either so nbd ( #177 )
2025-04-25 14:16:24 -07:00
Olcan
7087c0508e
more consistent confirmations, TODO to improve write confirmations, drop "description" from execution confirmation, add confirmation to new (still dummy) shell tool ( #176 )
2025-04-25 14:05:58 -07:00
Brandon Keiji
1a64268bb0
fix: remove extra initError ( #173 )
2025-04-25 13:15:05 -07:00
Olcan
86c3a3234f
do not clean before package build ( #175 )
2025-04-25 13:01:40 -07:00
Olcan
415ec91c6d
detect missing sandbox image and provide useful error message ( #174 )
2025-04-25 12:38:38 -07:00
Olcan
320f54e205
instant (dev) sandbox ( #171 )
...
* instant (dev) sandbox
* leave Dockerfile as is to pass deploy test
* fix comma
* fix prod build
* do not use "images exists" which docker does not support
* separate dev-mode flag
* Merge remote-tracking branch 'origin/main' into instant_sandbox
2025-04-25 10:58:23 -07:00
Brandon Keiji
eea524f6bb
fix: make publish dry-run script match dogfood publish script ( #169 )
2025-04-25 09:58:27 -07:00
Olcan
b65442a88c
more compact cli version in footer ( #168 )
2025-04-25 15:34:26 +00:00
Olcan
39cdba06a6
pass model env var to sandbox ( #167 )
2025-04-25 15:28:14 +00:00
Brandon Keiji
f34ac6272c
fix: install rsync in publish pipeline ( #166 )
2025-04-24 19:53:59 -07:00
Olcan
08463e6114
enable json imports ( #165 )
...
* enable json imports
* Merge remote-tracking branch 'origin/main' into enable_json_imports
2025-04-24 18:30:19 -07:00
Brandon Keiji
b1b9735889
refactor: make version number shorter ( #164 )
2025-04-24 18:22:59 -07:00
Olcan
cbba8007b2
shell bones ( #160 )
...
* shell bones
* Merge remote-tracking branch 'origin/main' into shell_bones
* add line break
* another line break
* drop the log to avoid breaking terminals
* rename tool to be consistent with terminal
* fix build
2025-04-24 18:03:33 -07:00
Brandon Keiji
a94a9ce3bf
docs: update manual publishing section ( #162 )
2025-04-25 00:52:24 +00:00
Brandon Keiji
7ea3dff49c
refactor: change default logs bucket for cloudbuild cicd ( #161 )
2025-04-24 17:40:23 -07:00
Allen Hutchison
8cf3e1611e
Adding a full_context command line argument. ( #158 )
...
* Adding a full_context command line argument.
* Update packages/cli/src/config/config.ts
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
* lint fix.
---------
Co-authored-by: N. Taylor Mullen <ntaylormullen@google.com >
2025-04-24 16:08:29 -07:00
Olcan
133f39494e
general rules should apply to whole project ( #159 )
...
* general rules should apply to whole project
* Merge remote-tracking branch 'origin/main' into fix_eslint
* lint fixes under server package
2025-04-24 15:42:18 -07:00
Brandon Keiji
0510d06ecf
infra: automate continuous deployment ( #157 )
2025-04-24 14:36:58 -07:00
Jacob Richman
4dc98b3c7e
Switch Ansi theme to use regular colors to improve readability. ( #154 )
2025-04-24 14:19:35 -07:00
Olcan
deb11efa89
remove dead code (+ dont reset shellReady unless restarting) ( #156 )
2025-04-24 13:24:15 -07:00
Brandon Keiji
d394a9f39f
feat: add flag to customize package version during pre-release staging ( #155 )
2025-04-24 13:02:49 -07:00
Olcan
d97d2a4f7b
rename read_many_files ( #153 )
2025-04-24 12:15:49 -07:00
Jacob Richman
19ed2ed630
Add an ansi theme. ( #152 )
...
Add the gradient used by the ascii art logo to theme.
2025-04-24 11:56:23 -07:00
Jacob Richman
5790a5d7cf
Add a theme preview and update the theme when highlight changes. ( #151 )
2025-04-24 11:36:34 -07:00
Olcan
d8c0587346
better sandbox check ( #150 )
2025-04-24 10:32:30 -07:00
Olcan
aed42a726a
remove target_dir flag ( #149 )
2025-04-24 10:21:10 -07:00
Olcan
30bdef9bf5
in sandboxed run scripts, allow .env to be an in any ancestor directory, same as in findEnvFile; also prep for sanboxing with global command ( #147 )
2025-04-24 08:58:47 -07:00
Olcan
fb1c67219d
unban commands ( #146 )
2025-04-23 19:20:54 -07:00
Seth Troisi
bf6e809abf
Pass GEMINI_API_KEY env variable to sandbox
2025-04-23 18:22:58 -07:00
Brandon Keiji
31045e6086
fix: revert pointing npm start to .bin ( #144 )
2025-04-24 01:21:07 +00:00
Brandon Keiji
c24dc0ec77
feat: add react dev tools ( #143 )
2025-04-23 18:16:15 -07:00
jacob314
cf89c030d0
Make ui/colors refelect the current theme.
2025-04-23 18:08:22 -07:00
Seth Troisi
105c20146c
Add generic container run command for npm start
2025-04-23 18:07:29 -07:00
Seth Troisi
09fabe3021
Remove --workspace npm run debug command in README
2025-04-23 17:57:01 -07:00
Allen Hutchison
cf92ffab34
Add concatenation tool ( #130 )
...
* Adding a tool inspired by files-to-prompt that will recursivly read through all the files in a directory (guarded by targetDir) and concatenate those files for the model. Ignores common build artifacts and non-text files.
* Migraded glob logic to fast-glob. Buffed the tool description to give more guidance to the model. Incorporated reveiw feedback.
* lint and error checking.
2025-04-23 17:25:47 -07:00
Seth Troisi
d771dcbdb9
Support GEMINI_CODE_SANDBOX=0/false as no SANDBOXing
2025-04-23 16:33:19 -07:00
Taylor Mullen
095163bbed
Refactor: Remove GEMINI.md memory and refactor system prompt
...
- Updates CONTRIBUTING.md and Tips.tsx to remove references to GEMINI.md and the /init command, and renumbers tips.
- Fixes a typo in Tips.tsx ("information.s" -> "information.").
- Refactors the core system prompt in prompts.ts from a constant string to a function .
- Updates client.ts to call the function.
- Updates tool name references within the system prompt to use template literals for dynamic naming.
Fixes bug: https://buganizer.corp.google.com/issues/413061073
---
Generated by yours truly __Gemini Code__
2025-04-23 15:57:40 -07:00
Brandon Keiji
94c04955c8
fix: use process.env.CLI_VERSION to avoid conflicts with NODE_ENV ( #139 )
2025-04-23 15:49:18 -07:00
Seth Troisi
72d0b73598
Add docker equivilant for --authfile
2025-04-23 15:46:51 -07:00
Brandon Keiji
4c951ea435
feat: set dogfood artifact registry as the default publishing endpoint ( #135 )
2025-04-23 15:11:10 -07:00
Brandon Keiji
7f3798e180
feat: add CLI version number to footer ( #134 )
2025-04-23 15:00:40 -07:00
Chris Perry
60bee4b137
Updating the system prompt to allow for more complex app creation
2025-04-23 14:39:12 -07:00
Seth Troisi
acc655d35f
Default TMPDIR to /tmp/ for sandbox ( #133 )
2025-04-23 14:36:15 -07:00
Olcan
f90dcf663e
remove dead code ( #131 )
2025-04-23 13:33:07 -07:00
Taylor Mullen
4c2a5045a0
Add theming support.
...
- Added a number of common themes to our support matrix:
- AtomOneDark
- Dracula
- VS
- GitHub
- GoogleCode
- XCode
- ... Admittedly these all were randomly picked, we could probably curate these better...
- Added a new `ThemeDialog` UI that can be accessed via `/theme`. It shows your currentlyt available themes and allows you to change them freely. It does **not**:
- Save the theme between sessions
- Allow you to hit escape
- Show a preview prior to selection.
- These themes are from reacts highlight js library.
Fixes https://b.corp.google.com/issues/412797985
2025-04-22 22:08:13 -07:00
Taylor Mullen
e163e02499
Colorize code blocks.
...
- This changeset uses lowlight.js to parse the code in codeblocks to derive an AST, it then translates that into CSS themes that are widely known via highlight.js (things that GitHub use), finally I translate those css.color attributes into Ink colors and effectivel do <Text color={the color}>the text</Text>.
- To do this I needed to build color mappings from css -> Ink
- I introduced a new `Theme` type that will be used to represent many different color themes. It also enabled the color mappings to be seamless.
- Added a theme manager that only has one theme for now (VS2015). The theme works very well with our colorization.
- Some other bits was removal of borders around our codeblocks since they now have richer rendering.
- Most complex bits of code in this PR is in the `CodeColorizer.tsx`
Fixes https://b.corp.google.com/issues/412433479
2025-04-22 18:57:27 -07:00
Taylor Mullen
ffe368afed
Refactor tool confirmation radio buttons to own component.
...
- I plan to utilize these radio buttons for theme selection in the future. Refactoring them into their own component.
Part of https://b.corp.google.com/issues/412797985
2025-04-22 18:33:36 -07:00
Allen Hutchison
9bc9c6e6c5
Question flag ( #125 )
2025-04-22 18:32:03 -07:00
Brandon Keiji
ef7dcdb49e
feat: add alias to the cli bin directive ( #126 )
2025-04-23 01:04:34 +00:00
Jaana Dogan
05c568126f
Add a tip about creating an alias during development ( #122 )
...
Identical to #118 , it's lost while we were recovering the main branch.
2025-04-22 16:17:37 -07:00
Allen Hutchison
8cfd915960
Fix the case where passthrough tools weren't using the correct CWD from -d
2025-04-22 15:19:40 -07:00
Olcan
93458727e8
use full url for base image (found by seth troisi to save 5s from docker build time) ( #124 )
2025-04-22 14:41:25 -07:00
Olcan
a792c4a159
fix .env check ( #123 )
2025-04-22 14:31:02 -07:00
Olcan
5e34d9e276
Refactor_sandbox_command ( #121 )
2025-04-22 13:51:50 -07:00
Jaana Dogan
60fc979332
fix hanging tools
...
https://github.com/google-gemini/gemini-code/pull/117/
2025-04-22 13:40:36 -07:00
Jaana Dogan
8e0fb9ee2f
Initiate the GeminiClient with a config
...
Also address the open readability improvement comments from #104 .
2025-04-22 11:20:19 -07:00
Taylor Mullen
3db2a796ec
Fix Tool -> Text -> Confirmation bu that results in disordered history
...
- We weren't reseting the tool group inbetween content which meant we'd start a new group on the first tool call, and if regular textual content followed it'd effectively close that group; however, we weren't updating our state to really close that group. Meaning, any subsequent tool calls or confirmations would get grouped with the original grouping.
- When we see textual content from Gemini we now reset the tool call group.
Fixes https://b.corp.google.com/issues/412605330
2025-04-22 10:33:36 -04:00
Taylor Mullen
5c5c470671
Update confirmation dialog UI
...
- This chaneset aligns our confirmation dialog with: https://screenshot.googleplex.com/9yZCX636LzpMrgc
- Primary changes include having custom indicators for confirmation options that align with our coloring / scheme
Fixes https://b.corp.google.com/issues/412607128
2025-04-22 10:33:06 -04:00
Taylor Mullen
80b04dc505
Update UI of tool messages
...
- Bring tool messages in line with original envisioned UI of: https://screenshot.googleplex.com/9yZCX636LzpMrgc
- In particular this represents more descriptive names. FWIW we already had this tech we just weren't passing around information correctly (`displayName` vs. `name`)
- Add gray to our list of color pallete's and removed Background (unused)
- Re-enabled representing canceled messages
- Migrated back towards a cleaner tool message design of status symbols & border colors vs. overly verbose text.
- Removed border from confirmation diffs.
Fixes https://b.corp.google.com/issues/412598909
2025-04-22 08:05:30 -04:00
Olcan
1ed9743ad4
quiet sandbox build ( #111 )
2025-04-21 23:26:53 -07:00
Olcan
a7fba66832
env var to set default model, display model on lower right ( #110 )
2025-04-21 23:25:10 -07:00
Brandon Keiji
79710375e3
fix: point npmrc to dogfood artifact registry ( #108 )
2025-04-21 23:11:51 -07:00
Brandon Keiji
98fa8d2b51
fix: support node globals in scripts ( #109 )
2025-04-22 06:10:25 +00:00
Benjamin Bastian
1eeadcd85c
Update sandbox script to not require term variables ( #105 )
...
If `nounset` is active, it'll require that TERM and COLORTERM is set in the
environment. It's not necessary that these variables are set and it should be
passed to the sandbox. This change just causes the TERM and COLORTERM to be set
to an empty string if they are unset.
2025-04-21 22:59:49 -07:00
Olcan
f9c4014e28
fix source mapping when debugging in sandbox ( #107 )
2025-04-21 19:04:00 -07:00
Allen Hutchison
1a167b2ea5
Piped input ( #104 )
...
* New method for handling stdin. Bypass Ink, and output to stdout. Makes the CLI work like a typical Unix application when called with piped input.
* Fixing a few post-merge errors.
* Format code.
* Clean up lint and format errors.
2025-04-21 17:41:44 -07:00
Jaana Dogan
cacf0cc0ef
Simplify GeminiClient ( #101 )
...
Doing some more clean-up:
* Remove confusing continue/break
* Handle empty result
* Rename the file just client.js
2025-04-21 17:15:20 -07:00
Jaana Dogan
dd81be1b9b
Add build status to README ( #99 )
2025-04-21 15:47:53 -07:00
Jaana Dogan
843d7c1fe3
Fix the broken build ( #98 )
2025-04-21 15:44:20 -07:00
Olcan
1340c7a792
fix sandbox build broken at #94 ( #97 )
2025-04-21 14:55:17 -07:00
Olcan
319f211211
improved (full color) sandbox, mount /tmp to display build warnings, display sandbox name in footer ( #96 )
2025-04-21 14:43:43 -07:00
Seth Troisi
7663ccf0bd
Fix Docker Build permission issue ( #95 )
...
During docker build `npm install` running as node was exiting with 243 (EACCES) from trying to install the tgz files because `npm pack` created the files with 400 permissions on my system.
2025-04-21 14:35:03 -07:00
Brandon Keiji
3f048bce0f
fix: remove circular dependency in background terminal analyzer ( #94 )
2025-04-21 14:27:11 -07:00
Brandon Keiji
dec9726083
fix: use relative imports within the same package ( #93 )
2025-04-21 14:09:14 -07:00
Olcan
09973956ae
sandbox.sh utility to easily log into or execute commands in a sandbox, set hostname and SANDBOX env var to container name ( #92 )
2025-04-21 13:52:51 -07:00
Jaana Dogan
ddaa21c750
Remove dead methods from ToolRegistry ( #91 )
...
* getToolSchemas is deprecated.
* listAvailableTools is now getAllTools.
2025-04-21 13:29:36 -07:00
Jaana Dogan
d4614619b4
Remove dead comments ( #90 )
2025-04-21 13:06:46 -07:00
Jaana Dogan
baf39042c8
Remove duplicate CLI tools module, remove the global tool registry ( #89 )
2025-04-21 12:59:31 -07:00
Olcan
2571e07175
enable debugging through sandbox ( #88 )
2025-04-21 12:39:58 -07:00
Jaana Dogan
53a5728009
Remove redundant else branches ( #86 )
...
Else branches are an anti pattern especially if you can easily return from the previous branch. Over time, else branches cause deep nesting and make code unreadable and unmaintainable. Remove elses where possible.
2025-04-21 12:15:47 -07:00
Olcan
dea0782c89
fix flags via sandbox (again) ( #87 )
2025-04-21 12:13:16 -07:00
Jaana Dogan
651a543403
Remove gemini-stream.ts ( #84 )
...
This module is no longer needed and the types can be provided from types.
2025-04-21 11:49:46 -07:00
Taylor Mullen
738c2692fb
Fix confirmations.
...
- This fixes what it means to get confirmations in GC. Prior to this they had just been accidentally unwired as part of all of the refactorings to turns + to server/core.
- The key piece of this is that we wrap the onConfirm in the gemini stream hook in order to resubmit function responses. This isn't 100% ideal but gets the job done for now.
- Fixed history not updating properly with confirmations.
Fixes https://b.corp.google.com/issues/412323656
2025-04-21 14:47:17 -04:00
Olcan
618f8a43cf
don't assume .env file ( #83 )
2025-04-21 11:21:48 -07:00
Jaana Dogan
0a531f732b
Ignore grep error if .env doesn't exist ( #82 )
...
.env file is optional. If it doesn't exist, the current script outputs "grep: .env: No such file or directory".
2025-04-21 11:15:55 -07:00
Tyler
7f95c594c0
More license headers, add a CONTRIBUTING.md file (also fix README.md formatting) ( #81 )
2025-04-21 10:04:03 -07:00
Olcan
fad526c63f
make sandbox attachable, document in README ( #80 )
2025-04-21 09:17:17 -07:00
Olcan
7588aef07c
added sandbox section to readme ( #79 )
2025-04-21 08:31:36 -07:00
Taylor Mullen
81f0f618f7
Fix Gemini Code's (GC) smarts.
...
- The tl;dr; is that GC couldn't see what the user was saying when tool call events happened in response. The rason why this was happening was because we were instantly invoking tools that the model told us to invoke and then instantly re-requesting. This resulted in the bug because the genai APIs can't update the chat history before a full response has been completed (doesn't know how to update if it's incomplete).
- To address the above issue I had to do quite the large refactor. The gist is that now turns truly drive everything on the server (vs. a server client split). This ensured that when we got tool invocations we could control when/how re-requesting would happen and then also ensure that history was updated. This change also meant that the server would act as an event publisher to enable the client to react to events rather than try and weave in complex logic between the events.
- A BIG change that this changeset incudes is the removal of all of the CLI tools in favor of the server tools.
- Removed some dead code as part of this
- **NOTE: Confirmations are still broken (they were broken prior to this); however, I've set them up to be able to work in the future, I'll dot hat in a follow up to be less breaking to others.**
Fixes https://b.corp.google.com/issues/412320087
2025-04-21 11:07:09 -04:00
Brandon Keiji
e351baf10f
feat: add custom eslint rule for cross-package imports ( #77 )
2025-04-21 08:02:11 -07:00
Olcan
39bdedab9c
seamless sandboxing (just set GEMINI_CODE_SANDBOX=true in .env) ( #76 )
2025-04-21 07:50:18 -07:00
Taylor Mullen
bfb064024e
Revert debug undo.
2025-04-20 22:28:39 -04:00
Taylor Mullen
ce0f2dd868
Update README to reflect current state of the world.
...
- We now have CI/CD
- We have linting support (so added a section)
- Fixed `npm run debug` to allow debugging again.
2025-04-20 22:25:20 -04:00
Olcan
d668600672
fix passing of flags through start scripts ( #73 )
2025-04-20 19:19:42 -07:00
Taylor Mullen
63f864cdd7
Fix read-file from exploding with path not found error.
...
- There were a few hiccups here. Somehow 2.5-flash wasn't actually abiding by our tool schema. Instead it was inferring `path`. To semi-combat this I've renamed `file_path` -> `path`.
- We weren't elevating errors that were created via schema validation. Instead both the `glob` and `read-file.ts` now surface this.
- In error scenarios (like failing schema) we were improperly surfacing these as success cases because we were overriding tool status.
2025-04-20 22:13:55 -04:00
Olcan
c095091853
fix function calling for gemini 2.5 series ( #65 )
2025-04-20 19:05:27 -07:00
Tyler
d55168f51f
add linter for checking license headers (and eslint --fix target to match, and fix missing license headers while we're here) ( #62 )
2025-04-20 17:16:25 -07:00
Olcan
305ed41b88
drop /dist suffix no longer needed ( #71 )
2025-04-20 14:55:36 -07:00
Olcan
ef909f6335
start and debug scripts (will enable seamless container use later), strict error handling in bash scripts ( #63 )
...
#61
2025-04-20 14:50:12 -07:00
Olcan
c80800a3ee
use /sandbox/<proj_name> instead of /project as workdir in container ( #64 )
2025-04-20 14:49:02 -07:00
Juliette Love
9d608135e3
Make model-generated code copyable ( #70 )
2025-04-20 21:48:30 +01:00
Juliette Love
8180ed9a68
Add terminal clear ( #69 )
2025-04-20 21:13:32 +01:00
Brandon Keiji
d6556c5246
fix: remove 'dist' suffix from start_container.sh command ( #67 )
2025-04-20 13:07:54 -07:00
Juliette Love
a76d9b4dcf
Adds shell command allowlist ( #68 )
...
* Wire through passthrough commands
* Add default passthrough commands
* Clean up config passing to useGeminiStream
2025-04-20 21:06:22 +01:00
Brandon Keiji
f480ef4bbc
refactor: clean up build output ( #53 )
...
* refactor: clean up build output
* refactor: add index.ts to package roots
2025-04-20 12:33:39 -07:00
Juliette Love
a66ad2e2af
Simple debug mode for CLI side ( #66 )
...
* Adds debug mode config flag.
* Wire through debug lines
* Add debug mode logging example
* Run format
* Run format again
2025-04-20 20:20:40 +01:00
Olcan
99f5ed9ecb
Minimal container setup. Install docker (or podman), build container with scripts/build_container.sh, then start with scripts/start_container.sh. Exit with ^C for now. ( #61 )
2025-04-20 08:22:17 -07:00
Taylor Mullen
044ccc6dd7
Enable npm run debug from root.
2025-04-19 17:59:17 -04:00
Taylor Mullen
f7edf71190
Give Gemini Code a face lift.
...
- This utilizes `ink-gradient` to render GEMINI CODE in amazing colors.
- Added a shared color configuration for UX (should this be in config?). It's very possible that we shouldn't be talking about the specific colors and instead be mentioning "foreground"/"background"/inlineCode etc. type colors.
- Updated existing color usages to utilize `Colors.*`
Fixes https://b.corp.google.com/issues/411385593
2025-04-19 17:10:06 -04:00
Evan Senter
3fce6cea27
Starting to modularize into separate cli / server packages. ( #55 )
...
* Starting to move a lot of code into packages/server
* More of the massive refactor, builds and runs, some issues though.
* Fixing outstanding issue with double messages.
* Fixing a minor UI issue.
* Fixing the build post-merge.
* Running formatting.
* Addressing comments.
2025-04-19 19:45:42 +01:00
Evan Senter
0c9e1ef61b
Adding some simple tests. ( #54 )
2025-04-19 18:07:24 +01:00
Allen Hutchison
d9ad2a74ae
Fix the double warning for iterm. ( #51 )
2025-04-19 07:02:12 -07:00
Allen Hutchison
ce1c83da89
Quick fix gitignore ( #49 )
...
* Command line flags got broke. Now to run with flags run:
npm run start -- -m model-id -d data/dir
* Add *.tsbuildinfo to git ignore.
2025-04-19 07:01:54 -07:00
Evan Senter
75ecb4a81f
Adding in a history buffer ( #38 )
...
Up and down arrows traverse the command history.
2025-04-19 14:31:59 +01:00
jlove29
2f5f6baf0f
fix format
2025-04-19 11:08:50 +01:00
jlove29
d2ef83bc60
Add direct execution of shell commands
2025-04-19 11:07:39 +01:00
Jaana Dogan
24371a3954
Take the turn management out of GeminiClient ( #42 )
2025-04-18 23:11:33 -07:00
Jaana Dogan
65e8e3ed1f
Show error when GEMINI_API_KEY is not set ( #52 )
...
Also fix the bug where the API key is used accidentally as the model name.
2025-04-18 19:26:16 -07:00
Tyler
4354458cad
Add apache2 SPDX headers to all source files ( #48 )
2025-04-18 17:44:24 -07:00
Allen Hutchison
e75f0722e7
All the pipes ( #47 )
...
* Bump the character limit to web fetch.
* Piped Input Hook. First step in bringing in STDIN piping.
* Fix linting errors.
* Remove incorrect comment.
2025-04-18 17:12:14 -07:00
Allen Hutchison
3adc0dfbaf
Command line flags got broke. Now to run with flags run: ( #46 )
...
npm run start -- -m model-id -d data/dir
2025-04-18 16:41:51 -07:00
Olcan
f3669f20a9
minor lint fix ( #45 )
2025-04-18 16:38:01 -07:00
Brandon Keiji
e5a50d0154
fix: point server 'main' to dist folder ( #44 )
2025-04-18 16:29:49 -07:00
Brandon Keiji
6e4d4fc604
fix: temporarily comment out .npmrc ( #43 )
2025-04-18 16:18:44 -07:00
Taylor Mullen
40e11e053c
Fix remaining tslint errors (YAY).
...
- Also updated ci.yml to ensure that linting failures will break the build.
Fully fixes https://b.corp.google.com/issues/411384603
2025-04-18 19:14:36 -04:00
Brandon Keiji
2a850ed051
fix: add --build flag to tsc commands ( #40 )
2025-04-18 16:14:20 -07:00
Taylor Mullen
383b917784
Run npm run format
...
- This has the entirety of the changes.
Part of https://b.corp.google.com/issues/411720532
2025-04-18 18:10:57 -04:00
Taylor Mullen
fa264e4286
Make CI fail if there are unformatted changes.
...
Fixes https://b.corp.google.com/issues/411720532
2025-04-18 18:10:57 -04:00
Brandon Keiji
23b43ff651
fix: add clean command to individual packages ( #36 )
2025-04-18 14:57:20 -07:00
Taylor Mullen
e7fa39112a
Manually fix hooks and utils linting errors (partial)
...
- More changes are to come, this is truly a partial change in order to not disrupt as many people as possible.
Part of https://b.corp.google.com/issues/411384603
2025-04-18 17:51:16 -04:00
Allen Hutchison
dfae3f6284
Iterm refactor ( #33 )
...
* Add a warning about the flickering in iTerm.
* Move the iterm warning out of App.tsx.
2025-04-18 14:39:05 -07:00
Brandon Keiji
52683dafc3
infra: add multipackage support ( #34 )
2025-04-18 14:37:02 -07:00
Allen Hutchison
f51ca774cf
Add a warning about the flickering in iTerm. ( #32 )
2025-04-18 14:09:06 -07:00
Evan Senter
482aeaff10
Warn if npm run start is out of date. ( #20 )
...
* Adding some wiring to allow the Ink app to warn if there are local development changes that haven't been captured in the recent build of the Gemini CLI.
* Adding a new useAppEffects.ts file that wores some useEffect handlers in.
* Updating package-lock.json to resolve `npm ci` issues.
* Updating package-lock.json and package.json to resolve `npm ci` issues.
2025-04-18 21:55:02 +01:00
Allen Hutchison
3ed61f1ff2
Web fetch tool ( #31 )
...
* Adding a web fetch tool.
2025-04-18 13:20:39 -07:00
Brandon Keiji
56d4a35d05
feat: initial configs for npm publishing ( #30 )
...
* feat: initial configs for npm publishing
* fix: workspace reference
* fix: include LICENSE in npm run build
2025-04-18 12:46:42 -07:00
Taylor Mullen
abb60a4d10
Finish manually fixing linter errors for tools dir (partial).
...
- More changes are to come, this is truly a partial change in order to not disrupt as many people as possible.
Part of https://b.corp.google.com/issues/411384603
2025-04-18 14:41:36 -04:00
Jaana Dogan
328846c6e3
Remove extra args from config ( #27 )
...
We don't have a use case for them yet.
2025-04-18 11:26:39 -07:00
Jaana Dogan
3afaa8033b
Introduce a config module to manage configuration ( #22 )
...
* Introduce a config module to manage configuration
* Remove public modifier
2025-04-18 11:12:18 -07:00
Jaana Dogan
e1fac40256
Rename invalidParams to validateToolParams ( #12 )
...
Methods should be verbs. Fixes #4 .
2025-04-18 11:06:30 -07:00
Taylor Mullen
7cd3b95317
Fix linting errors in a number of core and tool files (partial)
...
- As part of this work I also started building out errors.ts which will be a cumulation of error helpers to better handle the challenging `catch (error: unknown)` requirement.
- More changes are to come, this is truly a partial change in order to not disrupt as many people as possible.
Part of https://b.corp.google.com/issues/411384603
2025-04-18 14:02:09 -04:00
Jaana Dogan
93fd6a9160
Style improvements to ls tool ( #14 )
2025-04-18 10:57:20 -07:00
Evan Senter
f6a4a5c44d
Revert "Adding some wiring to allow the Ink app to warn if there are local development changes that haven't been captured in the recent build of the Gemini CLI."
...
This reverts commit 1bfc62dcc2 .
2025-04-18 18:36:33 +01:00
Evan Senter
bb95c8c45a
Revert "Adding support for up / down arrows in the command history."
...
This reverts commit 3829ac6353 .
2025-04-18 18:36:33 +01:00
Evan Senter
dbf4c3a37c
Revert "Including a test harness for it, and making sure the cursor is always at the end."
...
This reverts commit 97db77997f .
2025-04-18 18:36:33 +01:00
Tyler
f330a87e50
add LICENSE ( #25 )
2025-04-18 10:30:07 -07:00
Allen Hutchison
f72aa8c840
Cicd ( #24 )
...
* Add basic non blocking CI workflow.
* Make lint and typecheck continue on error until we have fixed those warnings.
2025-04-18 10:26:27 -07:00
Brandon Keiji
999d0568fa
Refactor: Update API key missing message with link ( #23 )
2025-04-18 10:25:32 -07:00
Allen Hutchison
7878f54043
Add basic non blocking CI workflow. ( #21 )
2025-04-18 10:20:39 -07:00
Evan Senter
97db77997f
Including a test harness for it, and making sure the cursor is always at the end.
2025-04-18 18:16:52 +01:00
Evan Senter
3829ac6353
Adding support for up / down arrows in the command history.
2025-04-18 18:16:52 +01:00
Evan Senter
1bfc62dcc2
Adding some wiring to allow the Ink app to warn if there are local development changes that haven't been captured in the recent build of the Gemini CLI.
2025-04-18 18:16:52 +01:00
Taylor Mullen
e0339993ae
Initial auto-fixing of linting errors.
...
- This is the result of runing `npm lint -- -fix`
2025-04-18 12:41:02 -04:00
Evan Senter
cb30351403
Adding a new parameter for model, and updating the default to 2.5 Flash. ( #18 )
2025-04-18 17:06:16 +01:00
Allen Hutchison
b56d9c8639
Merge pull request #9 from google-gemini/target-directory
...
Change the run command to properly pass the command line arguments to…
2025-04-17 16:57:22 -07:00
Allen Hutchison
00d29aa162
Change the run command to properly pass the command line arguments to gemini.ts
2025-04-17 16:55:46 -07:00
Taylor Mullen
cfc697a96d
Run npm run format
...
- Also updated README.md accordingly.
Part of https://b.corp.google.com/issues/411384603
2025-04-17 15:29:34 -07:00
Taylor Mullen
7928c1727f
Configure linter + prettier.
...
- This is based on existing expectations for TS code in Google-esc repos.
- First part of the change (we have not run any linter or formatting commands). After this changeset goes in I'll do a mass changeset push.
Fixes https://b.corp.google.com/issues/411384603
2025-04-17 15:29:34 -07:00
Jaana Dogan
d3ee91ff92
Merge pull request #3 from google-gemini/readme
...
Remove internal docs and mention of Gerrit from README
2025-04-17 14:39:13 -07:00
Jaana Dogan
a280727248
Remove internal docs and mention of Gerrit from README
2025-04-17 14:38:44 -07:00
Taylor Mullen
d970882428
Fix build break (tool -> tools).
...
- Without this we'd get a TS1261 about the name "tool" only differeing from "Tool" (the class) by case.
2025-04-17 17:25:01 -04:00
Taylor Mullen
ece8630c33
Revert camelCasing for schemas
2025-04-17 14:15:20 -07:00
Jaana Dogan
81ba61df7f
Improve readability issues
...
This is only the first change of many changes.
* Remove redundant autogenerated comments
* Use the recommended file name style
* Use camelCase for variable names
* Don't introduce submodules for relevant types
* Don't introduce constants like modules, these are implementation details
* Remove empty files
2025-04-17 14:15:20 -07:00
Brandon Keiji
898a83031c
docs: Add setup instructions for API key to README ( #1 )
2025-04-17 11:59:12 -07:00