← 返回 Skills 市场
teoslayer

Pilot Video Production Pipeline Setup

作者 Calin Teodor · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
58
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install pilot-video-production-pipeline-setup
功能描述
Deploy a video production pipeline with 3 agents that automate script writing, editing coordination, and multi-platform distribution. Use this skill when: 1....
使用说明 (SKILL.md)

Video Production Pipeline Setup

Deploy 3 agents that automate video production from script to multi-platform publish.

Roles

Role Hostname Skills Purpose
scripter \x3Cprefix>-scripter pilot-task-router, pilot-share, pilot-archive Generates scripts, outlines, and storyboards from briefs
editor \x3Cprefix>-editor pilot-task-chain, pilot-dataset, pilot-receipt Coordinates editing tasks, manages assets, applies templates
distributor \x3Cprefix>-distributor pilot-webhook-bridge, pilot-metrics, pilot-slack-bridge Publishes to platforms, tracks performance metrics

Setup Procedure

Step 1: Ask the user which role this agent should play and what prefix to use.

Step 2: Install the skills for the chosen role:

# scripter:
clawhub install pilot-task-router pilot-share pilot-archive
# editor:
clawhub install pilot-task-chain pilot-dataset pilot-receipt
# distributor:
clawhub install pilot-webhook-bridge pilot-metrics pilot-slack-bridge

Step 3: Set the hostname:

pilotctl --json set-hostname \x3Cprefix>-\x3Crole>

Step 4: Write the setup manifest:

mkdir -p ~/.pilot/setups
cat > ~/.pilot/setups/video-production-pipeline.json \x3C\x3C 'MANIFEST'
\x3CUSE ROLE TEMPLATE BELOW>
MANIFEST

Step 5: Tell the user to initiate handshakes with direct communication peers.

Manifest Templates Per Role

scripter

{"setup":"video-production-pipeline","setup_name":"Video Production Pipeline","role":"scripter","role_name":"Script Writer","hostname":"\x3Cprefix>-scripter","description":"Generates video scripts, outlines, and storyboards from briefs and trending topics.","skills":{"pilot-task-router":"Route briefs to appropriate script templates based on format and audience.","pilot-share":"Share completed scripts and storyboards with editor.","pilot-archive":"Archive all script drafts and revisions for reference."},"peers":[{"role":"editor","hostname":"\x3Cprefix>-editor","description":"Receives approved scripts for editing"}],"data_flows":[{"direction":"send","peer":"\x3Cprefix>-editor","port":1002,"topic":"video-script","description":"Approved scripts and storyboards"}],"handshakes_needed":["\x3Cprefix>-editor"]}

editor

{"setup":"video-production-pipeline","setup_name":"Video Production Pipeline","role":"editor","role_name":"Video Editor","hostname":"\x3Cprefix>-editor","description":"Coordinates editing tasks, manages asset libraries, applies brand templates.","skills":{"pilot-task-chain":"Chain editing subtasks — cuts, transitions, color grade, audio mix.","pilot-dataset":"Manage asset library — footage, graphics, music, brand templates.","pilot-receipt":"Confirm receipt of scripts and acknowledge edit completion."},"peers":[{"role":"scripter","hostname":"\x3Cprefix>-scripter","description":"Sends approved scripts"},{"role":"distributor","hostname":"\x3Cprefix>-distributor","description":"Receives edited video packages"}],"data_flows":[{"direction":"receive","peer":"\x3Cprefix>-scripter","port":1002,"topic":"video-script","description":"Approved scripts and storyboards"},{"direction":"send","peer":"\x3Cprefix>-distributor","port":1002,"topic":"edited-video","description":"Edited video packages with metadata"}],"handshakes_needed":["\x3Cprefix>-scripter","\x3Cprefix>-distributor"]}

distributor

{"setup":"video-production-pipeline","setup_name":"Video Production Pipeline","role":"distributor","role_name":"Content Distributor","hostname":"\x3Cprefix>-distributor","description":"Publishes to YouTube, TikTok, and social platforms. Tracks performance metrics.","skills":{"pilot-webhook-bridge":"Push publish events to YouTube, TikTok, and social platform APIs.","pilot-metrics":"Track views, engagement, click-through rates across platforms.","pilot-slack-bridge":"Post publish confirmations and performance summaries to Slack."},"peers":[{"role":"editor","hostname":"\x3Cprefix>-editor","description":"Sends edited video packages"}],"data_flows":[{"direction":"receive","peer":"\x3Cprefix>-editor","port":1002,"topic":"edited-video","description":"Edited video packages with metadata"},{"direction":"send","peer":"external","port":443,"topic":"publish-notification","description":"Publish notifications to platforms"}],"handshakes_needed":["\x3Cprefix>-editor"]}

Data Flows

  • scripter -> editor : video-script events (port 1002)
  • editor -> distributor : edited-video events (port 1002)
  • distributor -> platforms : publish notifications via webhook (port 443)

Handshakes

# scripter \x3C-> editor:
pilotctl --json handshake \x3Cprefix>-editor "setup: video-production-pipeline"
pilotctl --json handshake \x3Cprefix>-scripter "setup: video-production-pipeline"
# editor \x3C-> distributor:
pilotctl --json handshake \x3Cprefix>-distributor "setup: video-production-pipeline"
pilotctl --json handshake \x3Cprefix>-editor "setup: video-production-pipeline"

Workflow Example

# On editor — subscribe to scripts:
pilotctl --json subscribe \x3Cprefix>-scripter video-script
# On distributor — subscribe to edited videos:
pilotctl --json subscribe \x3Cprefix>-editor edited-video
# On scripter — publish a script:
pilotctl --json publish \x3Cprefix>-editor video-script '{"title":"10 Tips for Productivity","duration_sec":480,"scenes":5}'
# On editor — publish edited video:
pilotctl --json publish \x3Cprefix>-distributor edited-video '{"title":"10 Tips for Productivity","asset_url":"s3://videos/final.mp4"}'

Dependencies

Requires pilot-protocol skill, pilotctl binary, clawhub binary, and a running daemon.

安全使用建议
This skill appears to be what it says: a helper to set up three Pilot agents. Before installing, verify the following: 1) pilotctl and clawhub are trusted binaries from sources you control — these commands will be used to install other skills and change hostnames. 2) The skill will write a manifest at ~/.pilot/setups/video-production-pipeline.json (the metadata did not declare this path) — confirm you are comfortable with that location and back up any existing files. 3) The skill uses clawhub to install other pilot-* skills (pilot-webhook-bridge, pilot-slack-bridge, pilot-metrics, etc.); review those downstream skills because they will likely request API keys or webhooks for external platforms and are the primary places where credential/network risk can appear. 4) Check the homepage/owner (pilotprotocol.network and the listed owner ID) to confirm you trust the source. If you want higher assurance, ask for a version of the skill that explicitly declares the config path (~/.pilot) and provides a manifest preview of what it will install, then inspect each downstream skill before allowing clawhub to run.
功能分析
Type: OpenClaw Skill Name: pilot-video-production-pipeline-setup Version: 1.0.0 The skill bundle provides a legitimate configuration for a multi-agent video production pipeline involving script writing, editing, and distribution. It utilizes standard framework tools (pilotctl, clawhub) to manage roles and establish communication through handshakes as described in SKILL.md and README.md. No indicators of data exfiltration, unauthorized execution, or malicious prompt injection were found.
能力标签
crypto
能力评估
Purpose & Capability
Name/description, required binaries (pilotctl, clawhub), and runtime instructions all align: the skill configures Pilot agents, installs other Pilot skills, sets hostnames, and writes a setup manifest. One minor inconsistency: the skill writes manifests to ~/.pilot/setups but the registry metadata declared no required config paths.
Instruction Scope
SKILL.md stays within the declared purpose: it asks the agent to install specific pilot-* skills, set hostnames, write a JSON manifest to ~/.pilot/setups/video-production-pipeline.json, and perform handshakes. This is expected for a deployment helper. Note: it instructs file writes to the user's home (~/.pilot) which wasn't declared in required config paths; also the installed skills (via clawhub) will run independently and may require or request additional credentials or network access.
Install Mechanism
Instruction-only skill — no install spec and no code files. The only runtime actions are calls to existing binaries (clawhub, pilotctl). This is the lowest install risk, but clawhub install will fetch other skills (not part of this package) so their install footprints must be reviewed separately.
Credentials
The skill requests no environment variables or credentials itself, which is proportionate. However, it installs other skills (e.g., pilot-webhook-bridge, pilot-slack-bridge) that typically require external API keys (YouTube, TikTok, Slack) at runtime; those credentials are not requested here but will be necessary for full operation. The skill also writes to ~/.pilot/setups (undeclared in metadata).
Persistence & Privilege
always:false and no special privileges requested. The skill writes a manifest to the user's ~/.pilot directory and installs other skills, but it does not demand permanent forced inclusion or modify unrelated skill configs. This is normal for a deployment helper.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install pilot-video-production-pipeline-setup
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /pilot-video-production-pipeline-setup 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug pilot-video-production-pipeline-setup
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Pilot Video Production Pipeline Setup 是什么?

Deploy a video production pipeline with 3 agents that automate script writing, editing coordination, and multi-platform distribution. Use this skill when: 1.... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 58 次。

如何安装 Pilot Video Production Pipeline Setup?

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

Pilot Video Production Pipeline Setup 是免费的吗?

是的,Pilot Video Production Pipeline Setup 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Pilot Video Production Pipeline Setup 支持哪些平台?

Pilot Video Production Pipeline Setup 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Pilot Video Production Pipeline Setup?

由 Calin Teodor(@teoslayer)开发并维护,当前版本 v1.0.0。

💬 留言讨论