Agent Skill
2/7/2026model-selection-skill
Choose the best Codex model (gpt-4 family, gpt-4o-mini, or legacy davinci) based on the workload described; use when the user asks for a model suggestion, wants to optimize quality vs cost/latency, or says “change model” for the current answer.
A
ashcastelinocs124
0GitHub Stars
1Views
npx skills add ashcastelinocs124/mcp-coding-agent
SKILL.md
| Name | model-selection-skill |
| Description | Choose the best Codex model (gpt-4 family, gpt-4o-mini, or legacy davinci) based on the workload described; use when the user asks for a model suggestion, wants to optimize quality vs cost/latency, or says “change model” for the current answer. |
name: model-selection-skill description: Choose the best Codex model (gpt-4 family, gpt-4o-mini, or legacy davinci) based on the workload described; use when the user asks for a model suggestion, wants to optimize quality vs cost/latency, or says “change model” for the current answer.
Purpose
Use this skill whenever a user specifically asks you to switch models, wants a recommendation, or frames the task as “best model for …”. It instructs the next agent on how to evaluate the problem characteristics and pick the engine.
Workflow
- Assess the request: identify whether it is reasoning-heavy (architectural planning, complex algorithms), code-edit/refactor (short changes), interactive latency-sensitive, or compatibility-driven (legacy instructions).
- Consult
references/models.mdfor the current model capabilities and constraints before choosing; keep the table fresh if new offerings arrive. - Select the model that balances accuracy, cost, and latency:
- Use
gpt-4.1for analysis/design or long explanations (quality prioritized). - Use
gpt-4o-minifor concise edits, rapid iterations, or when tokens/cost matter. - Use
gpt-4o-realtime-previewonly when the user explicitly needs streaming/real-time behavior. - Use
text-davinci-003only if compatibility or deterministic formatting from legacy scripts is required.
- Use
- Prefix your answer with the chosen model and why it is appropriate, e.g.
Model: gpt-4.1 — Deep reasoning is required for .... - If the user later asks for another change, repeat the evaluation before responding again.
Resources
references/models.md— quick overview of the available models and their ideal use cases.
Skills Info
Original Name:model-selection-skillAuthor:ashcastelinocs124
Download