← ClaudeAtlas

interop-routerlisted

Automatically routes tasks to external AI CLIs (Codex or Gemini) when more efficient. No manual commands needed - routing decisions are made automatically based on task type.
claude-world/director-mode-lite · ★ 68 · AI & Automation · score 83
Install: claude install-skill claude-world/director-mode-lite
# Automatic Routing to External AI CLIs **Auto-trigger**: This skill evaluates tasks automatically and decides whether to delegate to an external CLI. No manual invocation needed. --- ## Auto-Trigger Conditions Automatically evaluate when detecting: - Large refactoring (10+ files affected) - Batch file changes - Template generation tasks - Multi-model cross-validation needs --- ## Decision Scoring Calculate delegation score using 3 factors: | Factor | Range | Description | |--------|-------|-------------| | Benefit | 0.0 - 0.6 | Can external CLI produce faster/more reliable results? | | Cost | -0.3 - 0.0 | Overhead of wrapping, normalizing, reviewing | | Risk | -0.3 - 0.0 | Permission/write/secret leakage risks | **Threshold**: Score >= 0.15 with auto-interop enabled -> auto-execute delegation --- ## Routing Targets | Task Type | Target CLI | Reason | |-----------|------------|--------| | Large codebase exploration | Gemini | 1M token context | | Batch implementation | Codex | Fast bulk generation | | Complex architecture analysis | Gemini | Deep reasoning | | Template generation | Codex | Efficient structured output | --- ## Process ### 1. Check CLI Availability ```bash bash "$CLAUDE_PROJECT_DIR/skills/interop-router/scripts/check_cli_available.sh" --json ``` ### 2. Score the Decision ```bash python3 "$CLAUDE_PROJECT_DIR/skills/interop-router/scripts/score_decision.py" \ --task "task description" \ --files 15 \ --complexity high \ --json ``` ### 3.