Skip to content
OpenSmartRoute
Skillv1.0.0

runway-local-dev-loop

Runway local dev loop — 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 local dev loop

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 (plugins/saas-packs/runway-pack/skills/runway-local-dev-loop/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill runway-local-dev-loop. Copyright stays with the author (MIT).

Runway Local Dev Loop

Overview

Implementation patterns for Runway local dev loop — AI video generation platform.

Prerequisites

  • Completed runway-install-auth setup

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 local dev loop

Error Handling

Error Cause Solution
401 Unauthorized Invalid API key Check RUNWAYML_API_SECRET
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.

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-local-bfa4f8/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-local-bfa4f8.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-runway-local-bfa4f8",
  "kind": "skill",
  "name": "runway-local-dev-loop",
  "description": "Runway local dev loop — 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 local dev loop\", \"runway-local-dev-loop\", \"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 local dev loop — 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 local dev loop\", \"runway-local-dev-loop\", \"AI video generation\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/runway-pack/skills/runway-local-dev-loop/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/runway-pack/skills/runway-local-dev-loop/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/runway-pack/skills/runway-local-dev-loop/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(pip:*),",
      "Bash(npm:*),",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Runway Local Dev Loop\n\n## Overview\n\nImplementation patterns for Runway local dev loop — AI video generation platform.\n\n## Prerequisites\n\n- Completed `runway-install-auth` setup\n\n## Instructions\n\n### Step 1: SDK Pattern\n\n```python\nfrom runwayml import RunwayML\n\nclient = RunwayML()\n\ntask = client.image_to_video.create(\n    model='gen3a_turbo',\n    prompt_text='A serene lake at dawn, mist rising, birds flying',\n    duration=5,\n)\nresult = task.wait_for_task_output()\nif result.status == 'SUCCEEDED':\n    print(f\"Video: {result.output[0]}\")\n```\n\n## Output\n\n- Runway integration for local dev loop\n\n#",
  "cost": {
    "context_tokens": 265
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-runway-local-bfa4f8/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.