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

quiver-ai-cli

v0.1.0

Published

CLI tool for QuiverAI SVG generation API — generate and vectorize SVGs from the terminal

Readme

quiver-ai-cli

CLI tool for the QuiverAI SVG generation API. Generate SVGs from text prompts and convert raster images to SVG — right from your terminal.

Features

  • Text to SVG — describe what you want, get an SVG back
  • Image to SVG — convert PNG/JPG/WebP images into clean SVG vectors
  • Streaming — watch generation progress in real-time via SSE
  • Multiple outputs — generate several SVG variants in one call
  • Reference images — attach style references (local files or URLs)
  • Zero dependencies — single-file bundle, works with Node.js 18+ or Bun

Install

# npm
npm install -g quiver-ai-cli

# bun
bun install -g quiver-ai-cli

After install, the quiver command is available globally.

Setup

Get your API key from QuiverAI and configure it:

quiver config set api_key sk-xxxxxxxxxxxx

Configuration is saved to ~/.config/.quiver-ai/config.json. You can also use the QUIVER_API_KEY environment variable (takes precedence over config file).

# Optionally set a default model
quiver config set default_model arrow-preview

# View current config
quiver config get

# Show config file path
quiver config path

Usage

Generate SVG from text

# Basic generation
quiver generate "a minimalist rocket icon"

# Save to file
quiver generate -o rocket.svg "a rocket launching into space"

# Stream with progress, specific model
quiver generate -s -m arrow-preview -o icon.svg "a compass icon"

# Generate 3 variants
quiver generate -n 3 -o icons.svg "a navigation arrow"

# With style reference image
quiver generate -r style-ref.png -o logo.svg "a tech startup logo"

# With additional instructions
quiver generate -i "flat design, single color, no gradients" -o flat.svg "a heart icon"

Convert image to SVG

# From local file
quiver vectorize photo.png -o output.svg

# From URL
quiver vectorize https://example.com/logo.png -o logo.svg

# With auto-crop and streaming
quiver vectorize -s --auto-crop image.jpg -o clean.svg

# Resize before vectorizing
quiver vectorize --target-size 512 large-photo.png -o resized.svg

List models

# List all available models
quiver models list

# Get details for a specific model
quiver models get arrow-preview

CLI Reference

quiver config set <key> <value>        Save a configuration value
quiver config get [key]                Show configuration (or a specific key)
quiver config path                     Print the config file path

quiver models list                     List all available AI models
quiver models get <model-id>           Show detailed metadata for a model

quiver generate [options] <prompt>     Generate SVG from a text description
quiver vectorize [options] <image>     Convert a raster image to SVG

Generate options

| Flag | Description | |------|-------------| | -m, --model <model> | Model ID (default: from config or arrow-preview) | | -o, --output <file> | Save SVG to file instead of stdout | | -s, --stream | Stream response via SSE with progress | | -n, --count <n> | Number of SVG variants (default: 1) | | -t, --temperature <t> | Sampling temperature (default: 1) | | -i, --instructions <text> | Additional style guidance | | --max-tokens <n> | Max output tokens | | -r, --reference <url\|file> | Reference image (repeatable) |

Vectorize options

| Flag | Description | |------|-------------| | -m, --model <model> | Model ID (default: from config or arrow-preview) | | -o, --output <file> | Save SVG to file instead of stdout | | -s, --stream | Stream response via SSE with progress | | -t, --temperature <t> | Sampling temperature (default: 1) | | --auto-crop | Auto-crop to dominant subject first | | --target-size <px> | Resize to square of this size before processing | | --max-tokens <n> | Max output tokens |

Development

# Install dependencies
bun install

# Run in dev mode (directly from TypeScript)
bun run dev

# Build for Node.js (outputs dist/index.js)
bun run build

# Build standalone binary (outputs dist/quiver)
bun run build:binary

# Run built version
bun run start

License

MIT