skill-manual-video-processing

skill-manual-video-processing is a skill for Claude Code, Codex from IAPro-Community/Orquestrador-Maestro. It costs 55 tokens per session (598 once invoked), scanned A, original, Apache-2.0.

A workflow for handling video or audio uploads in SaaS applications. It covers storage, validation, malware checks, quotas, background processing, transcription, clips, review, consent, and secure access links.

In plain words
What is it for?
Use it to build upload interfaces and backend flows for storing, checking, processing, transcribing, reviewing, and securely serving media.
Why use it?
It helps structure the many safety, processing, and access steps required after a user uploads media.

Skill for Claude CodeCodex

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

Good fit Use it to build upload interfaces and backend flows for storing, checking, processing, transcribing, reviewing, and securely serving media.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iapro-community/orquestrador-maestro/skill-manual-video-processing
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-manual-video-processing
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-manual-video-processing

README.md
[![agentmods](https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-manual-video-processing/github.svg)](https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-manual-video-processing)
Your own site
<a href="https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-manual-video-processing"><img src="https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-manual-video-processing/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-manual-video-processing

Your own site · 80×15
<a href="https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-manual-video-processing"><img src="https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-manual-video-processing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 598 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.00055 $0.00598
Opus 5 $0.00028 $0.00299
Sonnet 5 $0.00011 $0.00120
Haiku 4.5 $0.00006 $0.00060

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

Security

Grade A, and why

skill-manual-video-processing 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-manual-video-processing/SKILL.md · 56 lines

How it starts

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

Manual Video Processing

Use this skill when users upload videos or audio for transcription, clipping, editing, proposal generation, content creation, review, or publishing workflows.

Upload Contract

  1. Validate tenant quota, file type, extension, MIME sniffing result, file size, duration, codec, and requested processing level.
  2. Use resumable or direct-to-storage upload for large files; avoid streaming whole files through application memory.
  3. Store uploads in private buckets by default and expose only signed URLs.
  4. Create or reserve a media_assets record before upload and finalize it only after checksum and metadata validation.
  5. Create a media_jobs record after upload completion and before expensive processing.
  6. Run malware, abuse, copyright, and content checks when the product accepts untrusted files or public uploads.
  7. Queue processing stages and make them idempotent by asset checksum, job ID, stage name, and processing options hash.
  8. Separate upload completion, processing completion, review approval, and publishing as distinct user-visible states.
  9. Require explicit consent before using uploaded voice, face, customer data, or third-party media for AI generation or publication.
  10. Minimize tokens by chunking transcripts, caching metadata, and sending only relevant segments to AI services.

Expected Flow

  1. Request upload permission and validate quota.
  2. Upload directly to private storage.
  3. Finalize asset metadata and checksum.
  4. Queue processing job.
  5. Extract metadata and audio.
  6. Run transcription, AI enrichment, and clip detection when requested.
  7. Save generated assets and review state.
  8. Publish only after approval or explicit auto-publish consent.
  9. Emit analytics and audit events.

Data Model Hints

  • media_assets: tenant ID, owner ID, storage path, original name hash, MIME type, size, duration, checksum, scan status, retention deadline.
  • media_jobs: asset ID, requested outputs, status, current stage, idempotency key, retry count, error class.
  • media_reviews: job ID, reviewer ID, decision, notes, approved asset IDs, timestamp.

Read the full file on GitHub · 56 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 · 56 lines · 55 tokens per session scan A c688e067bff8

Subscribe to this mod's changes

skill-manual-video-processing is a skill published in the GitHub repository IAPro-Community/Orquestrador-Maestro (42 stars, last pushed today), licensed Apache-2.0. It adds 55 tokens to every session and 598 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

video-provider-capabilities

Resolve an AI-video model's live official API schema and turn it into a durable request, continuity, cost, and review plan before any paid video call. Use for Kling, Seedance, Veo, or any other video model when selecting a model, preparing or retrying a request, assigning image/video/audio references, using first or…

manishiitg/coding-agent-loop · 94 tokens

2slides-ppt-generator

AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use for any "make slides", "create a deck", or "slides from this document" request.

Ghosteken/agent-harness · 64 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

moq

Build live video, audio, and real-time data apps with Media over QUIC (MoQ). Use when adding live streaming, conferencing, voice AI, or real-time pub/sub to an app; when integrating the @moq/ npm packages, moq- Rust crates, or the Python/Kotlin/Swift/Go/C bindings; or when running a moq-relay server or a gateway…

moq-dev/moq · 104 tokens

composio

Build AI agents and apps with Composio - access 200+ external tools with Tool Router or direct execution.

aAAaqwq/AGI-Super-Team · 26 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