content-creation
Create content for artists and record labels — short-form videos, images, captions, lipsync clips, and more. Use when the user asks to create content, make a video, generate an image, produce a TikTok or Reel, create a promotional clip, add captions, or create visual content for an artist. Also use when iterating on content quality — regenerating images, trying different audio, adjusting text, or upscaling for higher quality.
What this skill does
# Content Creation
Create visual content for artists and record labels using the Recoup API. You can access every capability through either the CLI (`recoup content`) or the REST API (`/api/content/*`).
## What You Can Do
| Capability | CLI | API |
|------------|-----|-----|
| Generate image | `recoup content image` | `POST /api/content/image` |
| Generate video | `recoup content video` | `POST /api/content/video` |
| Generate caption | `recoup content caption` | `POST /api/content/caption` |
| Transcribe audio | `recoup content transcribe` | `POST /api/content/transcribe` |
| Edit (trim, crop, overlay, mux audio) | `recoup content edit` | `PATCH /api/content` |
| Upscale image or video | `recoup content upscale` | `POST /api/content/upscale` |
| Analyze video | `recoup content analyze` | `POST /api/content/analyze` |
| Full pipeline (one shot) | `recoup content create` | `POST /api/content/create` |
Image and video generation are async — they return a `runId`. Poll with `recoup tasks status --run {runId} --json` (or `GET /api/tasks/runs?runId={runId}`) until `status` is `COMPLETED`, then read `output`.
Full API docs: https://developers.recoupable.com/content-agent
## Video Modes
`generate-video` supports 6 modes. Set `--mode` (CLI) or `mode` (API) explicitly, or omit it and the mode is inferred from inputs.
| Mode | What it does | Required inputs |
|------|-------------|-----------------|
| `prompt` | Create from text description | prompt |
| `animate` | Animate a still image | image + prompt |
| `reference` | Use image as style reference (not first frame) | image + prompt |
| `extend` | Continue an existing video (max 8s input) | video + prompt |
| `first-last` | Transition between two images | image + end image + prompt |
| `lipsync` | Sync face movement to audio | image + audio |
### When to use which mode
- "I need a cinematic establishing shot" → `prompt`
- "I have a photo of the artist, make it come alive" → `animate`
- "I have a photo of the artist, put them in a new scene" → `reference`
- "This clip is great but too short" → `extend`
- "I want a smooth transition from the studio to the stage" → `first-last`
- "I need the face to sing along to this audio" → `lipsync`
## Templates
Templates are optional shortcuts — curated creative recipes that pre-fill prompts, reference images, style rules, and edit operations. Every capability works without a template.
List available templates:
```bash
recoup content templates --json
```
Or via API: `GET /api/content/templates`
### Override priority
When using a template, your explicit parameters always win:
1. **Your parameters** — highest priority
2. **Artist context** — if the artist has a style guide, it personalizes the template
3. **Template defaults** — lowest priority
## Workflow
### Step by step (full creative control)
```bash
# 1. Transcribe audio
recoup content transcribe --url {audioUrl} --json
# 2. Generate image
recoup content image --prompt "{scene description}" \
--reference-image {referenceImageUrl} --json
# 3. (Optional) Upscale image
recoup content upscale --url {imageUrl} --type image --json
# 4. Generate video
recoup content video --mode animate --image {imageUrl} \
--prompt "{how to animate}" --json
# 5. Generate caption
recoup content caption --topic "{topic}" --length short --json
# 6. Edit final video
recoup content edit --url {videoUrl} --audio {audioUrl} \
--overlay-text "{caption}" --json
# 7. (Optional) Analyze the result
recoup content analyze --video {videoUrl} \
--prompt "Rate this 1-10 for social media engagement" --json
```
### One-shot pipeline
When you just want a finished video without controlling each step:
```bash
recoup content create --artist {artistAccountId} --json
recoup content create --artist {artistAccountId} --template artist-caption-bedroom --lipsync --json
```
Or via API: `POST /api/content/create` with `{ "artist_account_id": "..." }`
### Lipsync
```bash
recoup content video --mode lipsync \
--image {faceUrl} --audio {audioUrl} --json
recoup content edit --url {videoUrl} \
--crop-aspect 9:16 --overlay-text "{caption}" --json
```
## Edit Operations
The edit command applies operations in a single processing pass:
| Operation | CLI flags | What it does |
|-----------|-----------|-------------|
| Trim | `--trim-start {s} --trim-duration {s}` | Cut a time window |
| Crop | `--crop-aspect {ratio}` | Crop to aspect ratio (e.g. 9:16) |
| Overlay text | `--overlay-text {text} --text-color {color} --text-position {pos}` | Add on-screen text |
| Mux audio | `--mux-audio {url}` | Add audio track to video |
| Template | `--template {name}` | Use template's preset operations |
## Evaluating Output
You can't see pixels — but `analyze` can. Use it throughout the workflow to evaluate output.
**What to look for:**
- **QA** — artifacts, glitches, subject consistency, motion naturalness
- **Taste** — does the opening hook attention? Does visual energy match audio?
- **Platform readiness** — text readability, vertical crop framing, audio-visual sync
Analyze after each creative checkpoint, not just at the end.
## Iteration
Each step is independent. Redo any step without rerunning the whole pipeline:
- Bad image? Regenerate with a different prompt or reference
- Caption too long? Regenerate with `--length short`
- Video glitchy? Analyze it, then regenerate with adjusted params
- Clip too short? Use `extend` mode to continue it
- Low quality? Upscale the image or video
- Everything good but wrong caption? Just re-run the edit step
Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".