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

@voria/cli

v0.0.5

Published

AI-powered CLI tool for automated bug fixing - initialize with voria --init

Readme

voria v0.0.5

AI-Powered Security, Reliability & Bug-Fixing Engine

voria is a next-generation CLI tool that combines advanced AI code analysis with automated security pentesting and production reliability audits. Whether you're fixing a logic bug, generating a pull request, or performing a full security audit, voria handles the heavy lifting with precision and speed.


🚀 Key Features in v0.0.5

  • ⚡ Streaming Output - Real-time LLM response streaming (token-by-token) for instant feedback.
  • 🛡️ Full Security Scan (voria scan) - Run 25+ security audits (SQLi, XSS, SSRF, etc.) in parallel.
  • 👁️ Watch Mode (voria watch) - Continuous codebase monitoring with automatic security re-validation.
  • 🔥 Performance Benchmarking (voria benchmark) - Real-world HTTP load testing with p95/p99 latency analysis.
  • 🖇️ CI/CD Integration (voria ci) - Export SARIF reports directly to GitHub Security dashboard.
  • 🛠️ Auto-Fix (voria fix --auto) - AI generation and automatic patch application in one command.
  • 🔷 Premium Blue Theme - Professional, high-contrast CLI interface with rich formatting.
  • 🏗️ Hybrid Architecture - Blazing fast Rust CLI paired with a flexible Python AI engine.

📦 Installation

npm install -g @voria/cli

Initial Setup

voria --init

Follow the interactive wizard to configure your LLM provider (OpenAI, Claude, Gemini, Modal, DeepSeek, Kimi, MiniMax, or SiliconFlow), set your security budget, and select your test framework.


🛡️ Pentesting & Security

voria is now a first-class security tool. It analyzes your code and infrastructure to find and optionally fix vulnerabilities.

Full Project Scan

voria scan all

Performs a deep audit of your entire project, reporting on SQL Injection, Cross-Site Scripting, Insecure Direct Object References, and more.

Security Diff

Compare two branches or commits to ensure no new vulnerabilities were introduced.

voria diff main feature-br

Watch Mode

Keep voria running while you code. It will detect file changes and instantly re-run relevant security checks.

voria watch sql_injection,xss

⚡ Reliability & Performance

Ensure your production code can handle the heat.

HTTP Benchmarking

voria benchmark https://api.myapp.com --requests 1000 --concurrency 50

Generates professional reports with latency distribution (Min, Max, P50, P95, P99) and status code counts.

Resilience Testing

voria test cpu_stress
voria test mem_stress
voria test network_latency

🤖 AI Bug Fixing

The core voria engine for automated issue resolution.

Fix from GitHub Issue

voria fix 123 ansh/voria --auto

Fetches issue #123, analyzes the code, generates a patch, applies it, and verified the fix.

Interactive Planning

voria plan "Implement JWT authentication in the auth module"

🛠️ Commands Reference

| Command | Action | |---------|--------| | voria --init | Interactive configuration wizard | | voria scan <cat> | Run full security audit (e.g., all, owasp, logic) | | voria test <id> | Run a specific test case (e.g., sql_injection, deadlock) | | voria fix <id> | AI-power fix for a GitHub issue | | voria fix --auto | Generate and apply fix immediately | | voria watch | Monitor files and re-run tests on change | | voria benchmark | High-performance HTTP load testing | | voria diff <a..b> | Compare security posture between refs | | voria ci | Generate SARIF report for CI pipelines | | voria --graph | Visualize security health distribution |


📖 Documentation


🤝 Community & Support

License: MIT | Version: 0.0.5

Want to contribute?Contributor Guide

Curious how it works?Architecture Guide