skill-smart-clip-detection

skill-smart-clip-detection is a skill for Claude Code, Codex from IAPro-Community/Orquestrador-Maestro. It costs 60 tokens per session (613 once invoked), scanned A, original, Apache-2.0.

A workflow for finding promising short clips in transcripts, livestreams, videos, podcasts, calls, and other long recordings with AI assistance.

In plain words
What is it for?
It is for scoring clip candidates, recording timestamps, processing items in batches, validating results, managing review queues, and preparing metadata for publishing.
Why use it?
It reduces the manual work of reviewing long recordings and keeps candidate clips organized for checking and reuse.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for scoring clip candidates, recording timestamps, processing items in batches, validating results, managing review queues, and preparing metadata for publishing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iapro-community/orquestrador-maestro/skill-smart-clip-detection
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add IAPro-Community/Orquestrador-Maestro --skill skill-smart-clip-detection
Clone the repo
git clone --depth 1 https://github.com/IAPro-Community/Orquestrador-Maestro

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for skill-smart-clip-detection

README.md
[![agentmods](https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-smart-clip-detection/github.svg)](https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-smart-clip-detection)
Your own site
<a href="https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-smart-clip-detection"><img src="https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-smart-clip-detection/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for skill-smart-clip-detection

Your own site · 80×15
<a href="https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-smart-clip-detection"><img src="https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-smart-clip-detection.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 613 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.00613
Opus 5 $0.00030 $0.00307
Sonnet 5 $0.00012 $0.00123
Haiku 4.5 $0.00006 $0.00061

Measured 12d ago against content hash 694c6a731758, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

skill-smart-clip-detection scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

codex/skills/skill-smart-clip-detection/SKILL.md · 65 lines

How it starts

The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Smart Clip Detection

Use this skill when a product needs to find short, valuable moments inside long audio or video content.

Detection Contract

  1. Start from transcript segments with timestamps when available. Add visual and audio signals only when they improve ranking.
  2. Validate source consent, processing rights, language, duration, platform targets, and user quota before analysis.
  3. Batch candidate generation by transcript windows. Send only segment text, timestamps, and compact metadata required for scoring.
  4. Cache transcript segments, embeddings, signal extraction, and prompt outputs by source checksum plus prompt/schema version.
  5. Score candidates by hook strength, self-contained meaning, novelty, emotion, clarity, platform fit, and editability.
  6. Keep source timestamps, confidence, reason, title ideas, captions, aspect ratio, and source segment IDs.
  7. Deduplicate overlapping candidates using timestamp overlap, semantic similarity, and source segment IDs.
  8. Store enough metadata to regenerate or re-score after model, prompt, schema, or platform changes.
  9. Prefer review queues over auto-publishing for customer-facing, paid, or brand-sensitive products.
  10. Use idempotent render jobs for approved clips; never overwrite approved assets without a new version.

Candidate Schema

type ClipCandidate = {
  sourceAssetId: string;
  startMs: number;
  endMs: number;
  durationMs: number;
  score: number;
  confidence: number;
  reason: string;
  hookText: string;
  summary: string;
  titleOptions: string[];
  platformFit: Array<"TikTok" | "Reels" | "Shorts" | "LinkedIn" | "YouTube">;
  reviewStatus: "pending" | "approved" | "rejected" | "needs_edit";
  promptVersion: string;
};

Token Reduction

  • Chunk transcripts by coherent segments, not arbitrary character counts.
  • Keep a rolling summary for context, but score only the current window and adjacent overlap.
  • Use hashes for transcript excerpts in logs and persist full excerpts only when review requires them.
  • Run cheap deterministic filters before model scoring: duration, silence, speaker count, and duplicate overlap.

Read the full file on GitHub · 65 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 65 lines · 60 tokens per session scan A 694c6a731758

Subscribe to this mod's changes

skill-smart-clip-detection is a skill published in the GitHub repository IAPro-Community/Orquestrador-Maestro (42 stars, last pushed today), licensed Apache-2.0. It adds 60 tokens to every session and 613 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

voice-ai

Use when voice AI — text-to-speech (ElevenLabs, OpenAI TTS), speech-to-text (Whisper), voice cloning, real-time voice agents. Use when working with voice ai.

oyi77/1ai-skills · 44 tokens

video-model-selection

Choose which fal.ai or Google Gemini/Veo model fits one shot's requirements -- text-to-video vs image-to-video, character/subject consistency, duration limits, native audio, cost. Use before the first generation call in a long-form production, and again whenever a shot's requirements differ from the ones already…

manishiitg/coding-agent-loop · 93 tokens

video-look-sound

Lock the visual world and complete audio direction before narration or footage generation. Use when deciding locations, backgrounds, wardrobe, lighting, palette, narrator or dialogue voice, music, ambience, sound effects, captions, and whether speech should be separate TTS or native model audio.

manishiitg/coding-agent-loop · 59 tokens

agent-self-scheduling

Schedule AI agent runs with cron, loops, or external clocks while avoiding unsafe tight autonomous timers.

sickn33/agentic-awesome-skills · 24 tokens

clawd-animation-lite

A lightweight generator for short, 1–3 second pixel animations featuring Clawd, the Claude Code mascot, shown as a small coral-orange crab. It creates a complete HTML file that can be opened in a browser.

YiShu5/claude-skills · 190 tokens

prism

Consultant for NotebookLM steering prompt design. Optimizes Audio/Video/Slide/Infographic output quality through source preparation, prompt engineering, and Custom Goals persona design.

seaworld008/Commonly-used-high-value-skills · 37 tokens