operate-content-workflow

Inspect, edit, and run Vetta content-creation node workflows through search and execute operations.

154|27|Updated Aug 3, 2026
One-click install
npx skills add https://github.com/openvetta/open-vetta --skill operate-content-workflow-openvetta
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: operate-content-workflow
Source: https://github.com/openvetta/open-vetta/tree/main/packages/plugins/presets/content-creation/agent/skills/operate-content-workflow
Command: npx skills add https://github.com/openvetta/open-vetta --skill operate-content-workflow-openvetta

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Building and modifying AI image/video generation workflows on a node canvas is error-prone: invalid connections, unsupported model modes, orphaned nodes, and failed runs are hard to diagnose manually. This Skill gives the agent a controlled operating loop to inspect, edit, validate, and run content-creation workflows safely. ## Core Features & Use Cases - Workflow inspection and diagnosis: Query summary, graph, readiness, capabilities, runtime, and diagnostics views to understand workflow state and find blocking errors. - Atomic graph editing: Create, connect, and configure nodes in revision-bound batches, including video shot configuration with strategies like text-to-video, animate-still, first/last-frame interpolation, omni-reference, and video transformation. - Safe run execution: Prepare runs behind a user confirmation dialog, monitor status, classify generation failures, and recover from revision conflicts. - Use Case: A user asks to turn a product photo into a short animated video. The Skill inspects capabilities, imports the image as an asset, configures an animate-still video shot with a proper prompt plan, verifies readiness, and prepares the run for user approval. ## Quick Start Use the operate-content-workflow skill to inspect my current content workflow and connect my product image to a video generator.

Frequently Asked Questions about operate-content-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build an AI video generation workflow from an image?▼

Import the local image as an asset, then configure the video generator with a configure_video_shot operation using the animate-still strategy and an animate-still-plan prompt. The operation validates the strategy, binds the image source, and selects a compatible model mode atomically.

How do I create a first and last frame interpolation video?▼

Create two image generator nodes where the last frame uses image-to-image with the first frame as its sole reference, then submit one configure_video_shot operation with a first-last-frame-plan. The operation binds both images as firstFrame and lastFrame to an interpolation-capable video model.

When should I use a Prompt node instead of a generator prompt?▼

Use a Prompt node only when one verbatim text fragment must be shared by at least two consumers and updated in a single edit, such as a brand voice block. Single-use prompts belong directly on the generator's prompt or promptPlan field.

Why does my video generation run fail or get blocked?▼

Inspect the readiness, diagnostics, and capabilities views to classify the cause: invalid graph topology, unsupported mode or ratio, provider rejection, or reference mismatch. Repair the graph or adjust the configuration, then retry only after confirming inputs remain valid.

Does running a workflow require user confirmation?▼

Yes. Executing run with action prepare opens the plugin's global confirmation dialog, and generation only starts after the user approves it because runs may consume quota. Edit batches apply atomically without per-operation confirmation.

Can I edit the content-creation.json file directly?▼

No. All workflow changes must go through the content_creation_search and content_creation_execute tools, which validate and apply revision-bound batches atomically. Direct file edits and calls to media providers outside the plugin are not permitted.