ai-content-pipelinelisted
Install: claude install-skill aiskillstore/marketplace
# AI Content Pipeline
Build multi-step content creation pipelines via [inference.sh](https://inference.sh) CLI.
## Quick Start
```bash
curl -fsSL https://cli.inference.sh | sh && infsh login
# Simple pipeline: Generate image -> Animate to video
infsh app run falai/flux-dev --input '{"prompt": "portrait of a woman smiling"}' > image.json
infsh app run falai/wan-2-5 --input '{"image_url": "<url-from-previous>"}'
```
## Pipeline Patterns
### Pattern 1: Image -> Video -> Audio
```
[FLUX Image] -> [Wan 2.5 Video] -> [Foley Sound]
```
### Pattern 2: Script -> Speech -> Avatar
```
[LLM Script] -> [Kokoro TTS] -> [OmniHuman Avatar]
```
### Pattern 3: Research -> Content -> Distribution
```
[Tavily Search] -> [Claude Summary] -> [FLUX Visual] -> [Twitter Post]
```
## Complete Workflows
### YouTube Short Pipeline
Create a complete short-form video from a topic.
```bash
# 1. Generate script with Claude
infsh app run openrouter/claude-sonnet-45 --input '{
"prompt": "Write a 30-second script about the future of AI. Make it engaging and conversational. Just the script, no stage directions."
}' > script.json
# 2. Generate voiceover with Kokoro
infsh app run infsh/kokoro-tts --input '{
"text": "<script-text>",
"voice": "af_sarah"
}' > voice.json
# 3. Generate background image with FLUX
infsh app run falai/flux-dev --input '{
"prompt": "Futuristic city skyline at sunset, cyberpunk aesthetic, 4K wallpaper"
}' > background.json
# 4. Animate image to video with Wan
infs