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

vectorlint

v2.1.1

Published

An LLM-based prose linter that lets you enforce your style guide in one prompt

Readme

VectorLint: Prompt it, Lint it! npm version License

VectorLint is a command-line tool that evaluates and scores content using LLMs. It uses LLM-as-a-Judge to catch content quality issues that typically require human judgement.

VectorLint Screenshot

Installation

Option 1: Global Installation

Install globally from npm:

npm install -g vectorlint

Verify installation:

vectorlint --help

Option 2: Zero-Install with npx

Run VectorLint without installing:

npx vectorlint path/to/article.md

Enforce Your Style Guide

Define rules as Markdown files with YAML frontmatter to enforce your specific content standards:

  • Check SEO Optimization - Verify content follows SEO best practices
  • Detect AI-Generated Content - Identify artificial writing patterns
  • Verify Technical Accuracy - Catch outdated or incorrect technical information
  • Ensure Tone & Voice Consistency - Match content to appropriate tone for your audience

If you can write a prompt for it, you can lint it with VectorLint.

👉 Learn how to create custom rules →

Quality Scores

VectorLint scores your content using error density and a rubric based system, enabling you to measure quality across documentation. This gives your team a shared understanding of which content needs attention and helps track improvements over time.

  • Density-Based Scoring: For errors that can be counted, scores are calculated based on error density (errors per 100 words), making quality assessment fair across documents of any length.
  • Rubric-Based Scoring: For more subjective quality standards, like flow and completeness, scores are graded on a 1-4 rubric system and then normalized to a 1-10 scale.

Quick Start

  1. Create Your First Rule:

    Create a directory named VectorLint and add a file grammar.md inside it:

    ---
    evaluator: base
    id: GrammarChecker
    description: Grammar Checker
    severity: error
    ---
    Check this content for grammar issues, spelling errors, and punctuation mistakes.
  2. Configure VectorLint:

    Create a vectorlint.ini configuration file in your project root:

    # vectorlint.ini
    RulesPath=.
        
    # Run the "VectorLint" rule pack on all markdown files
    [**/*.md]
    RunRules=VectorLint

    👉 Full configuration reference →

  3. Set An LLM Provider:

    Create a .env file in your project root with your API keys:

    # OpenAI (Default)
    OPENAI_API_KEY=sk-...
    LLM_PROVIDER=openai
    
    # - OR -
        
    # Anthropic
    ANTHROPIC_API_KEY=sk-ant-...
    LLM_PROVIDER=anthropic
  4. Run a check:

    vectorlint path/to/article.md

Contributing

We welcome your contributions! Whether it's adding new rules, fixing bugs, or improving documentation, please check out our Contributing Guidelines to get started.

Resources