This repository houses custom commands designed to extend the functionality of the Gemini CLI.
This command facilitates collaboration workflows within Gemini.
- Configuration:
commands/gemini-collab.toml - Script:
scripts/collaborate.py
To install and use these custom commands, follow these steps:
-
Update Gemini CLI: Ensure you have the latest version of the Gemini CLI.
npx @google/gemini-cli
or
npm install -g @google/gemini-cli@latest
-
Install the command: To make the
gemini-collabcommand available, you need to link its configuration file to your Gemini command directory.-
For a single project (project-scoped): Create a
.gemini/commands/directory in your project's root and copy the.tomlfile there.mkdir -p .gemini/commands cp commands/gemini-collab.toml .gemini/commands/
-
For all projects (user-scoped): Copy the
.tomlfile to your user-level Gemini command directory.mkdir -p ~/.gemini/commands cp commands/gemini-collab.toml ~/.gemini/commands/
Also, copy the
collaborate.pyscript to the user-level Gemini scripts directory:mkdir -p ~/.gemini/scripts cp scripts/collaborate.py ~/.gemini/scripts/
-
-
Usage: Once installed, you can invoke the command within the Gemini CLI by typing:
/gemini-collab
This project is licensed under the MIT License.