skill-live-processing

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

A coding workflow for building systems that receive live video streams, on-demand videos (VOD), and uploaded media. It covers the processing steps from capture and transcription to storing media and creating clips.

In plain words
What is it for?
Use it to build YouTube or Twitch ingestion, upload and capture jobs, transcription and clip-generation pipelines, retryable background workers, and media storage with validation and monitoring.
Why use it?
It helps prevent lost, duplicated, or incorrectly processed media jobs when providers, queues, or workers fail. It also addresses consent, provider credentials, and visibility into pipeline problems.

Skill for Claude CodeCodex

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

Good fit Use it to build YouTube or Twitch ingestion, upload and capture jobs, transcription and clip-generation pipelines, retryable background workers, and media storage with validation and monitoring.

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

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

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

Measured 9d ago against content hash 4c0ec9678249, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

skill-live-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 9d 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-live-processing/SKILL.md · 51 lines

How it starts

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

Live Processing

Use this skill for live streams, long VODs, and media pipelines that produce transcripts, summaries, clips, thumbnails, captions, or publishable assets.

Pipeline Contract

  1. Separate ingestion, processing, enrichment, review, and publishing into explicit stages.
  2. Keep platform OAuth tokens, webhook secrets, storage credentials, AI provider keys, and signing keys server-side.
  3. Validate source ownership, platform terms, tenant quota, duration, codec, file size, language, and processing options before enqueueing.
  4. Create a durable media_jobs record before downloading or running expensive work.
  5. Run long work in queues or workers. Do not download, transcode, transcribe, or render inside request handlers.
  6. Make every stage idempotent and resumable from stored artifacts, checksums, stage status, and provider job IDs.
  7. Store source media and generated assets in private storage. Use signed URLs with short TTLs for preview and download.
  8. Batch and chunk AI work. Reuse transcript segments, embeddings, shot boundaries, and thumbnails instead of resending full media context.
  9. Require review before publishing clips or generated metadata unless the product has explicit auto-publish consent.
  10. Emit structured progress, queue age, stage duration, retry count, artifact checksums, and sanitized failure reasons.

Stage States

Use stable states such as:

queued, validating, downloading, extracting_audio, transcribing, detecting_clips, rendering, review_ready, publishing, published, failed, cancelled.

Data Model Hints

  • media_jobs: tenant ID, owner ID, source type, source URL or asset ID, status, current stage, progress, idempotency key, retry count, error class.
  • media_assets: job ID, kind, storage path, duration, size, checksum, codec, metadata, retention deadline.
  • clip_candidates: job ID, timestamps, score, reason, transcript excerpt hash, review status.
  • processing_events: job ID, stage, status, duration, worker ID, details.

Read the full file on GitHub · 51 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. 9d ago First seen · 51 lines · 56 tokens per session scan A 4c0ec9678249

Subscribe to this mod's changes

skill-live-processing is a skill published in the GitHub repository IAPro-Community/Orquestrador-Maestro (41 stars, last pushed 3d ago), licensed Apache-2.0. It adds 56 tokens to every session and 608 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

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

composio

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

aAAaqwq/AGI-Super-Team · 26 tokens