AgentStack
SKILL verified MIT Self-run

Route Three Brain

skill-zacharticulatev-designer-pro-and-seo-route-three-brain · by ZachArticulateV

The routing law for handing off between Claude (primary driver), Codex/GPT-5.5 (adversarial review, second opinions), and Gemini (long-context, repo-wide synthesis). Codifies when each model is the right tool and enforces the no-self-review rule. Trigger when the user says "three brain", "route this", "which model should", "delegate to codex / gemini", or when a substantial Claude output needs an…

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add skill-zacharticulatev-designer-pro-and-seo-route-three-brain

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Route Three Brain? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

route-three-brain

Family: routing Status: Stable

Purpose

The decision layer for cross-model routing. Three models, three roles:

  • Claude — primary driver for code, content, design generation, conversation.
  • Codex / GPT-5.5 — adversarial review, second-opinion debugging, deep

correctness/security checking.

  • Gemini — large-context whole-repo analysis, multi-document synthesis, big

structured-data passes.

Hard rule: Claude never reviews Claude — same architecture, same blind spots. If the user says "check your work" / "review this" / "is this right" / "second opinion" / "sanity check," route to Codex via route-codex-review.

Triggers

  • "three brain" / "tri-brain" / "route this" / "which model"
  • "delegate to codex" / "delegate to gemini" / "best model for X"

Inputs

  • Task description; the current output (if asking for review/handoff)
  • Constraints (cost, time, privacy)

Steps

  1. Startup self-check (once per session). Verify the tools exist:

codex --version and gemini --version. If one is missing, announce it once and route only to what's available.

  1. Classify the task:
  • Build/generate/converse → Claude keeps it.
  • Review / verify / debug a substantial output, or any risk-path edit (auth,

billing, migrations, deploy, secrets) → Codex via route-codex-review.

  • Needs more context than one window (whole repo, many docs) → Gemini via

route-gemini-context.

  1. Announce forced routes in one line before running (so the user can interrupt):

[three-brain] routing to Codex (review) — risk path: src/auth/.

  1. Execute the handoff via the execution skills and integrate the result —

diff where models agree/disagree and adjudicate by evidence, not by averaging.

Outputs

  • A routing decision with justification
  • The integrated result of any executed handoff

Dependencies

  • route-codex-review (Codex execution), route-gemini-context (Gemini execution)
  • The codex and gemini CLIs installed (or the adjacent openai-codex /

cc-gemini-plugin tools); degrades to a recommendation when neither is present

Notes

The law layer; the two route-* skills are the execution layers. Under-firing is fine; over-firing breaks trust. When uncertain, recommend rather than auto-route.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.