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

@vibecheckai/cli

v3.3.0

Published

Vibecheck CLI - Ship with confidence. One verdict: SHIP | WARN | BLOCK.

Readme

vibecheck CLI v3.1.8

Ship with confidence. One verdict: SHIP | WARN | BLOCK

The CLI that catches AI hallucinations before they ship. Dead routes, fake data, missing auth, exposed secrets — vibecheck blocks it all in CI.

Installation

npm install -g @vibecheckai/cli
# or
npx @vibecheckai/cli ship

Quick Start

# 1. Setup your project
vibecheck init --local

# 2. Scan for issues
vibecheck scan

# 3. Get ship verdict
vibecheck ship

# 4. Full proof loop (PRO tier)
vibecheck prove

# 5. Runtime verification
vibecheck reality --url http://localhost:3000

Commands

Setup Commands

| Command | Tier | Description | |---------|------|-------------| | vibecheck init | FREE | Project setup (--local or --connect) | | vibecheck doctor | FREE | Environment diagnostics | | vibecheck watch | FREE | Continuous mode - re-runs on changes |

Proof Loop

| Command | Tier | Description | |---------|------|-------------| | vibecheck scan | FREE | Static analysis - routes, secrets, contracts | | vibecheck ship | FREE | Verdict engine - SHIP / WARN / BLOCK | | vibecheck reality | FREE* | Browser-based runtime verification | | vibecheck prove | PRO | Full loop: scan → reality → ship → fix | | vibecheck fix | FREE* | AI-powered auto-fix (plan-only on FREE) | | vibecheck report | FREE | Generate HTML/MD/SARIF reports |

Quality & Checkpoints

| Command | Tier | Description | |---------|------|-------------| | vibecheck polish | FREE | Production polish analyzer (0-100 score) | | vibecheck checkpoint | FREE* | Compare baseline vs current, hallucination scoring |

Truth System (AI Guardrails)

| Command | Tier | Description | |---------|------|-------------| | vibecheck context | FREE | Generate .cursorrules, .windsurf/rules, MDC | | vibecheck guard | FREE | Validate AI claims against truth |

Automation

| Command | Tier | Description | |---------|------|-------------| | vibecheck mcp | STARTER | Start MCP server for AI IDEs | | vibecheck ai-test | PRO | AI autonomous test |

Account

| Command | Tier | Description | |---------|------|-------------| | vibecheck login | FREE | Authenticate with API key | | vibecheck logout | FREE | Remove stored credentials | | vibecheck whoami | FREE | Show current user and plan |

*Commands marked with * have limited functionality on FREE tier

Pricing

| Tier | Price | Features | |------|-------|----------| | FREE | $0 | init --local, scan, ship (static), doctor, polish, report (HTML/MD), context, guard, checkpoint (basic) | | STARTER | $39/mo | + init --connect, scan --autofix, report (SARIF/CSV), mcp, reality (basic) | | PRO | $99/mo | + prove, fix --apply, checkpoint (hallucination), reality (advanced), ai-test |

What It Catches

  • Dead Routes - Client calls API that doesn't exist → BLOCK
  • Ghost Auth - Sensitive endpoint without auth → BLOCK
  • Exposed Secrets - API keys in code → BLOCK
  • Fake Success - Success UI without API confirmation → BLOCK
  • Env Gaps - Used env vars not in .env.example → WARN
  • Stripe Violations - Unverified webhooks → BLOCK
  • Owner Mode Bypass - Debug flags in production → BLOCK

Ship Verdict

╔═════════════════════════════════════════════════════════════════╗
║  🟢  SHIP IT!  Your code is production-ready.                   ║
╚═════════════════════════════════════════════════════════════════╝

Exit codes: 0 = SHIP, 1 = WARN, 2 = BLOCK, 3 = Feature not allowed, 4 = Unknown command

MCP Server

Connect vibecheck to AI coding agents (Cursor, Windsurf, Claude):

{
  "mcpServers": {
    "vibecheck": {
      "command": "npx",
      "args": ["@vibecheckai/cli", "mcp"]
    }
  }
}

Configuration

Create .vibecheck/config.json:

{
  "strict": false,
  "fastifyEntry": "src/server.ts",
  "exclude": ["**/test/**", "**/*.spec.ts"]
}

License

MIT © Vibecheck AI


Documentation · Discord · GitHub