From runway-pack
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".
npx claudepluginhub flight505/skill-forge --plugin runway-packThis skill is limited to using the following tools:
Install the Runway ML SDK and configure API key authentication for AI video generation.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Install the Runway ML SDK and configure API key authentication for AI video generation.
set -euo pipefail
# Python
pip install runwayml
# Node.js
npm install @runwayml/sdk
# .env
RUNWAYML_API_SECRET=key_xxxxxxxxxxxxxxxxxxxxxxxx
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")
import RunwayML from '@runwayml/sdk';
const runway = new RunwayML(); // Reads RUNWAYML_API_SECRET from env
console.log('RunwayML client initialized');
runwayml SDK installed| 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 |
Generate your first video: runway-hello-world