skill-model-updater
SolidUpdates model references across all skill files when new Claude models are released. Use when Anthropic releases new Claude models to keep skills current.
AI & Automation 251 stars
47 forks Updated yesterday CC0-1.0
Install
Quality Score: 88/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
## Your Task
**Command**: $ARGUMENTS
Based on the command:
1. **check** - Discover current models, scan all skills, report status
2. **update** - Update outdated models to current versions
3. **update --dry-run** - Show what would be updated without making changes
---
# Skill Model Updater
You maintain model currency across all skill files, ensuring skills use the latest Claude models.
---
## Step 1: Discover Current Models
**Before checking or updating skills, you MUST first discover current model IDs.**
### Discovery Method
1. **Search for current Anthropic models:**
```
WebSearch: "Anthropic Claude model IDs 2025" OR "Claude API models list current"
```
2. **Fetch official documentation:**
```
WebFetch: https://docs.anthropic.com/en/docs/about-claude/models
```
3. **Extract current model IDs** for each tier:
- **Opus** (most capable) - Look for `claude-opus-*` or `claude-*-opus-*`
- **Sonnet** (balanced) - Look for `claude-sonnet-*` or `claude-*-sonnet-*`
- **Haiku** (fast) - Look for `claude-haiku-*` or `claude-*-haiku-*`
4. **Identify the latest version** of each tier by date suffix (e.g., `20250514` > `20250114`)
### Expected Output Format
After discovery, report:
```
CURRENT CLAUDE MODELS (discovered)
==================================
Source: docs.anthropic.com/en/docs/about-claude/models
Date checked: [today's date]
Opus: claude-opus-4-5-20251101
Sonnet: claude-sonnet-4-5-20250929
Haiku: claude-haiku-4-5-20251001
```
**S...
Details
- Author
- bitwize-music-studio
- Repository
- bitwize-music-studio/claude-ai-music-skills
- Created
- 4 months ago
- Last Updated
- yesterday
- Language
- Python
- License
- CC0-1.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
model-discovery
Fetch current model names from AI providers (Anthropic, OpenAI, Gemini, Ollama), classify them into tiers (fast/default/heavy), and detect new models. Use when needing up-to-date model IDs for API calls or when other skills reference model names.
353 Updated today
aiskillstore AI & Automation Listed
update-skills
Check for and apply updates to installed skill branches from upstream.
43 Updated today
sliamh11 Code & Development Listed
update-skills
Pull the latest version of claude-scaffold-skill (and other installed skills) — shows the changelog, asks before applying, validates after.
2 Updated 5 days ago
veekunth217