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

modellixmodellix 视频

Agent Skill

modellix 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,064

周安装

634

GitHub Stars

公开资料未说明

下载量

5,275
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install modellix

简介

用于集成 Modellix API 实现 AI 图像和视频生成的统一接口。

  • 适合需要从文本生成视觉内容或接入多模态工作流的场景。
  • 通过 clawhub 安装,需确认 API 密钥和端点配置。
  • 建议结合原始 README 核验支持的模型和提示词生成逻辑。
  • 使用前请评估是否会触发高带宽网络请求,避免影响系统性能。

SKILL.md

name
modellix
description
Integrate Modellix's unified API for AI image and video generation into applications. Use this skill whenever the user wants to generate images from text, create videos from text or images, edit images, do virtual try-on, or call any Modellix model API. Also trigger when the user mentions Modellix, model-as-a-service for media generation, or needs to work with providers like Qwen, Wan, Seedream, Seedance, Kling, Hailuo, or MiniMax through a unified API.
primaryCredential
MODELLIX_API_KEY
primaryEnv
MODELLIX_API_KEY
requiredEnv

Modellix Skill

Modellix is a Model-as-a-Service (MaaS) platform with async image/video generation APIs. The invariant flow is: submit task -> get task_id -> poll until success or failed.

Official Docs

  • AI Onboarding (agent quick start): https://docs.modellix.ai/get-started.md
  • API: https://docs.modellix.ai/ways-to-use/api.md
  • CLI: https://docs.modellix.ai/ways-to-use/cli.md
  • Full Models Docs Index: https://docs.modellix.ai/llms.txt

Execution Policy (CLI-first)

Always choose execution path in this order:

  1. Use CLI when modellix-cli is available and authenticated.
  2. Fall back to REST when CLI is not installed, unsuitable, or missing capability.
  3. Prefer machine-readable outputs (--json) in CLI flows.

For CLI mode, use these two commands as the default command set:

  • Create task: modellix-cli model invoke --model-slug <provider/model> --body|--body-file ...
  • Get result: modellix-cli task get <task_id>

Do not guess or invent deprecated flags (for example --model-type). Use --help only as an assistive fallback when command behavior is unclear.

API Key Lifecycle Policy

Always handle MODELLIX_API_KEY with this lifecycle: discover -> request -> use-session -> (optional) persist-user-env.

1) Discover existing key first

Before asking the user for credentials, check in this order:

  1. Current session environment variable MODELLIX_API_KEY.
  2. Existing user-level environment variable MODELLIX_API_KEY if already configured.
  3. If both are unavailable, treat as first-use and request key from user.

Never ask for a key again when a valid key is already discoverable.

2) Request key only when missing

If no usable key is found:

  • Ask user to provide a Modellix API key.
  • Do not print or echo key values in logs/output.
  • Use the key for current authentication flow in session scope by default.

3) Optional persistence for future sessions

Default behavior: do not persist automatically.

If and only if the user explicitly asks for persistence, write to user-level environment settings:

  1. Preferred and allowed persistent target: user-level MODELLIX_API_KEY.
  2. Do not write system-level environment variables by default.
  3. Do not write credentials into other coding agents' local config files.

4) Replace key when user provides a new one

If the user provides a new API key, treat it as a key rotation event:

  1. Replace current session value first.
  2. Only if the user explicitly requested persistence, also replace the user-level env value.
  3. Do not keep old and new keys active in parallel in this skill workflow.
  4. Re-run scripts/preflight.py --json after replacement and continue only if the new key is valid.

When replacement fails validation, keep the flow blocked, report the validation failure, and request a corrected key.

Preflight and Deterministic Execution

Default execution path is the CLI command pair (model invoke -> task get).

Bundled scripts are optional helpers for automation:

  1. scripts/preflight.py

- Validates CLI availability and API key presence. - Returns recommended mode (cli or rest).

  1. scripts/invoke_and_poll.py

- Executes CLI-first with REST fallback support. - Handles exponential backoff polling and retryable submit errors. - Emits normalized JSON result output.

When preflight reports missing credentials, apply the lifecycle policy above:

  1. Try discover flow (session env -> existing user env).
  2. Request key from user only if still missing.
  3. Use session value and retry.
  4. Persist only when explicitly requested by the user.

When preflight reports cli_available=false:

  1. Proceed directly with REST fallback (supported path).
  2. After the task completes, recommend CLI installation to the user:

"For faster workflows in future sessions, consider installing the Modellix CLI: npm i -g modellix-cli"

Quick commands:

python scripts/preflight.py --json
python scripts/invoke_and_poll.py --model-slug bytedance/seedream-5.0-lite --body '{"prompt":"A cinematic portrait of a fox in a misty forest at sunrise"}'

Core Workflow

1) Discover or request API key

  • Run key discovery first (session env, then existing user-level env).
  • If not found, ask user for key created in Modellix Console.
  • Use key in session scope by default (no automatic persistence).
  • Persist only on explicit user consent:

- Allowed persistent target: user-level MODELLIX_API_KEY. - Not allowed by default: system-level env writes or other agent config writes.

  • If user provides a new key later, replace the existing stored key and re-run preflight validation.
  • Retry preflight and continue only after key is discoverable.

2) Select model

Read references/REFERENCE.md to find model docs and parameters. If the user does not specify a model, use the default model for the task type.

Default Models

Task TypeDefault Model Slug
Text-to-image (T2I)bytedance/seedream-5.0-lite
Image editing / I2Ibytedance/seedream-5.0-lite-edit
Text-to-video / I2Vbytedance/seedance-2.0-fast-i2v
Video-to-video (V2V)bytedance/seedance-2.0-v2v

Quick Examples

T2I — only prompt is required:

modellix-cli model invoke \
  --model-slug bytedance/seedream-5.0-lite \
  --body '{"prompt":"A cinematic sunset over a futuristic city skyline"}'

I2Iprompt + image array required:

modellix-cli model invoke \
  --model-slug bytedance/seedream-5.0-lite-edit \
  --body '{"prompt":"Convert to watercolor style","image":["https://example.com/input.jpg"]}'

I2V — at least one image param (first_frame_image, last_frame_image, or reference_images) required:

modellix-cli model invoke \
  --model-slug bytedance/seedance-2.0-fast-i2v \
  --body '{"prompt":"A cat playing in the garden","first_frame_image":"https://example.com/frame.jpg"}'

V2Vvideo_urls array required:

modellix-cli model invoke \
  --model-slug bytedance/seedance-2.0-v2v \
  --body '{"video_urls":["https://example.com/source.mp4"]}'

3) Run invocation and poll

  • Preferred default: CLI command pair from references/cli-playbook.md

- modellix-cli model invoke ... - modellix-cli task get <task_id>

  • Manual REST flow: references/rest-playbook.md
  • Optional helper: scripts/invoke_and_poll.py for auto polling/normalized output

4) Consume resources

Output media URLs are under result.resources. Persist assets promptly; results expire in 24 hours.

Output File Naming

When downloading generated artifacts (images, videos, audio, etc.), name files with the modellix- prefix followed by the model slug (with / replaced by -) and a timestamp:

modellix-{model_slug}-{timestamp}.{ext}

Examples:

  • modellix-bytedance-seedream-5.0-lite-20260430-113000.png
  • modellix-bytedance-seedance-2.0-fast-i2v-20260430-113500.mp4
  • modellix-google-nano-banana-pro-20260430-114000.png

5) Post-task CLI recommendation

If CLI was not available during this session and REST was used instead, suggest installation after the task completes:

Tip: You can install the Modellix CLI for a faster workflow: npm i -g modellix-cli Docs: https://docs.modellix.ai/ways-to-use/cli.md

Progressive Reference Routing

Read only what the task needs:

  • references/cli-playbook.md

- CLI install/auth/command flow and retry guidance

  • references/rest-playbook.md

- REST endpoints, headers, status model, retry policy

  • references/capability-matrix.md

- CLI command <-> REST endpoint mapping and fallback rules

Bundled Assets

  • Output schema:

- assets/output/task-result.schema.json

Credential and Data Egress

  • Primary credential: MODELLIX_API_KEY.
  • Required env vars: MODELLIX_API_KEY.
  • This skill does not require any other secret.
  • Network egress: sends requests to https://api.modellix.ai.
  • User payload handling: prompts and user-provided inputs (including media URLs or file-derived content) may be sent to Modellix endpoints during invocation.
  • Result handling: generated resource URLs come from Modellix response payloads and should be downloaded before expiry (about 24 hours).
  • Secret hygiene:

- Never expose API keys in terminal output, logs, screenshots, transcripts, or commit content. - Mask sensitive values when showing command examples. - Default to session-only credential usage. - Any persistent write requires explicit user approval and must be user-level env only. - Do not write system-level env or other agent config files as part of this skill.

Error/Retry Policy

CodeAction
400Do not retry. Fix parameters or request body format.
401Do not retry. Verify API key.
402Do not retry. Insufficient balance.
404Do not retry. Verify task_id or model-slug.
429Retry with exponential backoff.
500/503Retry with exponential backoff (max 3 times).

Verification Checklist

  • [ ] Preflight executed and mode selected (cli or rest)
  • [ ] API key configured (MODELLIX_API_KEY or CLI --api-key)
  • [ ] Model parameters verified against model doc from references/REFERENCE.md
  • [ ] Task submit returns task_id with success code
  • [ ] Polling handles pending, processing, success, failed
  • [ ] Retry behavior implemented for 429/500/503
  • [ ] Result URLs persisted before 24-hour expiration
  • [ ] REST fallback validated when CLI path is unavailable

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.95%
按下载量换算5,061

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills