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

vibecheckdev

v0.4.0

Published

AI security scanner for vibe-coded apps. Find vulnerabilities before attackers do.

Downloads

302

Readme

vibecheck

AI security scanner for vibe-coded apps. Find vulnerabilities before attackers do.

Built for solo devs and non-technical founders shipping AI-generated code via Cursor, Lovable, Bolt, Replit, and Claude Code.

Quick Start

npx vibecheck scan .

That's it. No config needed.

What It Catches

| Rule | Vulnerability | Severity | |------|--------------|----------| | VC001 | Hardcoded API keys & secrets (AWS, Stripe, OpenAI, Supabase, DB URLs) | Critical | | VC002 | .env files with secrets committed to git | High | | VC003 | API routes missing authentication | High | | VC004 | Supabase service_role key in client code / RLS bypass | Critical | | VC005 | Stripe webhooks without signature verification | Critical | | VC006 | SQL injection via string interpolation | Critical | | VC007 | XSS (dangerouslySetInnerHTML, innerHTML, v-html) | High | | VC008 | Server without rate limiting | Medium | | VC009 | Wildcard CORS configuration | Medium | | VC010 | Client-side only authorization checks | High |

Plus AI-powered contextual analysis that catches issues static rules miss.

Installation

# Run directly (no install)
npx vibecheck scan .

# Or install globally
npm install -g vibecheck
vibecheck scan .

Usage

# Scan current directory
vibecheck scan .

# Scan a specific directory
vibecheck scan ./my-project

# Skip AI analysis (faster, no API key needed)
vibecheck scan . --no-ai

# JSON output (for CI pipelines)
vibecheck scan . --format json

# SARIF output (for GitHub Code Scanning)
vibecheck scan . --format sarif

# Verbose output (show per-scanner results)
vibecheck scan . -v

AI-Powered Analysis

Set your Anthropic API key for deeper, contextual vulnerability analysis:

export ANTHROPIC_API_KEY=sk-ant-...
vibecheck scan .

The AI analyzer understands your code in context and explains vulnerabilities in plain English with specific fix instructions.

CI Integration

GitHub Actions

name: Security Scan
on: [push, pull_request]

jobs:
  vibecheck:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: vibecheck/action@v1
        with:
          anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}

Results appear in the GitHub Security tab.

Any CI

npx vibecheck scan . --format sarif --no-ai > results.sarif

Exit code is 1 when critical or high severity issues are found.

Configuration

Create a .vibecheckrc.json in your project root:

{
  "exclude": ["tests/**", "scripts/**"],
  "ai": true,
  "severity": "medium",
  "disableRules": ["VC008"]
}

Optional: Deeper Scanning

Install these tools for additional detection coverage:

# Semgrep - 2000+ community security rules
pip install semgrep

# Gitleaks - advanced secret detection
brew install gitleaks

VibeCheck automatically uses them if available.

Auth & Pro Plan

# Log in to sync scan history
vibecheck auth login

# Check your plan
vibecheck auth whoami

# Upgrade to Pro ($29/mo) for unlimited scans
vibecheck upgrade

Free plan: 3 scans/day. Pro: unlimited scans, scan history, team features.

License

MIT