Skill: Dependency Updates
SkillDev toolsAudit repo dependencies by default and only apply library upgrades when explicitly requested.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Skill: Dependency Updates skill
What this skill tells your AI
The instructions your AI receives, as published by championswimmer/twofac in .agents/skills/dependency-updates/SKILL.md and read by ahel’s review.
Use this skill when the user asks to:
- check outdated libraries or dependencies
- prepare an upgrade report
- upgrade Gradle, Kotlin, npm, or CocoaPods dependencies
- understand which dependency surfaces exist in this repo
Repo dependency surfaces discovered here
- Gradle / Kotlin Multiplatform:
sharedLib,composeApp,cliApp,androidApp,watchApp- Central catalog:
gradle/libs.versions.toml - Audit mechanism already present in repo:
./gradlew refreshVersions
- Central catalog:
- npm:
websitecomposeApp/src/wasmJsMain/typescript
- Apple native wrappers:
iosAppcurrently has Xcode project/workspace files, but noPodfile,Podfile.lock,Package.swift, orPackage.resolved- CocoaPods scripts should remain available for future native additions, but today they will mostly no-op
- Ignore during normal audits:
kotlin-js-store/*.yarn.lockexists without a nearby sourcepackage.json; treat it as generated/store state, not a first-class package manifest
Default behavior
Do not upgrade anything unless the user explicitly asks for upgrades.
When upgrades are explicitly requested, prefer the latest stable versions only. Do not move to alpha, beta, RC, or other pre-release versions unless the user explicitly asks for them or approves them after review.
By default, run the audit/report flow only:
node .agents/skills/dependency-updates/scripts/dependency-updates.mjs
This writes a markdown report into .agents/plans/dependency-update-reports/.
Scripts in this skill
- Aggregator:
.agents/skills/dependency-updates/scripts/dependency-updates.mjs - Shared helpers:
.agents/skills/dependency-updates/scripts/dependencyUpdateTools.mjs - Gradle/Kotlin audit & upgrade helper:
.agents/skills/dependency-updates/scripts/gradle-updates.mjs - npm audit & upgrade helper:
.agents/skills/dependency-updates/scripts/npm-updates.mjs - CocoaPods audit & upgrade helper:
.agents/skills/dependency-updates/scripts/cocoapods-updates.mjs - Upgrade/runbook reference:
.agents/skills/dependency-updates/UPGRADING.md
How to use it
Audit only
node .agents/skills/dependency-updates/scripts/dependency-updates.mjs
Explicit upgrade
Default upgrade policy:
- Gradle/Kotlin upgrades should target the latest stable candidate by default
- npm upgrades should prefer the safe
wantedpath by default for routine maintenance - Do not take alpha/beta/rc/pre-release versions unless the user explicitly asked or approved them
- For Gradle pre-releases specifically, require
--allow-prerelease
Examples:
node .agents/skills/dependency-updates/scripts/dependency-updates.mjs upgrade --skip-npm --skip-cocoapods
node .agents/skills/dependency-updates/scripts/dependency-updates.mjs upgrade --skip-gradle --skip-cocoapods --npm-strategy wanted
node .agents/skills/dependency-updates/scripts/dependency-updates.mjs upgrade --skip-gradle --skip-npm --cocoapods-repo-update
Agent workflow
- Run the default report first unless the user directly asked for upgrades.
- Read the generated markdown report in
.agents/plans/dependency-update-reports/. - Summarize the main stable candidates and call out any major-version or pre-release jumps.
- Only if explicitly asked, run the relevant
upgradecommand, keeping to latest stable versions unless the user approved pre-releases. - After upgrades, run the validation checklist from
UPGRADING.md.
Research basis used for this skill
This skill was based on repo inspection plus web research:
refreshVersionssupports./gradlew refreshVersionsfor catalog update discoverynpm outdated --jsonis the right audit command for direct npm dependencies- CocoaPods uses
pod outdatedfor audit andpod updatefor explicit upgrades
Keep the report-first default even if an ecosystem supports automatic upgrades.
Signals
- GitHub stars
- 126
- Forks
- 8
- Last commit
- Jun 2026
Advanced
- Catalog kind
- skill
- Gateway key
dependency-updates- Source
- github.com/championswimmer/twofac