Claude Code skill pack for Runway (18 skills)
Installation
Open Claude Code and run this command:
/plugin install runway-pack@claude-code-plugins-plus
Use --global to install for all projects, or --project for current project only.
What It Does
> Claude Code skill pack for Runway — AI video generation, Gen-3 Alpha, image-to-video, text-to-video, and creative AI API (18 skills)
Skills (18)
"Runway ci integration \u2014 AI video generation and creative AI platform.
Runway Ci Integration
Overview
Implementation patterns for Runway ci integration — AI video generation platform.
Prerequisites
- Completed
runway-install-authsetup
Instructions
Step 1: SDK Pattern
from runwayml import RunwayML
client = RunwayML()
task = client.image_to_video.create(
model='gen3a_turbo',
prompt_text='A serene lake at dawn, mist rising, birds flying',
duration=5,
)
result = task.wait_for_task_output()
if result.status == 'SUCCEEDED':
print(f"Video: {result.output[0]}")
Output
- Runway integration for ci integration
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RUNWAYMLAPISECRET |
| 402 Insufficient credits | No credits | Add credits at dev.runwayml.com |
| Task FAILED | Content policy | Adjust prompt |
Resources
Next Steps
See related Runway skills for more workflows.
"Runway common errors \u2014 AI video generation and creative AI platform.
Runway Common Errors
Overview
Implementation patterns for Runway common errors — AI video generation platform.
Prerequisites
- Completed
runway-install-authsetup
Instructions
Step 1: SDK Pattern
from runwayml import RunwayML
client = RunwayML()
task = client.image_to_video.create(
model='gen3a_turbo',
prompt_text='A serene lake at dawn, mist rising, birds flying',
duration=5,
)
result = task.wait_for_task_output()
if result.status == 'SUCCEEDED':
print(f"Video: {result.output[0]}")
Output
- Runway integration for common errors
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RUNWAYMLAPISECRET |
| 402 Insufficient credits | No credits | Add credits at dev.runwayml.com |
| Task FAILED | Content policy | Adjust prompt |
Resources
Next Steps
See related Runway skills for more workflows.
"Runway core workflow a \u2014 AI video generation and creative AI platform.
Runway Core Workflow A
Overview
Advanced text-to-video generation: prompt engineering, model selection, parameter tuning, and batch generation.
Prerequisites
- Completed
runway-hello-world
Instructions
Step 1: Model Selection
from runwayml import RunwayML
client = RunwayML()
# Available models:
# gen3a_turbo — Fast, lower cost, good quality
# gen4_turbo — Latest model, highest quality
task = client.image_to_video.create(
model='gen4_turbo',
prompt_text='A futuristic cityscape at night with flying cars and neon signs, cyberpunk aesthetic',
duration=10,
ratio='16:9',
)
result = task.wait_for_task_output()
Step 2: Prompt Engineering Tips
# Structure: Subject + Action + Setting + Style + Camera
prompts = [
# Good: specific, visual, stylistic
"A red fox walking through a snowy forest, soft winter light, documentary style, tracking shot",
# Good: detailed motion and camera
"Waves of golden wheat swaying in the wind, drone flyover, warm sunset, cinematic grain",
# Bad: too abstract
# "Something beautiful happening" — too vague
]
Step 3: Batch Generation
import asyncio
prompts = [
"A butterfly emerging from a cocoon, macro lens, time-lapse, studio lighting",
"Rain falling on a Tokyo street at night, reflections, neon, dolly zoom",
"A chef preparing sushi in a traditional kitchen, close-up, warm lighting",
]
tasks = []
for prompt in prompts:
task = client.image_to_video.create(
model='gen3a_turbo',
prompt_text=prompt,
duration=5,
)
tasks.append(task)
print(f"Queued: {task.id}")
# Wait for all
for task in tasks:
result = task.wait_for_task_output()
status = "OK" if result.status == "SUCCEEDED" else "FAILED"
print(f" {task.id}: {status}")
Step 4: Output Format Options
task = client.image_to_video.create(
model='gen3a_turbo',
prompt_text='Abstract paint mixing in slow motion, vibrant colors, black background',
duration=5,
ratio='9:16', # Vertical for mobile/TikTok
# ratio='16:9', # Landscape for YouTube
# ratio='1:1', # Square for Instagram
)
Output
- Videos generated with optimal model selection
- Prompt engineering best practices applied
- Batch generation for multiple videos
- Output in various aspect ratios
Error Handling
| Issue | Cause | Solution | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Low quality | Gen3a_turbo for complex scene | Use gen4_
"Runway core workflow b \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Core Workflow BOverviewImage-to-video and video-to-video generation: animate still images and transform existing videos. Prerequisites
InstructionsStep 1: Image-to-Video
Step 2: Image-to-Video with Data URI
Step 3: Video-to-Video (Style Transfer)
Step 4: Image Specifications
Output
Error Handling
Resources"Runway cost tuning \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Cost TuningOverviewImplementation patterns for Runway cost tuning — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway debug bundle \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Debug BundleOverviewImplementation patterns for Runway debug bundle — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway deploy integration \u2014 AI video generation and creative AI\.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Deploy IntegrationOverviewImplementation patterns for Runway deploy integration — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway hello world \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Hello WorldOverviewGenerate your first AI video from a text prompt using Runway's Gen-3 Alpha model. Prerequisites
InstructionsStep 1: Text-to-Video Generation
Step 2: Poll for Completion
Step 3: Download the Video
Step 4: Using the Built-in Wait Helper
Output
Error Handling
Resources"Runway install auth \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Install AuthOverviewInstall the Runway ML SDK and configure API key authentication for AI video generation. Prerequisites
InstructionsStep 1: Install SDK
Step 2: Configure Environment
Step 3: Verify Connection (Python)
Step 4: Verify Connection (Node.js)
Output
Error Handling
ResourcesNext StepsGenerate your first video: "Runway local dev loop \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Local Dev LoopOverviewImplementation patterns for Runway local dev loop — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway performance tuning \u2014 AI video generation and creative AI\.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Performance TuningOverviewImplementation patterns for Runway performance tuning — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway prod checklist \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Prod ChecklistOverviewImplementation patterns for Runway prod checklist — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway rate limits \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Rate LimitsOverviewImplementation patterns for Runway rate limits — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway reference architecture \u2014 AI video generation and creative\.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Reference ArchitectureOverviewImplementation patterns for Runway reference architecture — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway sdk patterns \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Sdk PatternsOverviewImplementation patterns for Runway sdk patterns — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway security basics \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Security BasicsOverviewImplementation patterns for Runway security basics — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway upgrade migration \u2014 AI video generation and creative AI\.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Upgrade MigrationOverviewImplementation patterns for Runway upgrade migration — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. "Runway webhooks events \u2014 AI video generation and creative AI platform.
ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep
Runway Webhooks EventsOverviewImplementation patterns for Runway webhooks events — AI video generation platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Runway skills for more workflows. Ready to use runway-pack?Related Pluginssupabase-packComplete Supabase integration skill pack with 30 skills covering authentication, database, storage, realtime, edge functions, and production operations. Flagship+ tier vendor pack. vercel-packComplete Vercel integration skill pack with 30 skills covering deployments, edge functions, preview environments, performance optimization, and production operations. Flagship+ tier vendor pack. clay-packComplete Clay integration skill pack with 30 skills covering data enrichment, waterfall workflows, AI agents, and GTM automation. Flagship+ tier vendor pack. cursor-packComplete Cursor integration skill pack with 30 skills covering AI code editing, composer workflows, codebase indexing, and productivity features. Flagship+ tier vendor pack. exa-packComplete Exa integration skill pack with 30 skills covering neural search, semantic retrieval, web search API, and AI-powered discovery. Flagship+ tier vendor pack. firecrawl-packComplete Firecrawl integration skill pack with 30 skills covering web scraping, crawling, markdown conversion, and LLM-ready data extraction. Flagship+ tier vendor pack.
Tags
runwaysaassdkintegration
|