Leaderboard/Agent Orchestration/ai-pair
Last commit on March 13, 2026·Created on March 8, 2026

axtonliu/ai-pair

Orchestrates multiple AI reviewers to catch what any single model misses.
Combined rank
#597
across all skills
In Agent Orchestration
#33
category rank
Stars
341
+0.6% in last 7d
Forks
63
0.0% in last 7d
Watchers
2
0.0% in last 7d
Traction scoreGitHub stars can be faked, so popularity alone can be misleading. Traction Score looks for broader signs of recent attention, adoption, and active maintenance.
TL;DR

This skill builds a structured team of AI agents—Claude Code as lead, Codex and Gemini as reviewers—that examine code or content from different angles. It gives software developers, content creators, and platform teams a repeatable way to get security-focused, architectural, and stylistic feedback in a single review pass. The user stays in control at every step, with the team lead coordinating the workflow and consolidating results.

WHO IT'S FOR
AI Agent / Automation Engineers
orchestrate multi-model review workflows
Platform / DevEx Teams
standardize multi-model code review pipelines
Backend / Infrastructure Engineers
automate code review with heterogeneous AI teams
Technical Leads / Architects
enforce multi-perspective review for critical projects
Repository contents

1 skill file

Compatible AgentsThe repository documents support for these agents. The skills may also work with other agents that can load SKILL.md files, but they may need some setup or small changes.

Use this skill

Follow the documented setup, then try a first task.

Global direct installation

Installs: Installs the complete ai-pair skill globally for Claude Code. · Claude Code

Before you start
  • Claude Code command-line tool
  • Codex CLI command-line tool
  • Gemini CLI command-line tool
  • Authentication configured for all three CLIs
  1. In a terminal, install Claude Code.

    npm install -g @anthropic-ai/claude-code
  2. In a terminal, install Codex CLI.

    npm install -g @openai/codex
  3. In a terminal, install Gemini CLI.

    npm install -g @google/gemini-cli
  4. Configure authentication for Claude Code, Codex CLI, and Gemini CLI before using the skill.

  5. In a terminal, clone the repository into the global Claude Code skills directory.

    git clone https://github.com/axtonliu/ai-pair.git ~/.claude/skills/ai-pair
README.md · Checked Sep 18, 2026

Give it something to do.

Author’s example

Start a development team for a project

Uses ai-pair

  • Replace MyProject with the name of the project to work on.
  • Run in a Claude Code session after Claude Code, Codex CLI and Gemini CLI are installed and all three have authentication configured.
/ai-pair dev-team MyProject
SKILL.md · Checked Sep 18, 2026README.md · Checked Sep 18, 2026
Author’s example

Start a content team for a newsletter topic

Uses ai-pair

  • Replace `AI-Newsletter` with the topic for the article, script, or newsletter.
  • Run in a Claude Code session after Claude Code, Codex CLI and Gemini CLI are installed and all three have authentication configured.
/ai-pair content-team AI-Newsletter
SKILL.md · Checked Sep 18, 2026README.md · Checked Sep 18, 2026