Skip to content
OpenSmartRoute
Skillv1.0.0

runway-core-workflow-a

Runway core workflow a — 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 core workflow

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-core-workflow-a/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill runway-core-workflow-a. Copyright stays with the author (MIT).

Runway Core Workflow A

Overview

Advanced text-to-video generation: prompt engineering, model selection, parameter tuning, and batch generation.

Prerequisites

  • Completed runway-hello-world

Instructions

Step 1: Model Selection

from runwayml import RunwayML
client = RunwayML()

# Available models:
# gen3a_turbo   — Fast, lower cost, good quality
# gen4_turbo    — Latest model, highest quality

task = client.image_to_video.create(
    model='gen4_turbo',
    prompt_text='A futuristic cityscape at night with flying cars and neon signs, cyberpunk aesthetic',
    duration=10,
    ratio='16:9',
)
result = task.wait_for_task_output()

Step 2: Prompt Engineering Tips

# Structure: Subject + Action + Setting + Style + Camera
prompts = [
    # Good: specific, visual, stylistic
    "A red fox walking through a snowy forest, soft winter light, documentary style, tracking shot",

    # Good: detailed motion and camera
    "Waves of golden wheat swaying in the wind, drone flyover, warm sunset, cinematic grain",

    # Bad: too abstract
    # "Something beautiful happening" — too vague
]

Step 3: Batch Generation

import asyncio

prompts = [
    "A butterfly emerging from a cocoon, macro lens, time-lapse, studio lighting",
    "Rain falling on a Tokyo street at night, reflections, neon, dolly zoom",
    "A chef preparing sushi in a traditional kitchen, close-up, warm lighting",
]

tasks = []
for prompt in prompts:
    task = client.image_to_video.create(
        model='gen3a_turbo',
        prompt_text=prompt,
        duration=5,
    )
    tasks.append(task)
    print(f"Queued: {task.id}")

# Wait for all
for task in tasks:
    result = task.wait_for_task_output()
    status = "OK" if result.status == "SUCCEEDED" else "FAILED"
    print(f"  {task.id}: {status}")

Step 4: Output Format Options

task = client.image_to_video.create(
    model='gen3a_turbo',
    prompt_text='Abstract paint mixing in slow motion, vibrant colors, black background',
    duration=5,
    ratio='9:16',      # Vertical for mobile/TikTok
    # ratio='16:9',    # Landscape for YouTube
    # ratio='1:1',     # Square for Instagram
)

Output

  • Videos generated with optimal model selection
  • Prompt engineering best practices applied
  • Batch generation for multiple videos
  • Output in various aspect ratios

Error Handling

Issue Cause Solution
Low quality Gen3a_turbo for complex scene Use gen4_turbo for higher quality
Content rejection Policy violation Remove violent/explicit content from prompt
Slow generation High queue Use turbo model or try later
Wrong aspect ratio Not specified Always set ratio explicitly

Resources

Next Steps

Image-to-video: runway-core-workflow-b

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-core-w-b784aa/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-core-w-b784aa.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-runway-core-w-b784aa",
  "kind": "skill",
  "name": "runway-core-workflow-a",
  "description": "Runway core workflow a — 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 core workflow a\", \"runway-core-workflow-a\", \"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 core workflow a — 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 core workflow a\", \"runway-core-workflow-a\", \"AI video generation\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/runway-core-workflow-a/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/runway-core-workflow-a/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/runway-core-workflow-a/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(pip:*),",
      "Bash(npm:*),",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Runway Core Workflow A\n\n## Overview\n\nAdvanced text-to-video generation: prompt engineering, model selection, parameter tuning, and batch generation.\n\n## Prerequisites\n\n- Completed `runway-hello-world`\n\n## Instructions\n\n### Step 1: Model Selection\n\n```python\nfrom runwayml import RunwayML\nclient = RunwayML()\n\n# Available models:\n# gen3a_turbo   — Fast, lower cost, good quality\n# gen4_turbo    — Latest model, highest quality\n\ntask = client.image_to_video.create(\n    model='gen4_turbo',\n    prompt_text='A futuristic cityscape at night with flying cars and neon signs, cyberpunk aesthetic',\n    du",
  "cost": {
    "context_tokens": 743
  }
}

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