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

@clipy/cli

v0.1.0

Published

Command-line interface for Clipy — list, search, and read your screen recordings' transcripts, AI summaries, and key moments from the terminal.

Readme

@clipy/cli

The Clipy command line. List, search, and read your screen recordings — transcripts, AI summaries, key moments — from the terminal, download the MP4s, or export subtitles. No browser needed.

Clipy is a free screen recorder (Chrome extension and Mac app, plus a web recorder) that gives every recording an instant share link, an AI transcript and summary, and agent-readable context — so both humans and AI agents can act on what was recorded. This package is its terminal client.

It is read-only: it can never create, edit, or delete your recordings.

npx @clipy/cli list          # or: npm i -g @clipy/cli && clipy list

Setup

  1. Create a free API key at https://clipy.online/settings/api-keys (it looks like clipy_sk_live_…). Copy it — it's shown only once.
  2. Log in (stores the key in ~/.config/clipy/config.json, mode 0600):
clipy login

Or skip the stored login entirely and set CLIPY_API_KEY in your environment.

Commands

clipy list [-n 20] [--page 2] [--status ready,processing] [--json]
clipy search <query>                 # full-text search titles + descriptions
clipy show <id|share-url>            # metadata + share link
clipy transcript <id> [--srt|--vtt]  # plaintext, or export subtitles
clipy summary <id>                   # TL;DR, key points, action items
clipy moments <id>                   # key moments: timestamps, captions, click coords
clipy context <id>                   # the full agent-context bundle as markdown
clipy download <id> [-o out.mp4]     # download the MP4
clipy open <id>                      # open the share page in your browser
clipy wait <id> --for both           # block until transcript/summary are ready
clipy mcp                            # run the Clipy MCP server (npx -y @clipy/mcp)

Every recording-reading command accepts either the bare public id (3kelcef8wo8h) or the full share URL (https://clipy.online/video/3kelcef8wo8h).

Scripting

--json prints the raw API response for list, search, show, transcript, summary, moments, and wait:

# Newest recording's id
clipy list -n 1 --json | jq -r '.recordings[0].id'

# Export subtitles for a recording
clipy transcript 3kelcef8wo8h --srt > recording.srt

# Record with anything, then block until Clipy finished transcribing
clipy wait 3kelcef8wo8h --for both && clipy summary 3kelcef8wo8h

Exit codes: 0 ok · 1 error · 2 usage · 3 artifact not ready yet.

Configuration

| Setting | Flag | Env | Stored (via clipy login) | | -------- | ----------- | --------------- | ------------------------------ | | API key | --key | CLIPY_API_KEY | ~/.config/clipy/config.json | | API base | --api-url | CLIPY_API_URL | ~/.config/clipy/config.json |

Precedence: flag → env → stored config.

For AI agents

If you're wiring Clipy into an MCP-capable agent (Claude Code, Cursor, Codex, …), use the @clipy/mcp server instead — same API, but with agent-native tools and inline key-moment frames (source · setup docs). clipy mcp is a shortcut that runs it.

Also: every public Clipy watch link is agent-readable without any install — append .md to it (https://clipy.online/video/<id>.md) and it serves a markdown context document with the summary, key moments, and transcript. Details at clipy.online/for-agents.

Links

License

MIT © Codersera