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

minimax-to-telegramminimax TO Telegram 音频

Agent Skill

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

总安装

29,306

周安装

1,246

GitHub Stars

公开资料未说明

下载量

10,267
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install minimax-to-telegram

简介

使用 MiniMax MCP 生成图像、音频、视频并发送到 Telegram。当用户想要使用 MiniMax 创建媒体并通过 Telegram 传送时使用。

SKILL.md

name
minimax-to-telegram
description
|

Setup (Prerequisites)

1. Install mcporter

# 如果未有 npm/npx
npm install -g mcporter

或者用 npx 直接跑:

npx mcporter --help

2. Set MiniMax API Key

响 terminal 度 set 環境變數:

export MINIMAX_API_KEY="your-api-key-here"

或者响 ~/.mcporter/config.json 入面 set:

{
  "env": {
    "MINIMAX_API_KEY": "your-api-key-here",
    "MINIMAX_RESOURCE_MODE": "url"
  }
}

3. Add MiniMax MCP Server

mcporter mcp add minimax-mcp

MiniMax MCP Skill

Use mcporter to call MiniMax MCP server tools.

Prerequisites

  • mcporter CLI installed
  • MiniMax MCP server configured in mcporter

Available Tools

ToolDescription
text_to_imageGenerate images from text prompts
text_to_audioConvert text to speech (TTS)
generate_videoGenerate videos from text prompts
image_to_videoGenerate videos from images
music_generationGenerate music from prompt + lyrics
voice_cloneClone voice from audio file
voice_designGenerate voice from description
list_voicesList available voice IDs
play_audioPlay audio file

Basic Usage

Image Generation

mcporter call minimax-mcp.text_to_image prompt:"your prompt" aspectRatio:"4:3"

Audio Generation (TTS)

mcporter call minimax-mcp.text_to_audio text:"Hello world" voiceId:"male-qn-qingse"

Video Generation

mcporter call minimax-mcp.generate_video prompt:"your video description"

Sending to Telegram

IMPORTANT: When MiniMax returns a URL, it includes a query string with authentication token. You MUST use the FULL URL including all query parameters.

Correct (full URL with token):

<MINIMAX_OUTPUT_URL>?Expires=xxx&OSSAccessKeyId=xxx&Signature=xxx

Incorrect (URL without token):

<MINIMAX_OUTPUT_URL>

Sending Image to Telegram

  1. Call text_to_image and capture the FULL URL (including query string)
  2. Send directly to Telegram using message tool with media parameter:
message(
  action="send",
  channel="telegram",
  target="<chat_id>",
  media="<full_url_with_token>",
  message="Your caption"
)

Sending Audio to Telegram

Same approach - use FULL URL with token:

message(
  action="send",
  channel="telegram",
  target="<chat_id>",
  media="<full_url_with_token>",
  message="Your caption"
)

IMPORTANT: When sending audio, ALWAYS include the text content as the message caption below the audio!

Example:

# Generate audio
audio_url = "<MINIMAX_AUDIO_URL>?Expires=xxx&Signature=xxx"
text_content = "呢段係你想既文字內容..."

# Send with both audio and text
message(
  action="send",
  channel="telegram",
  target="<chat_id>",
  media=audio_url,
  message=text_content  # Always include the text!
)

Common Parameters

text_to_image

  • prompt: Text description of desired image
  • aspectRatio: "1:1", "16:9", "4:3", "3:2", "2:3", "3:4", "9:16", "21:9"
  • n: Number of images (1-9)
  • model: Model to use (default: "image-01")

text_to_audio

  • text: Text to convert to speech
  • voiceId: Voice ID (e.g., "male-qn-qingse", "female-shaonv")
  • speed: Speech speed (0.5-2)
  • emotion: "happy", "sad", "angry", "fearful", "disgusted", "surprised", "neutral"
  • format: "mp3", "wav", "pcm", "flac"
  • languageBoost: Enhance recognition for specific languages/dialects

- Cantonese: "Chinese,Yue" or "Chinese" - Mandarin: "Chinese" or "Chinese,Mandarin" - English: "English" - Always include this when generating Cantonese audio!

generate_video

  • prompt: Video description
  • model: "T2V-01", "T2V-01-Director", "I2V-01", "I2V-01-Director", "I2V-01-live", "MiniMax-Hailuo-02"
  • duration: 6 or 10 (for MiniMax-Hailuo-02)
  • resolution: "768P", "1080P"

Optimization & Troubleshooting

  • Timeout Management: Video generation can take significant time (up to 20-30 minutes for high-quality 10s clips). Always pass a large --timeout value (e.g., --timeout 1800000) to mcporter to prevent early termination.
  • Gateway Turn Limit: Most OpenClaw profiles have a 10-minute turn timeout (600000ms). To avoid being killed by the gateway, ALWAYS run generate_video with background: true or inside a background process.
  • Model Choice: Use MiniMax-Hailuo-02 for higher quality 10-second videos.

Error Handling

If you get 403 Forbidden when sending to Telegram:

  • Make sure you're using the FULL URL with query string
  • The token (Signature) expires - regenerate if needed

Notes

  • MiniMax MCP must be configured with MINIMAX_RESOURCE_MODE=url in mcporter config
  • Generated media URLs include authentication tokens that expire
  • Always use the complete URL returned by MCP calls

Cantonese (廣東話) Tips

When generating Cantonese audio:

  • Use voice ID from Cantonese category (e.g., "Cantonese_PlayfulMan", "Cantonese_CuteGirl")
  • Always add: languageBoost:"Chinese,Yue" or languageBoost:"Chinese"
  • Example:
  mcporter call minimax-mcp.text_to_audio text:"新年快樂" voiceId:"Cantonese_PlayfulMan" languageBoost:"Chinese,Yue"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.06%
按下载量换算8,425

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills