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

gitreel

v0.1.0

Published

Turn your pull requests into movie trailers — narrated, fast-paced, agent-authored PR review videos.

Downloads

38

Readme

gitreel 🎬

Turn your pull requests into movie trailers.

gitreel makes narrated, fast-paced, Fireship-style review videos out of GitHub PRs: animated architecture diagrams, syntax-highlighted diff morphs, spotlit code close-ups, a local TTS narrator with opinions, and a verdict card at the end. Your coding agent writes the screenplay; gitreel renders the movie.

🎥 demo: gitreel reviewing zod#5898 — a prototype-pollution fix (video)

How it works

gitreel is two pieces:

  1. The gitreel CLI (this package) — the render engine. Remotion-based scene primitives, Kokoro-82M local TTS, synthesized music/SFX, and a workspace where episodes live. No cloud, no API keys: narration, rendering, everything runs on your machine.
  2. The gitreel agent skill — instructions that teach any coding agent (Claude Code, Cursor, Codex, opencode, …) to read a PR, write the screenplay (narration + scene composition), and drive the CLI. The agent is the writer-director; the CLI is the camera crew.

Install

# 1. the engine
npm i -g gitreel
gitreel doctor          # checks node ≥ 20, gh auth, render browser

# 2. the skill (via skills.sh, into your agent's skills)
npx skills add mohasarc/gitreel

Then, in your agent of choice, from any repo:

/gitreel 5898                       # short video for PR #5898
/gitreel 5898 long                  # full walkthrough
/gitreel 5898 --review review.md    # weave your review's findings into the video

The agent checks for the engine and installs it if missing — so honestly, step 2 alone works.

CLI

The skill drives these, but they're yours too:

gitreel new <id>                # scaffold an episode (episode.tsx + narration.json)
gitreel narrate <id>            # local TTS → per-scene WAVs + duration manifest
gitreel still <id> --frame 120  # render one frame (cheap visual check)
gitreel render <id> [--draft]   # render the MP4
gitreel preview <id>            # open Remotion Studio for live editing
gitreel where                   # print the workspace (default ~/gitreel, GITREEL_HOME to move)
gitreel doctor                  # environment checks

Episodes are plain TSX files in your workspace that import scene primitives from gitreel/engineTitleCard, DiagramScene, DiffMorph, CodeScene, TerminalScene, FileTreeScene, VerdictCard, and friends. The narration manifest drives scene durations, so audio and visuals never drift. Keep your workspace under git; episodes are re-renderable forever.

A complete real episode lives in examples/zod-5898/ — the screenplay behind the demo video above. To re-render it: cp -r examples/zod-5898 "$(gitreel where)/episodes/" && gitreel narrate zod-5898 && gitreel render zod-5898.

Licensing notes

  • gitreel is MIT.
  • Remotion (the render engine underneath) is source-available, not MIT: free for individuals and companies of up to 3 people; larger companies need a Remotion company license to render. You render locally, so you are the licensee — check your situation.
  • Kokoro-82M (the narrator) is Apache-2.0; the ~90MB model downloads from Hugging Face on first gitreel narrate.
  • Music and SFX are synthesized by scripts in this repo — no licensed assets anywhere.
  • Requires Node ≥ 20 and the gh CLI (authenticated) for PR fetching.