← 返回 Skills 市场
mtsatryan

video-production-pipeline

作者 Michael Tsatryan · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
30
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install ah-video-production-pipeline
功能描述
Specialist in video production pipeline. Use when: stage 1: pre-production, stage 2: asset generation, stage 3: video assembly.
使用说明 (SKILL.md)

Video Production Pipeline

This is a Multi-Agent Workflow that orchestrates the entire video production process from concept to final export. It coordinates specialized agents for scripting, visual generation, audio synthesis, editing, and platform optimization.

Workflow Type: Multi-Agent Orchestration Price Tier: Premium ($9.99)


Workflow Overview

// Complete video production pipeline
interface VideoProductionPipeline {
  input: ProductionInput;
  stages: PipelineStage[];
  agents: AgentOrchestration;
  output: FinalDeliverable;
}

interface ProductionInput {
  type: 'idea' | 'script' | 'novel' | 'url' | 'audio';
  content: string;
  format: VideoFormat;
  style: ProductionStyle;
  targetPlatform: Platform[];
  duration: DurationTarget;
}

type VideoFormat =
  | 'youtube-short' | 'youtube-video'
  | 'tiktok' | 'instagram-reel'
  | 'documentary' | 'explainer'
  | 'advertisement' | 'course-module';

Pipeline Stages

Stage 1: Pre-Production

📎 Code example 1 (typescript) — see references/examples.md

Stage 2: Asset Generation

📎 Code example 2 (typescript) — see references/examples.md

Stage 3: Video Assembly

📎 Code example 3 (typescript) — see references/examples.md

Stage 4: Post-Production

📎 Code example 4 (typescript) — see references/examples.md


Agent Coordination

📎 Code example 5 (typescript) — see references/examples.md


Quality Gates

📎 Code example 6 (typescript) — see references/examples.md


Human-in-the-Loop Integration

📎 Code example 7 (typescript) — see references/examples.md


Configuration Templates

📎 Code example 8 (typescript) — see references/examples.md


Output Deliverables

// Final deliverable package
interface FinalDeliverable {
  videos: {
    primary: VideoFile;
    platformVariants: Map\x3CPlatform, VideoFile>;
    segments: VideoFile[]; // For repurposing
  };
  assets: {
    thumbnails: ThumbnailSet;
    graphics: GraphicAsset[];
    sourceFiles: SourcePackage;
  };
  metadata: {
    seo: SEOPackage;
    analytics: AnalyticsPrediction;
    schedule: PublishSchedule;
  };
  documentation: {
    script: FinalScript;
    storyboard: FinalStoryboard;
    editDecisionList: EDL;
  };
}

// Analytics predictions
interface AnalyticsPrediction {
  estimatedViews: { min: number; max: number };
  retentionCurve: number[];
  engagementRate: number;
  optimalPostingTimes: Date[];
  audienceMatch: number;
}

Usage Examples

Example 1: Idea to YouTube Short

const request = {
  input: {
    type: 'idea',
    content: 'Explain why most people fail at learning programming in under 60 seconds',
    format: 'youtube-short',
    style: { tone: 'energetic', visual: 'dynamic-text' },
    targetPlatform: ['youtube-shorts', 'tiktok']
  },
  preferences: {
    voiceProvider: 'elevenlabs',
    imageStyle: 'modern-minimal',
    captionStyle: 'hormozi'
  }
};

// Pipeline executes:
// 1. Research: Programming learning challenges
// 2. Script: Write 60s script with hook
// 3. Voice: Generate energetic narration
// 4. Visuals: Create dynamic text overlays
// 5. Edit: Assemble with fast cuts
// 6. Captions: Add animated subtitles
// 7. Export: Render for both platforms

Example 2: Blog Post to YouTube Video

const request = {
  input: {
    type: 'url',
    content: 'https://example.com/blog/ai-trends-2025',
    format: 'youtube-video',
    targetDuration: 8, // minutes
    style: { tone: 'educational', visual: 'documentary' }
  }
};

// Pipeline executes:
// 1. Extract: Parse blog content
// 2. Research: Supplement with additional data
// 3. Script: Expand to video format
// 4. Storyboard: Plan visual scenes
// 5. Assets: Generate images + stock footage
// 6. Voice: Professional narration
// 7. Edit: Full video assembly
// 8. SEO: Optimize metadata
// 9. Export: YouTube-ready package

Best Practices

Pipeline Optimization

  1. Run independent stages in parallel
  2. Cache reusable assets
  3. Batch similar operations
  4. Use progressive quality checks
  5. Enable partial recovery on failures

Quality Assurance

  1. Validate at every stage gate
  2. Maintain consistency logs
  3. Track version history
  4. Enable rollback capabilities
  5. Human review at critical points

Resource Management

  1. Prioritize based on platform deadlines
  2. Balance quality vs. speed
  3. Optimize API usage
  4. Cache computed results
  5. Clean up temporary files

Related Agents

This workflow orchestrates the following agents:

  • video-script-writer - Script generation
  • shorts-generator - Short-form content
  • social-media-manager - Platform optimization
  • prompt-engineer - Image prompt crafting
  • ai-engineer - Pipeline automation

This Premium Workflow ($9.99) provides a complete end-to-end video production solution, coordinating multiple specialized agents for professional-quality output.

Reference Materials

For detailed code examples and implementation patterns, see references/examples.md.

安全使用建议
This appears safe to install as an instruction-only workflow. Before using it with real production accounts or private media, confirm which agents and services will receive your content, require explicit approval before publishing or scheduling anything, and understand where generated assets and logs will be stored.
功能分析
Type: OpenClaw Skill Name: ah-video-production-pipeline Version: 1.0.0 The skill bundle defines a comprehensive multi-agent workflow for video production, including stages for pre-production, asset generation, assembly, and post-production. The files (SKILL.md and references/examples.md) consist of documentation, TypeScript interface definitions, and configuration templates. There is no evidence of malicious intent, data exfiltration, or unauthorized execution; the content is entirely aligned with the stated purpose of orchestrating video production tasks.
能力评估
Purpose & Capability
The stated video production purpose matches the visible SKILL.md and examples; no code files, install hooks, required binaries, or static-scan findings are present.
Instruction Scope
references/examples.md describes agent handoffs and final review options including "publish" and "schedule"; these are purpose-aligned for video production but should remain explicitly user-approved.
Install Mechanism
There is no install spec and no declared binaries, environment variables, credentials, or code files, so the artifacts do not show executable install-time behavior.
Credentials
SKILL.md examples mention third-party-style providers such as "voiceProvider: 'elevenlabs'" and platform export workflows; these fit the purpose, but real integrations would need scoped credentials and confirmations.
Persistence & Privilege
SKILL.md recommends "Cache reusable assets" and "Track version history"; this is expected for production work, but users should know where generated assets, logs, and versions are stored.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ah-video-production-pipeline
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ah-video-production-pipeline 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release — part of 188 AI agent skills collection by MTNT Solutions
元数据
Slug ah-video-production-pipeline
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

video-production-pipeline 是什么?

Specialist in video production pipeline. Use when: stage 1: pre-production, stage 2: asset generation, stage 3: video assembly. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 30 次。

如何安装 video-production-pipeline?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ah-video-production-pipeline」即可一键安装,无需额外配置。

video-production-pipeline 是免费的吗?

是的,video-production-pipeline 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

video-production-pipeline 支持哪些平台?

video-production-pipeline 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 video-production-pipeline?

由 Michael Tsatryan(@mtsatryan)开发并维护,当前版本 v1.0.0。

💬 留言讨论