Contribute a Command
Help grow the Gemini CLI community by sharing your commands.
How it Works
1. Log in with GitHub
Connect your GitHub account to start contributing.
2. Select Your .toml File
Choose the command file you want to share.
3. We Create the PR
We'll automatically create a pull request for you.
Or Contribute Manually
If you prefer, you can create a pull request yourself. Here's how:
Fork the repository:
gh repo fork gemini-commands/gemini-commands --clone
Create a new branch:
git checkout -b your-command-name
Add your .toml file to the `commands` directory.
Make sure it's in the correct category subfolder (e.g., `commands/development/`).
Commit and push your changes:
git add .
git commit -m "feat: add my new command"
git push origin your-command-name
Create a pull request:
gh pr create --title "feat: add my new command" --body "Details about your command."