Stop Asking Which AI Model to Use: Route Tasks to Haiku, Sonnet, and Opus Tiers

Reddit user u/spencer_kw calls out the daily "which model should I use?" posts and gives a concrete answer based on a month of routing by task type. The core insight: no single model is optimal for everything, and you should be routing tasks to at least three tiers.
Model Tiers by Task
- Reading files, summarizing, answering code questions: Use the cheapest model — Haiku, Qwen 3.6 via Ollama, Gemma 4. Sending file reads to Opus is burning money.
- Writing code, tests, boilerplate: Sonnet-tier — GPT-5.5 mini, DeepSeek v4. Solid generation at a fraction of frontier cost.
- Multi-file refactors, architecture, complex async debugging: Only time you need Opus or GPT-5.5. This is ~15-20% of your day.
Practical Routing Setup
u/spencer_kw's current distribution:
- ~40% of tasks → Haiku-tier (cheap readers)
- ~35% → Sonnet-tier (generation)
- ~25% → Opus-tier (complex reasoning)
Total monthly spend: $30–40 depending on workload.
The "daily driver" framing is broken — asking for one model for everything is like asking for one vehicle that both hauls and commutes. Use multiple models and route by task.
📖 Read the full source: r/openclaw
👀 See Also

iOS Shortcut Workaround for Sending iPhone Photos to Cowork via iCloud Sync
A developer created an iOS Shortcut called "PhoPo" that converts iPhone photos to JPEG, resizes them, and saves them to an iCloud-synced folder that Cowork can access, enabling Claude to analyze screenshots and photos from mobile devices.

Claude Code v2.1.36: Fast Mode Now Available for Opus 4.6
Anthropic releases Claude Code v2.1.36 with Fast Mode support for the latest Opus 4.6 model, enabling significantly faster code generation and analysis.

OpenClaw: Your Ultimate Quick Reference Cheatsheet
Dive into the nitty-gritty of OpenClaw with our handy reference cheatsheet. Extract critical features and functionalities to streamline your AI coding experience.

Guide to Setting Up Safety Layers for Coding with Claude Code
A step-by-step guide shows how to implement defense-in-depth safety layers for coding with Claude Code, covering pre-commit hooks, CLAUDE.md files, local review agents, GitHub Actions CI, and branch protection.