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

manim-cli

v0.1.2

Published

Production-ready npm wrapper for Manim Community with agent workflows and multi-provider TTS

Readme

manim-cli

manim-cli is an npm-distributed wrapper for Manim Community Edition with:

  • Manim-compatible render commands
  • Agent-oriented pipeline commands for Codex/Claude Code
  • Local-first multi-provider TTS with Kokoro as the default provider
  • OpenAI cloud fallback and managed voice/profile configuration

Status

This repository contains:

  • the npm CLI
  • agent workflow and proposal gating
  • managed runtime bundle installation
  • local-first TTS orchestration
  • runtime packaging scripts and fixture tests

Managed Runtime

manim-cli is designed for a zero-manual-install setup flow on supported platforms:

  1. npm install -g manim-cli
  2. manim-cli setup
  3. manim-cli downloads and verifies a platform bootstrap bundle, then creates the managed runtime locally at its final install path

Supported runtime targets:

  • darwin-arm64
  • darwin-x64
  • linux-x64
  • linux-arm64
  • win32-x64

Important detail:

  • Manim Community no longer requires an external ffmpeg binary for rendering itself.
  • manim-cli still bundles ffmpeg and ffprobe because the CLI uses them for captions, muxing, and final composition.

Runtime bootstrap bundles are published as GitHub Release assets and referenced by the release-generated runtime/runtime-manifest.json. That file is intentionally empty in the repo until real platform assets are built and published. See runtime/README.md for the bootstrap-bundle format, provisioning commands, release asset naming, rollback policy, and clean-machine acceptance checklist.

GitHub automation

This repo ships with:

Setup required before these workflows will work:

  1. Add OPENAI_API_KEY to GitHub Actions secrets
  2. Optionally add a repository variable OPENAI_REVIEW_MODEL
  3. Re-run the workflow

These workflows use the OpenAI Responses API and default to gpt-5-codex, which OpenAI documents as a coding-optimized model available in the Responses API. OpenAI also documents Codex SDK/API use in CI/CD contexts and shows Responses API examples that read OPENAI_API_KEY from the environment: Code generation guide, GPT-5-Codex model, API libraries/auth setup.