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.
Skills (18)
Runway ci integration — 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 — 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 — 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 — 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
ResourcesRunway cost tuning — 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 — 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 — AI video generation and creative AI platform.
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 — 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
ResourcesRunway install auth — 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 — 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 — AI video generation and creative AI platform.
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 — 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 — 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 — AI video generation and creative AI platform.
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 — 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 — 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 — AI video generation and creative AI platform.
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 — 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 Pluginsai-ethics-validatorAI ethics and fairness validation ai-experiment-loggerTrack and analyze AI experiments with a web dashboard and MCP tools ai-ml-engineering-packProfessional AI/ML Engineering toolkit: Prompt engineering, LLM integration, RAG systems, AI safety with 12 expert plugins ai-sdk-agentsMulti-agent orchestration with AI SDK v5 - handoffs, routing, and coordination for any AI provider (OpenAI, Anthropic, Google) anomaly-detection-systemDetect anomalies and outliers in data automl-pipeline-builderBuild AutoML pipelines
Tags
runwaysaassdkintegration
|