mit einem Klick
dependency-updates
// Audit repo dependencies by default and only apply library upgrades when explicitly requested.
// Audit repo dependencies by default and only apply library upgrades when explicitly requested.
Use Gradle commands to build and run the app by platform.
How to run, write, and debug local UI tests for Android, iOS, and browser builds.
How to list, pick, and boot Android emulators and iOS simulators for local app runs.
Guidance on where to place different types of code in this Kotlin Multiplatform project.
Guidelines for where to place different types of code in a Kotlin Multiplatform project.
How to create plans and follow roadmaps
| name | dependency-updates |
| description | Audit repo dependencies by default and only apply library upgrades when explicitly requested. |
Use this skill when the user asks to:
sharedLib, composeApp, cliApp, androidApp, watchApp
gradle/libs.versions.toml./gradlew refreshVersionswebsitecomposeApp/src/wasmJsMain/typescriptiosApp currently has Xcode project/workspace files, but no Podfile, Podfile.lock, Package.swift, or Package.resolvedkotlin-js-store/*.yarn.lock exists without a nearby source package.json; treat it as generated/store state, not a first-class package manifestDo 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/.
.agents/skills/dependency-updates/scripts/dependency-updates.mjs.agents/skills/dependency-updates/scripts/dependencyUpdateTools.mjs.agents/skills/dependency-updates/scripts/gradle-updates.mjs.agents/skills/dependency-updates/scripts/npm-updates.mjs.agents/skills/dependency-updates/scripts/cocoapods-updates.mjs.agents/skills/dependency-updates/UPGRADING.mdnode .agents/skills/dependency-updates/scripts/dependency-updates.mjs
Default upgrade policy:
wanted path by default for routine maintenance--allow-prereleaseExamples:
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
.agents/plans/dependency-update-reports/.upgrade command, keeping to latest stable versions unless the user approved pre-releases.UPGRADING.md.This skill was based on repo inspection plus web research:
refreshVersions supports ./gradlew refreshVersions for catalog update discoverynpm outdated --json is the right audit command for direct npm dependenciespod outdated for audit and pod update for explicit upgradesKeep the report-first default even if an ecosystem supports automatic upgrades.