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

videoinuvideoinu 视频

Agent Skill

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

总安装

2,521

周安装

104

GitHub Stars

公开资料未说明

下载量

824
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install videoinu

简介

通过图表画布管理视频项目、上传下载文件并与 AI 代理交互。

  • 支持工作流程编排与素材协作,适用于复杂视频制作场景。
  • 集成项目管理与 AI 对话功能,提升团队协作效率。videoinu 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需确认项目权限与存储空间配额,避免资源超限。
  • 通过 clawhub 安装并接入 OpenClaw 开发环境。

SKILL.md

name
videoinu
version
1.0.0
description
Videoinu platform skill — manage projects via Graphs (canvases), upload/download files, chat with AI Agents, and run Workflows. Use when: user mentions Videoinu, Graph management, uploading files to Videoinu, agent chat on Videoinu, or running Videoinu workflows.
metadata

videoinu-skill

Videoinu platform skill — manage projects via Graphs (canvases), upload/download files, chat with AI Agents, and run Workflows.

Important: How to Use

You MUST use the Python scripts provided by this skill to interact with Videoinu. Do NOT use mcporter, MCP, curl, or any other method to call the API directly.

All scripts are located in the scripts/ directory of this skill. Tokens are stored in ~/.videoinu/credentials.json and scripts read them automatically.

Example: to list projects, run python3 <skill_scripts_dir>/list_graphs.py — do not construct HTTP requests manually.

Overview

videoinu-skill provides a set of Python scripts for interacting with the Videoinu platform. It covers the following core capabilities:

  1. Graph Management — Create, list, and view Graphs (project canvases) along with their ViewNodes / CoreNodes
  2. File Upload/Download — Upload local files to the platform (creating CoreNodes) or download files from a Graph
  3. Agent Chat — Create Agent sessions and chat with AI Agents via WebSocket
  4. Workflow Execution — Run Workflow definitions and query execution status

Requirements

  • Binary: python3 (3.9+)
  • Environment variable: VIDEOINU_ACCESS_KEY (required)
  • Optional environment variable: VIDEOINU_API_BASE (defaults to https://videoinu.com)
  • No third-party dependencies: all scripts use only the Python standard library

Authentication

All requests use Cookie-based authentication: Cookie: token=<VIDEOINU_ACCESS_KEY>

Obtaining and Saving the Access Key

How to obtain your Access Key:

  1. Log in at https://videoinu.com
  2. Go to Profile page → click Copy Access Key

Saving the Access Key (choose one):

Option A: Save locally with auth.py (recommended)

python3 auth.py save "your-access-key"
# Token saved to ~/.videoinu/credentials.json (owner read/write only)
# All scripts will auto-read it — no environment variable needed

Option B: Environment variable

export VIDEOINU_ACCESS_KEY="your-access-key"

Token resolution priority: environment variable > ~/.videoinu/credentials.json

Verify and manage:

python3 auth.py status   # Show current auth status
python3 auth.py verify   # Verify token validity
python3 auth.py logout   # Remove saved token

If the user is not yet logged in, direct them to https://videoinu.com/login to sign up / log in and obtain their key.

Security warning: Never hardcode the Access Key into script files. The Access Key is a JWT token containing user identity information — leaking it could lead to account compromise. Use auth.py save or environment variables.


Script Reference

ScriptFunctionInputOutput
auth.pySave/verify/manage Access Keysave/status/verify/logoutAuth status
list_graphs.pyList user's Graphs--page-size, --tagGraph list
get_graph.pyView Graph details (ViewNode + CoreNode)GRAPH_IDFiltered node info
create_graph.pyCreate a new GraphNAME, --tagGraph ID + URL
upload_file.pyUpload a file to create a CoreNodeFile pathCoreNode ID + URL
download_file.pyDownload files from a GraphGRAPH_ID or --urlsLocal file paths
create_session.pyCreate an Agent sessionGRAPH_ID, --listSession ID
agent_chat.pyChat with an AgentSESSION_ID, messageAgent reply
run_workflow.pyRun a WorkflowDEFINITION_ID, inputsInstance ID
query_workflow.pyQuery Workflow statusINSTANCE_ID, --pollExecution status

Core Concepts

Graph (Canvas / Project)

A Graph is Videoinu's project container. It contains:

  • ViewNode: A visual node on the canvas with position, labels, and connections
  • CoreNode: An underlying data node representing an actual asset (image, video, audio, text) or operation (Workflow output)
  • Connection: A link between ViewNodes representing data flow
  • Group: A grouping of ViewNodes

Each ViewNode can reference one or more CoreNodes (core_refs), with selected_core_id indicating the currently selected version.

CoreNode Types

  • asset: Asset node

- asset_type: image | video | audio | text | json | file - source_type: upload | import | generated - Has url (media file) or content (text content)

  • operation: Operation node (Workflow execution output)

- status: pending | completed | failed

Agent Sessions

An Agent is an AI assistant bound to a Graph. It communicates via WebSocket in real time.

  • One Graph maps to one Agent Project
  • One Project can have multiple Sessions
  • Agents can invoke Tools to operate on nodes within the Graph

Workflow

A predefined automation pipeline that accepts inputs (CoreNode references) and produces new CoreNodes.


Typical Workflows

Scenario 1: Browse User Projects

# 1. List all Graphs
python3 list_graphs.py

# 2. View details of a specific Graph
python3 get_graph.py GRAPH_ID

Scenario 2: Create a New Project and Upload Files

# 1. Create a new Graph (auto-tagged with free-mode so it appears in the UI)
python3 create_graph.py "My New Project"
# → returns graph_id

# 2. Upload a reference file
python3 upload_file.py /path/to/reference.png
# → returns core_node_id, file_url

# 3. Verify the Graph
python3 get_graph.py GRAPH_ID

Scenario 3: Chat with an Agent

# 1. Create a session
python3 create_session.py GRAPH_ID
# → returns session_id

# 2. Send a message
python3 agent_chat.py SESSION_ID "Analyze the structure of this project"

# 3. Send a message with a file reference
python3 agent_chat.py SESSION_ID "Check this image {{@core_node:CORE_NODE_ID:image.png}}"

# 4. List existing sessions
python3 create_session.py GRAPH_ID --list

Scenario 4: Upload a File and Have the Agent Process It

# 1. Upload the file
python3 upload_file.py /path/to/video.mp4
# → core_node_id = "abc123"

# 2. Create a session (if you don't have one yet)
python3 create_session.py GRAPH_ID
# → session_id = "sess456"

# 3. Ask the Agent to process the file
python3 agent_chat.py sess456 "Please edit this video {{@core_node:abc123:video.mp4}}" --auto-approve

Scenario 5: Run a Workflow

# 1. List available Workflow definitions
python3 run_workflow.py --list

# 2. Run within an existing Graph
python3 run_workflow.py DEF_ID --graph-id GRAPH_ID \
  --inputs '{"input_image": {"type": "core_node_refs", "core_node_ids": ["NODE_ID"]}}'
# → returns instance_id

# 3. Poll execution status until complete
python3 query_workflow.py INSTANCE_ID --poll

Scenario 6: Download Generated Results from a Graph

# Download all images from the Graph
python3 download_file.py GRAPH_ID --type image --output-dir ./results

# Download all videos
python3 download_file.py GRAPH_ID --type video

# Download specific URLs directly
python3 download_file.py --urls "https://..." "https://..." --output-dir ./output

Agent Reference Format

You can reference nodes in a Graph within messages sent to the Agent:

{{@core_node:CORE_NODE_ID:display_name}}
{{@view_node:VIEW_NODE_ID:display_name}}

Example:

Please analyze this image {{@core_node:a1b2c3d4:sunset.png}}

The Agent will fetch the corresponding CoreNode content based on the reference.


Output Format

All scripts output JSON to stdout and errors to stderr.

Success:

{
  "graphs": [...],
  "has_more": false
}

Error:

{
  "error": "VIDEOINU_ACCESS_KEY is not set. Run: export VIDEOINU_ACCESS_KEY=\"your-access-key\""
}

Core Principles

  1. Faithfully convey user intent: Pass the user's request to the Agent as-is — do not embellish, translate, or rewrite the prompt
  2. Look before you leap: Use get_graph.py to understand the current state of a Graph before performing operations
  3. Reference, don't describe: When referring to existing files, use {{@core_node:ID:name}} references instead of text descriptions
  4. Upload first: If the user provides a local file, upload it with upload_file.py first, then reference it in messages
  5. Poll responsibly: Both Workflow and Agent responses have timeout limits — do not poll indefinitely

API Endpoint Reference

All HTTP endpoints are based on VIDEOINU_API_BASE (defaults to https://videoinu.com).

Go Backend (/api/backend/)

MethodPathDescription
GET/graph/listList Graphs
POST/graphCreate a Graph
GET/graph/:idGet Graph details
DELETE/graph/:idDelete a Graph
POST/core_nodes/upload/presignGet a pre-signed upload URL
POST/core_nodesCreate CoreNodes (batch)
GET/core_nodes/assets_v2List asset CoreNodes
POST/wf/instance/run_in_graphRun a Workflow in a Graph
POST/wf/instance/run_create_graphRun a Workflow and create a Graph
GET/wf/instance/:id/status_sseWorkflow status SSE
GET/wf/definition/listList Workflow definitions

Agent Service (/api/agent/)

MethodPathDescription
GET/projects/by-graph/:graphIdGet Agent Project by Graph ID
POST/projects/Create an Agent Project
GET/sessions/by-project/:projectIdList sessions for a Project
POST/sessions/Create a session
DELETE/sessions/:sessionIdDelete a session
WS/sessions/:sessionId/streamWebSocket Agent session stream

WebSocket Message Format (JSON-RPC 2.0)

Send prompt:

{"jsonrpc": "2.0", "method": "prompt", "id": "uuid", "params": {"user_input": "message"}}

Heartbeat:

{"jsonrpc": "2.0", "method": "heartbeat", "id": "hb-uuid", "params": {"heartbeat_id": "uuid"}}

Approve tool call:

{"jsonrpc": "2.0", "id": "rpc-id-from-request", "result": {"request_id": "req-id", "response": "approve"}}

Received event types: TurnBegin, ContentPart, ToolCall, ToolCallPart, ToolResult, ApprovalRequest, StatusUpdate, SessionNotice, ReplayComplete

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.37%
按下载量换算654

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills