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

yollomi-cli

v1.0.0

Published

Yollomi AI image & video generation CLI

Readme

Yollomi CLI

Command-line interface for Yollomi AI image and video generation.

Install

# From repo (development)
pnpm yollomi --help

# Run without installing (when published to npm)
npx yollomi-cli image "a cat"

# Global install (then use: yollomi xx)
npm install -g yollomi-cli

Setup

Set YOLLOMI_API_KEY in your environment (required for image/video generation):

export YOLLOMI_API_KEY=your_api_key

Optional: YOLLOMI_BASE_URL to override API host (default: https://yollomi.com)

Commands

List models (no API key needed)

yollomi models
yollomi models --type image
yollomi models --type video

Generate image

yollomi image "a cute cat wearing a hat"
yollomi image "sunset over mountains" --model flux-2-pro --aspect 16:9
yollomi image "make it look like oil painting" --model flux-kontext-pro --image https://example.com/photo.jpg

Generate video

yollomi video "a cat walking in the rain"
yollomi video "ocean waves" --model google-veo-3-fast
yollomi video "animate this" --model wan-2-5-i2v --image https://example.com/frame.jpg

Unified generate (advanced)

yollomi generate --type image --model flux-schnell --prompt "a dog"
yollomi generate --type video --model kling-2-1 --prompt "a bird flying" --json

Options

| Option | Description | |--------|-------------| | -m, --model <id> | Model ID (default: flux-schnell for image, google-veo-3-fast for video) | | -a, --aspect <ratio> | Aspect ratio (1:1, 16:9, 9:16, etc.) | | -i, --image <url> | Reference image URL (for img2img, i2v, remove-bg) | | -n, --num <n> | Number of images (1-4, image only) | | -d, --duration <sec> | Video duration in seconds | | --json | Output raw JSON (generate command) |