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

vibeguard-cli

v1.0.13

Published

VibeGuard Security Scanner CLI

Readme

VibeGuard CLI

Official command-line interface for the VibeGuard Security Scanner.

Installation

npm install -g vibeguard-cli

Quick Start

1. Authenticate

vibeguard auth <your-api-key>

Your API key will be saved to ~/.vibeguard/config.json.

Alternatively, set the VIBEGUARD_API_KEY environment variable:

export VIBEGUARD_API_KEY=your-api-key-here

2. Scan Your Project

# Scan current directory
vibeguard scan

# Scan specific directory
vibeguard scan ./my-project

# Output as JSON
vibeguard scan --format json

# Output as SARIF (for CI/CD)
vibeguard scan --format sarif --output results.sarif

# Show only critical/high severity
vibeguard scan --min-severity high

# Fail on specific severity level
vibeguard scan --fail-on medium

Commands

vibeguard auth <api-key>

Authenticate with your VibeGuard API key.

vibeguard scan [path]

Scan a project directory for security vulnerabilities.

Options:

  • --format <format> - Output format: terminal (default), json, or sarif
  • --output <file> - Write results to a file instead of stdout
  • --min-severity <level> - Only show vulnerabilities of this severity or higher (low, medium, high, critical)
  • --fail-on <level> - Exit with code 1 if vulnerabilities of this severity or higher are found

Configuration

Environment Variables

  • VIBEGUARD_API_KEY - Your API key (overrides config file)
  • VIBEGUARD_API_URL - Custom API endpoint (default: https://vibeguard.atlantiumai.io)

Config File

The CLI stores configuration in ~/.vibeguard/config.json:

{
  "apiKey": "your-api-key",
  "apiUrl": "https://vibeguard.atlantiumai.io"
}

Exit Codes

  • 0 - No critical or high severity vulnerabilities found
  • 1 - Critical or high severity vulnerabilities found, or scan failed

Use --fail-on to customize the exit code behavior.

CI/CD Integration

GitHub Actions

- name: Run VibeGuard Scan
  run: |
    npm install -g vibeguard-cli
    vibeguard scan --format sarif --output vibeguard-results.sarif
  env:
    VIBEGUARD_API_KEY: ${{ secrets.VIBEGUARD_API_KEY }}

- name: Upload SARIF results
  uses: github/codeql-action/upload-sarif@v2
  with:
    sarif_file: vibeguard-results.sarif

GitLab CI

vibeguard-scan:
  script:
    - npm install -g vibeguard-cli
    - vibeguard scan --format json --output vibeguard-results.json
  artifacts:
    reports:
      security: vibeguard-results.json

What Gets Scanned?

The CLI automatically respects your .gitignore file and excludes:

  • node_modules/
  • .git/
  • Build directories (dist/, build/, out/)
  • Environment files (.env, .env.*)
  • IDE directories (.vscode/, .idea/)
  • Log files (*.log)
  • Cache directories

Maximum project size: 50MB (compressed)

Support

For issues or questions, visit https://vibeguard.atlantiumai.io/support