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

@mikaelkaron/skills

v2.2.0

Published

<!-- generated-by: gsd-doc-writer -->

Readme

skills

A collection of agent skills for use in projects, distributed as tessl skill tiles and managed via the mks CLI.

Installation

Install the mks CLI globally once per machine:

npm install -g @mikaelkaron/skills

Verify the installation:

mks --version

Requirements: Node.js >= 22.18

Quick Start

  1. Install the CLI (see above).
  2. Install a skill plugin:
mks plugins:install cherry-pick-filter
  1. Install the corresponding tessl skill tile:
mks tessl:install cherry-pick-filter
  1. Use the skill:
mks cherry-pick-filter beta --filter .planning/

Packages

This is a monorepo. Each package under packages/ is an oclif plugin published independently.

@mikaelkaron/skills-cherry-pick-filter

Syncs a working branch to a clean target branch by incrementally cherry-picking commits that do not touch filtered path prefixes. Mixed commits (touching both code and filtered files) are detected and reported before any cherry-pick is attempted.

Use case: work freely on your personal branch — code alongside .planning/ or .agents/ files — then sync only the code commits to a clean PR branch.

mks cherry-pick-filter beta --filter .planning/
mks cherry-pick-filter beta --filter .planning/ --filter .agents/
mks cherry-pick-filter beta --filter .planning/ --dry-run

All human-readable output goes to stderr. When piped, stdout emits one picked commit SHA per line:

mks cherry-pick-filter beta --filter .planning/ | xargs git log --oneline

See skills/cherry-pick-filter/SKILL.md for full documentation.

@mikaelkaron/skills-tessl

Installs or uninstalls tessl skill tiles for installed mks plugins. Reads each plugin's tessl.tile field in its package.json and delegates to the tessl CLI.

mks tessl:install cherry-pick-filter
mks tessl:install cherry-pick-filter --global
mks tessl:uninstall cherry-pick-filter
mks tessl:list

Requires the tessl CLI to be available. Install the tessl plugin first:

mks plugins:install tessl

See skills/tessl/SKILL.md for full documentation.

Skills

The skills/ directory contains the tessl skill tile definitions — each skill has a SKILL.md with documentation and instructions, and a tile.json with tile metadata. These are what get installed by mks tessl:install.

| Skill directory | Tile | Description | | ---------------------------- | -------------------------------- | ---------------------------------------- | | skills/cli/ | mikaelkaron/cli | Manage the mks CLI and its plugins | | skills/cherry-pick-filter/ | mikaelkaron/cherry-pick-filter | Sync branches via filtered cherry-pick | | skills/tessl/ | mikaelkaron/tessl | Manage tessl tiles for installed plugins |

Development

Prerequisites

  • Node.js >= 22.18
  • npm

Setup

git clone https://github.com/mikaelkaron/skills.git
cd skills
npm install

Build

npm run build

Test

npm test

Run with coverage:

npm run test:coverage

Lint and Format

npm run lint
npm run format

Scripts

| Command | Description | | ----------------------- | --------------------------------------- | | npm run build | Compile TypeScript across all packages | | npm test | Run all tests (strips types at runtime) | | npm run test:coverage | Run tests with c8 coverage reporting | | npm run test:types | Type-check test files | | npm run lint | Lint with oxlint | | npm run format | Format with oxfmt |

Release History

See CHANGELOG.md for release history.