Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The CI/CD extension for Gemini CLI automates Continuous Integration and Continuo
gcloud auth application-default login
```

### Using Gemini CLI
### For Gemini CLI
To install the CI/CD extension, run the following command in your terminal:

```bash
Expand All @@ -54,7 +54,7 @@ gemini extensions install https://github.com/gemini-cli-extensions/cicd
* Gemini CLI Authentication: Ensure you have configured [Authentication Options](https://github.com/google-gemini/gemini-cli/tree/main?tab=readme-ov-file#-authentication-options).


### Using Claude Code
### For Claude Code
To install the CI/CD extension, run the following command in your terminal:

1. Add the Marketplace.
Expand All @@ -68,7 +68,7 @@ claude plugin marketplace add https://github.com/gemini-cli-extensions/cicd.git#
claude plugin install cicd
```

### Using Antigravity
### For Antigravity
To install our CI/CD extension in Antigravity, you can setup our MCP Server as custom MCP and add skills.

1. Setup custom MCP server
Expand All @@ -80,7 +80,17 @@ You can use [Skills](https://github.com/vercel-labs/skills) to add skills to Ant
npx skills add https://github.com/gemini-cli-extensions/cicd --global --all --agent antigravity
```

### For Other Agents
To install our CI/CD extension in other agents, you can manually set up our MCP server and skills.

1. Set up MCP server
Each agent will have their own process to set up an MCP server, but you can use the provided [.mcp.json](.mcp.json) file which contains our MCP server config.

2. Add Skills
You can use [Skills](https://github.com/vercel-labs/skills) to add skills to your agent. Replace `<agent_name>` with your specific agent name.
```bash
npx skills add https://github.com/gemini-cli-extensions/cicd --global --all --agent <agent_name>
```
## 🔒 Security Considerations

> [!WARNING]
Expand Down
Loading