From 7204879a2ac76cb16a0381242da9f6af689bdb1a Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:46:11 +0000 Subject: [PATCH] docs: Add instructions for testing with Gemini CLI Adds a new section to the development documentation that provides a sequence of commands for local testing against the Gemini CLI. --- docs/development.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/development.md b/docs/development.md index b59df4e..b514cfa 100644 --- a/docs/development.md +++ b/docs/development.md @@ -135,3 +135,15 @@ node scripts/auth-utils.js - `expire`: Force the access token to expire (for testing refresh). - `status`: Show current authentication status. - `help`: Show the help message. + +## Testing with Gemini CLI + +To test the extension against the Gemini CLI, you can use the following commands: + +```bash +gemini extensions uninstall workspace +npm install +npm run build +gemini extensions link . +gemini extensions list +```