cheapest-model

Select the cheapest LLM tier that meets task demands for subagent and runtime calls.

1|Updated Jun 25, 2026
One-click install
npx skills add https://github.com/curtismu7/AI-DEMO2 --skill cheapest-model-curtismu7
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: cheapest-model
Source: https://github.com/curtismu7/AI-DEMO2/tree/main/claudSkills/general/cheapest-model
Command: npx skills add https://github.com/curtismu7/AI-DEMO2 --skill cheapest-model-curtismu7

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams routinely overspend on LLM calls by defaulting to frontier models for mechanical work, or underspend by forcing cheap models onto judgment-heavy tasks and paying twice for failures. This Skill provides a structured decision framework to pick the cheapest model tier that still clears the task's capability requirements. ## Core Features & Use Cases - Five-axis task classification: Scores tasks on specification clarity, reasoning depth, stakes, open-endedness, and context size to determine the right tier. - Tier-to-model mapping: Maps cheap/mid/frontier tiers to concrete Claude models (haiku, sonnet, opus) and generalizes to other provider families. - Application guidance: Shows how to pass the chosen tier to Claude Code subagents via the Agent tool's model parameter, or route runtime calls through a Manifest router at localhost:2099. - Use Case: Before fanning out 10 subagents for mechanical renames across a repo, classify each task and dispatch all 10 on haiku instead of opus, cutting cost without sacrificing correctness. ## Quick Start Ask the AI which model tier to use for your task, for example: which model should I use to rename a function across the repo and update all call sites?

Frequently Asked Questions about cheapest-model

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose between Haiku, Sonnet, and Opus for a task?▼

Classify the task on five axes: specification clarity, reasoning depth, stakes, open-endedness, and context size. All-cheap axes mean haiku, one or two moderate axes mean sonnet, and any axis involving judgment or high stakes means opus.

What model should I use for Claude Code subagents?▼

Pass the tier as the model parameter in the Agent tool, such as model: "haiku" for mechanical work. Mechanical or fully-specified subagent tasks should default to haiku, reserving sonnet and opus for judgment-heavy work.

When is a cheap model the wrong choice even for easy tasks?▼

Easy but high-stakes tasks, like extracting terms from a 200-page contract, carry silent-failure risk where a missed clause surfaces much later. When failure is subtle and expensive to detect, step up a tier rather than trusting difficulty alone.

Can this tiering approach work with non-Claude model providers?▼

Yes, the tiers are model-agnostic. Apply the same cheap, mid, and frontier classification to any provider's small, mid, and flagship model trio, since the decision axes matter more than the brand.

Why not just default to the most capable model for everything?▼

Defaulting to frontier models on mechanical work is pure waste, and a 10-agent fan-out of mechanical edits costs ten times more than needed. The goal is the cheapest tier whose capability comfortably clears the task, not the smartest available model.