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

ripple-ai-detector

v1.0.4

Published

🌊 Ripple AI Bug Detector - Built by an AI that knows its flaws. Catch AI-generated bugs before you commit.

Readme

🌊 Ripple AI Bug Detector

Catch AI-generated bugs before you commit them.

Ripple is the only tool specifically designed to detect bugs that AI coding assistants create. Built by an AI that knows its own limitations.

πŸš€ Quick Start

# Install globally
npm install -g ripple-validator

# Initialize in your project
cd your-project
ripple init

# Analyze staged files
ripple validate

# Analyze specific files
ripple validate src/components/Button.tsx src/utils/helpers.ts

# Analyze entire project
ripple validate --all

🎯 What Ripple Catches

1. Function Signature Changes

❌ Function signature changed without updating callers
   processUser(id) β†’ processUser(id, options)
   πŸ’₯ Will break: UserList.tsx:23, Dashboard.tsx:67

2. Import/Export Mismatches

❌ Import 'theme' not found in './styles'
   πŸ’‘ Available exports: defaultTheme, colors, spacing

3. AI-Generated Code Detection

πŸ€– AI-generated changes detected (87% confidence)
   πŸ’‘ Review changes carefully before committing

πŸ’° Pricing

  • Free: 10 validations per month
  • Pro: $49/month for unlimited validations
  • Team: $99/month with team dashboard

πŸ”§ Commands

ripple validate              # Analyze staged files
ripple validate --all        # Analyze entire project
ripple validate file1.ts     # Analyze specific files
ripple init                  # Initialize configuration
ripple auth login <key>      # Login with license key
ripple auth status           # Check authentication
ripple upgrade               # Upgrade to Pro

βš™οΈ Configuration

Create .ripple.config.js in your project root:

module.exports = {
  analysis: {
    languages: ['javascript', 'typescript'],
    include: ['src/**/*.{js,ts,jsx,tsx}'],
    exclude: ['node_modules/**', '**/*.test.{js,ts}']
  },
  rules: {
    functionSignatureChange: {
      enabled: true,
      severity: 'error'
    },
    importExportMismatch: {
      enabled: true,
      severity: 'error'
    }
  },
  aiDetection: {
    enabled: true,
    sensitivity: 'medium'
  }
};

πŸ€– Why Ripple?

Built by Claude Sonnet 4 - I know exactly what bugs I create:

  • βœ… Context Blindness: I change functions without seeing all callers
  • βœ… Assumption Errors: I guess at imports that don't exist
  • βœ… Cascading Changes: I modify types without seeing downstream effects
  • βœ… Test Blindness: I break tests without realizing it

🎯 Perfect For

  • Developers using Claude, Cursor, GitHub Copilot
  • Teams wanting to use AI safely
  • Anyone who's shipped an AI-generated bug
  • Developers who care about code quality

πŸ“Š Success Stories

"Ripple caught 12 AI bugs in my first week. Already paid for itself!"
β€” Senior Developer at Tech Startup

"Finally I can use Claude without fear of breaking production."
β€” Engineering Manager

πŸ”’ Privacy & Security

  • βœ… All analysis happens locally
  • βœ… No code uploaded to servers
  • βœ… Only usage statistics tracked
  • βœ… Open source detection algorithms

πŸš€ Get Started

  1. Install: npm install -g ripple-validator
  2. Try it: ripple validate in any project
  3. Love it: Upgrade to Pro for unlimited validations
  4. Share it: Tell your team about the AI bug detector

πŸ’‘ Pro Tips

  • Run ripple validate before every commit
  • Set up git hooks for automatic validation
  • Use --format json for CI/CD integration
  • Check ripple auth status to monitor usage

πŸ†˜ Support


Built with ❀️ by an AI that knows its flaws

Ripple: Because even AI needs a safety net.