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

image-quick

v0.2.2

Published

CLI for production-friendly image sourcing, editing, layered composition, and AI image generation.

Downloads

288

Readme

image-quick

Production-friendly CLI for sourcing, editing, composing, and generating images.

License: MIT.

Getting Started

Install globally:

npm install -g image-quick
image-quick doctor
image-quick template list

Set an API key only if you want AI generation:

image-quick auth set openai
image-quick auth doctor

image-quick stores local provider keys in your user config directory and prefers that store over environment variables.

Choose a Tier

  • asset-only: no AI key required, uses fetch + edit pipeline
  • ai-mini: cheaper AI generation
  • ai-standard: balanced quality/cost
  • ai-premium: strongest available tier

Common Flows

Generate a simple product image:

image-quick generate \
  --template product-image \
  --variant ecommerce \
  --var productName="Air Bottle" \
  --var keyBenefit="keeps water cold for 24 hours"

Create a catalog-style product photo without AI:

image-quick generate \
  --template catalog-product-photo \
  --tier asset-only \
  --asset-url https://example.com/product-packshot.png \
  --var productName="Sample Product" \
  --var category="Retail" \
  --var productType="Packaging"

Create a catalog-style product photo with AI:

image-quick generate \
  --template catalog-product-photo \
  --tier ai-standard \
  --provider openai \
  --var productName="Sample Product" \
  --var category="Retail" \
  --var productType="Packaging"

Polish a real product reference with AI:

image-quick generate \
  --template catalog-product-photo \
  --tier ai-standard \
  --provider openai \
  --reference-image ./product-cutout.png \
  --input-fidelity high \
  --var productName="Sample Product" \
  --var category="Retail" \
  --var productType="Packaging"

Run QA on a generated product photo:

image-quick qa catalog-product-photo --image ./catalog-product-photo.png

Auto-fix framing or white-background issues:

image-quick qa catalog-product-photo \
  --image ./catalog-product-photo.png \
  --auto-fix \
  --include-warn \
  --fixed-out ./catalog-product-photo-fixed.png

Compose a layered graphic from your own JSON spec:

image-quick compose --spec ./banner.compose.json

Edit one image from a remote URL:

image-quick edit --spec ./product.edit.json --input-url https://example.com/source.png

Output Behavior

Output location resolves in this order:

  1. --out
  2. saved image-quick settings set output-dir ...
  3. IMAGE_QUICK_OUTPUT_DIR
  4. your current working directory

Set a persistent default output directory:

image-quick settings set output-dir ./generated-images
image-quick settings show

Providers

Implemented for generation today:

  • openai
  • google-gemini

Already in the provider registry for future expansion:

  • fal
  • stability
  • replicate

Inspect what your local install sees:

image-quick provider list
image-quick auth doctor

Optional Tools

These are optional but useful for edit-heavy workflows:

  • ImageMagick
  • rembg

If they are missing, check:

image-quick doctor

More

  • Templates: image-quick template list
  • Template details: image-quick template show catalog-product-photo
  • Source registry: image-quick source list
  • GitHub repo and dev docs: https://github.com/williamduong/image-quick