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

@zorqai/cli

v0.1.3

Published

Zorq AI command-line interface

Readme

@zorqai/cli

Zorq AI command-line interface — generate images, videos, and audio from your terminal or CI.

Install

npm i -g @zorqai/cli

Requires Node.js 18+.

Quick start

zorq auth login
zorq generate image "a cat in space, cinematic lighting" --aspect-ratio 16:9

Inline image preview

Generated images render directly in your terminal if you use one that supports the iTerm2 Inline Images Protocol or Kitty graphics:

  • iTerm2 (macOS) — brew install --cask iterm2
  • WezTermbrew install --cask wezterm
  • Kittybrew install --cask kitty
  • Ghosttybrew install --cask ghostty

In Apple Terminal / GNOME Terminal / etc you'll just see the URL — open it in a browser, or download with zorq download <id>.

Commands

Auth

  • zorq auth login — Open a browser, sign in to your zorqai.com account, and store a token at ~/.config/zorq/token.json.
  • zorq auth logout — Forget the saved token.
  • zorq auth whoami — Print your email and remaining credit balance.

List

  • zorq list models — Print available models (id, name, type, credit cost).
  • zorq list generations [--type image|video] [--limit 10] — Recent generations.

Generate

  • zorq generate image <prompt> [--model V8] [--aspect-ratio 1:1] [--ref <url>]
  • zorq generate video <prompt> [--model "WAN 2.2"] [--duration 5] [--resolution 720p] [--source-image <url>]
  • zorq generate tts <text> [--voice <id>] [--model minimax]
  • zorq motion-control --image <url> --video <url> [--prompt "..."] [--mode std|pro]

By default, generate waits for completion and prints the output URL. Pass --no-wait to return immediately with just the generation id.

Status & download

  • zorq check <id> [--type image|video] — Show status and (if ready) the output URL.
  • zorq download <id> [--type image|video] [--output ./out.mp4] — Download the rendered file.

Examples

# Submit and wait
zorq generate image "neon kraken in tokyo rain" --model V8 --aspect-ratio 16:9

# Fire-and-forget, then check later
ID=$(zorq generate video "drone over fjord" --no-wait | tail -n1)
zorq check "$ID" --type video
zorq download "$ID" --type video --output ./fjord.mp4

# Recent renders
zorq list generations --type video --limit 5

Auth & token storage

  • OAuth 2.0 + PKCE against https://jktjxzjyhbbxlxrfmcdk.supabase.co (Zorq's Supabase project).
  • Token is stored at ~/.config/zorq/token.json with mode 0600.
  • Override the directory with XDG_CONFIG_HOME.

CI usage

Run zorq auth login once on a developer machine, then copy ~/.config/zorq/token.json to your CI runner under the same path. (A non-interactive API-key flow is on the roadmap.)

Docs

Full developer docs: https://zorqai.com/developers