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

@zlepper/kineprism

v0.0.3

Published

Structurally compare UI screenshots and serve comparisons over MCP

Downloads

774

Readme

Kineprism

kineprism compares UI screenshots and reports meaningful visual changes. Rather than only highlighting changed pixels, it identifies high-confidence moved, resized, added, and removed regions where possible.

It runs locally and deterministically, with no network connection or external service required.

Install

Run the packaged CLI through npm:

npx -y @zlepper/kineprism

Or install from this checkout:

cargo install --path crates/kineprism-cli

Usage

kineprism expected.png actual.png --output-dir comparison-output

expected.png is the reference image and actual.png is the image being checked. Both inputs must be PNG files.

Options

kineprism <EXPECTED> <ACTUAL> --output-dir <PATH>
    [--max-offset <PIXELS>]
    [--color-threshold <DELTA>]
    [--min-region-area <PIXELS>]
    [--region-x <PIXELS> --region-y <PIXELS>
     --region-width <PIXELS> --region-height <PIXELS>]
    [--force]
  • --output-dir is required and is created when needed.
  • --max-offset limits the translation search; the default is 128 pixels.
  • --color-threshold controls tolerance for small color differences; the default is 2.3.
  • --min-region-area ignores smaller differences; the default is 16 pixels.
  • --region-x, --region-y, --region-width, and --region-height compare only the specified rectangle. All four are required together.
  • --force replaces the tool's existing output files. Other files in the output directory are preserved.

MCP server

Run a local stdio Model Context Protocol server with:

kineprism mcp

An npm-based MCP configuration is:

{
  "mcpServers": {
    "kineprism": {
      "command": "npx",
      "args": ["-y", "@zlepper/kineprism", "mcp"]
    }
  }
}

Results

The command writes a JSON report to stdout and to report.json in the output directory. It also creates annotated copies of each input (expected.png and actual.png) plus diff.png, a visual summary of the findings.

Each finding has a stable ID, type, bounds, and human-readable message. Moved regions also include their offset and confidence. When the tool cannot make a reliable structural classification, it reports the affected area as changed.

| Exit code | Meaning | | --- | --- | | 0 | The images have no meaningful differences. | | 1 | One or more meaningful differences were found. | | 2 | The comparison could not be completed. |

Exit code 1 is an expected comparison result and can be used in visual-regression workflows.

Examples

Limitations

  • PNG inputs only; JPEG, WebP, GIF, SVG, and animation are unsupported.
  • Images must use the same scale. Rotation, perspective, and arbitrary transforms are unsupported.
  • Movement detection is limited by --max-offset.
  • Repetitive, textureless, or extensively regenerated images may produce generic changed, added, or removed findings instead of a confident movement.