agentsclimarketplace

Runway install auth

Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/runway-pack/skills/runway-install-auth

Runway install auth \u2014 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".From its SKILL.md

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill runway-install-auth

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.3 KB, 441 tokens by cl100k_base, as published. Nobody here has run it

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

  • runwayml SDK installed
  • API key configured via environment variable
  • Client ready for video generation

Error Handling

ErrorCauseSolution
401 UnauthorizedInvalid API keyVerify key at dev.runwayml.com
ModuleNotFoundErrorSDK not installedpip install runwayml
RUNWAYML_API_SECRET not setMissing env varSet in .env or export

Resources

Next Steps

Generate your first video: runway-hello-world

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.