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

cueframe

v0.2.0

Published

Agent-native CLI for CueFrame — author compositions and render video from the terminal (early-access preview).

Readme

cueframe

Agent-native CLI for CueFrame — turn media into rendered video from the terminal. Every command speaks --json (an NDJSON event stream) and the binary self-describes via cueframe describe --json, so agents can drive it without guesswork.

Preview release. Early-access build for invited testers, connected to the hosted CueFrame service.

Install

npx cueframe@latest --help      # zero-install
# or
npm i -g cueframe               # global `cueframe`

Authenticate

cueframe auth <cf_live_… key>        # static API key (CI / headless)
# or
cueframe login                       # OAuth device flow (browser)

The key can also be supplied via the CUEFRAME_API_KEY environment variable.

Quick start — upload → author → render

# 1. Register media (video / image / audio)
cueframe upload ./source.mp4 --json              # → mediaItemId

# 2. Create a project (sets aspect / format)
cueframe project create -n promo -a 9:16 --json  # → projectId

# 3. Author the composition — tracks of clips, per-clip reframe/trim,
#    optional captions. The composition is the source of truth.
cueframe composition put <projectId> -b @composition.json

# 4. Render the saved composition to MP4 (queues, SSE-watches, downloads)
cueframe render <projectId> -o out.mp4 --json

render takes only a project id and renders whatever composition is saved on it — no clip suggestion required. Run cueframe describe --json for the full composition schema and every command + flag.

Let CueFrame pick the clip (podcast → short)

cueframe upload ./long.mp4 --analyze --json                 # media + AI clip suggestions
cueframe clips <mediaItemId> --json                         # list suggestions (sug_…)
cueframe project create -n short -a 9:16 --from-suggestion <sug_…> --json
cueframe render <projectId> -o short.mp4 --json

Both paths converge on render; the suggestion on-ramp just authors the composition for you instead of you hand-writing it.

Install the agent skill

Drop the usage skill into your agent so Claude Code / Cursor / Codex know how to drive the CLI:

cueframe install                     # → ~/.claude/skills/cueframe-cli

For agents

  • --json everywhere — NDJSON lifecycle: <verb>_prepare → <verb>_progress* → <verb>_complete | error, plus a non-zero exit on failure.
  • cueframe describe --json — the full command tree as structured JSON.
  • cueframe api <METHOD> <path> — raw escape hatch over the v1 API.

Common commands

| Need to… | Command | |---|---| | List projects | cueframe list | | Read a composition + ETag | cueframe composition get <projectId> --json | | Write a composition | cueframe composition put <projectId> -b @comp.json | | Export to Final Cut / Premiere | cueframe export fcpxml \| premiere <projectId> -s <sug_…> --wait -o cut.zip | | Validate without mutating | append --dry-run |


© CueFrame — preview release.