# Compare Contrast

> Compare two technical perspectives with evidence from the codebase; use when deciding between options.

- Skill: `majiayu000/compare-contrast` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/compare-contrast`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/compare-contrast/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/compare-contrast

---


# Compare Contrast

## Overview

Run a multi-agent debate using CLI subagents. Each agent argues one perspective with evidence. Synthesize and recommend a path.

## Inputs

- Topic or decision
- Perspective A
- Perspective B

## Workflow

1. Clarify the decision, constraints, and success criteria.
2. Run six subagents (Codex, Gemini, Claude) using the commands below.
3. Group findings by perspective and compare evidence strength.
4. Recommend a winner and note when the other option is preferable.

## Subagent Commands

### Codex A

```bash
codex exec -m gpt-5.2 -s read-only -c model_reasoning_effort="low" --skip-git-repo-check \
  "Argue for {PERSPECTIVE_A} on {TOPIC}. Find codebase evidence with file paths and line numbers."
```

### Codex B

```bash
codex exec -m gpt-5.2 -s read-only -c model_reasoning_effort="low" --skip-git-repo-check \
  "Argue for {PERSPECTIVE_B} on {TOPIC}. Find codebase evidence with file paths and line numbers."
```

### Gemini A

```bash
CLOUDSDK_CORE_PROJECT="" GOOGLE_CLOUD_PROJECT="" GCLOUD_PROJECT="" GEMINI_API_KEY=${GEMINI_API_KEY} \
  gemini -m gemini-3-pro-preview -o text "Argue for {PERSPECTIVE_A} on {TOPIC}. Provide evidence with file paths and line numbers."
```

### Gemini B

```bash
CLOUDSDK_CORE_PROJECT="" GOOGLE_CLOUD_PROJECT="" GCLOUD_PROJECT="" GEMINI_API_KEY=${GEMINI_API_KEY} \
  gemini -m gemini-3-pro-preview -o text "Argue for {PERSPECTIVE_B} on {TOPIC}. Provide evidence with file paths and line numbers."
```

### Claude A

```bash
claude --model haiku -p "Argue for {PERSPECTIVE_A} on {TOPIC}. Provide evidence with file paths and line numbers."
```

### Claude B

```bash
claude --model haiku -p "Argue for {PERSPECTIVE_B} on {TOPIC}. Provide evidence with file paths and line numbers."
```

## Output

- Side-by-side comparison
- Evidence-backed recommendation

