What problem does it solve? Publishing a Kotlin Multiplatform library involves strict Maven Central POM requirements, GPG signing, Sonatype staging, and API compatibility tracking that are easy to get wrong and hard to debug when validation fails. ## Core Features & Use Cases - Maven Central Publishing: Configures the vanniktech maven-publish plugin with complete POM metadata, Sonatype OSSRH/Central Portal staging, and GPG signing. - API Stability Management: Sets up kotlinx-binary-compatibility-validator with apiCheck/apiDump workflows, explicitApi() mode, and a SemVer-aligned deprecation cycle. - Multi-Artifact Distribution: Builds a BOM for version alignment across core/compose/testing modules, plus SNAPSHOT vs stable release channels and GitHub Packages as an alternative. - Use Case: You have a KMP library with core, Compose, and testing modules and need to ship version 1.0.0 to Maven Central — this Skill generates the full build.gradle.kts, CI publish workflow, and a release checklist. ## Quick Start Set up Maven Central publishing with the vanniktech plugin, GPG signing, and binary compatibility validation for my Kotlin Multiplatform library.