Skip to content

feat(gemini): add Gemini plugin to marketplace#151

Merged
amondnet merged 3 commits intomainfrom
amondnet/seed-avocado
Apr 10, 2026
Merged

feat(gemini): add Gemini plugin to marketplace#151
amondnet merged 3 commits intomainfrom
amondnet/seed-avocado

Conversation

@amondnet
Copy link
Copy Markdown
Contributor

@amondnet amondnet commented Apr 10, 2026

Summary

  • Adds the Gemini plugin to the marketplace via a git-subdir source pointing to pleaseai/gemini-plugin-cc at subdirectory plugins/gemini (ref: main)
  • Adds a new Gemini section in README.md with a description and install instructions
  • Adds the /plugin install gemini@pleaseai install line to the quick-start install list in README.md

Changes

  • .claude-plugin/marketplace.json — new gemini entry with category ai, keywords, and git-subdir source configuration
  • README.md — new Gemini section under the plugin listing and added install line to the quick-start block

Test Plan

  • Verify marketplace.json is valid JSON with the new entry
  • Confirm the git-subdir source resolves correctly: pleaseai/gemini-plugin-ccplugins/gemini
  • Run claude plugin validate .claude-plugin/marketplace.json to validate the manifest
  • Test install: /plugin install gemini@pleaseai

Summary by cubic

Adds the Gemini plugin to the marketplace so users can run Google’s Gemini models from within Claude Code. Listed under External Plugins and includes a quick-start install command.

  • New Features

    • Added gemini to .claude-plugin/marketplace.json via git-subdir source: pleaseai/gemini-plugin-cc at plugins/gemini (ref: main).
    • Updated README.md: added Gemini under External Plugins and /plugin install gemini@pleaseai to the quick-start block.
  • Dependencies

    • Updated bun.lock to fix frozen lockfile CI and refresh devtools-related packages.

Written for commit ff4a89f. Summary will update on new commits.

Add Gemini CLI integration plugin via git-subdir source pointing to
pleaseai/gemini-plugin-cc subdir plugins/gemini. Includes README entry
with description and install instructions.
@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 10, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
claude-code-plugins Ready Ready Preview, Comment Apr 10, 2026 2:22am

Request Review

Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 2 files

Confidence score: 5/5

  • Automated review surfaced no issues in the provided summaries.
  • No files require special attention.
Architecture diagram
sequenceDiagram
    participant User as User (CLI)
    participant Engine as Claude Code Plugin Engine
    participant MK as marketplace.json
    participant Git as GitHub (pleaseai/gemini-plugin-cc)

    Note over User,Git: Plugin Installation Flow

    User->>Engine: Run `/plugin install gemini@pleaseai`
    Engine->>MK: NEW: Lookup "gemini" metadata
    MK-->>Engine: Return git-subdir config (ref: main, path: plugins/gemini)

    alt Resolve Git Source
        Engine->>Git: Fetch repository (ref: main)
        Git-->>Engine: Repository data
        Engine->>Engine: NEW: Filter and extract "plugins/gemini" subdirectory
    else Resolution Failed
        Engine-->>User: Error: Repository or path not found
    end

    Engine->>Engine: Validate plugin manifest
    Engine->>Engine: Register Gemini plugin locally
    Engine-->>User: Confirm Gemini installation success
Loading

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request adds the Gemini CLI integration plugin to the marketplace configuration and updates the README with installation instructions. The review feedback focuses on correct categorization, suggesting that the Gemini plugin be moved from the 'Built-in Plugins' section to the 'External Plugins' section in the documentation. There are also suggestions to refine the metadata labels and clarify that the installation command is intended for the interactive shell.

Comment thread README.md Outdated
Comment thread README.md Outdated
Move Gemini plugin entry from Built-in to External Plugins section
per gemini-code-assist review feedback on #151.
@amondnet amondnet merged commit b83144b into main Apr 10, 2026
7 checks passed
@amondnet amondnet deleted the amondnet/seed-avocado branch April 10, 2026 02:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant