creative-pipelinelisted
Install: claude install-skill Tibsfox/gsd-skill-creator
# Creative Pipeline Skill
## At a Glance
Generate Blender Python (bpy) scripts for 3D infrastructure visualization and ffmpeg command sequences for video production and social media export — turning technical engineering designs into communication-ready visual deliverables.
**Activation:** After engineering design is verified and documented. InfrastructureRequest with outputFormat including 'render'. Stakeholder presentations, client deliverables, social media content creation.
**Output types:**
1. **Blender bpy scripts:** Python scripts that run in Blender's Scripting workspace to create pipe geometry, equipment meshes, materials, lighting, camera paths, and animations.
2. **ffmpeg commands:** Shell commands that assemble rendered frames into video and export to social media formats (YouTube, Instagram Reel, Twitter/X, thumbnail).
**Prerequisites:**
- Blender 3.6+ installed (free from blender.org)
- ffmpeg installed and in PATH (free from ffmpeg.org)
- Completed engineering design with dimensions and layout from blueprint engine
**Quick-start — Blender script generation:**
```python
import bpy
# Clear scene, set units to metric, configure Cycles renderer
bpy.ops.object.select_all(action='SELECT')
bpy.ops.object.delete()
bpy.context.scene.unit_settings.system = 'METRIC'
bpy.context.scene.render.engine = 'CYCLES'
```
**Quick-start — ffmpeg social media export:**
```bash
# Assemble rendered frames into video
ffmpeg -framerate 30 -i render_%04d.png -c:v libx264 -pix_fmt