Imported from projectious-work/processkit (
context/templates/processkit/v0.11.1/context/skills/processkit/model-recommender/SKILL.md). Install upstream withnpx skills add projectious-work/processkit --skill model-recommender. Copyright stays with the author.
Model Recommender
Intro
This skill scores AI models across six capability dimensions, two gate dimensions (Availability and User Access), and per-token pricing β then helps you pick the right model. It has three workflows: Profile View (spider-chart for one or more models, with optional sub-dimension drill-down), Task Router (cluster a task plan and route each cluster to the optimal model), and Roster Refresh (live internet research to update benchmark scores and discover new models). Gates always apply before capability scoring: a model the user can't access or that is currently down is excluded regardless of how well it scores.
Overview
The six dimensions
Every model and every task is evaluated against the same six axes. Each scores 1β5.
| Dim | Symbol | What it measures | Sub-dimensions |
|---|---|---|---|
| Reasoning | R | Hard thinking: math, science, logic, novel problem-solving | Mathematical reasoning, scientific/domain-expert reasoning, abstract/novel reasoning, multi-step logical chains, debugging chains |
| Engineering | E | Software work: code, tools, agents, codebases | Function-level code generation, repo-scale task completion, tool use / function calling (BFCL), agentic planning and self-correction, large-codebase navigation |
| Speed | S | Response latency, throughput, and cost efficiency | Time to First Token (TTFT), Inter-Token Latency (ITL), tokens/sec, cost per 1M input tokens, cost per 1M output tokens, rate limits |
| Breadth | B | Context window, modalities, language coverage | Context window size, long-doc faithfulness, vision, audio, video, structured output (JSON/function calling), multilingual |
| Reliability | L | Instruction fidelity, factual accuracy, consistency | Instruction following, hallucination rate, multi-turn consistency, safety/harmlessness, format adherence |
| Governance | G | Privacy, sovereignty, compliance, auditability | Data retention policy, data sovereignty / region, self-hostable / open weights, compliance certs (SOC 2, HIPAA, GDPR), prompt injection resistance |
Score rubric:
| Score | Label | Meaning |
|---|---|---|
| 5 | Exceptional | Best-in-class or near-best; make this a primary reason to choose the model |
| 4 | Strong | Above average; reliable strength, not a risk |
| 3 | Moderate | Adequate; not a differentiator; works for routine tasks |
| 2 | Limited | Can do it, but expect trade-offs; consider alternatives |
| 1 | Minimal | Poor fit; the model is not designed for this; choose differently |
Gate dimensions (applied before capability scoring)
Gates are binary β they disqualify a model entirely, not partially. Apply them first; only models that pass both gates are scored on the six dimensions.
Gate 1 β User Access: Does the user have an active subscription, API key,
and sufficient quota for this model? Ask at the start of any routing session
if unknown. Maintain user access state in mcp/user_config.json via
set_config(available_models=[...]). The MCP query_models and list_models
tools respect this automatically.
Gate 2 β Availability: Is the provider's API currently operational? Check
with check_availability() for live status. Three sub-states:
operationalβ no known issuesdegradedβ elevated error rate or latency; usable but risky for productionmajor_outageβ do not route here; escalate to fallback
Additional flags to surface when relevant:
- Rate limit exhausted β user has hit their per-minute or daily cap; fallback required
- Quota / budget exceeded β subscription limit reached; model is effectively unavailable
- Subscription expired β no access until renewed
When a model's gate status is unknown, ask the user rather than assuming it passes.
Cost and value
Cost is a sub-dimension of Speed (S.cost_efficiency) in the spider chart but is also surfaced explicitly because raw per-token prices and derived value matter independently of speed.
Per-token pricing: stored in mcp/model_scores.json under each model's
pricing field. Use get_pricing() to view and sort. Self-hosted models
(Llama) have null API pricing β infra cost applies instead.
Value score: (R + E + L) / 3 / output_cost_per_1M Γ 10. Higher is
better. Surfaces models with frontier-class capability at low cost. DeepSeek
models score highest on value but are excluded for G-sensitive work.
| Model | Input /1M | Output /1M | Value score | G |
|---|---|---|---|---|
| Gemini Flash 2.0 | $0.08 | $0.30 | ~43 | 2 |
| DeepSeek V3 | $0.14 | $0.28 | ~50 | 1 |
| Claude Haiku 4.5 | $0.25 | $1.25 | ~11 | 5 |
| DeepSeek R1 | $0.55 | $2.19 | ~15 | 1 |
| o4-mini | $1.10 | $4.40 | ~5 | 2 |
| Mistral Large 3 | $2.00 | $6.00 | ~3 | 4 |
| Claude Sonnet 4.6 | $3.00 | $15.00 | ~1.5 | 5 |
| Gemini 2.5 Pro | $1.25 | $10.00 | ~2 | 2 |
| GPT-4o | $2.50 | $10.00 | ~1.4 | 2 |
| o3 | $10.00 | $40.00 | ~0.5 | 2 |
| Claude Opus 4.6 | $15.00 | $75.00 | ~0.3 | 5 |
| Llama 3.3 70B | self-hosted | self-hosted | β | 5 |
When the user asks "what's the best value for money" or has a per-hour budget,
use get_pricing(sort_by="value_score") and filter by accessible models.
MCP tools
The mcp/server.py provides structured queries over the roster. Use these
instead of reading markdown files when the user asks for comparisons,
filtered lists, or pricing analysis.
| Tool | When to use |
|---|---|
list_models() |
First step when access config is unknown; shows what's usable |
query_models(R=4, G=5) |
"Find models with strong reasoning and full privacy" |
get_profile("claude-sonnet-4.6", scope="E") |
Sub-dimension drill-down on Engineering |
compare_models(["claude-sonnet-4.6", "gemini-2.5-pro"], scope="B") |
Side-by-side Breadth sub-dims |
get_pricing(sort_by="value_score") |
Value-for-money ranking |
check_availability() |
Live status before routing a plan |
get_config() / set_config(...) |
Show or update user access list |
Workflow A β Profile View
Use when the user wants to understand a specific model or compare two.
Output format (render one block per model):
Model: Claude Sonnet 4.6
Provider: Anthropic Β· Tier: Frontier mid-size Β· Updated: 2026-Q1
ββββββββββββββββββββββββββββββββββββββββββββββββ
Reasoning ββββββββββ 4/5 Strong
Engineering ββββββββββ 5/5 Exceptional
Speed ββββββββββ 3/5 Moderate
Breadth ββββββββββ 4/5 Strong
Reliability ββββββββββ 4/5 Strong
Governance ββββββββββ 5/5 Exceptional
ββββββββββββββββββββββββββββββββββββββββββββββββ
Best for: Complex coding, code review, refactoring, agentic workflows,
tasks touching sensitive data or enterprise privacy requirements
Avoid for: Extreme cost sensitivity at very high volume, real-time <100ms
UX, native audio/video processing
Bar widths: 5βββββββββββ, 4βββββββββββ, 3βββββββββββ, 2βββββββββββ, 1βββββββββββ
For head-to-head comparison of two models, render both blocks, then add a one-paragraph verdict: which model wins overall and for what use cases.
Sub-dimension drill-down: When the user wants detail on a specific
dimension (e.g., "which of these two is better at tool use?"), call
compare_models([...], scope="E") and render the sub-dimension table:
Engineering sub-dimensions: Claude Sonnet 4.6 vs GPT-4o
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
Sub-dimension Sonnet 4.6 GPT-4o
Function codegen 5 4
Repo-scale tasks 5 4
Tool use / BFCL 5 4
Agentic planning 5 3
Codebase navigation 5 4
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
Top-level E score 5 4
Trigger: "drill down on [dimension]", "compare at the detail level", "which is better at [sub-dimension]", "I need strong tool use specifically".
Workflow B β Task Router
Use when the user has a plan, task list, or backlog and wants to know which model to use for which work. This is the Dispatch matching mode: tasks are missions, models are heroes.
Steps:
-
Parse the task list. Accept any format: markdown bullets, numbered list, WorkItems, or a free-form plan.
-
Score each task against the six dimensions: which dimensions does this task require? Use the Task Scoring Quick-Reference below.
-
Cluster tasks by their dominant dimension profile. Tasks with the same top-2 dimensions belong in the same cluster. Typical clusters:
- Deep-Think (R+E dominant) β complex architecture, novel algorithms
- Production-Coder (E dominant) β routine implementation, bug fixes
- High-Volume (S dominant) β repetitive generation, bulk transforms
- Long-Context (B dominant) β large codebase sweeps, doc analysis
- Privacy-First (G dominant) β PII, PHI, regulated data, secrets
-
Recommend a model per cluster from the user's accessible models. Call
query_models(R=..., E=..., G=..., apply_user_filter=True)to find the best available match. State the primary recommendation and one fallback. -
Theoretical-best hint. After recommending from the user's accessible models, run the same query with
apply_user_filter=False. If the theoretical-best model differs from the recommended one, show the hint:β‘ Theoretical best (not in your access): Claude Opus 4.6 Gap: R:5 E:5 vs your best R:4 E:5 β 1 point on Reasoning matters for this cluster (novel algorithm design). Consider adding Opus access if the task justifies it β anthropic.com/apiOmit the hint if the user's accessible model already matches the theoretical best, or if the gap is only 1 point on a non-dominant dimension.
-
Output the routing table:
Task Routing Analysis
ββββββββββββββββββββββββββββββββββββββββββββββ
Cluster 1 β Deep-Think (Reasoning + Engineering) [N tasks]
Profile: R:5 E:5 S:2 B:3 L:4 G:4
Your model: Claude Sonnet 4.6 (fallback: Qwen 2.5 Coder 32B self-hosted)
β‘ Theoretical best: Claude Opus 4.6 β R gap: 4β5; worth it for novel algorithms
Tasks:
β’ Design consensus algorithm for distributed cache
β’ Refactor auth middleware to zero-trust model
Cluster 2 β Production-Coder (Engineering) [N tasks]
Profile: R:3 E:5 S:3 B:3 L:4 G:4
Your model: Claude Sonnet 4.6 (no gap β this is the theoretical best)
Tasks:
β’ Implement JWT refresh token rotation
β’ Add pagination to /api/v2/users endpoint
Cluster 3 β High-Volume (Speed) [N tasks]
Profile: R:2 E:3 S:5 B:3 L:3 G:3
Your model: Claude Haiku 4.5 (fallback: Gemini Flash 2.0)
β‘ Theoretical best: Gemini Flash 2.0 β slightly cheaper at this volume;
only matters if processing >10M tokens/month
Tasks:
β’ Generate unit test stubs for all 200 endpoints
β’ Reformat 5,000 changelog entries to new template
Cluster 4 β Privacy-First (Governance) [N tasks]
Profile: R:3 E:3 S:3 B:3 L:4 G:5
Your model: Llama 3.3 70B self-hosted (no gap β self-hosted is optimal)
Tasks:
β’ Process patient consent records
β’ Summarize HIPAA audit logs
ββββββββββββββββββββββββββββββββββββββββββββββ
Total: N tasks across M clusters.
Suggested sequence: Cluster 4 β Cluster 1 β Cluster 2 β Cluster 3.
Workflow D β Setup Questionnaire
Use when the user says "set up my models", "configure my access", "which models do I have access to", "help me set up the recommender", "onboard me", or "I only have access to X". Replaces manual JSON editing with a guided conversation.
Steps:
-
Show current state. Call
get_config(). Ifavailable_modelsis non-empty, say "You currently have [N] models configured β I'll update your settings." If empty, say "Your model access isn't set up yet. Let me walk you through it." -
Ask about provider access. One question, accept a free-form answer:
"Which AI providers do you have active API access to? Options: Anthropic, OpenAI, Google (Gemini), Meta/self-hosted (Llama), Mistral, xAI (Grok), Cohere, Alibaba/Qwen, MiniMax, DeepSeek, Microsoft (Phi), or other."
-
For each confirmed provider, ask about model tiers:
- Anthropic: "Do you have Haiku only, Haiku + Sonnet, or full access (all three)?"
- OpenAI: "Standard (GPT-4o), reasoning tier (o3/o4-mini), or both?"
- Google: "Gemini 2.5 Pro, Flash, or both?"
- Open-source (Llama/Qwen/Phi/Gemma): "Self-hosted or via a third-party API (Together, Groq, etc.)?" β this determines the effective G score.
- Others: accept the provider-level answer.
-
Data sensitivity floor. One question:
"What's the highest sensitivity of data you typically work with in this project? (a) Public only β open-source code, public information (b) Internal / proprietary β code or business data that isn't public (c) Personal data β names, emails, addresses, any PII (d) Regulated β HIPAA (medical), financial, legal, or government data" Map: (a)βG:0, (b)βG:3, (c)βG:4, (d)βG:5.
-
Budget preference. One question:
"Budget preference? (a) Cost-first β use the cheapest model that meets the requirement (b) Balanced β trade off cost and quality (c) Quality-first β use the best model regardless of cost" Map: (a)βlow, (b)βmedium, (c)βhigh. Set
budget_tier. -
Exclusions. One question:
"Any models to always exclude? (e.g., 'no DeepSeek', 'nothing from China', 'only Anthropic')" Parse response and add to
blocked_models. -
Summarise and confirm. Display a brief summary:
Here's your configuration: Accessible models: [list] Governance floor: G:4 (personal data) Budget: balanced Blocked: deepseek-v3, deepseek-r1 Apply this? (yes / adjust) -
Apply. On confirmation, call
set_config(...)with all fields. Then calllist_models()and show the effective roster so the user can verify it looks right.
Workflow C β Roster Refresh
Use when the user says "update the model scores", "check for new models", "are there newer benchmarks", or "refresh the roster". This is the only workflow that requires internet access.
Steps:
-
Check validated date. Read
_meta.validatedfrommodel_scores.json. If less than 3 months old, ask the user if they want to proceed anyway. -
Discover new models. Web-search for "new LLM models [current year]" and "AI model releases [last 3 months]". For each new model found:
- Note it as a candidate addition (do NOT auto-write to model_scores.json)
- Report it to the user with a one-line capability summary
- Ask: "Do you want me to add [model] to the roster?"
- Only add after explicit confirmation; adds are additive (never overwrite existing entries)
-
Refresh benchmark scores. Fetch current leaderboard pages listed in
_meta.leaderboards. For each model already in the roster:- Check if its SWE-bench rank has changed significantly
- Check if its LMSYS Arena Elo has moved by >50 points
- Check Artificial Analysis for latency/cost updates
- Propose score changes as a diff β do NOT auto-apply
-
Check for new benchmarks. Search for benchmarks that have gained traction since the last validated date (e.g., new agentic evals, new multimodal evals). If found, assess whether they warrant a new sub-dimension. Report to user; do NOT add sub-dimensions without discussion.
-
Check pricing. Fetch the provider pricing pages in
_meta.pricing_pages. Compare to storedpricingfields. Report any price changes. -
Present proposed changes. List:
- New models to add (awaiting confirmation)
- Score adjustments (with before/after and source)
- Price updates (before/after)
- New benchmark candidates
-
Apply only confirmed changes. Update
model_scores.jsonfor approved changes. Bump_meta.validatedto the current quarter.
Constraint: refresh is additive. Never delete models from the roster during refresh β that is a separate cleanup task for the user to do manually.
Task Scoring Quick-Reference
| Task contains⦠| Raise these dimensions |
|---|---|
| "design", "architect", "algorithm", "prove", "derive", "optimize (complexity)" | R |
| "implement", "fix", "debug", "refactor", "review code", "write tests", "agentic" | E |
| "generate N items", "bulk", "batch", "fast", "cheap", "thousands of" | S |
| "entire codebase", "all files", "image", "screenshot", "audio", "video", "long doc" | B |
| "exactly", "format must be", "strict schema", "no hallucination", "cite sources" | L |
| PII, PHI, credentials, regulated, GDPR, HIPAA, internal/confidential | G |
A task can score high on multiple dimensions. When in doubt, assign the top-2 and cluster on those.
Model roster summary
The roster contains 34 models across 12 providers (25 validated, 9 estimated
for post-Aug-2025 releases). Estimated models are marked _estimated: true in
mcp/model_scores.json and should be validated via Workflow C before using in
production routing.
Live table: list_models() β returns the roster filtered by your user config.
Full table with context windows: see references/roster-quick-ref.md.
Narrative profiles: see references/model-profiles.md.
Providers covered: Anthropic, OpenAI, Google (API + open weights), xAI (Grok), Meta (Llama), Alibaba/Qwen (open), Microsoft/Phi (open), MiniMax, Mistral (all tiers + Codestral + Deep Think), Cohere, DeepSeek.
β οΈ G:1 warning: DeepSeek APIs, Alibaba Cloud API, and MiniMax API operate under Chinese jurisdiction. Never route sensitive, regulated, or personal data to these APIs. Self-hosting their open weights raises governance to G:3β4.
Commands
/model-recommender-profile model-id [scope]β show the spider-chart capability profile for a model/model-recommender-route task-descriptionβ route a task or task plan to the optimal AI model/model-recommender-setupβ run the guided questionnaire to configure model access and preferences/model-recommender-refreshβ run Workflow C to research and refresh the model roster from live benchmarks
Gotchas
-
Skipping the gate check before routing. Always check User Access and Availability before scoring capability. A model scoring E:5 G:5 is useless if the user's API key is expired or the provider is in a major outage. Call
check_availability()andget_config()at the start of any Task Router session, or ask the user explicitly if MCP is unavailable. -
Assuming access from context. If the user mentions "Claude" it does not mean they have Opus, Sonnet, and Haiku β they may only have one tier. Ask or call
get_config()before recommending a specific tier. -
Recommending a model the user has rate-limited. Rate limits and quota exhaustion are not visible on status pages β they are per-account states. If the user says "it keeps failing", check for rate-limit errors before re-routing to the same model. Suggest the next model in the fallback chain.
-
Conflating low cost with high value. DeepSeek models have the highest raw value score but score G:1, which disqualifies them for most enterprise work. Always surface the governance warning alongside the value score when a low-cost model has a G:1 or G:2 rating. Cost optimization within a G floor is the correct framing, not raw cost minimization.
-
Not telling the user the actual price. When recommending a model for a bulk task ("generate 10,000 descriptions"), compute an estimate: (estimated tokens Γ price per 1M / 1,000,000). Even a rough estimate ($0.50 vs. $8.00) changes the decision. Use
get_pricing()for current rates. -
Treating the roster as current truth. Model scores change with every release. The profiles in
references/model-profiles.mdhave a "validated" date. If the user's model is newer or the date is >6 months old, caveat your recommendation and point to Artificial Analysis or LMSYS Arena for live data. -
Recommending a model the user can't access. Before recommending o3 or Opus 4.6, ask (or check context) whether the user has access and budget. A perfect score on paper is useless if the quota is exhausted or the model is not provisioned. Offer a concrete fallback every time.
-
Scoring the task instead of the task cluster. When routing a plan, assess what the cluster as a whole needs, not individual task quirks. One unusual subtask should not pull an entire cluster to a different model.
-
Ignoring the Governance dimension for "internal" work. Many teams assume internal code is not sensitive. But source code with credentials, unreleased algorithms, or regulated business logic can be just as sensitive as PII. When in doubt, ask whether the organization has an AI data classification policy before routing to non-sovereign models.
-
Conflating Speed with Engineering. A fast model (S:5) is not necessarily a good coder (E:5). Haiku and Flash are excellent at high-volume, low-complexity code tasks but will struggle with novel architecture or debugging subtle async races. Always check both dimensions before routing engineering work to a speed-optimized model.
-
Presenting scores as objective benchmarks. The 1-5 scores in this skill are informed calibrations, not direct benchmark readings. When the user needs precision (e.g., choosing between two models scoring 4 vs. 4 on the same dimension), surface the underlying benchmarks (SWE-bench Verified, GPQA Diamond, BFCL v4) and link to current leaderboards. The skill's scores are a starting point, not the final word.
-
Over-routing to expensive models. The task router should push work toward the cheapest model that meets the required profile, not the highest- scoring model globally. Opus 4.6 is not the right answer for a task that only needs E:3 S:4 β that is Haiku or Sonnet territory.
-
Skipping the sequence suggestion. After clustering, always add a recommended execution sequence. Some clusters are prerequisites for others (e.g., design decisions made with Opus should precede implementation with Sonnet). The sequence is often more valuable than the per-cluster picks.
-
Calling
set_configwithout user confirmation.set_configoverwritesuser_config.jsonin full β it is markeddestructiveHint: true. Always show the proposed configuration to the user and wait for explicit approval before callingset_config. Never chainset_configinto a batch of other calls. -
Treating
check_availabilityfailures as errors.check_availabilitymakes live HTTP requests to provider status pages. Network failures, rate limits, and subscription expiry are not detectable from status pages. Treat any failure or non-operational status asunknown, report it to the user, and do not retry more than once without explicit user awareness.
Full reference
Sub-dimension detail
Full sub-dimension specs, benchmark mappings, and scoring guidelines are
in references/dimension-specs.md. For structured sub-dimension comparison,
use compare_models(model_ids, scope="R") (or E/S/B/L/G).
Complete model profiles
Narrative descriptions, per-sub-dimension scores, and best-for/avoid-for
lists for all twelve models are in references/model-profiles.md.
Structured scores are in mcp/model_scores.json β the MCP server is the
preferred interface for queries; the markdown file is the human-readable view.
Pricing and value analysis
get_pricing(sort_by="value_score")β ranked by capability per dollarget_pricing(sort_by="output_per_1m")β ranked cheapest output first- Provider pricing pages are in
mcp/model_scores.jsonunder_meta.pricing_pages - For bulk cost estimates: tokens Γ (output_price / 1,000,000)
- Self-hosted models (Llama): no API cost, but require GPU infra (~$1β3/hr/A100)
Availability and user access
check_availability()β fetches live status from provider status pagesget_config()/set_config(...)β manage user access list and governance floor- Provider status pages:
mcp/model_scores.jsonunder_meta.status_pages - Rate limits and quota: must be checked manually via the provider's API dashboard (Anthropic: console.anthropic.com, OpenAI: platform.openai.com, etc.)
Dimension trade-off map
Common trade-offs to surface when the user is torn between two options:
| Trade-off | Typical tension | Resolution heuristic |
|---|---|---|
| Reasoning vs. Speed | o3 vs. Haiku | Choose by task complexity: reasoning chains >5 steps β o3 tier; routine β Haiku |
| Breadth vs. Governance | Gemini 2.5 Pro vs. Llama | If context >200K AND data is non-sensitive β Gemini; otherwise β Llama + chunking |
| Engineering vs. Governance | GPT-4o vs. Mistral | If task is routine coding AND data is non-sensitive β GPT-4o; regulated β Mistral or Llama |
| Speed vs. Reliability | Flash vs. Sonnet | For customer-facing output β Sonnet; for internal draft generation β Flash |
| Cost vs. Capability | DeepSeek vs. Claude | If data is non-sensitive AND cost is paramount β DeepSeek; otherwise avoid |
How scores were derived
Scores are calibrated from:
- Public benchmarks: SWE-bench Verified (E), GPQA Diamond (R), MATH/AIME (R), BFCL v4 (E+B), LMSYS Arena Elo (L), Artificial Analysis Intelligence Index (R+E)
- Provider documentation and model cards for Speed and Governance dimensions
- Practitioner reports and Artificial Analysis latency/cost benchmarks
Keeping profiles current
When a major new model releases or an existing model is updated:
- Add or update its entry in
references/model-profiles.md - Update the summary table in SKILL.md Overview
- Bump the validated date in model-profiles.md
- If scores change significantly, note what changed and why
Anti-patterns
- Single-dimension routing. Never pick a model on one dimension alone. A model that excels at reasoning but scores L:2 on reliability will produce confident, wrong answers. Always check the dimensions that matter for the task's tolerance for error.
- Assuming "best overall model" = right model. The highest-ranked model on LMSYS Arena is not always the right pick. A task requiring G:5 rules out the entire LMSYS top tier (all score G:2 or lower). Optimize for the user's actual constraints, not global rankings.
- Ignoring fallbacks. Always provide a fallback. The recommended model may be unavailable, rate-limited, or over budget mid-session. A router with no fallback fails the user at the worst moment.
- Not re-routing when a cluster grows. If a new task is added to the plan that doesn't fit the cluster's profile, surface it rather than silently absorbing it. A Governance-sensitive task silently absorbed into a DeepSeek-routed cluster is a data breach waiting to happen.