Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

miraflowmiraflow 视频

Agent Skill

miraflow 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,844

周安装

154

GitHub Stars

公开资料未说明

下载量

1,244
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install miraflow

简介

使用 Miraflow 创建和管理 AI 生成的视频和图像,包括头像视频、电影剪辑、图像生成、编辑和媒体上传。

SKILL.md

name
miraflow
description
Create and manage AI videos and images using the Miraflow API. Use when a user asks to: generate an avatar video with a script, create a cinematic or AI video, generate or edit an AI image, list available avatars or voices, check video generation status, download a completed video, or upload media for use in Miraflow. Requires MIRAFLOW_API_KEY env var.
metadata
{"openclaw":{"config":{"requiredEnv":["MIRAFLOW_API_KEY"]}}}

Miraflow

Miraflow is an AI video/image platform. The API is async — creation endpoints return a jobId, then you poll for completion.

Base URL: https://miraflow.ai/api Auth: always include -H "x-api-key: $MIRAFLOW_API_KEY" on every call. Never hardcode the key.

Full API reference: See references/api.md for endpoint details, request/response schemas, and the media upload workflow.

Rules

  • Never hardcode the API key. Always read from $MIRAFLOW_API_KEY.
  • Always use x-api-key as the header name, not Authorization.
  • After creating a video, always clearly state the jobId — the user needs it to check status.
  • Do not auto-download a video without the user asking.
  • Do not poll status in a loop. Check once, report the status, and tell the user to ask again if not ready.
  • If an API call returns an error, show the status code and error message clearly.
  • NEVER retry POST /api/video/create or POST /api/image/generate. These are expensive, non-idempotent operations. Call each creation endpoint exactly once per user request, even if the response is slow or unclear. If the call succeeds (any 2xx), stop — do not call again.
  • Always confirm before creating. Before calling any creation endpoint, summarize what will be created (avatar, voice, name, script) and wait for the user to confirm. Only proceed after explicit confirmation.

Core Workflows

List Avatars

GET /api/avatars

Present as a numbered list with avatar name and ID.

List Voices

GET /api/voices

Present as a numbered list with voice name and ID.

Create an Avatar Video (voice + script)

  1. If no avatarId given, list avatars and ask the user to pick one.
  2. If no voiceId given, list voices and ask the user to pick one.
  3. Ask for a video name if not provided.
  4. Before creating: Confirm with the user — show avatar name, voice name, video name, and script. Wait for explicit approval.
  5. Call POST /api/video/create exactly once:
{
  "avatarId": "<id>",
  "voiceId": "<id>",
  "name": "<name>",
  "text": "<script>",
  "im2vid_full": true
}
  1. Report the jobId clearly — the user needs it to check status later.
  2. Do not call create again regardless of how long the response takes. If a timeout or error occurs, report it and let the user decide whether to retry.

Note: im2vid_full: true enables full-body animation on photo avatars. Omit for head-only.

Check Video Status

GET /api/video/{jobId}/status

Translate status for the user:

  • inference_started → "Queued, not started yet"
  • inference_working → "In progress (X% complete)"
  • inference_complete → "Ready! Use the jobId to fetch the download link."
  • inference_failed → "Generation failed"
  • inference_error → "Unknown error occurred"

Fetch Video + Download Link

GET /api/video/{id}

Returns metadata including a signed downloadUrl (valid 24h). Share this directly with the user.

Download a Video

GET /api/video/{id}/download

Save the response (video/mp4) to the current directory as {video-name}.mp4. Confirm the file path when done.

Generate an AI Image

  1. POST /api/image/generate with prompt, name, optional aspectRatio (1:1 | 16:9 | 9:16 | 4:3 | 3:4)
  2. Poll GET /api/image/{jobId} until inference_complete → includes downloadUrl

Edit an Image

  1. Upload image via media upload workflow (see references/api.md)
  2. POST /api/image/edit with referenceImageMediaId, prompt, name
  3. Poll until complete

Upload Media (audio or reference images)

See references/api.md → Media Upload Workflow (initialize → PUT to S3 → finalize)

Error Handling

  • 400 — bad request, invalid params, or insufficient credits
  • 401 — missing/invalid API key (check MIRAFLOW_API_KEY)
  • 404 — resource not found

Always show the status code and full error message when an API call fails.

Credits

Created by Katie Min — designed and directed by Katie, built by Claude Code (AI coding agent by Anthropic), powered by OpenClaw.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.44%
按下载量换算1,088

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills