Files
music_library/.claude/skills/update-dependencies/SKILL.md
T
2026-03-18 16:44:31 +00:00

20 lines
897 B
Markdown

---
name: update-dependencies
description: Use when the user asks to update, upgrade, or refresh project dependencies, or when outdated dependencies need attention
---
# Update Dependencies
## Workflow
1. Run `mise run dev:outdated` to check all dependency categories
2. Read the summary table at the end of the output — it has three columns:
Dependency, Status, and Next Step. Note that if mix dependencies are
outdated, the output of the command usually contains a link to preview the
update diff. The link looks something like this: <https://hex.pm/l/FR8QK>. If
you see such link in the output, offer the user the possibility to open it in
the browser for manual inspection.
3. For each row marked as outdated, run the command listed in the Next Step column
4. Re-run `mise run dev:outdated` to confirm everything is up to date
5. Run `mix test` to verify nothing is broken