Video Prompting Skill banner
Square-Zero-Labs Square-Zero-Labs

Video Prompting Skill

Development community intermediate

Description

This is an Agent Skill for drafting and refining prompts for video generation models (text-to-video and image-to-video), including LTX-2, LTX-2.3, Sora, Veo 3/3.1, Wan 2.2, and Ovi.

Installation

Terminal
claude install-skill https://github.com/Square-Zero-Labs/video-prompting-skill

README

Video Prompting (Agent Skill)

This is an Agent Skill for drafting and refining prompts for video generation models (text-to-video and image-to-video), including LTX-2, LTX-2.3, Sora, Veo 3/3.1, Wan 2.2, and Ovi.

It follows the Agent Skills spec (agentskills.io).

Tutorial

Agent Skills walkthrough and demo of this skill:

[](https://youtu.be/6T7OCqBQhSc)

Contents

    undefined

Install

Claude

In Claude, install the skill using whichever format your Claude product prompts for:

    undefined

Codex

Codex loads skills from skill directories (user-scoped or repo-scoped). Pick one:

    undefined

To install user-scoped:

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

Restart Codex so it re-scans skills.

Build (`.skill` file)

The `.skill` file is just a zip archive of the skill folder (useful for Claude import/sharing). Codex does not require a `.skill` bundle.

To generate the `.skill` zip file:

cd video-prompting-skill
mkdir -p dist
rm -f dist/video-prompting.skill
zip -r dist/video-prompting.skill video-prompting -x '**/.DS_Store'