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

stereoframe

v0.2.60

Published

Deterministic GLB evaluation and 3D video on three.js — inspect, compare, validate, and render assets built for AI agents.

Downloads

10,180

Readme

stereoframe

npm license: MIT

CI for generated 3D assets — inspect, score, compare, and render GLBs as reproducible evidence.

npx stereoframe evaluate meshy.glb rodin.glb tripo.glb --frames --render
# → quality reports, comparison frames, a standardized MP4, and REPORT.md

AI 3D generation is useful, but output quality varies wildly. stereoframe treats generated GLBs as candidate assets to evaluate, not guaranteed finished products: inspect geometry, flag defects, compare providers/models under one rig, capture evidence frames, and render reproducible previews. Once an asset is accepted, the same deterministic runtime can stage it into spec sheets, teardown explainers, or custom 3D video.

<sf-scene environment="room" background="#0b0f17" ground="contact-shadow" light-sweep="0.1">
  <sf-camera fov="33" position="0 1 5" look-at="#product"></sf-camera>
  <sf-model id="product" src="assets/helmet.glb" fit="2.6" fit-ground></sf-model>
  <sf-light preset="studio"></sf-light>
  <sf-animate target="#product" verb="turntable" rpm="5"></sf-animate>
  <sf-animate target="camera" verb="orbit" around="#product" from="0deg" to="35deg"
              duration="8" ease="sine.inOut"></sf-animate>
</sf-scene>

Commands

stereoframe evaluate <a.glb> [b.glb…]           # quality reports + comparison scene/frames/video
stereoframe evaluate <model.glb> --audit        # animated GLB audit report + parts evidence
stereoframe stage <model.glb> --preset <name>   # stage an accepted GLB into a preview/film
stereoframe inspect <model.glb>                 # segment + tag a GLB's parts (name/material/where/size)
stereoframe gen "<prompt>"                       # labs: text/image-to-3D candidate GLB
stereoframe init <name>                          # scaffold a project
stereoframe lint | validate                      # static + headless verification
stereoframe render [--draft]                     # → renders/render_<ts>.mp4
stereoframe frame --t <s>                         # one frame → PNG (inspect a moment without a full render)
stereoframe preview                              # looping playback in the browser

Evaluate candidates with evaluate: one or more generated/production GLBs → reports/summary.json, per-asset *.quality.json, REPORT.md, a standardized index.html, optional frames/, and optional renders/evaluation.mp4. For one GLB, add --audit to generate report.html, reports/parts.json, part-isolation/exploded-view evidence when the asset is separable, evidence timestamps for selected-part thumbnails, honest single-mesh limitation warnings when it is not, and optional renders/report.mp4.

Generate candidate assets with gen: text-to-3D, --image/--images for image-to-3D, or --via-image (text → reference image → 3D). Defaults to Meshy (free test mode; set MESHY_API_KEY for real generations); --provider fal routes any fal.ai 3D model instead (Tripo, Hyper3D/Rodin, Hunyuan3D…) via FAL_KEY + --fal-model. Generated GLBs should be inspected/evaluated before you rely on them.

Presets: reveal (dramatic spiral-in), hero-orbit (clean studio orbit), turntable (pedestal), exploded-view (parts fly apart), spec (grounded preview with auto-placed material callouts), teardown (exploded breakdown with a tracked label on each part), cinematic (multi-shot reveal/macro/hero preview). stage auto-frames the model, so a fixed preset frames any accepted GLB consistently — then hand-edit the generated index.html to taste.

How it works

Every frame is a pure function of t = frame / fps: the CLI drives window.__stereoframe.seek(t) in headless Chrome and screenshots each frame into ffmpeg. No wall clock, no accumulated state — random-access seekable within a render. inspect reads a GLB through the real runtime so reported part names/indices match exactly what isolate/explode/sf-callout target.

Requires Node ≥ 20 and ffmpeg.

Full documentation

See the GitHub repository — markup spec (docs/format.md), the agent authoring guide (SKILL.md), and runnable examples.

License

MIT.