I Built a Skill So Claude Automatically Routes Tasks to Free-Tier AI Providers
I Built a Skill So Claude Automatically Routes Tasks to Free-Tier AI Providers Here's a problem I kept running into: I have free-tier access to Groq, OpenAI, Gemini, and MiniMax — but managing them...

Source: DEV Community
I Built a Skill So Claude Automatically Routes Tasks to Free-Tier AI Providers Here's a problem I kept running into: I have free-tier access to Groq, OpenAI, Gemini, and MiniMax — but managing them manually is painful. Wrong tool for the job, accidentally burning through monthly limits, no visibility into what's been used. I built agent-hub to fix this. It's a Claude Code skill that makes Claude the orchestrator — every task is automatically classified, routed to the best provider, tracked against free limits, and shown in a live status bar. How it works Claude classifies every incoming message into a task type and routes it: Task Type Signals Provider code write/fix/debug/refactor Codex (gpt-4o-mini) research explain/summarize/compare Gemini (gemini-2.0-flash) creative story/dialogue/narrative MiniMax fast yes/no, quick lookups Groq general everything else Groq Classification happens before calling any API — router.py checks token budgets in usage.json, picks the best available provid