npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

kotlin-tech-index

v0.2.0

Published

A ZCode/Claude skill that indexes Kotlin language features, standard-library APIs, compiler capabilities, and platform (JVM/Native/JS/Wasm/KMP) tooling by Kotlin version — only Stable/GA, never Experimental. Covers Kotlin 1.3 through 2.4. Install-and-use:

Readme

kotlin-tech-index

A reference skill for ZCode / Claude that indexes Kotlin language features, standard-library APIs, compiler capabilities, and platform (JVM/Native/JS/Wasm/KMP) tooling — indexed by Kotlin version, and only the Stable/GA ones.

IRON LAW of this skill: never list Experimental / Beta / Preview / Alpha features as "ready-to-use" to the user. A capability is included in versions/*.md if and only if it is Stable/GA in that version — works out of the box, no @OptIn, no -X experimental flag.

Covers Kotlin 1.3 through 2.4.


What this skill is for

Trigger it whenever a user is starting or working in a Kotlin project and asks any version-specific question:

  • "I'm on Kotlin 2.0, can I use Uuid?"
  • "What's new in Kotlin 1.9?"
  • "Which version added value class?"
  • "I'm on 2.4.0 — list every language feature I can use."
  • "How do I turn on context parameters? Which version introduced them?"

It triggers eagerly on any version-specific Kotlin question — even casual mentions like "I'm on 1.9, can I use value class?".

Design principles

  1. Only Stable / GA is indexed. A capability's "home version" is the version where it became Stable — not where it was first introduced as Experimental.
  2. Incremental files, accumulated view. Each versions/X.Y.Z.md lists only what's new and Stable relative to the previous version. To answer "what can I use in X?", the skill reads X and all earlier files, then removes deprecated items via references/deprecation-and-evolution.md.
  3. Partial-Stable is explicitly annotated. When a feature is mostly Stable but has experimental subsets (e.g. kotlin.uuid.Uuid is Stable in 2.4.0 except V4/V7 generators), the exception is called out — never just labeled "Stable".
  4. No kotlinx.* libraries. Only kotlin.* stdlib, the compiler, and platform toolchains. kotlinx.coroutines / serialization / datetime / Compose evolve independently of the language version.

Layout

SKILL.md                                  # Query workflow + Iron Law + self-check
versions/                                 # One file per Kotlin feature version
  1.3.0.md  ...  2.4.0.md
references/
  deprecation-and-evolution.md            # Deprecation map + Experimental→Stable tracker
  maintenance.md                          # Maintainer guide (writing/updating files)

Install — and you're done

This package is a skill (a markdown reference bundle), not a runtime library. Installing it copies the skill directly into your project's .claude/skills/ directory, so it's immediately usable — no manual copy step.

npm install kotlin-tech-index

What happens on install:

  1. npm drops the package into node_modules/kotlin-tech-index/.
  2. The postinstall hook runs init.js, which copies SKILL.md + versions/ + references/ into <project>/.claude/skills/kotlin-tech-index/.
  3. Reload your agent — the skill is now available.

The installer is idempotent: re-running it (or upgrading the package) overwrites in place, so npm update kotlin-tech-index keeps the skill current.

Manual / npx invocation

If postinstall was skipped (e.g. --ignore-scripts, or pnpm/Yarn quirks), install the skill manually:

npx kotlin-tech-index              # copies into ./.claude/skills/
# or
node ./node_modules/kotlin-tech-index/init.js

Notes

  • Project root resolution: the installer uses INIT_CWD (set by npm to the directory where npm install was invoked), falling back to npm_config_local_prefix, then process.cwd(). So npm install kotlin-tech-index from your project root always lands the skill in that project's .claude/skills/.
  • No README/LICENSE/package.json in the skill dir — only the actual skill payload (SKILL.md, versions/, references/). Keeps the skills folder clean.

Data sources

Each versions/X.Y.Z.md cites its source URL at the top:

  • Kotlin 1.3 – 2.4 official What's new pages: https://kotlinlang.org/docs/whatsnewXY.html

License

MIT © smartyu1993