agentsclimarketplace

Qc clip

Skill jperrello/C0BALT_CUT/.claude/skills/qc-clip

Sanity-check a rendered short with ffprobe. Verifies duration is in range and file size is non-trivial. Pass/fail boolean plus a short reason. Use as a final gate before saving a render.From its SKILL.md

Install
npx -y skills add jperrello/C0BALT_CUT --skill qc-clip

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

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 2 stars2 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

0.8 KB, 186 tokens by cl100k_base, as published. Nobody here has run it

qc-clip

Lightweight sanity check. No quality metrics theatre.

Inputs

  • input: video path
  • min_duration (optional): default 15
  • max_duration (optional): default 90
  • min_size_kb (optional): default 100

Output

{
  "pass": true,
  "duration": 31.4,
  "size_kb": 4820,
  "reason": ""
}

On failure, pass: false and reason contains the first failing check (e.g. "duration 9.2s below min 15s").

How

  1. ffprobe -v error -show_entries format=duration,size -of json <in>
  2. Compare against thresholds.
  3. Print/return verdict JSON.

Status

Implemented — qc-clip.sh.

What ships with it: 1 file

1.1 KB alongside SKILL.md, 1 of them executable

Keep looking

Skills are one crate of 326,970. 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.