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

codex-video-short-maker-skill

v0.1.0

Published

A Codex skill for turning local videos into short clips with optional local captions.

Readme

Codex Video Short Maker Skill

A Codex skill for turning local videos into short clips with optional local captions.

Give Codex a local video and it can remove dead air, cut pauses, export a vertical short, generate local Whisper subtitles, and burn captions into the final MP4.

What It Does

  • Turns local videos into 30-60s shorts
  • Removes dead air and boring pauses
  • Supports light, normal, and aggressive cut styles
  • Exports vertical 9:16 MP4 for Shorts/Reels/TikTok
  • Exports high quality H.264 MP4
  • Optionally generates local captions with whisper.cpp
  • No OpenAI API key required

Installation

Base install:

npx --yes codex-video-short-maker-skill@latest

Full install with local captions:

npx --yes codex-video-short-maker-skill@latest --with-captions

This installs the skill into:

~/.codex/skills/video-short-maker

Then restart Codex so it can discover the skill.

Captions Setup

Captions are optional. If you install with:

npx --yes codex-video-short-maker-skill@latest --with-captions

the installer will:

  • copy the skill into Codex
  • install whisper.cpp with Homebrew if missing
  • install Pillow if missing
  • download the default local Whisper model tiny.en

For multilingual captions, install a multilingual model:

npx --yes codex-video-short-maker-skill@latest --with-captions --caption-model base

Usage

After installation, restart Codex and run:

Use $video-short-maker to create a 30s vertical high quality short with English captions from /Users/me/Desktop/demo.mp4 using aggressive cut style.

Without captions:

Use $video-short-maker to create a 45s vertical short from /Users/me/Desktop/demo.mp4.

Italian captions:

Use $video-short-maker to create a 30s vertical high quality short with Italian captions from /Users/me/Desktop/demo.mp4.

Output

The skill creates files next to the input video:

demo.vertical.short.mp4
demo.vertical.short.srt
demo.vertical.short.captioned.mp4
demo.vertical.short.report.json

Cut Styles

  • light: softer cuts, preserves more pauses
  • normal: balanced default
  • aggressive: removes more pauses and dead air

Manual Installation

Clone the repository:

git clone https://github.com/Kappaemme-git/codex-video-short-maker-skill.git

Copy the skill into your Codex skills directory:

mkdir -p ~/.codex/skills
cp -R codex-video-short-maker-skill/video-short-maker ~/.codex/skills/video-short-maker

Restart Codex.

Requirements

  • ffmpeg and ffprobe
  • macOS + Homebrew for automatic local captions setup
  • whisper.cpp for captions
  • Pillow for burned-in captions

Base video cutting only requires ffmpeg.

License

MIT