skills/update-models/SKILL.md
Sync model aliases from the curated Firebase database. Fetches default model assignments, short aliases, team compositions, and known model metadata from the claudish API. Run this to get fresh model recommendations.
npx skillsauth add madappgang/magus update-modelsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetch the latest model defaults from the claudish curated database and save locally.
Fetch from API:
curl -s "https://us-central1-claudish-6da10.cloudfunctions.net/queryPluginDefaults?resolve=true"
Validate response:
version, shortAliases, roles, teams, knownModels fieldsknownModels must have at least 5 entrieswarnings array — report any missing modelsCompare with current:
shared/model-aliases.json (if exists)version field — if same, report "Already up to date" and stopshortAliases — report changed aliasesroles — report changed role assignmentsteams — report changed team compositionsknownModelsWrite to shared/model-aliases.json:
Report summary:
## Models Updated
**Version:** {old} → {new}
**Models:** {count} known models
**Aliases:** {count} short aliases
**Roles:** {count} role assignments
**Teams:** {count} team compositions
### Changes
- {alias}: {old_model} → {new_model}
- ...
### Warnings
- {any warnings from API}
Updated: shared/model-aliases.json
https://us-central1-claudish-6da10.cloudfunctions.net/queryPluginDefaults?resolve=true — expands aliases to full model IDs in roles/teamsversion — semver, bumped on config changesgeneratedAt — ISO timestampshortAliases — {alias: fullModelId} maproles — {roleName: {modelId, fallback?}} mapteams — {teamName: [modelIds]} mapknownModels — {modelId: {displayName, provider, contextWindow, capabilities, status}} mapwarnings — optional array of issues (missing models, etc.)testing
A test skill for validation testing. Use when testing skill parsing and validation logic.
tools
--- name: bad-skill description: This skill has invalid YAML in frontmatter allowed-tools: [invalid, array, syntax prerequisites: not-an-array --- # Bad Skill This skill has malformed frontmatter that should fail parsing. The YAML has: - Unclosed array bracket - Wrong type for prerequisites (should be array, not string)
tools
Release one or more Magus plugins to the distribution repos (magus, magus-alpha, magus-marketing). Handles version inference from git history, marketplace.json updates, tagging, and force-push to lean dist repos. Use whenever the user says "release kanban", "release the dev plugin", "cut a new version of gtd", "bump kanban to 1.7", or hands you a batch like "release kanban and gtd". Also use for multi-plugin releases and for checking what a release would contain before committing.
data-ai
Provides Whisper transcription patterns — model selection, SRT/VTT/JSON, timing sync, diarization. Use when transcribing audio or video, or generating subtitles.