What problem does it solve? Upgrading an nRF Connect SDK (NCS) project to a newer version often breaks builds and CI after a west.yml revision bump, and manually tracking Kconfig renames, API changes, and board syntax updates across release notes is error-prone. ## Core Features & Use Cases - Guided multi-hop migration: Walks each intermediate NCS release (e.g. v2.9 → v3.0 → v3.1), applying migration-guide changes one hop at a time instead of risky direct jumps. - Baseline-first workflow: Builds and smoke-tests the app on its source version, tags a git rollback point, and refuses to migrate broken code. - Hardware-verified hops: Every hop ends with a clean west build, flash, and UART smoke test compared against the baseline log before committing. - Use Case: Your CI fails after bumping sdk-nrf from v3.2 to v3.3 in west.yml. The skill reads the v3.3 migration guide and release notes, applies the Kconfig and board-target changes, rebuilds, flashes the board, and commits the verified hop. ## Quick Start Migrate my NCS application from v3.2 to v3.3 and verify each step builds and runs on my nrf54l15dk board.