Skip to content
Skillv1.0.0

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", "

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (skills/.curated/runway-install-auth/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill runway-install-auth. Copyright stays with the author (MIT).

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

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

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-runway-install-auth/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-runway-install-auth.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-runway-install-auth",
  "kind": "skill",
  "name": "runway-install-auth",
  "description": "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\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "creative"
    ],
    "tags": [
      "skill-md",
      "saas",
      "runway",
      "ai",
      "video-generation",
      "creative",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/runway-install-auth/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/runway-install-auth/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/runway-install-auth/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(pip:*),",
      "Bash(npm:*),",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Runway Install Auth\n\n## Overview\n\nInstall the Runway ML SDK and configure API key authentication for AI video generation.\n\n## Prerequisites\n\n- Runway account at runwayml.com\n- API key from the Runway Developer Portal (dev.runwayml.com)\n- Python 3.9+ or Node.js 18+\n\n## Instructions\n\n### Step 1: Install SDK\n\n```bash\nset -euo pipefail\n# Python\npip install runwayml\n\n# Node.js\nnpm install @runwayml/sdk\n```\n\n### Step 2: Configure Environment\n\n```bash\n# .env\nRUNWAYML_API_SECRET=key_xxxxxxxxxxxxxxxxxxxxxxxx\n```\n\n### Step 3: Verify Connection (Python)\n\n```python\nfrom runwayml import RunwayML\n\nclient ",
  "cost": {
    "context_tokens": 423
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-runway-install-auth/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.