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

agi-ruby-ai-video-skills

v0.1.2

Published

Reusable Codex and Claude Code video skills with an npx installer.

Readme

AI Video Skills for GPT image 2 and Seedance 2

Reusable Codex skills for storyboard-driven video prompting, Seedance workflows, and cinematic previs.

This repository packages two practical skills for AI-native video creation:

  • turn an idea into a storyboard -> video prompt pipeline
  • turn emotional motion ideas into structured cinematic previs output

Why This Repo Exists

A lot of video prompting breaks down in one of two ways:

  1. the prompt is too vague, so the model invents its own pacing and shot order
  2. the prompt is too specific, but not structured enough to be reused

These skills try to solve that by turning video ideation into reusable systems instead of one-off prompt blobs.

Included Skills

storyboard-to-seedance-video

Path:

Use this when you want a two-stage workflow:

  1. generate a GPT Image 2 storyboard prompt
  2. generate a Seedance 2.0 video prompt that executes the storyboard

It also includes:

  • prompt templates
  • prompt filling guide
  • output format reference
  • X/Twitter promo post format
  • X/Twitter promo post generation guide
  • a concrete kung fu example as a reference case
  • built-in example usage patterns in the skill file

Best for:

  • action videos
  • branded motion concepts
  • creator workflows that need storyboard-first control
  • repeatable image reference + storyboard reference + video prompt pipelines

Example usage:

romantic-ink-cinema-previs

Path:

Use this when the goal is not literal plot description, but emotional motion design.

It helps convert relationship feeling into:

  • camera choreography
  • body rhythm
  • energy interaction
  • spatial tension
  • negative-space pacing

Best for:

  • romantic motion prompts
  • poetic image-to-video concepts
  • shot-by-shot emotional beat breakdowns
  • stylized previs with ink light, halos, drifting particles, or soft energy systems

Example usage:

Repository Structure

ai-video-skills/
├── README.md
├── .gitignore
└── skills/
    ├── romantic-ink-cinema-previs/
    │   ├── SKILL.md
    │   ├── agents/
    │   └── references/
    └── storyboard-to-seedance-video/
        ├── SKILL.md
        ├── agents/
        └── references/

Install

Install with npx

After this package is published to npm, install with the package name directly.

Install all bundled skills into Codex:

npx agi-ruby-ai-video-skills install --target codex

Install all bundled skills into Claude Code:

npx agi-ruby-ai-video-skills install --target cc

Upgrade all bundled skills in Codex:

npx agi-ruby-ai-video-skills upgrade --target codex

Upgrade a single installed skill:

npx agi-ruby-ai-video-skills upgrade --target cc --skill storyboard-to-seedance-video

Install only one skill:

npx agi-ruby-ai-video-skills install --target codex --skill storyboard-to-seedance-video

Overwrite an existing installation:

npx agi-ruby-ai-video-skills install --target codex --force

Check installation health:

npx agi-ruby-ai-video-skills doctor --target codex

Uninstall one skill:

npx agi-ruby-ai-video-skills uninstall --target codex --skill romantic-ink-cinema-previs

Install from GitHub before npm publish

If the package has not been published yet, you can still run it straight from GitHub:

npx "github:AGI-Ruby/ai-GPT_Image2-Seedance_2.0-video-skills" install --target codex

Manual install

If you prefer, you can still copy one or both skill folders into your local Codex-compatible skills directory.

Common locations:

  • ~/.agents/skills/
  • ~/.codex/skills/
  • ~/.claude/skills/

Example:

cp -R "./skills/storyboard-to-seedance-video" "~/.agents/skills/"
cp -R "./skills/romantic-ink-cinema-previs" "~/.agents/skills/"

How To Use

After installation, call the skill by name in your prompt.

Example prompts:

Use storyboard-to-seedance-video.
I have a character image, a rough action concept, and a desired ending frame.
Generate:
1. a GPT Image 2 storyboard prompt
2. a Seedance 2.0 video prompt
3. short workflow notes
Use romantic-ink-cinema-previs.
Turn this 12-second emotional scene into a timed cinematic beat breakdown.
Focus on camera choreography, body rhythm, and energy interaction.

Output Style

Depending on the request, these skills can produce:

  • reusable prompt templates
  • fully written prompts
  • beat-by-beat previs structures
  • workflow notes
  • X/Twitter promo post sets for sharing the result

Notes

  • This repo does not execute video generation APIs by itself.
  • It focuses on prompt systems, structure, and reusable creative workflows.
  • The bundled examples are references, not fixed defaults.

Local Development

If you update the repo locally and want to publish changes:

cd "/Users/sealos/Desktop/ai-video-skills"
npm test
git add .
git commit -m "update skill docs"
git push

Publish To npm

When you are ready to release the package:

cd "/Users/sealos/Desktop/ai-video-skills"
npm login
npm publish

Recommended release flow:

cd "/Users/sealos/Desktop/ai-video-skills"
npm version patch
git push --follow-tags
npm publish

Package name:

  • agi-ruby-ai-video-skills