video-production-pipeline
AdvisoryAudited by Static analysis on May 7, 2026.
Overview
No suspicious patterns detected.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If connected to real agents, scripts, URLs, media assets, and project metadata could be shared between multiple components.
The skill is designed around passing work between multiple specialized agents. This is coherent with the video-production purpose, but real deployments should define which agents receive which user content and assets.
interface AgentOrchestration { mode: 'sequential' | 'parallel' | 'hybrid'; agents: AgentConfig[]; handoffs: HandoffRule[]; errorHandling: ErrorStrategy; }Use only trusted agents, limit what each agent receives, and require review before sharing sensitive project materials outside the main workflow.
If later connected to social or video platform accounts, an accidental publish or schedule action could make content public.
The workflow contemplates public publishing or scheduling at final review. It is framed as a human approval option and no platform credentials or auto-publish code are shown, so this is a notice rather than a concern.
options: ['publish', 'schedule', 'hold-for-review']
Keep publish and schedule actions behind explicit user confirmation and use narrowly scoped platform permissions.
Generated scripts, media, logs, or project history may persist if an implementation follows these recommendations.
The skill recommends retaining project assets and history. This is normal for video production, but the artifacts do not define storage paths, retention, or cleanup behavior.
Cache reusable assets ... Maintain consistency logs ... Track version history
Confirm where assets and logs are stored, how long they are kept, and how to delete them when a project is finished.
