What problem does it solve? Single-model coding workflows suffer from blind spots where the same model writes and reviews its own code, and premium model usage drives up costs. This Skill delegates implementation and review tasks to external AI CLI tools (OpenAI Codex CLI, Google Gemini CLI) so that code is always reviewed by a different model, while cheaper models handle routine implementation work. ## Core Features & Use Cases - Cross-Model Adversarial Review: The writer model is always reviewed by a different model (Codex, Gemini, or Claude), with a structured rubric producing PASS/FAIL verdicts and BLOCKING/WARNING findings. - Availability-Aware Escalation: Health checks run per task dispatch, and the orchestrator escalates through a chain (external tool A, external tool B, Claude, user) with retry budgets of up to 5 attempts. - Sandboxed, Budget-Controlled Execution: Each invocation runs in an isolated git worktree with a minimal environment (env -i), timeout enforcement, scope verification, and per-task ($2) and per-session ($20) cost circuit breakers. - Use Case: A team wants to cut LLM costs on routine TypeScript feature work. The orchestrator routes implementation to the cheapest healthy external tool, validates with its own test suite, has a different model review the diff, and only merges after all gates pass. ## Quick Start Ask the agent to delegate the next implementation task to Codex and have Gemini review the resulting diff using the cross-model review rubric.