<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Avishek Biswas</title>
    <description>The latest articles on DEV Community by Avishek Biswas (@abiswas).</description>
    <link>https://dev.to/abiswas</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1126250%2F565bfab1-e35b-42b4-b585-2f89991199d9.jpeg</url>
      <title>DEV Community: Avishek Biswas</title>
      <link>https://dev.to/abiswas</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abiswas"/>
    <language>en</language>
    <item>
      <title>What I learned building a Gemini plugin for Claude Code (and how it compares to codex-plugin-cc)</title>
      <dc:creator>Avishek Biswas</dc:creator>
      <pubDate>Tue, 31 Mar 2026 19:37:51 +0000</pubDate>
      <link>https://dev.to/abiswas/what-i-learned-building-a-gemini-plugin-for-claude-code-and-how-it-compares-to-codex-plugin-cc-28i8</link>
      <guid>https://dev.to/abiswas/what-i-learned-building-a-gemini-plugin-for-claude-code-and-how-it-compares-to-codex-plugin-cc-28i8</guid>
      <description>&lt;p&gt;When &lt;code&gt;codex-plugin-cc&lt;/code&gt; dropped, my first thought was - I need this for Gemini. So I built it.&lt;/p&gt;

&lt;p&gt;It’s derived from &lt;code&gt;openai/codex-plugin-cc&lt;/code&gt;, but adapted for Gemini CLI’s ACP path instead of Codex app-server.&lt;/p&gt;

&lt;p&gt;That protocol difference is basically the whole story.&lt;/p&gt;

&lt;h2&gt;
  
  
  The idea
&lt;/h2&gt;

&lt;p&gt;What I liked about &lt;code&gt;codex-plugin-cc&lt;/code&gt; wasn’t just that Claude could call another model. It was that the integration felt real. Not like a thin wrapper, not like a shell-out glued onto a prompt, but like an actual runtime boundary.&lt;/p&gt;

&lt;p&gt;I wanted that same kind of integration for Gemini.&lt;/p&gt;

&lt;h2&gt;
  
  
  How the Gemini side works
&lt;/h2&gt;

&lt;p&gt;In this plugin, the Gemini side is more session-oriented:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;spawn &lt;code&gt;gemini --acp&lt;/code&gt; (or &lt;code&gt;--experimental-acp&lt;/code&gt; on older CLI versions)&lt;/li&gt;
&lt;li&gt;initialize&lt;/li&gt;
&lt;li&gt;create or load a session&lt;/li&gt;
&lt;li&gt;set mode / model&lt;/li&gt;
&lt;li&gt;send prompts&lt;/li&gt;
&lt;li&gt;stream &lt;code&gt;session/update&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;handle filesystem / permission callbacks&lt;/li&gt;
&lt;li&gt;cancel when needed&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Compared to Codex app-server, it’s a thinner protocol surface. That means more of the workflow logic ends up living in the plugin.&lt;/p&gt;

&lt;p&gt;For example, review in this repo is implemented on top of the generic ACP task flow rather than through a native review protocol primitive.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;p&gt;Current commands:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;/gemini:review&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/gemini:adversarial-review&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/gemini:task&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/gemini:rescue&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/gemini:status&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/gemini:result&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;/gemini:cancel&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So the plugin is meant to cover three main use cases:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;review&lt;/li&gt;
&lt;li&gt;arbitrary task delegation&lt;/li&gt;
&lt;li&gt;rescue / investigation work&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Why I built it this way
&lt;/h2&gt;

&lt;p&gt;I mostly didn’t want to make “yet another wrapper.”&lt;/p&gt;

&lt;p&gt;If I was going to do this, I wanted the transport/runtime part to be the interesting part.&lt;/p&gt;

&lt;p&gt;ACP gave me a better fit for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;streamed progress&lt;/li&gt;
&lt;li&gt;explicit session handling&lt;/li&gt;
&lt;li&gt;callbacks for file access / permissions&lt;/li&gt;
&lt;li&gt;background-style task flows&lt;/li&gt;
&lt;li&gt;cancellation&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Built with Claude Code + Codex
&lt;/h2&gt;

&lt;p&gt;I built the whole thing with Claude Code + Codex, which felt appropriately silly.&lt;/p&gt;

&lt;p&gt;Anyway, if you want to try it:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/abiswas97/gemini-plugin-cc" rel="noopener noreferrer"&gt;https://github.com/abiswas97/gemini-plugin-cc&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cli</category>
      <category>gemini</category>
      <category>llm</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
