agentsclimarketplace

Clip feedback

Skill LuisHiluy/claude-code-pipeline-skills/clip-feedback

Analyze an AI-generated video clip against the prompt that produced it. Detects canon rule violations, emotion/energy/world mismatches, palette drift, and quality issues, then suggests specific prompt fixes to improve the next generation. Use whenever the user has a Veo, Seedance, Kling, Runway, or other AI-generated clip and asks "why does this look wrong", "check the clip", "check this clip", "prompt feedback", "analyze this clip", "compare clip to prompt", or anytime a video was generated from a prompt and needs iteration. Trigger this skill even when the user casually asks "is this good" about an AI clip — prompt vs reality analysis is the job.From its SKILL.md

Install
npx -y skills add LuisHiluy/claude-code-pipeline-skills --skill clip-feedback

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.5 KB, 730 tokens by cl100k_base, as published. Nobody here has run it

Clip Feedback — Prompt Intent vs Reality

What this does

Takes a video clip plus the prompt that generated it, analyzes what the clip actually looks like (via Gemini 2.5 Pro), and returns:

  • Rule violations — character names in prompt, 4th wall breaks, missing focal length, safety trigger stacking
  • Intent gaps — emotion mismatch, world palette drift, shot type wrong, energy level off
  • Quality issues — text overlays, CGI artifacts, motion blur, missing face
  • Specific prompt fixes — exact corrections to improve the next generation

Usage

Quick rule check (no API call — instant)

python3 scripts/prompt_feedback.py \
  --clip /path/to/clip.mp4 \
  --prompt "the generation prompt used" \
  --rules-only

Full analysis (calls Gemini 2.5 Pro — ~10s)

python3 scripts/prompt_feedback.py \
  --clip /path/to/clip.mp4 \
  --prompt "the generation prompt used" \
  --source veo

Supported sources: veo, seedance, kling, runway, or any label.

From a prompt file

python3 scripts/prompt_feedback.py \
  --clip /path/to/clip.mp4 \
  --prompt-file /path/to/prompt.txt \
  --source seedance

JSON output (for piping to other tools)

python3 scripts/prompt_feedback.py \
  --clip /path/to/clip.mp4 \
  --prompt "..." \
  --json

When the user says "check the clip"

  1. Ask which clip (path) if not obvious from context
  2. Ask for or find the prompt that generated it
  3. Run --rules-only first for instant feedback
  4. If the user wants deeper analysis, run the full version
  5. Present the feedback summary and suggested fixes
  6. Offer to apply the fixes and regenerate

What it checks (canonical rules)

RuleWhat it catches
No character names"Jane" → should be "the daughter"
No 4th wall"looking at camera" → eyeline off-camera
No resolution text"2K" in prompt → handled by tool settings
No music/dialogue"music" in prompt → add to avoid line
Safety stacking3+ trigger words in one sentence → split
Focal length requiredMissing "85mm, f/1.4" → add lens spec
Material descriptorsNo textures → add tactile nouns
World palettePalette drift → strengthen palette direction
Emotion matchPrompt says "dread", clip reads "calm" → add atmosphere cues
Quality flagsText overlays, CGI glow, motion blur → add negative prompts

Configuration

Configure your canonical rules in reference/prompt-rules.md. Each rule gets:

  • A pattern (regex or keyword list) to detect violations in prompts
  • A fix template (the correction to suggest)
  • A severity (block / warn / info)

Dependencies

  • Python 3.10+
  • google-generativeai for Gemini analysis
  • ffmpeg on PATH for frame extraction

Setup

pip install google-generativeai pillow
export GEMINI_API_KEY=your_key_here

What ships with it: 2 files

7.6 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 326,851. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.