← Back to list

update-ai-models
by rot1024
Instant AI translation anywhere: select text and double-copy (C+C)
⭐ 2🍴 2📅 Dec 9, 2025
SKILL.md
name: update-ai-models description: Search the web for the latest AI models from Anthropic, OpenAI, and Google, then update src/models.ts with new model IDs. Use when user asks to update or add AI models.
Update AI Models
Search for the latest AI models and update the model list in this project.
Instructions
-
Search for latest models from each provider:
- Anthropic Claude models (claude-opus, claude-sonnet, claude-haiku)
- OpenAI models (GPT series, o-series reasoning models)
- Google Gemini models
-
Get exact model IDs from official documentation:
-
Update src/models.ts:
- Add new models with correct
modelID strings - Keep
claude-4.5-sonnetas the first entry (default model) - Order models by recency within each provider section
- Remove deprecated models
- Add new models with correct
-
Run verification:
npm run typecheck npm run build npm test
Model Entry Format
'model-key': {
provider: 'anthropic' | 'openai' | 'google',
name: 'Display Name',
model: 'exact-api-model-id',
},
Examples
Anthropic Claude:
'claude-4.5-sonnet': {
provider: 'anthropic',
name: 'Claude 4.5 Sonnet',
model: 'claude-sonnet-4-5-20250929',
},
OpenAI:
'gpt-5': {
provider: 'openai',
name: 'GPT-5',
model: 'gpt-5',
},
'o3': {
provider: 'openai',
name: 'o3',
model: 'o3',
},
Google Gemini:
'gemini-2.5-pro': {
provider: 'google',
name: 'Gemini 2.5 Pro',
model: 'gemini-2.5-pro',
},
Notes
- Default model should be cost-effective (Sonnet tier, not Opus)
- Update tests in
src/models.test.tsif DEFAULT_AI_MODEL changes - Include sources in your response after updating
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon