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

vantaverse-ai-reviewer

v0.3.16

Published

AI-powered code review CLI - analyze your codebase with Gemini AI

Readme

🤖 Vantaverse AI Reviewer

AI-powered code review CLI - analyze your codebase with Gemini AI

Features

  • 🔍 Intelligent Scanning - Auto-detects framework (Next.js, React, Vue, Django, etc.)
  • 🔒 Security Analysis - Finds vulnerabilities, XSS, injection flaws
  • Accessibility Audit - WCAG compliance checks
  • 🧹 Code Quality - Identifies code smells, complexity issues
  • 🧪 Test Suggestions - Recommends test cases
  • 📊 Detailed Reports - Markdown reports with actionable insights

🚀 v0.2.0 - Performance Optimizations

  • 50% faster - Parallel local checks (TSC, ESLint, git)
  • 💰 80% cost reduction - --diff mode analyzes only changed files
  • 🔐 Free security scans - Regex secret detection + npm audit (zero tokens)
  • 📊 Cost estimation - Know your token usage before scanning

Quick Start

# Run directly with npx (no install needed)
npx vantaverse-ai-reviewer

# Or install globally
npm install -g vantaverse-ai-reviewer
vantaverse-ai-reviewer scan

On first run, you'll be prompted for your Gemini API key.
Get one free at: https://aistudio.google.com/apikey

Usage

Basic Scan

# Analyze current directory
vantaverse-ai-reviewer scan

# With verbose output
vantaverse-ai-reviewer scan --verbose

🆕 Diff Mode (Recommended for Daily Use)

# Only analyze changed files - saves ~80% tokens!
vantaverse-ai-reviewer scan --diff

# Compare against specific branch
vantaverse-ai-reviewer scan --diff --base develop

Budget Control

# Set max cost limit (prompts if exceeded)
vantaverse-ai-reviewer scan --budget 0.10

# See token estimate with verbose
vantaverse-ai-reviewer scan --verbose

All Options

vantaverse-ai-reviewer scan [options]

Options:
  -o, --output <file>   Output report filename (default: AI_REVIEW_REPORT.md)
  -j, --json            Also generate JSON report
  -t, --types <types>   Analysis types: overview,security,codeQuality,accessibility,uiux,testing
  -v, --verbose         Show detailed output with token estimates
  -d, --diff            Only analyze changed files (uses git diff)
  -b, --base <branch>   Base branch for diff (default: main)
  --budget <usd>        Maximum cost budget in USD
  --full                Force full scan (override --diff)
  --no-security         Skip free security checks

Manage Configuration

# Show current config
vantaverse-ai-reviewer config

# Update API token
vantaverse-ai-reviewer config --action token

# Reset all settings
vantaverse-ai-reviewer config --action reset

Analysis Types

| Type | Description | |------|-------------| | overview | High-level project assessment | | security | Security vulnerabilities and risks | | codeQuality | Code smells, complexity, maintainability | | accessibility | WCAG compliance, screen reader support | | uiux | User experience issues, loading states | | testing | Suggested test cases and coverage |

🔐 Free Security Checks (Zero Cost)

Before using tokens, the CLI runs free local security scans:

  1. Secret Detection - Regex patterns for:

    • AWS keys, GitHub tokens, Stripe keys
    • JWTs, private keys, database URLs
    • Generic API keys and secrets
  2. npm Audit - Checks for known vulnerabilities

Security

  • Sandboxed - Only reads files within the target repository
  • No arbitrary execution - Uses whitelisted commands only
  • Secure storage - API tokens encrypted locally
  • Privacy first - Code sent only to Gemini API for analysis

Supported Frameworks

Next.js, React, Vue.js, Angular, Svelte, Vite, Django, Flask, Express, NestJS, and generic Node.js projects.

License

MIT