/ 디렉터리 / 플레이그라운드 / claude-gpt-workflow
● 커뮤니티 longranger2 ⚡ 바로 사용

claude-gpt-workflow

제작: longranger2 · longranger2/claude-gpt-workflow

Delegates code execution to Codex CLI while Claude orchestrates — adversarial plan review and iterative refinement between two AI models.

Three skills that split roles: Claude orchestrates strategy, Codex executes. codex delegates coding tasks to Codex CLI. /plan-review has Codex adversarially critique Claude's plan before implementation. /plan-execute runs the approved plan with back-and-forth review loops until quality passes. Three feedback loops — plan refinement, review/fix, batch execution.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

claude-gpt-workflow-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "claude-gpt-workflow-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/longranger2/claude-gpt-workflow",
        "~/.claude/skills/claude-gpt-workflow"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "claude-gpt-workflow-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/longranger2/claude-gpt-workflow",
        "~/.claude/skills/claude-gpt-workflow"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "claude-gpt-workflow-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/longranger2/claude-gpt-workflow",
        "~/.claude/skills/claude-gpt-workflow"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-gpt-workflow-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/longranger2/claude-gpt-workflow",
        "~/.claude/skills/claude-gpt-workflow"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "claude-gpt-workflow-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/longranger2/claude-gpt-workflow",
        "~/.claude/skills/claude-gpt-workflow"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "claude-gpt-workflow-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/longranger2/claude-gpt-workflow",
          "~/.claude/skills/claude-gpt-workflow"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add claude-gpt-workflow-skill -- git clone https://github.com/longranger2/claude-gpt-workflow ~/.claude/skills/claude-gpt-workflow

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: claude-gpt-workflow

Stress-test a plan by having another model attack it

👤 Engineers doing high-stakes refactors ⏱ ~45 min intermediate

언제 쓸까: Before touching code on a migration or risky refactor, you want a second model to poke holes.

사전 조건
  • Codex CLI installed and authenticated — Install OpenAI Codex CLI with your API key
  • Skill installed — git clone https://github.com/longranger2/claude-gpt-workflow ~/.claude/skills/claude-gpt-workflow
흐름
  1. Draft a plan with Claude
    Write a plan.md for migrating our auth module from JWT to session cookies.✓ 복사됨
    → Step-by-step plan written to plan.md
  2. Trigger adversarial review
    /plan-review plan.md✓ 복사됨
    → Codex returns critique with risks Claude missed
  3. Iterate until both agree
    Incorporate Codex's critique, re-submit, repeat until clean.✓ 복사됨
    → Plan reaches stable state

결과: A plan that has survived real adversarial review, not just self-grading.

함정
  • Endless review loops — Cap at 3 rounds — diminishing returns after
함께 쓰기: filesystem · git

Delegate a batch refactor to Codex with Claude reviewing

👤 Teams doing mechanical multi-file changes ⏱ ~60 min intermediate

언제 쓸까: A rename / signature change across 50+ files.

흐름
  1. Plan and approve
    Plan + review a rename of <old> to <new> across the codebase.✓ 복사됨
    → Approved plan.md
  2. Execute
    /plan-execute plan.md — Codex does the edits, Claude reviews each batch.✓ 복사됨
    → Files change in batches, each passes Claude's review

결과: A clean multi-file change with two sets of eyes on every batch.

함정
  • Codex does something Claude would have rejected — The /plan-execute loop catches it — but only if quality criteria in the plan are explicit
함께 쓰기: git

Implement a feature with iterative quality refinement

👤 Devs who've seen one-shot AI code fall over on edge cases ⏱ ~90 min advanced

언제 쓸까: A feature complex enough that a single generation won't get it right.

흐름
  1. Write plan with acceptance criteria
    Plan a feature with explicit acceptance tests, then /plan-execute.✓ 복사됨
    → Plan with testable criteria
  2. Watch the loop
    Let the review/fix loop run — summarize each iteration.✓ 복사됨
    → Iterations converge to passing criteria

결과: A feature that passes explicit acceptance, not just a commit that compiles.

조합

다른 MCP와 조합해 10배 효율

claude-gpt-workflow-skill + git

Commit after each loop iteration so you can revert if the loop diverges

Before each /plan-execute iteration, create a git tag.✓ 복사됨
claude-gpt-workflow-skill + filesystem

Plan and critiques live in the repo

Write plan.md and review-notes.md to docs/ and keep them in git.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
ask_codex.sh request string Delegate a coding task Codex API tokens
/plan-review plan file path Before execution Codex API tokens
/plan-execute approved plan path After /plan-review passes Codex tokens per iteration

비용 및 제한

운영 비용

API 쿼터
Codex API tokens — potentially 2–5x a single-model workflow since both models run
호출당 토큰
High — plan + review + execute
금액
Two API subscriptions (Claude + OpenAI)
Reserve this for risky work; don't use it for small one-file edits

보안

권한, 시크릿, 파급범위

자격 증명 저장: OPENAI_API_KEY in env for Codex CLI
데이터 외부 송신: Code leaves your machine to both providers — check corporate policy

문제 해결

자주 발생하는 오류와 해결

ask_codex.sh: command not found

Codex CLI not on PATH or not installed

확인: which codex
Plan-execute loops forever

Acceptance criteria too vague — tighten the plan or cap iterations

Models disagree and plan never stabilizes

Force a tiebreaker round with a shorter scope

대안

claude-gpt-workflow 다른 것과 비교

대안언제 쓰나단점/장점
Single-model Claude CodeThe task isn't risky enough to justify two-model overheadFewer adversarial signals
agent-skill-tddDiscipline comes from tests, not from another model's critiqueNo cross-model review

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기