What problem does it solve? Keeping Tauri dependencies current is error-prone because the JavaScript @tauri-apps/api package and the Rust tauri crate must maintain matching minor versions, and plugins require exact version parity across npm and cargo. This Skill guides the full update workflow so version mismatches and broken builds are avoided. ## Core Features & Use Cases - Cross-ecosystem updates: Update the Tauri CLI and API packages via npm, yarn, or pnpm, and update the tauri and tauri-build crates in src-tauri/Cargo.toml manually or with cargo-edit. - Outdated version checks: Detect stale Tauri packages with npm outdated, yarn outdated, pnpm outdated, and cargo outdated. - Plugin version parity: Update Tauri plugins (e.g., @tauri-apps/plugin-shell and tauri-plugin-shell) to the exact same version on both sides. - Use Case: You want to add a new Tauri feature that requires a newer minor version. Use this Skill to bump both the npm packages and Rust crates in sync, run cargo update, and rebuild to verify compatibility. ## Quick Start Update all Tauri dependencies in my project to the latest versions and verify the JavaScript and Rust sides stay in sync.