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

tessl-audit

v1.0.0

Published

Security posture and quality report for Tessl plugins installed in your project

Downloads

34

Readme

tessl-audit

npm version License Node.js

Security posture and quality report for the Tessl plugins installed in your project.

Run it in any project that has a tessl.json — no installation required:

npx tessl-audit

Prerequisites

  • Node.js 18 or later
  • A Tessl account, authenticated: tessl auth login (the CLI installs automatically)
  • A tessl.json in your project root

Usage

npx tessl-audit [--json] [path/to/tessl.json]

| Flag | Description | |------|-------------| | --json | Emit machine-readable JSON instead of the table (useful in CI) | | path/to/tessl.json | Path to a specific tessl.json (defaults to ./tessl.json) |


What you get

Security table

A row per plugin, sorted by risk (most critical first):

  Plugin                               │ Version    │ Type         │ Quality  │  Uplift  │ Security   │ Warnings
  ─────────────────────────────────────────────────────────────────────────────────────────────────────────────
  tessl-labs/intent-integrity-kit      │ 2.9.8      │ skill+rules  │     91%  │   ↑2.1x  │ Passed     │ -
  jbvc/frontend-patterns               │ 0.1.0      │ skill        │     63%  │       -  │ Advisory   │ 1 (W011)
  ...

Columns explained:

| Column | What it means | |--------|---------------| | Type | docs, skill, rules, or skill+rules | | Quality | Registry quality score — how well-written and complete the plugin is (0–100%) | | Uplift | How much the plugin improves agent task performance vs baseline (e.g. ↑2.1x) | | Security | Result of the registry security scan (see below) | | Warnings | Count and codes of specific warnings from the scan |

Security statuses:

| Status | Meaning | |--------|---------| | Passed | No known issues | | Advisory | Worth reviewing before use | | Risky | Do not use without review | | Critical | Do not use without review | | Not run | Security scan hasn't been run yet | | Unknown | Could not fetch data from registry |

Summary section

Totals by security status, plus any flagged plugins with their warning codes and links to the full registry security report.

Recommended Actions

After the table, the report gives you concrete next steps:

Quality Review — plugins scoring below 80% quality:

tessl skill review --optimize <publisher/plugin>

Evals Needed — skill plugins with no uplift data yet. Generate scenarios first, then run the eval:

tessl scenario generate --count 5 <publisher/plugin>
tessl eval run <publisher/plugin>

Skill Optimizer — for plugins with low uplift scores or no evals, the skill optimizer can help improve both:

tessl install tessl-labs/skill-optimizer   # install once
# then invoke /tessl__skill-optimizer in Claude Code

JSON output

Use --json to get structured output for CI pipelines or dashboards:

npx tessl-audit --json | jq '.plugins[] | select(.security == "Critical")'

The JSON shape:

{
  "plugins": [
    {
      "plugin": "publisher/plugin",
      "version": "1.0.0",
      "type": "skill",
      "quality": "84%",
      "uplift": "↑1.8x",
      "security": "Passed",
      "warnings": [],
      "reportUrl": "https://tessl.io/registry/publisher/plugin/security"
    }
  ],
  "stats": {
    "quality": { "avg": 82, "min": 63, "max": 97, "below80": ["jbvc/frontend-patterns"] },
    "uplift":  { "avg": 1.9, "min": 1.1, "max": 3.2, "lowImpact": [] },
    "noEvals": ["g14wxz/storage-resumable-upload"]
  }
}

Further reading