$npx -y skills add ncklrs/startup-os-skills --skill create-video-startMaster orchestrator that chains all Remotion video creation skills together in a single automated pipeline. Takes a creative brief and produces a complete, production-ready Remotion video project. Use when starting a new video from scratch, when asked to "create a video", "make a
| 1 | # Create Video Start |
| 2 | |
| 3 | Master orchestrator skill that chains the entire Remotion video pipeline together. Takes a single creative brief and automatically invokes each specialized skill in sequence, passing outputs between them. |
| 4 | |
| 5 | ## What This Skill Does |
| 6 | |
| 7 | Orchestrates the complete video creation pipeline: |
| 8 | |
| 9 | 1. **motion-designer** → Creates VIDEO_SPEC.md from creative brief |
| 10 | 2. **remotion-scaffold** → Sets up project structure |
| 11 | 3. **remotion-animation** → Generates animation configurations |
| 12 | 4. **remotion-composition** → Creates Sequence layout |
| 13 | 5. **remotion-component-gen** → Generates each scene component |
| 14 | 6. **remotion-render-config** → Configures output settings |
| 15 | 7. **remotion-asset-coordinator** → Prepares asset manifest |
| 16 | |
| 17 | ## Pipeline Execution |
| 18 | |
| 19 | When invoked, execute this pipeline in order: |
| 20 | |
| 21 | ### Step 0: Setup |
| 22 | |
| 23 | Create a working directory for pipeline artifacts: |
| 24 | |
| 25 | ```bash |
| 26 | # Create pipeline working directory |
| 27 | PIPELINE_DIR=".remotion-pipeline/$(date +%Y%m%d_%H%M%S)" |
| 28 | mkdir -p "$PIPELINE_DIR" |
| 29 | echo "Pipeline artifacts: $PIPELINE_DIR" |
| 30 | ``` |
| 31 | |
| 32 | ### Step 1: Motion Designer → VIDEO_SPEC.md |
| 33 | |
| 34 | Generate the motion design specification from the creative brief: |
| 35 | |
| 36 | ```bash |
| 37 | # Invoke motion-designer skill |
| 38 | claude -p "You are using the /motion-designer skill. |
| 39 | |
| 40 | Create a detailed VIDEO_SPEC.md for this creative brief: |
| 41 | |
| 42 | $CREATIVE_BRIEF |
| 43 | |
| 44 | Output a complete motion design specification with: |
| 45 | - Overview (duration, fps, dimensions) |
| 46 | - Color palette with hex codes |
| 47 | - Scene-by-scene breakdown with timing |
| 48 | - Animation details for each element |
| 49 | - Audio specifications |
| 50 | |
| 51 | Write the spec to: $PIPELINE_DIR/VIDEO_SPEC.md" \ |
| 52 | --allowedTools "Read,Write,Edit,Bash" |
| 53 | ``` |
| 54 | |
| 55 | **Checkpoint:** Verify VIDEO_SPEC.md exists and contains all required sections. |
| 56 | |
| 57 | ### Step 2: Remotion Scaffold → SCAFFOLD_MANIFEST.md |
| 58 | |
| 59 | Create project folder structure: |
| 60 | |
| 61 | ```bash |
| 62 | # Invoke remotion-scaffold skill |
| 63 | claude -p "You are using the /remotion-scaffold skill. |
| 64 | |
| 65 | Based on this VIDEO_SPEC.md: |
| 66 | $(cat $PIPELINE_DIR/VIDEO_SPEC.md) |
| 67 | |
| 68 | Create the Remotion project scaffold: |
| 69 | 1. Create folder structure for the composition |
| 70 | 2. Create empty template files |
| 71 | 3. Setup asset directories |
| 72 | 4. Register composition in Root.tsx |
| 73 | |
| 74 | Write manifest to: $PIPELINE_DIR/SCAFFOLD_MANIFEST.md |
| 75 | Write actual files to the project." \ |
| 76 | --allowedTools "Read,Write,Edit,Bash,Glob" |
| 77 | ``` |
| 78 | |
| 79 | **Checkpoint:** Verify scaffold directories and files exist. |
| 80 | |
| 81 | ### Step 3: Remotion Animation → ANIMATION_CONFIG.md |
| 82 | |
| 83 | Generate animation configurations: |
| 84 | |
| 85 | ```bash |
| 86 | # Invoke remotion-animation skill |
| 87 | claude -p "You are using the /remotion-animation skill. |
| 88 | |
| 89 | Based on this VIDEO_SPEC.md: |
| 90 | $(cat $PIPELINE_DIR/VIDEO_SPEC.md) |
| 91 | |
| 92 | Generate animation configurations: |
| 93 | 1. Spring configs for each animation type |
| 94 | 2. Interpolation mappings |
| 95 | 3. Timing constants |
| 96 | 4. Stagger delay patterns |
| 97 | |
| 98 | Write to: $PIPELINE_DIR/ANIMATION_CONFIG.md |
| 99 | |
| 100 | Output TypeScript constants that can be copied to constants.ts" \ |
| 101 | --allowedTools "Read,Write,Edit" |
| 102 | ``` |
| 103 | |
| 104 | **Checkpoint:** Verify ANIMATION_CONFIG.md contains spring configs and timing. |
| 105 | |
| 106 | ### Step 4: Remotion Composition → COMPOSITION_STRUCTURE.md |
| 107 | |
| 108 | Generate Sequence layout: |
| 109 | |
| 110 | ```bash |
| 111 | # Invoke remotion-composition skill |
| 112 | claude -p "You are using the /remotion-composition skill. |
| 113 | |
| 114 | Based on this VIDEO_SPEC.md: |
| 115 | $(cat $PIPELINE_DIR/VIDEO_SPEC.md) |
| 116 | |
| 117 | Generate composition structure: |
| 118 | 1. Sequence ordering for all scenes |
| 119 | 2. Transition timing between scenes |
| 120 | 3. Duration calculations |
| 121 | 4. Scene timing constants |
| 122 | |
| 123 | Write to: $PIPELINE_DIR/COMPOSITION_STRUCTURE.md |
| 124 | |
| 125 | Output the main composition JSX structure." \ |
| 126 | --allowedTools "Read,Write,Edit" |
| 127 | ``` |
| 128 | |
| 129 | **Checkpoint:** Verify COMPOSITION_STRUCTURE.md contains Sequence layout. |
| 130 | |
| 131 | ### Step 5: Remotion Component Gen → SCENE_COMPONENT.md (per scene) |
| 132 | |
| 133 | Generate each scene component: |
| 134 | |
| 135 | ```bash |
| 136 | # For each scene in the spec, invoke remotion-component-gen |
| 137 | for SCENE_NUM in $(seq 1 $TOTAL_SCENES); do |
| 138 | claude -p "You are using the /remotion-component-gen skill. |
| 139 | |
| 140 | Based on Scene $SCENE_NUM from this VIDEO_SPEC.md: |
| 141 | $(cat $PIPELINE_DIR/VIDEO_SPEC.md) |
| 142 | |
| 143 | And these animation configs: |
| 144 | $(cat $PIPELINE_DIR/ANIMATION_CONFIG.md) |
| 145 | |
| 146 | Generate the complete Scene${SCENE_NUM} component: |
| 147 | 1. Full TSX implementation |
| 148 | 2. Animation logic using the configs |
| 149 | 3. Proper imports and types |
| 150 | 4. AbsoluteFill wrapper |
| 151 | |
| 152 | Write to: $PIPELINE_DIR/SCENE_${SCENE_NUM}_COMPONENT.md |
| 153 | Also write the actual .tsx file to the scenes/ folder." \ |
| 154 | --allowedTools "Read,Write,Edit,Glob" |
| 155 | done |
| 156 | ``` |
| 157 | |
| 158 | **Checkpoint:** Verify all scene components are generated. |
| 159 | |
| 160 | ### Step 6: Remotion Render Config → RENDER_CONFIG.md |
| 161 | |
| 162 | Generate render settings: |
| 163 | |
| 164 | ```bash |
| 165 | # Invoke remotion-render-config skill |
| 166 | claude -p "Y |