---
slug: "claude-code-gemini-manager-skill"
source_type: "readme"
source_url: "https://cdn.jsdelivr.net/gh/alchemiststudiosDOTai/claude-code-gemini-manager-skill@main/README.md"
repo: "https://github.com/alchemiststudiosDOTai/claude-code-gemini-manager-skill"
source_file: "README.md"
branch: "main"
---
# Gemini Manager

An Agent Skill that lets Claude Code act as a manager while Gemini CLI does all the coding work.

## What It Is

Claude Code = Manager/Architect (thinks, plans, reads, verifies)
Gemini CLI = Intern (implements, codes, fixes)

Claude never writes code. Instead, Claude:
- Reads and understands the codebase
- Plans what needs to be done
- Tells Gemini exactly what to implement
- Verifies Gemini's work
- Requests fixes until it's correct

## Usage

Say things like:
- "Manage the implementation of X using Gemini"
- "Drive Gemini to add feature Y"
- "Use gemini-manager skill for this task"

## How It Works

1. Claude reads files to understand the task
2. Claude tells Gemini what to implement with specific commands
3. Claude verifies what Gemini produced
4. If needed, Claude tells Gemini to fix issues
5. Loop continues until Claude is satisfied

## Installation

### As a Plugin (Recommended)

```bash
# Install via plugin command
/plugin install alchemiststudiosDOTai/claude-code-gemini-manager-skill
```

### Manual Installation

Clone the repo and copy to your skills directory:

```bash
# Clone the repo
git clone https://github.com/alchemiststudiosDOTai/claude-code-gemini-manager-skill.git

# For personal skill (available in all projects)
cp -r claude-code-gemini-manager-skill/skills/gemini-manager ~/.claude/skills/

# For project skill (available in this project only)
cp -r claude-code-gemini-manager-skill/skills/gemini-manager ./.claude/skills/
```