Agent skill
suede-video
Suede-owned marketing video planning and production discipline.
From JasonColapietro/suede-creator-skills · 79 skills · 135 · pushed 2026-09-13
What it does when it runs
Suede-owned marketing video planning and production discipline. Use when choosing a format, scripting, storyboarding, generating, editing, reverse-engineering pacing, building a repeatable video pipeline, or repurposing one source into multiple cuts. NOT FOR: deciding the social calendar (use suede-social), paid ad concepts (use suede-ad-creative), image-only assets (use suede-image), or publishing unapproved media.
Read from the skill and the 6 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.
- Keys and connectors you must supply
- None found.
- Hosts it reaches
- docs.nvidia.com
- skills.suedeai.ai
- Tool permissions it declares
- No
allowed-toolsin the frontmatter. It does act, so it runs under whatever permissions your session already grants. - Actions present in the files
- shell
Install it
View source on GitHub ↗git clone --depth 1 --filter=blob:none --sparse https://github.com/JasonColapietro/suede-creator-skills.git /tmp/suede-creator-skills git -C /tmp/suede-creator-skills sparse-checkout set "skills/suede-video" mkdir -p ~/.claude/skills/suede-video cp -R "/tmp/suede-creator-skills/skills/suede-video/." ~/.claude/skills/suede-video/
Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗
Or take the whole library
This repo ships a .claude-plugin manifest, so Claude Code can install all 79 skills at once. Plugin skills are invoked as /<plugin>:<skill>, so they never collide with your own.
/plugin marketplace add JasonColapietro/suede-creator-skills /plugin
The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.
The skill
Source on GitHub ↗Reproduced in full from JasonColapietro/suede-creator-skills/blob/5c61ad997adb202d505a7e46eaf39dcd51edbdc5/skills/suede-video/SKILL.md, which is licensed MIT (repository). 2,256 words, 36 headings.
Suede Video Production
Suede Video turns an approved message and rights-cleared source material into scripts, storyboards, generation plans, edit systems, and reusable production pipelines. It keeps likeness, licensing, brand assets, render cost, and publishing as explicit gates rather than assumptions.
Before Starting
Check for product marketing context first:
If .agents/product-marketing.md exists (or .claude/product-marketing.md, or the legacy product-marketing-context.md filename, in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
Gather this context (ask if not provided):
1. Video Goal
- What type of video? (Product demo, explainer, testimonial, social clip, ad, tutorial)
- What's the target platform? (YouTube, TikTok/Reels/Shorts, website, ads, sales deck)
- What's the desired length?
2. Production Approach
- Do you need a human presenter? (AI avatar vs. voiceover vs. screen recording)
- Do you have existing footage or assets? (Screenshots, logos, product UI)
- Do you need generated footage? (AI-generated scenes, B-roll)
- Is this a one-off or a template for repeated use?
3. Technical Context
- What's your tech stack? (Node.js, Python, etc.)
- Do you have API keys for any video tools?
- Budget constraints? (Some tools charge per minute of video)
Choosing Your Approach
Choose the production method from the job, available evidence, rights, and currently callable tools:
| Approach | Candidate fit | Tools to evaluate | Use when |
|---|---|---|---|
| Programmatic | Templated, data-driven, batch video | An installed HTML/CSS or React renderer | The format repeats and deterministic output matters |
| AI generation | Original footage from text/image prompts | Any currently authorized generation model | The scene cannot be filmed practically and output rights are verified |
| AI avatars | Approved presenter without filming | Any currently authorized avatar platform | Consent, likeness, voice, localization, and output rights are documented |
| Editing/repurposing | Cutting long-form into short clips | Any installed transcript or timeline editor | Source media and derivative-use rights are available |
Programmatic Video
Programmatic video is a candidate for repeatable, templated, or data-driven work; verify fit against the current stack, edit needs, cost, and review burden.
HTML/CSS renderer candidate
Hyperframes may fit an HTML/CSS workflow. First check whether it is installed. If it is, read the installed version's documentation, inspect its license, and confirm the renderer and export path. If it is not installed, use a renderer-neutral handoff or request explicit installation authorization after showing the current package source, version, lockfile impact, and cost. The following command must not run without that authorization:
npm install hyperframes
Key concept: Each frame is an HTML document. Compose frames into a timeline, render to MP4.
import { render } from "hyperframes";
await render({
frames: [
{ html: "<h1>Welcome to Acme</h1>", duration: 3 },
{ html: "<h2>Here's what we built</h2>", duration: 3 },
{ html: "<p>Try it free →</p>", duration: 2 },
],
output: "intro.mp4",
width: 1080,
height: 1920, // 9:16 for vertical
});
Candidate fit: Product announcements, changelogs, data-driven reports, and approved personalized outreach videos. Verify determinism with a repeat-render test instead of assuming it.
React renderer candidate
Remotion may fit a React-based workflow. Verify the installed or callable version, current documentation, license, rendering path, and hosting cost. The scaffold command may install packages or create files; run it only with explicit authorization for that change, otherwise provide a renderer-neutral plan:
npx create-video@latest
Key concept to verify: React components express timed visuals and props drive content. Confirm whether rendering is local or uses an authorized hosted renderer.
Read references/programmatic-renderers.md when the repo already uses React, or when the choice between the HTML/CSS and React paths has to be justified — it carries the React component sample and the renderer selection table.
AI Video Generation
Generate original footage from text or image prompts. Use for B-roll, hero visuals, and scenes you can't practically film.
Model comparison
Discover currently callable and authorized models before recommending one. Read current official documentation and run a bounded test on the actual account. Compare:
| Criterion | Evidence to capture |
|---|---|
| Output fit | Resolution, duration, audio, motion, and consistency from current docs plus a test clip |
| Control | Reference-image, camera, edit, seed, and storyboard controls actually exposed |
| Operations | Queue time, failure rate, export path, and repeatability |
| Rights | Input rights, output rights, model restrictions, consent, and provenance |
| Economics | Current plan, per-generation cost, failed-generation treatment, and budget cap |
If no model is callable and authorized, return a shot list, prompt set, reference-frame brief, and manual vendor-evaluation checklist.
Prompting for Video Models
Good video prompts specify: subject + action + camera + style + mood
A close-up shot of hands typing on a laptop keyboard,
shallow depth of field, warm office lighting,
camera slowly pulls back to reveal a modern workspace,
cinematic color grading, 4K
Common mistakes:
- Too vague ("a person working") — add specifics
- Ignoring camera movement — specify dolly, pan, static
- Forgetting style — "cinematic," "documentary," "commercial"
- Requesting text in video — AI models struggle with readable text
For detailed prompting guides: See references/ai-video-prompting.md
AI Generation vs. Stock Evaluation
| Use Case | Generation evidence to test | Stock/original evidence to test |
|---|---|---|
| Specific scene | Prompt control, continuity, review burden | Search coverage, license, edit fit |
| Style continuity | Cross-clip consistency in a bounded test | Match quality across licensed clips |
| Real location | Factual accuracy and disclosure risk | Provenance and location release |
| Product/brand | UI and mark fidelity; avoid fabricated product claims | Approved real captures or assets |
| B-roll | Queue time, failure rate, cost | Search and licensing time |
AI Avatars
Create talking-head videos without filming. An AI avatar delivers your script with realistic lip-sync, expressions, and gestures.
Avatar tool evaluation
HeyGen is one possible avatar platform, not a guaranteed or preferred integration. Before naming it or another vendor, verify current official documentation, authenticated access, callable API or connector availability, plan limits, price, output rights, body-motion and script-ingestion controls, localization and export requirements, and the consent requirements for every voice or likeness involved.
If no avatar tool is currently callable and authorized, provide a manual vendor-neutral workflow: approved script, consent record, user-operated upload, export checklist, and a real-camera or voiceover fallback.
Possible fit to test: product explainers, feature announcements, multilingual versions, and approved personalized outreach.
Avatar vs. Other-Approach Test
| Scenario | Avatar evidence to verify | Alternative to compare |
|---|---|---|
| Recurring content | Consent, repeatability, audience response | Recorded presenter or voiceover |
| Multilingual versions | Translation, pronunciation, disclosure | Human localization |
| Personalized outreach | Consent, claim review, cost, reply quality | Approved text or recorded template |
| Founder message | Trust and disclosure response | Direct recording |
| Product UI walkthrough | Presenter value around real captures | Screen recording |
| Creative/artistic video | Control, originality, rights | Original footage or generated scenes |
Editing & Repurposing Tools
Turn existing content into multiple video formats.
Treat the named products as candidates. Discover what is currently installed or callable, verify the user's account and rights, then map the workflow to the available tool. If none is available, return an edit decision list, clip timestamps, captions, and export settings for manual execution.
| Candidate capability | What to verify | Candidate fit |
|---|---|---|
| Transcript editor | Speaker accuracy, cut control, export, privacy | Interviews, podcasts, webinars |
| Clip assistant | Selection controls, provenance, false-positive rate | Long-form to short-form review |
| Timeline editor | Caption, effect, audio-rights, and export controls | Platform-specific finishing |
| Accessibility assistant | Caption accuracy, eye-contact disclosure, dubbing consent | Approved talking-head content |
Repurposing Workflow
Long-form content (podcast, webinar, demo)
↓
Transcript edit: Clean up, remove filler, polish
↓
Clip review: Propose moments with source timestamps
↓
Timeline edit: Add reviewed captions, effects, and platform styling
↓
Distribute: TikTok, Reels, Shorts, LinkedIn
Reverse-Engineer a Viral Edit
To study the style of a reference edit, first discover whether an authorized media-inspection, browser, or local-file viewer is currently callable. If one is available, inspect the actual frames and timing. Otherwise ask the user to attach the media, screenshots, or a timecoded export and provide a manual frame-sampling checklist. Then extract a reusable beat sheet plus the 3–5 signature moves. Review it before execution in any currently available editor. Copy the editing grammar, never the reference's footage, script, voice, or music. Full method: references/edit-anatomy.md.
Video Production Workflows
Product Demo Video
- Script the key features and value props (use suede-copy skill)
- Screen record the product flow
- Programmatic overlay — use an available authorized renderer for titles, callouts, and transitions, or provide manual editor instructions
- AI B-roll — only with a discovered authorized generator and verified rights; otherwise use licensed stock or original footage
- Voiceover — record yourself or use AI avatar for narration
- Export at platform-appropriate specs
Explainer Video
- Script the problem → solution → CTA arc
- Choose presenter — an approved avatar workflow when available, or recorded voiceover plus visuals
- Build visuals — programmatic slides, screen recordings, AI-generated scenes
- Add captions as an accessibility default and verify their accuracy
- Export only after checking current destination requirements and previewing the authenticated composer; do not assume a universal orientation
Batch Social Clips
- Create master template in an available authorized renderer or a manual editor project
- Feed data — product features, testimonials, stats
- Render batch — one template, many variations
- Add platform-specific captions with an available editor
- Return approved export candidates to
suede-socialfor channel strategy; scheduling remains a separate explicit action
Tool-Aware Video Pipeline
Use automation only after discovering currently callable, authenticated, and authorized tools. Otherwise produce the same artifacts as a manual handoff.
Approved script (from product context)
↓
Available renderer/avatar/generator, if authorized
or manual editor with timecoded instructions
↓
Review cut, rights, captions, and brand assets
↓
Output: Approved export candidate, not automatically published
When no production tool is available, return the script, shot list, asset manifest, beat sheet, captions, edit decision list, and export settings so the user can execute the cut manually, in these exact headings:
## Script
<scene or beat> | on-camera or VO line | duration target
## Shot List
Shot # | source (screen capture / owned footage / licensed / generated) | framing | notes
## Asset Manifest
Asset | origin | rights basis and holder | expiry or attribution required | file path
## Beat Sheet
Use the row schema in references/edit-anatomy.md (Beat | Time | Shot |
On-screen text | Caption style | Transition/motion | Audio) plus its style
summary. Do not invent a second beat-sheet format.
## Captions
Full caption text with timecodes; state the accuracy check performed.
## Edit Decision List
Clip # | source file | in TC | out TC | placement | transition | audio bed
## Export Settings
Destination | ratio | resolution | frame rate | codec | max duration | verified
against (current spec source + date)
## Open Gates
<missing rights, consent, cost approval, or brand asset; use the halt contract>
For the beat sheet and its style summary, read references/edit-anatomy.md before writing the handoff — it owns that row schema.
Common Mistakes
- Starting with tools, not strategy — decide what video you need before picking tools
- AI-generated text in video — models can't reliably render readable text; use programmatic overlays instead
- Unverified avatar quality — test a short consented sample before paying for or producing a batch
- Inaccessible cut — provide accurate captions without asserting a universal sound-off viewing rate
- Unverified export spec — read current destination requirements and preview the actual composer before choosing ratio, resolution, or duration
- Unsupported production-style claim — compare polished and informal treatments on the current account instead of claiming one universally wins
Halt Contract
Use this exact format when tool authorization, cost approval, rights, consent, or an approved brand asset blocks the requested result — including the install and scaffold gates above and the brand-mark gate in Boundaries:
HALT — <one-line blocker>
Why it blocks: <specific missing authority or evidence>
Resolve with:
1. <option>
2. <option>
3. <option, when useful>
Waiting for: <the exact item or approval>
Continue with the manual-handoff artifacts above only when they remain useful and do not imply the blocker was resolved or that a render occurred.
Boundaries
- Do not generate, render, purchase, upload, or publish media without approval of scope, tool cost, rights, and destination.
- Do not clone a real person's voice or likeness, use unlicensed source media, or promise an exact copy of a reference style or edit.
- For Suede-branded visuals, use only the approved transparent Suede S asset at
JasonColapietro/suede-creator-skills/docs/assets/suede-ai-logo-transparent.pngwith SHA-25683a7ee0317e4debe2e7b076c20ba067feb76a587f9e829dc6310ae4be4b44dfa; if it is missing or changed, omit the mark and halt for the approved file.
Routing
- Use
suede-socialto choose channel strategy, cadence, and distribution. - Use
suede-ad-creativefor paid video ad concepts and variants. - Use
suede-imagefor still-image generation and editing. - Use
suede-copyfor source-verified script and messaging polish.
Files bundled with it
These load only when the skill asks for them, so they cost nothing until it runs.
Other skills for the same job
Different authors, same problem. Matched on the words in the skill name, across every library in the catalogue except this one.
- video by coreyhaines31 · 50,138
- Agentic video understanding by ericosiu · 3,528
- show-and-tell-video-slate by ericosiu · 3,528
- video-analysis by ericosiu · 3,528
- video-content-engine by ericosiu · 3,528
- video-ad-analysis by OpenClaudia · 691
- hyperframes-product-launch-video by Varnan-Tech · 645
- video-outreach by chadboyda · 77
Need help setting it up?
This page tells you what suede-video does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.
Book a call →The directory stays free. There is nothing gated behind this.