Claude Skill

Install the Wireflow skill once, then build and run workflows by talking to Claude in any project on any machine.

The Wireflow Claude skill is a small bundle of instructions, reference docs, and helper scripts that teaches any Claude Code instance how to build and run Wireflow workflows on your behalf — using your API key, your templates, your credits, and your outputs.

Install it once and it works everywhere Claude runs: the claude CLI, the VS Code extension, the JetBrains plugin, any project directory on any machine. You don't need to give Claude access to the Wireflow codebase.

Who this is for

  • Founders and cofounders shipping content at scale who want a one-sentence loop: "Hey Claude, make me 10 variations of this workflow with different prompts."
  • Agencies and power users who want to wire Wireflow into existing Claude-driven pipelines without writing REST clients.
  • Developers on other projects (Gluely, EatIQ, any side project) who need Wireflow's AI models but don't want to leave their current repo.

What the skill can do

  • Discover Remotion templates you have access to
  • Compose workflow node graphs from natural language
  • Create and update saved workflows in your Wireflow account
  • Run workflows with custom inputs and poll async jobs until they complete
  • Hand back the final output URL (image, video, MP3) or the workflow URL for you to open in the visual editor

What the skill cannot do

  • Ship new Remotion compositions. Compositions are React code that lives in the Wireflow repo. Only the Wireflow team can author them.
  • Replace the visual editor. Anything complex is still better built in the UI first, then called via the skill once it's working.
  • Bypass credit costs. Every run deducts credits from your Wireflow account — the skill checks your balance before kicking off expensive video jobs.

Install

1. Grab an API key

Create one at wireflow.ai/settings?tab=api-keys&section=api-keys with these scopes:

  • workflows:read — list workflows and templates
  • workflows:write — create and update workflows
  • workflows:execute — run workflows

Copy the key somewhere safe. You won't be able to see it again after the settings page closes.

2. Install the skill

Clone the skill repo into your Claude skills directory:

git clone https://github.com/wireflowINC/wireflow-skill ~/.claude/skills/wireflow

Claude Code automatically picks up any skill in ~/.claude/skills/ — no configuration step needed. Restart your Claude session (or open a new one) and the wireflow skill will be available.

3. Add your API key to your shell

Add this to your shell profile (~/.zshrc, ~/.bashrc, or equivalent):

export WIREFLOW_API_KEY="wf_live_your_key_here"

Then either source the file or restart your terminal.

Optional: set a custom base URL if you're on staging or self-hosted:

export WIREFLOW_BASE_URL="https://staging.wireflow.ai/api/v1"

Use

Open Claude in any directory and ask for what you want. The skill auto-triggers on keywords like "wireflow", "build a workflow", "run a workflow", or "generate a video with a Remotion template."

Examples

Generate an image from a prompt:

Build me a Wireflow workflow that takes a product name, has Claude write a viral TikTok hook, then generates a 9:16 product photo with Nano Banana.

Run an existing workflow with inputs:

Run my Wireflow workflow cmnxw6nt10005l404i62b219o with the prompt "a cow in a neon field" and download the result.

Render a video via a Remotion template:

Use the foodscan Remotion template to make a TikTok about a Caesar salad being 850 calories — I'll give you the food photo.

Batch with data:

I have a CSV of 20 celebrity names. For each one, create a Wireflow workflow that generates a gym selfie and a workout description, then run them all and give me the output URLs.

How it works under the hood

The skill is a thin wrapper over the Wireflow REST API. When you make a request, Claude:

  1. Reads the relevant reference docs from the skill bundle
  2. Discovers templates via GET /remotion/templates so it knows what's available
  3. Either calls the AI workflow generator (POST /workflows/generate/stream) or hand-authors a workflow JSON
  4. Creates the workflow via POST /workflows
  5. Executes it via POST /workflows/:id/run
  6. Polls GET /workflows/executions/:id/poll until the job lands
  7. Hands you the final output URL

Every workflow created via the skill is stored in your Wireflow account and can be remixed, shared, or extended in the visual editor.

Guardrails

  • Scoped API keys. Grant read-only, write-only, or execute-only access per key. Rotate or revoke any time.
  • Credit awareness. The skill checks your balance before running expensive video jobs (Kling, Veo, long Remotion renders) and confirms with you first.
  • Private templates stay private. Templates with allowedEmails restrictions stay hidden from API keys outside the allowed list. No cross-account leakage.
  • No codebase access. The skill talks to your account via HTTPS and your API key. It doesn't need access to the Wireflow source.

Next steps

© 2026 Wireflow. All rights reserved.

Claude Skill | Wireflow Docs