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

gitizi-cli

v1.2.1

Published

Official CLI tool for managing prompts on gitizi.com

Readme

Gitizi CLI (izi)

The official command-line interface for gitizi.com - manage your AI prompts like a pro!

Features

  • Authentication - Secure token-based authentication with gitizi.com
  • Search Prompts - Find prompts from the community
  • Create Prompts - Create prompts from markdown files with frontmatter
  • Push Prompts - Upload and update prompts to gitizi.com
  • Clone Prompts - Download existing prompts to edit locally
  • Colorful Output - Beautiful terminal experience with your friendly cat mascot

Installation

npm install -g gitizi-cli

Or use directly with npx:

npx gitizi-cli <command>

Quick Start

1. Authenticate

izi auth

Or provide token directly:

izi auth --token YOUR_API_TOKEN

Get your API token from: https://gitizi.com/settings/tokens

2. Search for Prompts

izi search "code review"
izi search "typescript" --limit 20

3. Clone an Existing Prompt

izi clone abc123 -o my-prompt.md

4. Create a New Prompt

Create a markdown file with frontmatter:

---
name: My Awesome Prompt
description: A prompt that does amazing things
tags: [coding, typescript, assistant]
---

You are an expert TypeScript developer...

Then validate it:

izi create my-prompt.md

5. Push Your Prompt

izi push my-prompt.md

Update an existing prompt:

izi push my-prompt.md --id abc123

Commands

izi auth [options]

Authenticate with gitizi.com

Options:

  • -t, --token <token> - API token

izi search <query> [options]

Search for prompts on gitizi.com

Arguments:

  • query - Search query

Options:

  • -l, --limit <number> - Limit results (default: 10)

izi create <file> [options]

Create a new prompt from markdown file

Arguments:

  • file - Markdown file path

Options:

  • -n, --name <name> - Prompt name
  • -d, --description <desc> - Prompt description
  • --tags <tags> - Comma-separated tags

izi push <file> [options]

Push a prompt to gitizi.com

Arguments:

  • file - Markdown file path

Options:

  • --id <id> - Prompt ID (for updates)

izi clone <prompt-id> [options]

Clone an existing prompt

Arguments:

  • prompt-id - Prompt ID to clone

Options:

  • -o, --output <path> - Output file path (default: ./prompt.md)

Prompt Format

Prompts should be markdown files with YAML frontmatter:

---
name: Prompt Name
description: Brief description of what this prompt does
tags: [tag1, tag2, tag3]
---

Your actual prompt content goes here...

Configuration

Configuration is stored in:

  • Linux/Mac: ~/.config/gitizi-cli/config.json
  • Windows: %APPDATA%\gitizi-cli\config.json

Development

# Clone the repository
git clone https://github.com/gitizi/gitizi-cli.git
cd gitizi-cli

# Install dependencies
npm install

# Run in development mode
npm run dev

# Build
npm run build

# Link locally for testing
npm link

License

MIT

Support

  • Website: https://gitizi.com
  • Issues: https://github.com/gitizi/gitizi-cli/issues
  • Email: [email protected]

Made with love by the Gitizi team