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

gityo

v0.0.0

Published

`gityo` is a CLI that helps you stage changes, write or generate a commit message, commit, and optionally run a post-commit git action.

Readme

gityo

gityo is a CLI that helps you stage changes, write or generate a commit message, commit, and optionally run a post-commit git action.

It is built for people who want a faster commit flow without turning git into a wall of commands.

Install

npm install -g gityo

Or run it without installing globally:

npx gityo

What it does

  • lets you choose which changed files to stage
  • lets you write your own commit message
  • can generate a commit message with AI
  • creates the commit for you
  • can run a post-commit action like git push

Quick use

Run it inside a git repository:

gityo

Typical flow:

  1. Pick files to stage
  2. Type a commit message or generate one
  3. Create the commit
  4. Optionally run the configured post-commit action

Common commands

gityo
gityo --stage
gityo --generate
gityo --message "fix login redirect bug"
gityo --yolo

AI setup

If you want AI-generated commit messages, set a model once and reuse it:

gityo config set model openai gpt-4.1 YOUR_API_KEY

Then use:

gityo --generate

Supported providers include OpenAI, Anthropic, Google, OpenRouter, and compatible custom endpoints.

Config

View your current config:

gityo config

You can also write config manually.

Project config goes in:

.gityo.config.json

Global config goes in:

~/.config/gityo.json

You can also add repo-specific writing instructions in:

.gityo.md

That file is useful when you want commit messages in a certain tone or format for one project.

If you want editor autocomplete and validation, use this schema:

https://github.com/NazmusSayad/gityo/raw/refs/heads/schema/schema.json

Example:

{
  "$schema": "https://github.com/NazmusSayad/gityo/raw/refs/heads/schema/schema.json",
  "model": {
    "provider": "openai",
    "name": "gpt-4.1"
  },
  "autoAcceptMessage": false,
  "postCommand": "push",
  "autoRunPostCommand": false,
  "instructions": "Write short, clear commit messages."
}

Example instructions file:

Use imperative commit messages.
Mention the user-facing change first.
Keep the subject line under 72 characters.

Priority is simple:

  • .gityo.md for repo-specific instructions
  • .gityo.config.json for project config
  • ~/.config/gityo.json for your defaults

A few useful examples:

gityo config set postCommand push
gityo config set autoRunPostCommand true
gityo config set autoAcceptCommitMessage true

Good for

  • quick everyday commits
  • cleaner staging and commit flow
  • AI-assisted commit messages without losing control

Notes

  • run it inside a git repo
  • if there are no changed files, it exits early
  • --yolo is the fastest mode and skips the usual prompts