content-forge/.claude/commands/multi-review.md

1.6 KiB

Run multi-agent content review using MCO.

Step 1: Check MCO Status

mco doctor

Ensure at least 2 providers are READY.

Step 2: Identify Content

cd /home/kang/apps/content-forge/content-forge
obsidian files folder="02-drafts"
obsidian files folder="03-review"

Step 3: Read and Review

obsidian read path="<file-path>"

Then run MCO review:

# Basic review
mco review --repo /home/kang/apps/content-forge \
  --prompt "Review for: clarity, accuracy, structure, gaps, improvements. Be specific." \
  --providers claude,codex \
  --target-paths content-forge/<file-path> \
  --synthesize \
  --format report

# With cc environment
mco review --repo /home/kang/apps/content-forge \
  --prompt "Review this content" \
  --providers claude,codex \
  --provider-permissions-json '{"claude":{"cc_env":"bigmodel"}}' \
  --target-paths content-forge/<file-path> \
  --synthesize

# With model selection
mco review --repo /home/kang/apps/content-forge \
  --prompt "Review this content" \
  --providers claude,codex \
  --provider-permissions-json '{"claude":{"model":"opus"}}' \
  --target-paths content-forge/<file-path> \
  --synthesize

Claude Provider Options

Option Values Description
cc_env 88, bigmodel, cclaude, relay, vibe cc environment
model opus, sonnet, haiku Claude model

Output

MCO will return deduplicated findings with:

  • Issues detected by multiple agents
  • Consensus points
  • Divergence points
  • Actionable suggestions

Use the multi-review skill for detailed workflow documentation.