From 1ef3d8dffab4ceee0031dbe955d20998ee8858f0 Mon Sep 17 00:00:00 2001 From: Toka Nani Date: Sun, 19 Apr 2026 04:45:31 +0530 Subject: [PATCH 1/3] docs: fix typo in extensions command in README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### 🛠️ Fix typo in Gemini CLI section This pull request fixes a typo in the **Gemini CLI** section of the README. * Corrected `/exttensions list` → `/extensions list` ### ✅ Why this change? The incorrect command may confuse users when trying to list extensions in the CLI, leading to errors during usage. ### 📌 Scope * Documentation update only * No code changes ### 🔗 Related Issue Closes #3096 --- ## Description Fixes a typo in the Gemini CLI command within the README file. This ensures users can correctly list installed extensions without encountering command errors. --- ## PR Checklist * [x] Reviewed CONTRIBUTING.md * [x] Issue opened and referenced (#3096) * [x] No code changes (docs only) * [x] Documentation updated * [x] No breaking changes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe8076d64274..bcc5c9567adb 100644 --- a/README.md +++ b/README.md @@ -446,7 +446,7 @@ After installing a [Gemini CLI extensions](https://geminicli.com/extensions/), t gemini # List extensions -/exttensions list +/extensions list # List MCP servers /mcp list ``` From bb803129af8a50f2b97dc862feafa7e0bca721a0 Mon Sep 17 00:00:00 2001 From: NaniToka Date: Sun, 19 Apr 2026 05:11:51 +0530 Subject: [PATCH 2/3] chore: ignore macOS system files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 98fa3d77c498..8ac201f5c12d 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ mcp-toolbox toolbox toolbox.exe **/test.db +.DS_Store From 850081d6eddf6786e500687c370c100f63591b92 Mon Sep 17 00:00:00 2001 From: NaniToka Date: Sun, 19 Apr 2026 05:14:09 +0530 Subject: [PATCH 3/3] docs: fix typo in extensions command in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bcc5c9567adb..fe8076d64274 100644 --- a/README.md +++ b/README.md @@ -446,7 +446,7 @@ After installing a [Gemini CLI extensions](https://geminicli.com/extensions/), t gemini # List extensions -/extensions list +/exttensions list # List MCP servers /mcp list ```