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

@vibepaper/cli

v0.1.8

Published

VibePaper developer CLI for auth, assets, and generation

Downloads

284

Readme

@vibepaper/cli

VibePaper developer CLI: OAuth login, asset upload, model discovery, generate/edit jobs.

Requirements

The standalone installer does not need Node.js. The optional npm package requires Node.js >= 22.12.0.

Install

Mac:

curl -fsSL https://vibepaper-ai.com/cli/install.sh | bash

Linux:

curl -fsSL https://vibepaper-ai.com/cli/install.sh | bash

Windows:

irm https://vibepaper-ai.com/cli/install.ps1 | iex

Optional npm (requires Node.js >= 22.12.0):

npm i -g @vibepaper/cli

Monorepo local dev:

pnpm --filter @vibepaper/cli build
cd packages/cli && npm link

Agent setup (recommended)

Copy to Codex / Claude Code / Cursor terminal agent:

Set up VibePaper for me so I can generate and edit images, video, audio, and text, and work on an existing canvas from here. Do not use npm. Do not change the global Node.js install.

1. Install the CLI. Pick the command for this computer:
   - Mac: `curl -fsSL https://vibepaper-ai.com/cli/install.sh | bash`
   - Linux: `curl -fsSL https://vibepaper-ai.com/cli/install.sh | bash`
   - Windows: `irm https://vibepaper-ai.com/cli/install.ps1 | iex`
2. Authenticate: run `vibepaper auth login` and complete sign-in in the browser it opens.
3. Verify: run `vibepaper auth status`.

Once that's done, let me know when it's ready.

Web guide: vibepaper-ai.com/papermcp (CLI tab).

Standalone binaries: GitHub Releases (tag cli-v*). Optional npm: npm i -g @vibepaper/cli if you already have Node.js 22.12+.

Login

vibepaper auth login

Test API:

vibepaper auth login --api-base-url https://test-api.vibepaper-ai.com

Credentials: ~/.vibepaper/credentials.json

Common commands

vibepaper version
vibepaper auth status
vibepaper account status

vibepaper model list --kind image
vibepaper model get z-image-turbo

vibepaper upload ./photo.png --kind image
vibepaper asset list

vibepaper generate create z-image-turbo --prompt "a cat in watercolor" --yes --wait
vibepaper generate list --limit 20
vibepaper generate cancel <jobId>

vibepaper edit create --operation image_upscale --asset <assetId> --param resolution 2k --yes --wait
vibepaper job outputs <jobId>

vibepaper canvas connect --json
vibepaper canvas import <canvasId> ./photo.jpg --json

Add --json for machine-readable output.

Pagination

vibepaper generate list --cursor-created-at 2026-01-01T00:00:00.000Z --cursor-job-id <jobId>
vibepaper asset list --cursor-created-at 2026-01-01T00:00:00.000Z --cursor-asset-id <assetId>

Non-JSON list output prints the next-page flags on stderr when more results exist.

Exit codes

| Code | Meaning | |------|---------| | 0 | Success | | 1 | General error | | 2 | Auth required / expired | | 3 | Payment / insufficient points | | 4 | Forbidden | | 5 | Not found |

MCP

Browser agents (Cursor / ChatGPT / Claude web) should use PaperMCP OAuth — see vibepaper-ai.com/papermcp.

CLI is for terminal agents and local file paths.