NEWBIE0413/gemini-gpt-hybrid

152 stars · Last commit 2026-07-26

Multi-model orchestration subagents for Claude Code — delegates by task scope to Gemini's 1M-token context or GPT's fast iteration, then routes every result back through Claude review.

README preview

# Gemini-GPT Hybrid

**Multi-model orchestration subagents for Claude Code.**

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
[![Stars](https://img.shields.io/github/stars/NEWBIE0413/gemini-gpt-hybrid?style=flat)](https://github.com/NEWBIE0413/gemini-gpt-hybrid/stargazers)

One model is rarely the right model for every task. Whole-codebase analysis wants a huge context window; a tight bug fix wants fast iteration. This repo packages that decision as a Claude Code subagent: it reads the scope of your request, delegates to Gemini or GPT accordingly, and routes the result back through Claude before anything reaches your codebase.

## How routing works

```mermaid
graph TD
    A[User Request] --> B{Task Analysis}
    B -->|Large Scale| C[Gemini Engine]
    B -->|Focused Work| D[GPT Engine]
    C --> E[Claude Review]
    D --> E
    E -->|Approved| F[User Output]
    E -->|Needs Revision| G[Refinement Loop]

View full repository on GitHub →