69 lines
1.6 KiB
Markdown
69 lines
1.6 KiB
Markdown
Run multi-agent content review using MCO.
|
|
|
|
## Step 1: Check MCO Status
|
|
|
|
```bash
|
|
mco doctor
|
|
```
|
|
|
|
Ensure at least 2 providers are READY.
|
|
|
|
## Step 2: Identify Content
|
|
|
|
```bash
|
|
cd /home/kang/apps/content-forge/content-forge
|
|
obsidian files folder="02-drafts"
|
|
obsidian files folder="03-review"
|
|
```
|
|
|
|
## Step 3: Read and Review
|
|
|
|
```bash
|
|
obsidian read path="<file-path>"
|
|
```
|
|
|
|
Then run MCO review:
|
|
|
|
```bash
|
|
# 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.
|