kotlin-java-library

📁 alexandru/skills 📅 8 days ago
4
总安装量
2
周安装量
#53089
全站排名
安装命令
npx skills add https://github.com/alexandru/skills --skill kotlin-java-library

Agent 安装分布

replit 2
amp 2
opencode 2
kimi-cli 2
github-copilot 2

Skill 文档

Kotlin Java Library Design

Quick start

  • Design Kotlin APIs as if the primary caller is Java: explicit overloads, stable names, and predictable nullability.
  • Use JVM interop annotations (@JvmOverloads, @JvmStatic, @JvmField, @JvmName) to shape the Java surface.
  • Prefer Java-friendly top-level functions with @file:JvmName, and use @file:JvmMultifileClass when splitting across files.
  • Use fun interface for Java callbacks; avoid function types that return Unit.
  • Document checked exceptions with @Throws and return defensive copies for read-only collections.
  • Follow binary compatibility rules; add overloads instead of changing signatures.
  • Read references/kotlin-java-library.md for examples, recipes, and checklists.

Workflow

  1. Identify which public APIs must be Java-friendly (constructors, factories, utilities).
  2. Shape the Java surface with JVM annotations and explicit overloads.
  3. Audit public signatures for Java stability (names, nullability, overload sets, and collection exposure).
  4. Apply backward-compatibility rules before publishing.
  5. Validate with Java call-site examples.

Rules of thumb

  • Avoid Kotlin-only surface features in public API: default args without overloads, extension-only entry points, and name clashes.
  • Use @JvmOverloads for Java-callable optional parameters, and provide explicit overloads when behavior differs.
  • Use @JvmStatic for companion/object members meant to be static in Java.
  • Use @JvmField only for constants or immutable fields you want exposed as fields.
  • Use @JvmName to resolve signature clashes or to provide a stable Java name.
  • Avoid Nothing in public generic signatures; it becomes raw types in Java.

Output expectations

  • Offer Java-call-site examples when proposing API changes.
  • Call out binary compatibility risks and safer alternatives.

References

  • Load references/kotlin-java-library.md for interop details, examples, and testing prompts.