Agent skill
runway-install-auth
Runway install auth — AI video generation and creative AI platform. Use when working with Runway for video generation, image editing, or creative AI. Trigger with phrases like "runway install auth", "runway-install-auth", "AI video generation".
Install this agent skill to your Project
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/runway-pack/skills/runway-install-auth
SKILL.md
Runway Install Auth
Overview
Install the Runway ML SDK and configure API key authentication for AI video generation.
Prerequisites
- Runway account at runwayml.com
- API key from the Runway Developer Portal (dev.runwayml.com)
- Python 3.9+ or Node.js 18+
Instructions
Step 1: Install SDK
set -euo pipefail
# Python
pip install runwayml
# Node.js
npm install @runwayml/sdk
Step 2: Configure Environment
# .env
RUNWAYML_API_SECRET=key_xxxxxxxxxxxxxxxxxxxxxxxx
Step 3: Verify Connection (Python)
from runwayml import RunwayML
client = RunwayML() # Reads RUNWAYML_API_SECRET from env
# The client is ready — no explicit auth call needed
# SDK auto-authenticates on first API call
print("RunwayML client initialized")
Step 4: Verify Connection (Node.js)
import RunwayML from '@runwayml/sdk';
const runway = new RunwayML(); // Reads RUNWAYML_API_SECRET from env
console.log('RunwayML client initialized');
Output
runwaymlSDK installed- API key configured via environment variable
- Client ready for video generation
Error Handling
| Error | Cause | Solution |
|---|---|---|
401 Unauthorized |
Invalid API key | Verify key at dev.runwayml.com |
ModuleNotFoundError |
SDK not installed | pip install runwayml |
RUNWAYML_API_SECRET not set |
Missing env var | Set in .env or export |
Resources
Next Steps
Generate your first video: runway-hello-world
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?