kotlin/run-local-verifications
> Determine which LOCAL verification checks to run for kotlinx-rpc changes and execute them on the developer's machine. TeamCity builds and GitHub Actions workflows are out of scope -- this skill covers only what can and should be run locally before pushing. Use this skill whenever changes are made to the codebase and you need to verify correctness before committing or opening a PR. Also use it when the user asks to "run checks", "verify changes", "run verifications", "what checks do I need", "validate my changes", "pre-PR checks", or "local checks". Trigger proactively after completing any code modification task -- even if the user doesn't explicitly ask, suggest which verifications are relevant based on what changed.
npx skills add https://github.com/Kotlin/kotlinx-rpc --skill run-local-verifications
Identify which verification checks are needed based on what changed, then run them
locally. This skill covers only checks that can be executed on the developer's machine.
TeamCity CI builds and GitHub Actions workflows are out of scope -- they run automatically
on push/PR and cannot be triggered from here.
Use the running_gradle_builds skill for all Gradle build/generation tasks and the
running_gradle_tests skill for all Gradle test tasks. Do NOT run ./gradlew directly
via shell. The only exception is ./scripts/update_implicit_types.sh and
./scripts/validate_published_artifacts.sh which are standalone shell scripts.
Before running anything, determine which files were modified. Use git diff or
git status to see the changed files, then match them against the decision table below.
Match changed paths to required verifications. Multiple rows can match -- run all that apply.
The "Gradle task" column shows the task name to pass to the appropriate Gradle skill.
| What changed | Verification | Gradle task / command | Why |
|----------------------------------------------------------------------------------------|-------------------------|-------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
| Any public API in published modules (core/, krpc/, grpc/, protobuf/, utils/) | ABI compatibility | checkLegacyAbi | Ensures binary compatibility is preserved for library consumers |
| Any Kotlin/Java source file | Detekt static analysis | detekt | Code quality. Does NOT fail the build, but check console output for new violations |
| Any published JVM or KMP module source (including commonMain) | JPMS check | :jpms-check:compileJava | Verifies Java module system compatibility. commonMain code compiles to JVM too |
| New/removed modules or KMP target changes | Artifact validation | Shell: ./scripts/validate_published_artifacts.sh -s | Ensures the published artifact list stays consistent |
| New/removed modules or KMP target changes | Platform table | dumpPlatformTable --no-configuration-cache then check git status | Updates docs/pages platform table |
| gradle.properties in any module | Properties sync | updateProperties then check git status | Keeps all module gradle.properties in sync with root |
| compiler-plugin/ sources or templates | Compiler plugin tests | :tests:compiler-plugin-tests:test (use running_gradle_tests) | Validates codegen and diagnostics |
| compiler-plugin/ CSM templates | Compiler version compat | Use the verify-compiler-plugin-compatibility skill | Ensures all supported Kotlin versions still compile |
| protoc-gen/ sources (any change) | Protobuf conformance | tests:protobuf-conformance:bufGenerateCommonMain then check git status | Codegen changes may affect conformance test output |
| protoc-gen/ sources (any change) | Protobuf unit tests | :tests:protobuf-unittest:test (use running_gradle_tests) | Validates protobuf codegen correctness |
| protoc-gen/ sources (any change) | Well-Known Types | :protobuf:protobuf-wkt:bufGenerateCommonMain then check git status | Codegen changes may affect WKT generated code |
| protoc-gen/ sources (any change) | Implicit imports | Shell: ./scripts/update_implicit_types.sh then check git status | Keeps protoc-gen implicit import list current |
| protobuf/protobuf-wkt/ sources | Well-Known Types | :protobuf:protobuf-wkt:bufGenerateCommonMain then check git status | Regenerates WKT code |
| krpc/ protocol wire format or serialization | Protocol compat tests | :tests:krpc-protocol-compatibility-tests:jvmTest (use running_gradle_tests) | Ensures wire format backward compatibility |
| krpc/ any changes | kRPC compat tests | :tests:krpc-compatibility-tests:jvmTest (use running_gradle_tests) | Ensures old/new API compatibility |
| JS/WASM npm dependency changes or Kotlin version update | Yarn lock update | kotlinUpgradeYarnLock and/or kotlinWasmUpgradeYarnLock | Keeps JS/WASM lock files in sync |
| tests/protobuf-conformance/**/known_failures.txt | Conformance known-failures | :tests:protobuf-conformance:jvmTest (see conformance details) | Removed entries must actually pass now; added entries must actually fail |
After running the verification checks above, run tests for the specific modules you changed
using the running_gradle_tests skill.
Prefer jvmTest for KMP modules -- if your changes are in commonMain only, jvmTest
is the fastest way to validate them since common code compiles to all targets. Only run
jsTest, wasmJsTest, or nativeTest if the change is target-specific or you want full
coverage.
Examples:
<module>:jvmTest --tests "TestClass.testMethod"<module>:jvmTest<module>:jsTest, <module>:wasmJsTest, <module>:nativeTest:core"checkLegacyAbi via running_gradle_builds -- if it fails, run updateLegacyAbi and commitdetekt via running_gradle_builds -- check output:jpms-check:compileJava via running_gradle_builds:core:jvmTest via running_gradle_tests:tests:compiler-plugin-tests:test via running_gradle_testsverify-compiler-plugin-compatibility skill for multi-version checkdumpPlatformTable --no-configuration-cache via running_gradle_builds then commit if changed./scripts/validate_published_artifacts.sh --dump -s via shell then commit if changedupdateProperties via running_gradle_builds then commit if changedcheckLegacyAbi via running_gradle_builds:jpms-check:compileJava via running_gradle_builds:protobuf:protobuf-wkt:bufGenerateCommonMain via running_gradle_builds then commit if changedtests:protobuf-conformance:bufGenerateCommonMain via running_gradle_builds then commit if changed:tests:protobuf-unittest:test via running_gradle_tests./scripts/update_implicit_types.sh via shell then commit if changed (if protoc-gen changed)checkLegacyAbi via running_gradle_buildsjvmTest via running_gradle_tests:tests:krpc-protocol-compatibility-tests:jvmTest via running_gradle_tests:tests:krpc-compatibility-tests:jvmTest via running_gradle_testscheckLegacyAbi via running_gradle_buildsdetekt via running_gradle_builds -- check outputjvmTest via running_gradle_testsverify-compiler-plugin-compatibility skillkotlinUpgradeYarnLock and kotlinWasmUpgradeYarnLock via running_gradle_buildscheckLegacyAbi via running_gradle_builds -- API dumps may need updating:jpms-check:compileJava via running_gradle_buildsupdateDocsChangelog via running_gradle_buildsreferences/verification-details.md — consult when a check fails or behavior is unclearreferences/troubleshooting.md — consult when verifications fail unexpectedlyTake kotlin/run-local-verifications from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.