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

tigit

v1.0.3

Published

Generate creative Git tags and semantic version tags with random category-based names

Downloads

278

Readme

Tigit 🏷️

Generate creative, memorable Git tags and semantic version tags with a single command.

Tigit replaces boring version numbers with fun, memorable names like gentle-wolf, or simplifies semantic versioning with powerful bumping logic. It's designed to be ultra-fast and zero-overhead.

npm version License: MIT


⚡ Installation

npm install -g tigit

This installs the tigit command and an ultra-fast alias t.


🎨 Core Concepts: Patterns vs Categories

Understanding the difference between patterns and categories helps you customize your tags:

  • Categories: The source word lists (dictionaries).
    • Built-in: adjectives, animals, colors, verbs.
  • Patterns: The "recipe" or structure of the tag.
    • Predefined: adjective-animal, color-animal-verb, etc.
    • Random: Uses your maxWords setting to pick words from random categories.
    • Dynamic: You can use a category name directly as a pattern (e.g., --pattern colors) to get a single word from that list.

Fallback Logic: If you specify a pattern that Tigit doesn't recognize or a category that doesn't exist, it gracefully falls back to the random logic to ensure a tag is always generated.


🚀 Command Reference

tigit (or t)

The default action uses Smart Mode to detect your project's style:

  • Versioning: If your latest tag is a semantic version (e.g., v1.2.3), it automatically bumps the patch version.
  • Creative: If your latest tag is a name or if no tags exist, it generates a random creative tag.
  • Example: t✨ Tag created: v1.2.4 (or silent-tiger)

tigit create

The primary command for generating and applying tags to your current repository.

| Option | Shorthand | Description | Example | | :--- | :--- | :--- | :--- | | --pattern | -p | Use a specific naming pattern or category. | t create -p colors | | --tag-version | -v | Create a specific semantic version tag. | t create -v 1.2.0 | | --bump | -b | Bump the version: major, minor, or patch. | t create -b patch | | --type | -t | Release type: stable (default), alpha, beta, rc. | t create -b minor -t beta | | --message | -m | Add a message (creates an annotated tag). | t create -m "Fix bugs" | | --push | | Automatically push the new tag to origin. | t create --push |

Smart Bumping:

  • If no tags exist, create --bump will start at v0.1.0.
  • It intelligently handles pre-releases (e.g., bumping v1.0.0 with --type beta results in v1.0.1-beta.0).

tigit generate

Preview a tag name without actually creating it in Git.

  • Example: tigit generate --pattern color-animalcrimson-panda

tigit config

Manage your persistent settings. Config is stored locally and applied to all your projects.

  • tigit config set <key> <value>: Set a persistent option.
    • pattern: Default pattern (e.g., adjective-animal).
    • maxWords: Number of words for random patterns (1-5).
    • separator: Character between words (e.g., ., -, _).
    • versionPrefix: Prefix for versions (default: v).
  • tigit config list: View your current configuration.
  • tigit config reset: Revert all settings to defaults.

Pro-tip: Set your favorite pattern once: tigit config set pattern adjective-animal. Now, every time you run t, it will use that style!

tigit list

List all tags in the current repository.

  • Example: tigit list

tigit delete <tag>

Delete a tag.

  • --remote: Also delete the tag from the remote repository (origin).
  • Example: tigit delete v1.0.0 --remote

tigit push

Push all local tags to the remote repository.

  • Example: tigit push

tigit setup-alias

If the t alias was not set up during installation, run this to add it to your shell configuration (.zshrc, .bashrc, etc.).


🛠️ Typical Workflows

1. The "Quick Save" Just finished a small fix?

t

2. The "Formal Beta Release" Ready for testing?

tigit create --bump minor --type beta --push
# Result: v1.1.0-beta.0 created and pushed

3. The "Themed Project" Want all tags in a project to be colors?

tigit config set pattern colors
t
# Result: emerald

License

MIT