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

@plotset/video-cli

v0.1.0

Published

PlotSet video CLI — create, preview and render data videos from the command line (built for AI agents)

Readme

@plotset/video-cli

Create data videos (bar chart races, race lines, animated maps and more) from the command line, rendered by PlotSet. Built for AI agents: JSON output when piped, typed error codes, machine-readable schemas, no interactive prompts.

Install

npm install -g @plotset/video-cli
plotset-video auth login   # opens your browser to confirm — no token copy-paste

Headless environment (CI, containers, no display)? Skip auth login and set PLOTSET_VIDEO_TOKEN, or run plotset-video auth set-token <token> with a token from your account's CLI settings.

Using Claude Code (or another AI agent)? Install the bundled agent skill and let the agent drive the whole workflow:

plotset-video skill install

Quick start

plotset-video templates                          # 8 template types
plotset-video init my-video --template racebar   # scaffold project.json + sample data
# put your data in my-video/data/layer-1.csv, tweak my-video/project.json
plotset-video validate my-video                  # config + CSV checks (schema-exact)
plotset-video preview my-video --at 0.5          # server-rendered frame → previews/*.jpg
plotset-video render my-video                    # submit → {"taskId": "..."}
plotset-video status <taskId>                    # poll until completed
# → your video: https://plotset.com/panel/video-render

A project is a plain directory: project.json (title, fps/resolution/quality, layers with per-layer config + CSV path), data/*.csv, previews/. Everything is editable with any editor; plotset-video template schema <type> prints every valid config path with types, defaults, enums and theme palettes.

Why agents like it

  • --output json / auto-JSON when piped; NDJSON lists; --fields masks
  • Errors: {"error":true,"code":"VALIDATION_FAILED","message":...} + exit-code families
  • validate runs the renderer's own CSV parsers — what passes locally renders remotely
  • render --dry-run gate before spending render quota
  • Unknown config keys fail fast with did-you-mean suggestions

Full command reference ships with the skill: plotset-video skill install, or read assets/skill/reference.md in this package.

Requirements

Node ≥ 20. A PlotSet account.