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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@androbinco/prompts-cli

v0.1.4

Published

Robin CLI for importing generative AI prompts

Downloads

13

Readme

@androbinco/prompts-cli

A simple Command Line Interface (CLI) tool to fetch and organize generative AI prompts from a predefined set of public GitHub Gists.

Description

@androbinco/prompts-cli downloads content from specified public GitHub Gists and saves each Gist's content into a separate file within a local z-prompts directory. This helps in keeping your frequently used prompts readily available and organized.

Since this tool works exclusively with public Gists, no GitHub Personal Access Token (PAT) or special configuration is required to use it.

Usage

To use this CLI, you can run it directly using npx (which comes with Node.js) or pnpx (if you use pnpm as your package manager).

With npx:

npx @androbinco/prompts-cli

With pnpx (for pnpm users):

pnpx @androbinco/prompts-cli

Executing either of these commands will:

  • Create a directory named z-prompts in your current working directory (if it doesn't already exist).
  • Fetch the content from the predefined list of public Gists.
  • Save the content of each Gist into its own file within the z-prompts directory.

How It Works

The CLI has a hardcoded list of public GitHub Gist IDs and their intended output filenames. For each Gist in the list:

  • It fetches all files within that Gist.
  • It concatenates the content of these files.
  • It saves this combined content into a new file in the ./z-prompts/ directory, using the predefined name for that Gist.

Output

The CLI will generate a folder named z-prompts in the directory from which you run the command. Inside this folder, you will find files corresponding to each fetched Gist.

Example:

your-project/
├── z-prompts/
│   ├── COLORS_FOUNDATIONS.md
│   ├── ANOTHER_PROMPT_FILE.txt
│   └── ... (other fetched Gist files)
└── ... (your other project files)

Configuration

No special configuration or API keys are needed to run this CLI, as it is designed to work with publicly accessible Gists.

Prerequisites

Node.js: Version 18.x or higher is recommended. Node.js comes with npm and npx.

If you wish to use pnpx, you'll need to have pnpm installed (npm install -g pnpm).

Important Note on Output Directory (z-prompts)

When you run the CLI locally from within its own project directory for testing purposes, it will create the z-prompts output directory at the root of the CLI project.

⚠️ Disclaimer for Developers: The z-prompts directory and its contents are generated output and should not be committed to the CLI's version control history.