Allen Hutchison
33989cbec0
feat: Add custom URL support for the /bug command ( #1017 )
2025-06-14 07:00:24 +00:00
Keir Mierle
f27809703d
Add a local telemetry launcher ( #1015 )
2025-06-13 18:08:03 -07:00
Anas H. Sulaiman
5a5ec49341
initialize FileDiscoveryService once ( #1029 )
2025-06-13 17:25:59 -07:00
Tommaso Sciortino
f61f9996a1
Stop extension MCPs from hopping into settings. ( #1026 )
2025-06-13 14:51:29 -07:00
Tommaso Sciortino
2d84cf7803
Fix default extension context filename and update docs ( #1024 )
2025-06-13 13:57:00 -07:00
Anas H. Sulaiman
082a65caa5
cleanup unused allowBuildArtifacts ( #1010 )
2025-06-13 12:00:38 -04:00
N. Taylor Mullen
7ec11849ae
refactor: Use default centralized Flash & Pro models everywhere ( #994 )
2025-06-13 08:25:42 +00:00
Tommaso Sciortino
eeda52b896
Code Assist cleanup and docs ( #993 )
2025-06-12 18:00:17 -07:00
Marat Boshernitsan
53ac32ee56
Reduce coupling between core and cli packages ( #961 )
...
Co-authored-by: Marat Boshernitsan <maratb@google.com >
2025-06-12 17:17:29 -07:00
Leo
31710f0ef3
remove enable editor flag ( #984 )
2025-06-12 17:28:20 +00:00
JingboWang1997-1
1418c37801
add excludeTools flag to settings.json config ( #957 )
2025-06-11 14:32:23 -07:00
matt korwel
d41d58afa5
Extensibility: Gemini.md files ( #944 )
2025-06-11 20:34:35 +00:00
Louis Jimenez
b19571d9ab
Restore Checkpoint Feature ( #934 )
2025-06-11 15:33:09 -04:00
Zach Sais
09ddf6eb71
fix version set for cli and slash commands ( #892 )
2025-06-11 08:25:26 -05:00
jerop
e8faf83c15
refactor: Centralize session ID generation and propagation
2025-06-11 01:18:40 -04:00
Tommaso Sciortino
50ca47bdd4
Change yolo mode so it doesn't disable sandboxing. ( #918 )
2025-06-10 17:41:59 -07:00
Tommaso Sciortino
93cd4e20ab
Basic code assist support ( #910 )
2025-06-10 16:00:13 -07:00
Tommaso Sciortino
6a0f6f9f90
Allow simple extensions for registering MCPservers ( #890 )
2025-06-10 15:48:39 -07:00
Tommaso Sciortino
18dbf3a3a9
GEMINI_SANDBOX=false should disable seatbelt ( #888 )
2025-06-10 06:22:02 -07:00
Seth Troisi
df4fc1b933
Use GOOGLE_API_KEY as default if both GEMINI and GOOGLE set ( #777 )
2025-06-09 13:54:11 -07:00
Tommaso Sciortino
ce5b22e9d7
Simplify user agent handling. ( #828 )
2025-06-09 09:31:27 -07:00
Leo
588e79e48f
feat: Add flow to allow modifying edits during edit tool call ( #808 )
2025-06-08 10:56:58 -07:00
Tommaso Sciortino
3c2a17e9f6
Introduce ContentGeneratorConfig ( #826 )
2025-06-07 16:17:27 -07:00
cperry-goog
a49f734c13
refactor: rename gemini-code to gemini-cli ( #822 )
2025-06-07 14:27:22 -07:00
Tommaso Sciortino
9ab8049312
Eliminate createServerConfig() ( #821 )
2025-06-07 13:49:00 -07:00
Eddie Santos
72b6b10e55
Add embedder ( #818 )
2025-06-07 13:38:05 -07:00
Tommaso Sciortino
b1e4d9f412
Push model-switching logging into loadCliConfig ( #815 )
2025-06-07 11:12:30 -07:00
Tommaso Sciortino
1b6463c220
More version simplifiction. ( #810 )
2025-06-07 10:54:23 -07:00
Tommaso Sciortino
03125a24e2
clean up version lookup code ( #804 )
2025-06-06 16:21:20 -07:00
Jerop Kipruto
d0de44824f
OpenTelemetry Integration & Telemetry Control Flag ( #762 )
2025-06-05 13:04:25 -07:00
Eddie Santos
6b745dd861
Bump default model to gemini-2.5-pro-preview-06-05 ( #765 )
2025-06-05 11:52:36 -07:00
Eddie Santos
9a7199519e
Add support for .geminiignore file ( #757 )
2025-06-05 10:15:27 -07:00
N. Taylor Mullen
9d1b31e667
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
14e87c4987
feat(accessibility): Add option to disable loading phrases ( #745 )
2025-06-04 07:46:57 +00:00
Keith Ballinger
906f716d3e
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
Olcan
81328dbc5e
remove noop code ( #728 )
2025-06-03 13:47:53 -07:00
N. Taylor Mullen
5f03184440
Fix flash preview ( #723 )
2025-06-03 18:01:59 +00:00
N. Taylor Mullen
757ccc27b9
Workaround Gemini API break - Use flash 04-17 ( #721 )
2025-06-03 17:47:20 +00:00
Allen Hutchison
dc25ca81a3
feat(cli): add pro model availability check and fallback to flash ( #608 )
2025-06-02 13:55:54 -07:00
Tolik Malibroda
71553d12e7
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
Allen Hutchison
b78c320cbd
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
Scott Densmore
6b78f3002f
Fix/cli version unknown ( #642 )
2025-05-30 20:45:15 -07:00
Tommaso Sciortino
64bd136f42
Rename server->core ( #638 )
2025-05-30 18:25:47 -07:00
Jacob Richman
d695b90196
feat: add --show_memory_usage flag to display memory usage in status bar ( #606 )
2025-05-30 15:18:01 -07:00
Jacob Richman
91ea43109a
Change Config to use named parameters. ( #593 )
2025-05-29 13:51:17 -07:00
sasha-gitg
451eb1dc87
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
Allen Hutchison
858be0e9c5
Refactor(server): Centralize GEMINI.md discovery logic in server ( #498 )
2025-05-23 08:53:22 -07:00
Allen Hutchison
68a5eec345
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
Olcan
935686a278
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
769e7dac8e
rename env vars GEMINI_CODE_{MODEL,SANDBOX,SANDBOX_IMAGE} ( #411 )
2025-05-17 17:28:44 -07:00