Token导航 LogoToken导航TokenDH.com
效率external-serviceclawhub未标认证来源可访问clear审计通过

minimaxminimax 视频

Agent Skill

minimax 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

20,321

周安装

864

GitHub Stars

1

下载量

7,119
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install minimax

简介

使用模型路由、兼容的 SDK 和更安全的多模式工作流程,使用 MiniMax 文本、语音、视频和音乐 API 进行构建。

SKILL.md

name
MiniMax
slug
minimax
version
1.0.0
homepage
https://clawic.com/skills/minimax
description
Build with MiniMax text, speech, video, and music APIs using model routing, compatible SDKs, and safer multimodal workflows.
changelog
Initial release with model routing, text compatibility guidance, speech and media workflows, MCP boundaries, and failure recovery.
metadata
{"clawdbot":{"emoji":"🎛️","requires":{"env":["MINIMAX_API_KEY"],"bins.optional":["curl","jq"],"config":["~/minimax/"]},"primaryEnv":"MINIMAX_API_KEY","os":["linux","darwin","win32"],"configPaths":["~/minimax/"]}}

When to Use

User wants to work with MiniMax as a real multimodal platform, not as a vague brand mention. Agent handles model routing, API selection, compatible SDK caveats, speech generation, queued media jobs, MCP boundaries, and production-safe retry patterns.

Use this when the blocker is operational: wrong interface, wrong model tier, ignored parameters, broken polling loop, unsafe media upload, or poor routing across text, speech, video, and music tasks.

Architecture

Memory lives in ~/minimax/. If ~/minimax/ does not exist, run setup.md. See memory-template.md for structure.

~/minimax/
|-- memory.md          # Durable context, activation boundaries, and approved defaults
|-- routing.md         # Model and interface choices that worked in practice
|-- text-defaults.md   # Text model pins, SDK compatibility notes, and parsing rules
|-- speech-defaults.md # Voice, format, latency, and consent-sensitive speech notes
|-- media-jobs.md      # Async video or music job patterns, polling, and output handling
|-- mcp-notes.md       # Approved MCP hosts, scopes, and rejection reasons
`-- incidents.md       # Rate limits, failed jobs, bad prompts, and recovery notes

Quick Reference

Load only the file needed for the current blocker.

TopicFile
Setup guidesetup.md
Memory templatememory-template.md
Model selection and routingmodel-routing.md
Native, Anthropic-compatible, and OpenAI-compatible text flowstext-interfaces.md
Speech generation and audio deliveryspeech-workflows.md
Video, music, and async media jobsmedia-generation.md
MCP boundaries and orchestration choicesmcp-and-orchestration.md
Failure recovery and debuggingtroubleshooting.md

Requirements

  • MINIMAX_API_KEY for direct MiniMax API usage.
  • A client surface of choice: raw HTTP, an approved SDK, or an existing Anthropic-compatible or OpenAI-compatible integration.
  • Explicit user approval before uploading private media, cloning or imitating a real person's voice, enabling remote MCP servers, or launching long-running paid generation jobs.
  • Current model names, compatibility limits, and endpoint behavior must be verified against official MiniMax docs when the task depends on exact product surface.

Operating Coverage

This skill treats MiniMax as an execution platform, not as a one-line provider swap. It covers:

  • text generation through native MiniMax APIs and compatible SDK interfaces
  • model routing across current text families such as MiniMax-M2.5, MiniMax-M2.5-highspeed, MiniMax-M2.1, MiniMax-M2.1-highspeed, and MiniMax-M2
  • speech generation with synchronous HTTP and lower-latency endpoint choices
  • queued media workflows for video and music where submit, poll, and fetch are separate phases
  • MCP-aware workflows where tool access, host trust, and data scope must be explicit
  • debugging around ignored parameters, malformed payloads, long queue times, rate limits, and output reproducibility

Data Storage

Keep only durable MiniMax operating context in ~/minimax/:

  • which modalities the user actually uses: text, speech, video, music, or MCP-backed flows
  • approved models, speed tiers, and compatibility interfaces that worked for real tasks
  • output defaults such as JSON parsing rules, audio formats, polling intervals, and retry posture
  • media safety rules, consent requirements, and budget boundaries the user explicitly approved
  • repeated failures such as 401s, ignored params, queue stalls, or bad prompt templates

Core Rules

1. Lock the Modality and Deliverable First

  • Start by naming the actual output: structured text, chat reply, narration audio, short video, song draft, or tool-augmented workflow.
  • MiniMax is not one surface. The wrong modality choice creates wrong endpoints, wrong latency expectations, and wrong retry logic.

2. Choose Native Versus Compatible APIs Deliberately

  • Use native MiniMax APIs when you need MiniMax-specific features or exact behavior.
  • Use Anthropic-compatible or OpenAI-compatible interfaces only when the surrounding app already depends on those SDKs and the supported subset is good enough.
  • Treat compatibility layers as narrower surfaces, not as feature-complete copies.

3. Pin the Exact Model Family and Speed Tier

  • Choose quality-first, speed-first, or fallback models explicitly instead of saying "use MiniMax."
  • Current text routing should start with MiniMax-M2.5 or MiniMax-M2.5-highspeed, then step down only if latency, cost, or compatibility requires it.
  • Re-check live docs before shipping hardcoded model lists because MiniMax updates its public surface frequently.

4. Separate Sync From Async Media Work

  • Synchronous text and speech flows can often return in one request.
  • Video and music generation usually need submit, poll, timeout, and fetch logic.
  • Do not design a blocking one-shot workflow for media jobs that are inherently queued.

5. Validate Media Rights, Inputs, and Formats Before Generation

  • Confirm the user has rights to upload or transform any voice, lyrics, reference media, or branded assets.
  • Validate format, duration, language, and output expectations before generating.
  • Bad asset assumptions waste spend faster than bad prompts.

6. Make Cost and Trust Boundaries Explicit

  • Multimodal runs can send prompts, media, and metadata off machine and can accumulate cost quickly.
  • State which endpoint will receive which payload, and stop before remote MCP or large media uploads unless the user approved that path.
  • Never normalize remote execution just because the API supports it.

7. Finish With a Reproducible Recipe

  • A successful MiniMax run ends with the exact model, interface, key parameters, asset inputs, and polling behavior recorded clearly enough to rerun.
  • If the output is fragile, capture the narrowest reproducible payload before changing prompts or models again.

MiniMax Traps

  • Treating every MiniMax feature as available through every SDK shim -> parameters get ignored and debugging starts from a false premise.
  • Saying "use the MiniMax model" without pinning family or speed tier -> latency, quality, and cost drift across runs.
  • Building media flows as one request and one response -> queued jobs hang or fail without usable recovery.
  • Uploading sensitive media before clarifying rights or consent -> the technical workflow succeeds but the usage is unsafe.
  • Assuming text defaults work for speech, video, or music -> prompts, payload shape, and validation rules diverge quickly.
  • Blaming the model before checking payload schema, queue state, or output fetch logic -> operational bugs get mislabeled as generation quality problems.
  • Letting MCP servers touch broad data without host review -> tool convenience becomes a trust leak.

External Endpoints

Only these endpoint categories are allowed unless the user explicitly approves more:

EndpointData SentPurpose
https://api.minimax.ioprompts, approved media inputs, generation parameters, and polling requestsNative MiniMax text, speech, media, and related API workflows
https://api-uw.minimax.ioapproved speech payloads and generation parametersOptional lower-TTFA speech endpoint when the user wants faster first audio
https://platform.minimax.io/docsdoc queries onlyVerify current models, compatibility notes, and API behavior
https://{user-approved-mcp-host}request payloads required by the approved MCP serverOptional MCP tool access beyond the local machine

No other data is sent externally unless the user explicitly approves additional hosts or provider routes.

Security & Privacy

Data that leaves your machine:

  • prompts and parameters sent to MiniMax API endpoints
  • approved media assets or reference files only for the generation workflow the user requested
  • optional MCP payloads only for user-approved MCP hosts
  • optional documentation lookups against official MiniMax docs

Data that stays local:

  • durable operating notes under ~/minimax/
  • local prompt drafts, routing choices, and incident notes unless the user exports them
  • any rejected or unused assets that never get uploaded

This skill does NOT:

  • treat compatible SDKs as exact feature matches without verification
  • upload private media, voice references, or lyrics without explicit user intent
  • enable remote MCP or broad tool access without explicit approval
  • claim that every MiniMax modality is synchronous or instantly available
  • modify its own skill files

Trust

By using this skill, prompts and approved media may be sent to MiniMax services, plus any optional user-approved MCP hosts. Only install if you trust those services with that data.

Scope

This skill ONLY:

  • helps operate MiniMax text, speech, video, music, and MCP-related workflows safely
  • routes tasks to the right model family, interface, and job pattern
  • keeps durable notes for approved defaults, budget boundaries, and recurring failures

This skill NEVER:

  • treat MiniMax as a generic provider drop-in without checking interface limits
  • suggest voice imitation or media transformation without rights and consent checks
  • blur the line between local orchestration and remote MCP execution
  • promise that queued media jobs behave like low-latency text calls

Related Skills

Install with clawhub install <slug> if user confirms:

  • ai - Compare MiniMax against other model providers before locking the stack.
  • api - Reuse structured HTTP, retry, and payload-debugging patterns around the MiniMax APIs.
  • models - Choose the right model family and fallback chain for quality, latency, and cost.
  • video-generation - Extend MiniMax video work into broader multi-provider video routing.
  • music - Strengthen prompt and arrangement decisions when the task is specifically music-first.

Feedback

  • If useful: clawhub star minimax
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.9%
按下载量换算6,542

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills