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

vertex-cli

v1.8.1

Published

Protected CLI for VERTEX Diagnostics & Commit Intelligence

Readme

VERTEX CLI Banner

🚀 VERTEX CLI

AI-Powered Developer Productivity Tools

npm version npm downloads License

macOSLinuxWindows (WSL)

InstallationFeaturesUsageHow It Works


✨ Features

🤖 AI Commits

Generate perfect conventional commit messages using local AI. No cloud APIs - 100% private.

vertex-commit

🔍 Diagnostics

TypeScript, ESLint & npm audit with AI-powered error explanations.

vertex-check

📦 Version Bump

Interactive semantic versioning with auto-commit support.

vertex-bump

📥 Installation

npm install -g vertex-cli

That's it! 🎉 All dependencies are auto-installed.


🎯 Usage

AI-Powered Commits

# Stage your changes
git add .

# Generate AI commit message
vertex-commit
  ██╗   ██╗███████╗██████╗ ████████╗███████╗██╗  ██╗
  ██║   ██║██╔════╝██╔══██╗╚══██╔══╝██╔════╝╚██╗██╔╝
  ██║   ██║█████╗  ██████╔╝   ██║   █████╗   ╚███╔╝ 
  ╚██╗ ██╔╝██╔══╝  ██╔══██╗   ██║   ██╔══╝   ██╔██╗ 
   ╚████╔╝ ███████╗██║  ██║   ██║   ███████╗██╔╝ ██╗
    ╚═══╝  ╚══════╝╚═╝  ╚═╝   ╚═╝   ╚══════╝╚═╝  ╚═╝

  ✓ Changes Detected: 3 files
  ✓ AI Generated: feat(auth): add OAuth2 login flow
  
  Accept? [Y/n]

Project Diagnostics

vertex-check

Runs comprehensive checks:

  • ✅ TypeScript compilation
  • ✅ ESLint analysis
  • ✅ npm audit security scan
  • ✅ Dead code detection
  • 🤖 AI error explanations

Version Management

vertex-bump
  • 📌 Patch (0.0.x) - Bug fixes
  • 🔧 Minor (0.x.0) - New features
  • 🚀 Major (x.0.0) - Breaking changes

🔧 How It Works

Zero-Setup Experience

When you run any VERTEX command, it automatically:

1️⃣  Detects your OS (macOS / Linux / Windows WSL)
    ↓
2️⃣  Installs missing dependencies
    • gum (terminal UI)
    • jq (JSON processing)
    • Ollama (local AI engine)
    ↓
3️⃣  Downloads AI model (qwen2.5-coder:1.5b)
    ↓
4️⃣  Starts Ollama server
    ↓
5️⃣  Runs your command! ✨

Supported Package Managers

| OS | Package Manager | |:---|:----------------| | 🍎 macOS | Homebrew | | 🐧 Ubuntu/Debian | apt | | 🎩 Fedora/RHEL | dnf | | 🏔️ Alpine | apk | | 🔵 Arch | pacman | | 🪟 Windows | WSL + apt/brew |


🔒 Privacy First

  • 100% Local AI - Uses Ollama, runs on your machine
  • No Cloud APIs - Your code never leaves your computer
  • No Data Collection - Zero telemetry

💻 System Requirements

| Requirement | Minimum | |:------------|:--------| | Node.js | 16+ | | RAM | 4GB (8GB recommended for AI) | | Disk | 2GB free space |

Windows Users

VERTEX requires WSL (Windows Subsystem for Linux):

# Install WSL (run as Administrator)
wsl --install

# Then install vertex-cli inside WSL
npm install -g vertex-cli

🔗 Integration Guide

Display Version in Your App

1. Update vite.config.ts

import { defineConfig } from "vite";
import packageJson from "./package.json";

export default defineConfig({
  define: {
    __APP_VERSION__: JSON.stringify(packageJson.version),
  },
});

2. Add Type Definition (src/vite-env.d.ts)

declare const __APP_VERSION__: string;

3. Use in Component

<span>v{__APP_VERSION__}</span>

Now run vertex-bump and your UI updates automatically! 🎉


📋 Commands Reference

| Command | Description | |:--------|:------------| | vertex-commit | AI-powered commit message generator | | vertex-check | Project diagnostics & health check | | vertex-bump | Interactive version bumping |


🤝 Contributing

Contributions welcome! Please open an issue first to discuss changes.


📄 License

MIT © VERTEX


Made with 💜 for developers who value their time

⬆ Back to Top