Director-mode-lite interop-router

install
source · Clone the upstream repo
git clone https://github.com/claude-world/director-mode-lite
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/claude-world/director-mode-lite "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/interop-router" ~/.claude/skills/claude-world-director-mode-lite-interop-router && rm -rf "$T"
manifest: skills/interop-router/SKILL.md
source content

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:

FactorRangeDescription
Benefit0.0 - 0.6Can external CLI produce faster/more reliable results?
Cost-0.3 - 0.0Overhead of wrapping, normalizing, reviewing
Risk-0.3 - 0.0Permission/write/secret leakage risks

Threshold: Score >= 0.15 with auto-interop enabled -> auto-execute delegation


Routing Targets

Task TypeTarget CLIReason
Large codebase explorationGemini1M token context
Batch implementationCodexFast bulk generation
Complex architecture analysisGeminiDeep reasoning
Template generationCodexEfficient structured output

Process

1. Check CLI Availability

bash "$CLAUDE_PROJECT_DIR/skills/interop-router/scripts/check_cli_available.sh" --json

2. Score the Decision

python3 "$CLAUDE_PROJECT_DIR/skills/interop-router/scripts/score_decision.py" \
  --task "task description" \
  --files 15 \
  --complexity high \
  --json

3. Wrap Context (if delegating)

python3 "$CLAUDE_PROJECT_DIR/skills/interop-router/scripts/wrap_context.py" \
  --files src/*.py \
  --diff \
  --output /tmp/context.md

4. Execute with External CLI

# Codex
codex "Your task description" < /tmp/context.md

# Gemini
gemini "Your task description" -f /tmp/context.md

Safety Constraints

  • Default read-only mode
  • Automatic secret filtering (API keys, passwords, tokens, connection strings)
  • All results must be reviewed before landing
  • Sensitive files (.env, credentials, private keys) are always skipped

Configuration

Enable auto-interop:

# Project-level (takes precedence)
mkdir -p .claude/flags
echo '{"enabled": true}' > .claude/flags/auto-interop.json

# User-level
mkdir -p ~/.claude/flags
echo '{"enabled": true}' > ~/.claude/flags/auto-interop.json