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

gitvibe

v1.4.0

Published

AI-powered CLI tool for generating commit messages and PR descriptions

Readme

GitVibe

AI-powered CLI tool for generating commit messages and PR descriptions. Streamline your Git workflow with intelligent, context-aware suggestions powered by leading AI models.

Features

  • 🤖 AI-Powered Generation: Generate commit messages and PR descriptions using OpenAI, Google, Anthropic, or Groq
  • 🎯 Conventional Commits: Follows conventional commit standards for consistent messaging
  • 📋 Clipboard Integration: Easily copy generated content to clipboard
  • 🔄 Multiple Variations: Get multiple suggestions and choose the best one
  • 🚀 GitHub Integration: Create PRs directly with GitHub CLI
  • ⚙️ Flexible Configuration: Multiple config profiles with custom prompts and settings
  • 🎨 Interactive Mode: User-friendly prompts for easy setup and usage

Installation

Prerequisites

  • Node.js 20.19.0+ (check with node --version)
  • Git repository
  • API key for your chosen AI provider
  • github CLI (for PR)

Install via npm (Recommended)

npm install -g gitvibe

Install via pnpm

pnpm add -g gitvibe --ignore-scripts=false

Quick Start

You can use Groq free tier unless your git diff is really big.

Personally I use moonshotai/kimi-k2-instruct-0905 model. Hence it's defualt choice in the cli.

  1. Initialize GitVibe:

    gitvibe init

    This will guide you through selecting an AI provider, model, and entering your API key.

  2. Generate a commit message:

    git add .
    gitvibe commit

    Select from generated variations and commit directly or copy to clipboard.

  3. Generate a PR description:

    gitvibe pr

    Creates a PR title and description from recent commits.

Commands

gitvibe init

Initialize GitVibe with AI provider setup. This interactive command will:

  • Prompt you to select an AI provider (Groq, OpenAI, Google, or Anthropic)
  • Choose a model from available options
  • Enter your API key (securely stored)
  • Test the configuration
  • Create a default configuration file
gitvibe init

gitvibe commit (alias: c)

Generate commit messages from staged changes.

Options:

  • --copy: Copy the selected message to clipboard
  • --apply: Commit directly with the selected message
  • --config <name>: Use a specific configuration

Examples:

# Interactive mode - select from variations
gitvibe commit

# Copy to clipboard
gitvibe commit --copy

# Commit directly
gitvibe commit --apply

# Use specific config
gitvibe commit --config my-config

The command analyzes your staged changes and generates multiple commit message variations following conventional commit format (e.g., feat: add user authentication).

gitvibe pr

Generate PR descriptions from recent commits.

Options:

  • --commits <n>: Number of recent commits to include (default: 1)
  • --copy: Copy the PR content to clipboard
  • --open: Create PR using GitHub CLI
  • --config <name>: Use a specific configuration

Examples:

# Generate PR from last commit
gitvibe pr

# Include last 3 commits
gitvibe pr --commits 3

# Copy to clipboard
gitvibe pr --copy

# Create PR directly (requires GitHub CLI)
gitvibe pr --open

gitvibe config

Manage configuration profiles.

gitvibe config new <name>

Create a new configuration file. Opens your default editor to customize:

  • AI provider and model ( Groq with Kimi-k2 model is suggested)
  • Custom prompts
  • Temperature and token limits
  • Output streaming preferences
gitvibe config new my-config

gitvibe config list

List all available configurations with validity status.

gitvibe config list

gitvibe config show [name]

Display configuration details. Shows default config if no name provided.

gitvibe config show
gitvibe config show my-config

gitvibe config set-default <name>

Set the default configuration.

gitvibe config set-default my-config

gitvibe create-config <name>

Create a new configuration interactively. This command guides you through selecting an AI provider, model, temperature, and API key, then tests the configuration and opens it in your editor for customization.

gitvibe create-config my-config

Examples

Complete Workflow

# 1. Initialize (first time only)
gitvibe init

# 2. Stage your changes
git add .

# 3. Generate and commit
gitvibe commit --apply # gitvibe c

# 4. Push and create PR
git push origin feature-branch
gitvibe pr --open

Custom Configuration

# Create custom config for different projects
gitvibe config new work-config

# Edit the config file that opens
# Modify prompts, temperature, etc.

# Use specific config
gitvibe commit --config work-config

Batch Operations

# Generate PR from multiple commits
gitvibe pr --commits 5 --copy

# Quick commit without interaction
echo "quick fix" | git commit -F -
# Or use GitVibe for better messages
gitvibe commit --apply

License

MIT License - see LICENSE file for details.

Command Reference

Inspiration

  • https://github.com/KartikLabhshetwar/lazycommit