Agent skill · Backend & API

mmx-cli

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill mmx-cli-aiskillstore-marketplace --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/ai-llm/mmx-cli-aiskillstore-marketplace/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# MiniMax CLI — Agent Skill Guide Use `mmx` to generate text, images, video, speech, music, and perform web search via the MiniMax AI platform. ## Prerequisites ```bash # 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`. --- ## Agent Flags 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 | --- ## Commands ### text chat Chat completion. Default model: `MiniMax-M2.7`. ```bash 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"

What's inside
Steps it walks through
  1. Prerequisites
  2. Agent Flags
  3. Commands
  4. text chat
  5. image generate
  6. video generate
  7. video task get
  8. video download
  9. speech synthesize
  10. music generate
  11. vision describe
  12. search query
  13. quota show
  14. Tool Schema Export
Ships with 1 file
  • metadata.json
Commands it runs
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"
mmx text chat --message <text> [flags]
Single message
mmx text chat --message "user:What is MiniMax?" --output json --quiet
Multi-turn
More from claude-skill-registry
All skills →
About this skill
What does the mmx-cli skill do?

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.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill mmx-cli-aiskillstore-marketplace --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going