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

brandpreflight

v0.2.0

Published

Deterministic scoring and signed reports for agent-led sponsored-video reviews.

Readme

BrandPreflight

BrandPreflight is the scoring and report layer for sponsored-video reviews. Your agent uses the portable /watch skill to understand the video, then BrandPreflight validates the evidence, calculates the score, and saves a signed report.

Start from the website

Open brandpreflight.vercel.app, copy the setup prompt, and paste it into your agent. It tells the agent to install these two GitHub skills:

npx skills add mastercoder26/ytautomation -g
npx skills add bradautomates/claude-video -g

The first skill is BrandPreflight; the second is the maintained video-watching skill. There is no Codex plugin, marketplace entry, MCP registration, Docker image, or separate local video model to configure.

Install the report CLI when the agent asks, or do it yourself:

npm install -g brandpreflight

/watch manages its own first-use media prerequisites such as FFmpeg, captions, and optional transcription. Follow its prompts when it asks for permission to install a system dependency.

Review a sponsored video

Attach a campaign PDF and finished video, then say:

Use BrandPreflight to review this sponsored video against the attached campaign brief.

The skill runs /watch for the video and uses this small CLI handoff internally:

brandpreflight review --brief campaign.pdf --video sponsored-video.mp4
# The agent writes its required findings JSON to findings.json.
brandpreflight score --review bp-review-8F3K --input findings.json
brandpreflight open bp-7XQ4M2

The agent supplies observations only. BrandPreflight rejects invalid findings, calculates the deterministic 0–100 score itself, and saves a signed report. You never need to create campaign JSON, artifact IDs, approval-token files, or review-context JSON.

What it checks

  • Campaign requirements extracted from the brief
  • Transcript, captions, frames, branding, disclosures, claims, and calls to action observed by /watch
  • Versioned evidence with requirement IDs, timestamps, sources, and confidence
  • Required-item failures and practical recommended edits
  • A browser report with the final score, verdict, and limitations

Raw media stays with the agent and /watch unless you explicitly choose otherwise. BrandPreflight stores only the local review session and signed report needed for scoring.

Development

npm install
npm run check
npm run package:check

MIT License.