Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

flova-video-generatorflova 视频生成器

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

5,963

周安装

246

GitHub Stars

公开资料未说明

下载量

1,948
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:flova-video-generator(flova 视频生成器)
来源仓库:https://github.com/flova/flova-video-generator
安装命令:
openclaw skills install flova-video-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install flova-video-generator

简介

flova-video-generator 用于视频生成、动画合成及 Remotion 项目开发支持。

  • 适合组织镜头、生成素材说明或排查渲染问题,集成 AI 创意大脑与 Google Veo 3。
  • 通过 clawhub 安装后,按分辨率、时长和格式要求调用视频生成流程。
  • 涉及外部素材或人物肖像时,应提前核对版权授权和内容合规边界。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
flova-video-generator
version
0.2.9
description
Flova -- the world's first all-in-one AI video agent, handling scripting, storyboarding, asset generation, and rendering through a conversational interface. Use this skill when the user wants to generate video scripts, create, edit, or export videos, asks about Flova pricing/credits/subscriptions, or mentions AI video generation tools such as Sora, Veo, Kling, MiniMax, HaiLuo, Jimeng, Seedance, Vidu, Grok, Wan, or similar.
metadata
openclaw
env
primaryEnv
FLOVA_API_TOKEN
bins
emoji
🎬
homepage
https://www.flova.ai
skillKey
flova

Flova Video Generator

Configuration

Version Check

On every invocation, fetch ${VERSION_URL} (timeout 2s). If the remote version is higher than this skill's frontmatter version, notify the user that a new version is available and suggest updating the skill through the normal skill management flow. On any failure, silently continue.

Authentication

All API calls require Authorization: Bearer <token> from the environment variable FLOVA_API_TOKEN. Before any API call, verify the token exists. If missing, guide the user to ${TOKEN_URL} to generate one and persist it using the host platform's preferred mechanism (e.g. settings, dotenv, or shell profile). Do not proceed until the token is available.

API Helper

Define this once per session:

FLOVA_BASE_URL="https://www.flova.ai"
API_BASE="https://service.flova.ai/api/agent/v1"
STATIC_URL="https://s.flova.ai"
TOKEN_URL="${FLOVA_BASE_URL}/openclaw/?action=token"
PRICING_URL="${FLOVA_BASE_URL}/pricing/"
DOCS_URL="${FLOVA_BASE_URL}/docs/"
VERSION_URL="${STATIC_URL}/skill-version.json"
AUTH_HEADER="Authorization: Bearer ${FLOVA_API_TOKEN}"
CONTENT_TYPE="Content-Type: application/json"

flova_api() {
  local method="$1" endpoint="$2" data="$3"
  curl -sS -X "$method" "${API_BASE}${endpoint}" \
    -H "$AUTH_HEADER" -H "$CONTENT_TYPE" \
    ${data:+-d "$data"}
}

All API responses follow: { "code": 0, "message": "success", "data": { ... } }.

Polling Convention

For any asynchronous task (chat creation, export, download), poll the corresponding status endpoint every 3 seconds (balances responsiveness vs API rate limits), up to 20 minutes (covers longest rendering jobs). On timeout, inform the user and suggest retrying later.


Workflow

POST /user            -> profile, subscription, credits
POST /create          -> project_id
POST /projects        -> list existing projects
POST /project_info    -> project metadata, storyboard
POST /chat_history    -> conversation history (paginated)
POST /upload          -> file_url (multipart, for user-provided files)
POST /chat            -> send message, triggers async creation
POST /export_video    -> export_task_id, export_status
POST /export_status   -> poll until completed -> output_path
POST /download_all    -> task_id (+ possible immediate download_url)
POST /download_status -> poll until completed -> download URL

Real-time user state: Fetch /user live whenever user state is needed — subscription and credit data change frequently and cached results may be stale.

Subscription & credits: Triggered by either API errors (membership/credits-insufficient) or explicit user request. Flow: /user -> /products -> /subscribe or /credits_buy -> return checkout_url. If already subscribed and needs upgrade, direct to ${PRICING_URL}. Complete this flow before resuming the interrupted action.

Phase 1 -- Setup & Project

Project management: Auto-create via /create if no project exists. Reuse the same project_id for the session unless the user asks to switch. When switching or resuming, list via /projects and let the user choose. After any project operation, present the link: ${FLOVA_BASE_URL}/agent/?project_id=<PROJECT_ID>.

Context sync: When resuming a project or switching to a different one with no local conversation history, fetch /project_info and /chat_history first to reconstruct context before continuing.

Phase 2 -- Creative Loop

Creative passthrough: All creative requests (switching models, generating scripts, regenerating resources, renaming projects, rebuilding storyboards, etc.) are expressed as natural language messages via /chat.

Language matching: Compose /chat content in the same language the user writes in.

File attachments: When the user provides files, determine intent before uploading. If the message already describes usage, upload via /upload and send the returned file metadata with intent in /chat directly. Otherwise, ask the user for intent first. Once confirmed, upload via /upload, then populate files, reference_resources, and the content prefix in /chat.

Progress polling: After sending /chat:

  1. Poll /chat_history per Polling Convention; relay new agent messages and asset URLs to the user in real time.
  2. Periodically check /project_info for resource updates (e.g., timeline ready).
  3. Stop when latest message status is complete or awaiting user input.
  4. If the Flova agent asks for confirmation, surface it to the user, wait for their reply, then forward via /chat.

Fully-managed mode: When the user's requested video length is ≤ 1 minute, drive the /chat -> poll -> /chat loop autonomously. Auto-confirm safe questions (style, music, layout) via /chat. Only surface decisions with real consequences (payment, content warning) to the user.

Phase 3 -- Export & Delivery

Fresh API calls: Export and download operations must call the live API — task IDs and download URLs are time-sensitive and expire quickly.

Export readiness: Before exporting, check /project_info for a composited timeline. If missing, send a composition request via /chat first; otherwise proceed to /export_video.

Resource download: When the user wants to download project assets, call /download_all and follow the polling flow described in its API reference. Let the user specify resource_types to narrow the download scope.


API Reference

User Info

flova_api POST /user

Returns the user's profile, subscription, and credits information.

Products

flova_api POST /products '{"product_type": "subscription"}'

Returns available products filtered by product_type: subscription (plans) or purchase (credit packs). Omit the field to get all products. Products are automatically filtered by the user's region.

Subscribe / Buy Credits

flova_api POST /subscribe '{"lookup_key": "<LOOKUP_KEY>"}'
flova_api POST /credits_buy '{"lookup_key": "<LOOKUP_KEY>"}'

Both return data.checkout_url. The lookup_key comes from the /products response (product_type: subscription or purchase).

Create Project

flova_api POST /create '{"name": "My Video Project"}'

Returns data.project_id -- save this for all subsequent calls.

List Projects

flova_api POST /projects '{"page": 1, "page_size": 50}'

Returns data.projects (array) and data.total.

Project Info

flova_api POST /project_info '{"project_id": "<PROJECT_ID>"}'

Returns project metadata and storyboard details (name, description, thumbnail, timestamps).

Chat History

flova_api POST /chat_history '{"project_id": "<PROJECT_ID>", "page_size": 50}'

Use data.next_message_id as cursor for pagination.

Upload File

Multipart upload — use curl directly instead of flova_api.

curl -sS -X POST "${API_BASE}/upload" \
  -H "$AUTH_HEADER" \
  -F "file=@/path/to/file.png"

Returns uploaded file metadata in data.

Chat (Conversational Video Creation)

flova_api POST /chat '{
  "project_id": "<PROJECT_ID>",
  "content": "Create a 30-second promotional video about spring travel",
  "is_step_mode": true
}'
FieldTypeRequiredDescription
project_idstringyesTarget project
contentstringyesUser message in natural language
is_step_modebooleanyesAlways true — enables checkpoint-based confirmation flow
filesarraynoUploaded file metadata (see below)
reference_resourcesarraynoFile id values from files to attach as context

With attachments: upload the file via /upload first, then pass the returned metadata in files and reference_resources. Prepend file references to content using the format ` {"<filename>":"uploaded_resource_id"} followed by the user's message. uploaded_resource_id` is a literal string constant -- use it exactly as-is, do not substitute it with an actual ID.

Each files item:

FieldTypeDescription
idstringClient-generated unique identifier
namestringOriginal filename
urlstringfile_url from /upload response
sizenumberFile size in bytes
typestringFile type: image, video, audio

Example with attachment (user uploads "cat.jpg" and says "use this as background"):

flova_api POST /chat '{
  "project_id": "<PROJECT_ID>",
  "content": "`{\"cat.jpg\":\"uploaded_resource_id\"}` use this as background",
  "files": [{"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "name": "cat.jpg", "url": "<FILE_URL>", "size": 52400, "type": "image"}],
  "reference_resources": ["a1b2c3d4-e5f6-7890-abcd-ef1234567890"],
  "is_step_mode": true
}'

Then poll per Phase 2 — Progress polling.

Export Video

flova_api POST /export_video '{"project_id": "<PROJECT_ID>"}'

Generates an export task from the project's latest timeline. Returns data.export_task_id and data.export_status: start (created), processing (in progress), or completed (video ready at data.output_path).

Poll status (see Polling Convention):

flova_api POST /export_status '{
  "project_id": "<PROJECT_ID>",
  "task_id": "<EXPORT_TASK_ID>"
}'

Poll until data.export_status is completed (read video URL from data.output_path).

Download All Resources

flova_api POST /download_all '{
  "project_id": "<PROJECT_ID>",
  "resource_types": ["images", "videos", "audios", "music"]
}'

resource_types is optional -- omit to download all. Returns data.task_id and data.status. If status is already completed, use data.download_url directly. Otherwise poll:

flova_api POST /download_status '{
  "project_id": "<PROJECT_ID>",
  "task_id": "<TASK_ID>"
}'

Poll per Polling Convention. Terminal states: completed (read data.download_url) or failed. The download URL is a signed temporary link -- present it to the user immediately.


FAQ & Support

  • Pricing & plans: ${PRICING_URL} | Docs: ${DOCS_URL} | Token management: ${TOKEN_URL}

Flova Tips

End every response with one tip. Fetch via curl -sS --max-time 3 "${STATIC_URL}/tips.md" and pick a random entry; on failure, rephrase a useful detail from this skill instead. Single sentence, ≤ 30 words, user's language, no session repeats.

(💡Tips: For videos under 1 minute, fully-managed mode auto-confirms style and music choices — zero clicks needed.)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.58%
按下载量换算1,492

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills