Claude Gpt Workflow banner
longranger2 longranger2

Claude Gpt Workflow

AI community

Description

Claude Code skills for Claude + GPT collaborative workflows. Adversarial plan review + orchestrated code execution with iterative refinement.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Claude-GPT Workflow Skills

[中文](./README_zh.md) | English

A collection of Claude Code skills for Claude + GPT automatic collaboration workflows.

Skills

1. [codex](./codex/)

Delegates coding tasks to Codex CLI for execution. CodeX is a cost-effective, strong coder — great for batch refactoring, code generation, multi-file changes, and multi-turn implementation tasks.

Based on [oil-oil/codex](https://github.com/oil-oil/codex).

**Usage:**

~/.claude/skills/codex/scripts/ask_codex.sh "Your request"

2. [plan-review](./plan-review/)

Reviews a technical plan via Codex and iteratively refines it. Uses adversarial review to improve plan quality before implementation.

**Trigger:** `/plan-review `

3. [plan-execute](./plan-execute/)

Executes a finalized plan by delegating coding to Codex. Claude orchestrates, Codex codes, Claude reviews, Codex fixes — iterating until quality passes.

**Trigger:** `/plan-execute `

**Note**

After Claude enters `plan` mode, plan files are stored under `~/.claude` by default. You can change the plan storage directory in `~/.claude/settings.json`; for example, the config below stores plans in the current project's `./plans` directory:

{
  "env": {},
  "plansDirectory": "./plans"
}

Installation

Option 1: npx skills add (Recommended)

npx skills add longranger2/claude-gpt-workflow

Option 2: Manual installation

Copy skills to your Claude Code skills directory:

cp -r plan-review/ ~/.claude/skills/
cp -r plan-execute/ ~/.claude/skills/
cp -r codex/ ~/.claude/skills/

Workflow

%%{init: {'theme': 'base', 'themeVariables': { 'clusterBkg': 'transparent', 'background': 'transparent', 'primaryColor': '#FFF7E6', 'primaryTextColor': '#5A3A00', 'primaryBorderColor': '#F59E0B', 'lineColor': '#6366F1', 'secondaryColor': '#E8F5FF', 'tertiaryColor': '#F3E8FF'}}}%%
flowchart TB
  %% ---------- Styles ----------
  c