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

@uziraze/fuzit

v1.0.0

Published

AI-Generate GIT commands, for people who cannot memorize them.

Readme

Fuzit

npm

AI-powered Git command helper for people who can't memorize git syntax. Describe what you want to do in plain English — Fuzit figures out the commands.

Demo

$ fuzit

> push my changes to a new branch called feature/login

🔍 Proposed commands:
  1. git checkout -b feature/login
  2. git push -u origin feature/login

💬 Creates and switches to a new branch, then pushes it to origin.

  ❯ Run commands
    Edit a command
    Cancel

Install

Stable (when available):

npm install -g @uziraze/fuzit

Beta (current release):

npm install -g @uziraze/fuzit@beta

Requires Node.js 18+.

Setup

On first run, Fuzit will ask for a Groq API key. Groq is free to use.

  1. Get your key at console.groq.com
  2. Run fuzit and paste it in when prompted — it's saved locally and never asked again

Usage

Interactive mode

fuzit

Type your request in plain English, review the proposed commands, then choose to run, edit, or cancel.

Quick mode

fuzit -n <your request>

Skips the review step and executes immediately. Useful for scripting or when you're confident.

fuzit -n stage all changes and commit with message "fix: button alignment"

Command history

fuzit --history

Browse previously executed commands. Select any entry to load its commands back into the review screen, where you can run or edit them again.

Model picker

fuzit --model

Switch the AI model used to generate commands. Fuzit supports the following Groq models:

| Model | Description | |---|---| | llama-3.3-70b-versatile | Balanced performance and speed (default) | | openai/gpt-oss-20b | OpenAI open-source 20B model | | openai/gpt-oss-120b | OpenAI open-source 120B model, most capable | | llama-3.1-8b-instant | Fastest responses, smallest model |

The selected model is saved and used for all future requests until changed. You can change these models via src/config/models.ts

Features

  • Natural language to git commands via Groq AI
  • Shows proposed commands with an explanation before running anything
  • Edit any command before execution
  • Reads your current git context (branch, status, recent commits, remotes) for accurate suggestions
  • Command history — re-run past commands without retyping
  • Switchable AI models — choose between speed and capability
  • Cross-platform (Windows, macOS, Linux)

How It Works

  1. You describe what you want in plain English
  2. Fuzit sends your request + current git context to the AI
  3. The AI returns the exact commands to run
  4. You review, optionally edit, then confirm
  5. Fuzit executes them and shows the output

Requirements

  • Node.js 18+
  • A git repository (must be run inside one)
  • A free Groq API key

License

MIT