-
Notifications
You must be signed in to change notification settings - Fork 8
Add Claude Code plugin #155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
4bb17c1
Added Claude Code plugin
haroonc ded9a14
update extension version
haroonc fa287c7
Added instruction for installing extension to other agents
haroonc 3fed585
fixed claude validation errors
haroonc 63b2098
Update .claude-plugin/plugin.json
haroonc ce224b4
Update .claude-plugin/plugin.json
haroonc fb3a99f
added MCP config for custom installs
haroonc 0dd94c1
fixed 'npx skills'
haroonc 52de94e
fixed version
haroonc 110afee
fixed version
haroonc a4f337d
Prepare v0.2.2 release.
CoasterJX 1dae90d
Merge branch 'main' into plugins
CoasterJX 73f9b26
Update .mcp.json
CoasterJX File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| { | ||
| "name": "google-ai-assisted-cicd", | ||
| "metadata": { | ||
| "description": "Advanced CI/CD pipeline management for Claude Code." | ||
| }, | ||
| "owner": { | ||
| "name": "Google LLC" | ||
| }, | ||
| "plugins": [ | ||
| { | ||
| "name": "cicd", | ||
| "source": "./", | ||
| "description": "Advanced CI/CD pipeline management for Claude Code.", | ||
| "category": "Automation", | ||
| "tags": [ | ||
| "cicd", | ||
| "deployment", | ||
| "pipeline design", | ||
| "terraform", | ||
| "canary release" | ||
| ] | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| { | ||
| "name": "cicd", | ||
| "version": "0.2.2", | ||
| "description": "The CI/CD extension provides Gemini powered AI assisted CI/CD. It supports deployment to Cloud Run and Cloud Storage as well as creation of a robust CI/CD pipeline.", | ||
| "author": { | ||
| "name": "Google LLC" | ||
| }, | ||
| "homepage": "https://github.com/gemini-cli-extensions/cicd", | ||
| "license": "Apache-2.0", | ||
| "repository": "https://github.com/gemini-cli-extensions/cicd", | ||
| "skills": "./skills/", | ||
| "mcpServers": { | ||
| "cicd-mcp": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "@google-cloud/cicd-mcp" | ||
| ] | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| { | ||
| "mcpServers": { | ||
| "google-cicd": { | ||
| "command": "npx @google-cloud/cicd-mcp" | ||
| "cicd-mcp": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "@google-cloud/cicd-mcp" | ||
| ] | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This installation command includes a hardcoded version tag (
#v0.2.2) and a.gitsuffix, which differs from the installation URLs provided for Gemini CLI (line 48) and Antigravity (line 80). For better maintainability and consistency, consider using a uniform URL format and avoiding hardcoded version tags in the documentation unless specifically required for a stable release.