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-tessl

v2.2.0

Published

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

Readme

@mikaelkaron/skills-tessl

An mks plugin that manages tessl skill tiles for installed mks plugins. Reads each plugin's declared tessl.tile from its package.json and delegates to the tessl CLI to install, uninstall, or list tiles.

Part of the mikaelkaron/skills monorepo.

Prerequisites

  • Node.js >= 22.18
  • The mks CLI installed globally (@mikaelkaron/skills)
  • The tessl CLI available on PATH or resolvable via which (install from https://tessl.io)

The tessl binary is resolved automatically. To override the path, set the TESSL_CMD environment variable:

TESSL_CMD=/usr/local/bin/tessl mks tessl:install cherry-pick-filter

Installation as an mks plugin

Install this package as an mks plugin using the built-in plugin manager:

mks plugins:install tessl

Verify the plugin is registered:

mks plugins

Commands

mks tessl:install <plugin> [plugin...]

Install the tessl skill tile declared by one or more installed mks plugins. The tile reference is read from the plugin's package.json tessl.tile (and tessl.version) field, then passed to tessl install.

After a successful install the tile reference is stored in the plugin's state file (tiles.json inside the oclif data directory, overridable via TESSL_STATE_DIR).

Flags:

| Flag | Short | Description | | ------------------- | ----- | ---------------------------------------------------------------- | | --global | -g | Install tiles to ~/.tessl/ instead of the current project | | --yes | | Skip confirmation prompts and auto-select all skills | | --verbose | -v | Show detailed warning messages during installation | | --accept-warnings | | Pre-accept install policy warnings without an interactive prompt | | --agent <name> | | Override the agent(s) to install for (repeatable) |

Examples:

# Install the skill tile for the cherry-pick-filter plugin
mks tessl:install cherry-pick-filter

# Install globally and skip confirmation prompts
mks tessl:install cherry-pick-filter --global --yes

# Install for a specific agent
mks tessl:install cherry-pick-filter --agent claude-code

# Install tiles for multiple plugins at once
mks tessl:install cherry-pick-filter tessl

mks tessl:uninstall <plugin> [plugin...]

Uninstall the tessl skill tile for one or more installed mks plugins. The tile reference is read from the stored state (tiles.json), falling back to the plugin's package.json declaration if no state entry exists.

Flags:

| Flag | Short | Description | | ---------- | ----- | --------------------------------------------------------------- | | --global | -g | Uninstall tiles from ~/.tessl/ instead of the current project |

Examples:

# Uninstall the skill tile for the cherry-pick-filter plugin
mks tessl:uninstall cherry-pick-filter

# Uninstall from the global tessl directory
mks tessl:uninstall cherry-pick-filter --global

mks tessl:list [plugin...]

List installed tessl skill tiles. When one or more plugin names are provided, validates that those plugins are installed and have a declared tile before listing.

Flags:

| Flag | Short | Description | | ---------- | ----- | ---------------------------------------------------------- | | --global | -g | List tiles from ~/.tessl/ instead of the current project |

Examples:

# List all installed tiles
mks tessl:list

# Validate and list the tile for a specific plugin
mks tessl:list cherry-pick-filter

# List tiles from the global directory
mks tessl:list --global

Environment variables

| Variable | Description | | ----------------- | ----------------------------------------------------------------------------------------- | | TESSL_CMD | Override the path to the tessl binary (default: resolved via which) | | TESSL_STATE_DIR | Override the directory where tiles.json state is stored (default: oclif data directory) |

Package.json integration

For a plugin to be manageable by this package, it must declare a tessl field in its package.json:

{
  "oclif": {
    "id": "my-plugin"
  },
  "tessl": {
    "tile": "owner/tile-name",
    "version": "1.0.0"
  }
}

The tessl:install command reads tessl.tile and tessl.version to construct the tile reference (owner/[email protected]) passed to the tessl CLI.

Testing

Run tests for this package in isolation:

npm test

Run with coverage:

npm run test:coverage

Type-check test files:

npm run test:types

Tests that invoke the real tessl binary are skipped automatically when tessl is not found on PATH.