ReRouted: macOS Menu Bar App to Auto-Fallback Across Claude, Codex, Grok, and More

ReRouted is a lightweight macOS menu bar app that acts as a local gateway for multiple AI coding tool accounts and providers. You point all your tools to one local endpoint, and it handles routing and automatic fallback when a provider hits limits.
Key Details
- Connect accounts: Supports Claude (via OAuth), Codex/ChatGPT, Grok, custom OpenAI-compatible endpoints, OpenRouter, Cloudflare, NVIDIA endpoints, and more.
- Create routes: Define a route (e.g., 'coding') with your preferred order of providers/models.
- Single local URL + one generated key: Use the same endpoint and key across all your tools.
- Automatic fallback: If a provider returns a 429, 5xx, timeout, or fails before output starts, it instantly and silently tries the next provider in the route.
- Background operation: Fast, happens in the background with no manual intervention.
- Fully open source and free.
Set up a route like 'coding' with Claude, then Codex, then Grok. When Claude hits a rate limit, ReRouted transparently switches to the next provider without interrupting your session.
📖 Read the full source: r/openclaw
👀 See Also

Claude Code Skill Converts Stitch Designs to Next.js with Zero Pixel Drift
A Claude Code skill converts Google Stitch AI designs to Next.js components with mandatory verification checkpoints to prevent pixel drift, preserving exact values and handling assets.

4-Pane iTerm2 Setup for Claude Code CLI Separates AI Roles
A developer built a four-pane iTerm2 terminal setup specifically for Claude Code CLI to address context drift and self-grading bias. Each pane is locked to a specific role with dedicated models and permissions.

Semble: Code Search for AI Agents Using 98% Fewer Tokens Than grep+read
Semble is an open-source code search library for AI agents that combines static Model2Vec embeddings with BM25, running entirely on CPU. It indexes a repo in ~250ms and answers queries in ~1.5ms, achieving 0.854 NDCG@10 — 99% of a 137M-parameter transformer's quality — while using 98% fewer tokens than grep+read.

Running Multiple Claude Code Sessions in Parallel with Git Worktrees
A developer shares how they use git worktrees to run multiple Claude Code sessions on separate branches without stashing or context switching. Review diffs, merge, and move on.