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

@dog-verao/the-wall

v0.2.1

Published

The Wall between AI-generated code and production. Zero config, plain English security scanning.

Readme

Version License Build Status


🛡️ What is The Wall?

The Wall is a zero-config, developer-first security scanner designed specifically for the era of AI-generated code. It catches common mistakes, security vulnerabilities, and logic flaws that LLMs often overlook—before they hit production.

🚀 Quick Start

No installation required. Run it anywhere with npx:

npx @dog-verao/the-wall

🔥 Key Features

1. 🔍 Static Security Scanning

Fast, regex-based and AST-aware checks for over 80+ common vulnerabilities, including hardcoded secrets, SQL injection, weak auth patterns, and more.

2. 🧠 AI-Powered Deep Analysis

Enable high-confidence logic checks that static analysis can't catch—like IDOR, mass assignment, and business logic flaws.

npx @dog-verao/the-wall --ai

3. 📦 Safe Install (install command)

Protects you from typosquatting and AI-hallucinated packages. It verifies package age, download counts, and README presence before allowing an install.

npx @dog-verao/the-wall install some-pkg

4. ⚡ Intelligent Caching & Budgeting

The Wall caches AI results locally to save you tokens and includes a --budget flag to cap your spend.


🛠️ Usage & Commands

| Command | Description | |---|---| | scan (default) | Run a full security scan on the current directory | | install <pkg> | Securely install a package with typosquatting checks | | --config | Interactive wizard to set up your OpenAI/Anthropic keys | | --ci | CI mode: exit with code 1 if critical issues are found |

Options

  • --path <dir>: Target directory to scan (default: .)
  • --ai: Enable AI-powered deep checks (requires API key)
  • --budget <cents>: Cap AI spending in USD cents (default: 50)
  • --fail-on <severity>: CI failure threshold (critical, high, medium)
  • --verbose: Show all findings, including informational ones

🏰 Configuration

You can provide your API keys through environment variables or a global config file.

# Set up via interactive wizard
npx @dog-verao/the-wall --config

# Or use environment variables
export THEWALL_API_KEY=your_key_here

.the-wallignore

Create a .the-wallignore file in your root to exclude specific files or directories from scanning using standard gitignore syntax.


🏗️ Developer Setup

If you want to contribute or run the project from source:

  1. Clone the repo:

    git clone https://github.com/dog-verao/the-wall.git
    cd the-wall
  2. Install dependencies:

    npm install
  3. Build the project:

    npm run build
  4. Run locally:

    node dist/cli.js --path /path/to/project

🛡️ CI/CD Integration

The Wall is designed to hold the line in your CI/CD pipeline.

# Example GitHub Action step
- name: Run The Wall
  run: npx @dog-verao/the-wall --ci --fail-on=high
  env:
    THEWALL_API_KEY: ${{ secrets.THEWALL_API_KEY }}