pr-review
Review pull requests for the MiniMax Skills repository. Use when reviewing PRs, validating new skill submissions, or checking existing skills for compliance.…
Use mmx to generate text, images, video, speech, and music via the MiniMax AI platform. Use when the user wants to create media content, chat with MiniMax models, perform web search, or manage MiniMax API resources from the terminal.
$ npx -y skills add minimax-ai/skills --skill minimax-multimodal-toolkit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/minimax-multimodal-toolkitContext preview
The summary Claude sees to decide when to auto-load this skill.
Use mmx to generate text, images, video, speech, and music via the MiniMax AI platform. Use when the user wants to create media content, chat with MiniMax models, perform web search, or manage MiniMax API resources from the terminal.
name: mmx-cli description: Use mmx to generate text, images, video, speech, and music via the MiniMax AI platform. Use when the user wants to create media content, chat with MiniMax models, perform web search, or manage MiniMax API resources from the terminal.
Use `mmx` to generate text, images, video, speech, music, and perform web search via the MiniMax AI platform.
# Install npm install -g mmx-cli # Auth (persisted to ~/.mmx/credentials.json) mmx auth login --api-key sk-xxxxx # Or pass per-call mmx text chat --api-key sk-xxxxx --message "Hello"
Region is auto-detected. Override with `--region global` or `--region cn`.
---
Always use these flags in non-interactive (agent/CI) contexts:
| Flag | Purpose | |---|---| | `--non-interactive` | Fail fast on missing args instead of prompting | | `--quiet` | Suppress spinners/progress; stdout is pure data | | `--output json` | Machine-readable JSON output | | `--async` | Return task ID immediately (video generation) | | `--dry-run` | Preview the API request without executing | | `--yes` | Skip confirmation prompts |
---
Chat completion. Default model: `MiniMax-M2.7`.
mmx text chat --message <text> [flags]
| Flag | Type | Description | |---|---|---| | `--message <text>` | string, **required**, repeatable | Message text. Prefix with `role:` to set role (e.g. `"system:You are helpful"`, `"user:Hello"`) | | `--messages-file <path>` | string | JSON file with messages array. Use `-` for stdin | | `--system <text>` | string | System prompt | | `--model <model>` | string | Model ID (default: `MiniMax-M2.7`) | | `--max-tokens <n>` | number | Max tokens (default: 4096) | | `--temperature <n>` | number | Sampling temperature (0.0, 1.0] | | `--top-p <n>` | number | Nucleus sampling threshold | | `--stream` | boolean | Stream tokens (default: on in TTY) | | `--tool <json-or-path>` | string, repeatable | Tool definition JSON or file path |
# Single message mmx text chat --message "user:What is MiniMax?" --output json --quiet # Multi-turn mmx text chat \ --system "You are a coding assistant." \ --message "user:Write fizzbuzz in Python" \ --output json # From file cat conversation.json | mmx text chat --messages-file - --output json
**stdout**: response text (text mode) or full response object (json mode).
---
Generate images. Model: `image-01`.
mmx image generate --prompt <text> [flags]
| Flag | Type | Description | |---|---|---| | `--prompt <text>` | string, **required** | Image description | | `--aspect-ratio <ratio>` | string | e.g. `16:9`, `1:1` | | `--n <count>` | number | Number of images (default: 1) | | `--subject-ref <params>` | string | Subject reference: `type=character,image=path-or-url` | | `--out-dir <dir>` | string | Download images to directory | | `--out-prefix <prefix>` | string | Filename prefix (default: `image`) |
mmx image generate --prompt "A cat in a spacesuit" --output json --quiet # stdout: image URLs (one per line in quiet mode) mmx image generate --prompt "Logo" --n 3 --out-dir ./gen/ --quiet # stdout: saved file paths (one per line)
---
Generate video. Default model: `MiniMax-Hailuo-2.3`. This is an async task — by default it polls until completion.
mmx video generate --prompt <text> [flags]
| Flag | Type | Description | |---|---|---| | `--prompt <text>` | string, **required** | Video description | | `--model <model>` | string | `MiniMax-Hailuo-2.3` (default) or `MiniMax-Hailuo-2.3-Fast` | | `--first-frame <path-or-url>` | string | First frame image | | `--callback-url <url>` | string | Webhook URL for completion | | `--download <path>` | string | Save video to specific file | | `--async` | boolean | Return task ID immediately | | `--no-wait` | boolean | Same as `--async` | | `--poll-interval <seconds>` | number | Polling interval (default: 5) |
# Non-blocking: get task ID
mmx video generate --prompt "A robot." --async --quiet
# stdout: {"taskId":"..."}
# Blocking: wait and get file path
mmx video generate --prompt "Ocean waves." --download ocean.mp4 --quiet
# stdout: ocean.mp4Query status of a video generation task.
mmx video task get --task-id <id> [--output json]
Download a completed video by task ID.
mmx video download --file-id <id> [--out <path>]
---
Text-to-speech. Default model: `speech-2.8-hd`. Max 10k chars.
mmx speech synthesize --text <text> [flags]
| Flag | Type | Description | |---|---|---| | `--text <text>` | string | Text to synthesize | | `--text-file <path>` | string | Read text from file. Use `-` for stdin | | `--model <model>` | string | `speech-2.8-hd` (default), `speech-2.6`, `speech-02` | | `--voice <id>` | string | Voice ID (default: `English_expressive_narrator`) | | `--speed <n>` | number | Speed multiplier | | `--volume <n>` | number | Volume level | | `--pitch <n>` | number | Pitch adjustment | | `--format <fmt>` | string | Audio format (default: `mp3`) | | `--sample-rate <hz>` | number | Sample rate (default: 32000) | | `--bitrate <bps>` | number | Bitrate (default: 128000) | | `--channels <n>` | number | Audio channels (default: 1) | | `--language <code>` | string | Language boost | | `--subtitles` | boolean | Include subtitle timing data | | `--pronunciation <from/to>` | string, repeatable | Custom pronunciation | | `--sound-effect <effect>` | string | Add sound effect | | `--out <path>` | string | Save audio to file | | `--stream` | boolean | Stream raw audio to stdout |
mmx speech synthesize --text "Hello world" --out hello.mp3 --quiet # stdout: hello.mp3 echo "Breaking news." | mmx speech synthesize --text-file - --out news.mp3
---
Generate music. Model: `music-2.5`. Responds well to rich, structure
Beta — This project is under active development. Skills, APIs, and configuration formats may change without notice. We welcome feedback and contributions. Development skills for AI coding agents.
Repo: minimax-ai/skills
Review pull requests for the MiniMax Skills repository. Use when reviewing PRs, validating new skill submissions, or checking existing skills for compliance.…
Choose presentation-ready color palettes and font pairings for PPT/design tasks. Use when users ask for visual theme choices, brand-safe palettes, or font…
Select a consistent visual design system for PPT slides using radius/spacing style recipes. Use when users ask for overall style direction or component styling…
Edit existing PowerPoint files or templates with XML-safe workflows. Use for template-based deck updates: analyze layouts, map content to slides,…
Plan and orchestrate multi-slide PowerPoint creation from scratch. Use before generating a full deck with subagents: classify each slide type, enforce visual…
Implement single-slide PowerPoint pages with PptxGenJS. Use when writing or fixing slide JS files: dimensions, positioning, text/image/chart APIs, styling…