Minimax-Multimodal-Toolkit

PassAudited by ClawScan on May 10, 2026.

Overview

This is a coherent MiniMax CLI guide, but users should notice that it relies on an external npm CLI, a MiniMax API key stored locally, file/provider data flows, and no-confirmation flags.

This skill appears purpose-aligned for using MiniMax from a CLI. Before installing, verify the npm package source/version, protect the MiniMax API key stored under ~/.mmx, avoid using --yes for actions you have not approved, and only send files or prompts you are comfortable sharing with the MiniMax service.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing the CLI could run or later execute code from the npm package, so the safety of that package matters.

Why it was flagged

The skill directs installation of a global npm CLI without a pinned version. This is central to the stated purpose, but users rely on an external package that was not included in the reviewed artifacts.

Skill content
npm install -g mmx-cli
Recommendation

Install from the official MiniMax/mmx source if available, verify the package name and version, and consider pinning a known-good version.

What this means

Anyone or anything that can read the stored credential may be able to use the MiniMax account within the key's permissions.

Why it was flagged

The guide requires or allows a MiniMax API key and states it is stored locally. This is expected for the provider integration, but it grants account/API authority.

Skill content
mmx auth login --api-key sk-xxxxx ... Auth (persisted to ~/.mmx/credentials.json)
Recommendation

Use a minimally scoped API key if MiniMax supports it, keep ~/.mmx/credentials.json private, and revoke/rotate the key if the device is shared or compromised.

What this means

The agent may proceed without an interactive confirmation, which could matter for quota-consuming, billing-related, or resource-changing actions.

Why it was flagged

The guide recommends using a no-confirmation flag in agent/CI contexts. This is disclosed and may be intended for automation, but it can remove a safety check for account or resource operations.

Skill content
Always use these flags in non-interactive (agent/CI) contexts: ... `--yes` | Skip confirmation prompts
Recommendation

Use --yes only when the requested action is clearly approved, and require explicit user confirmation for costly, destructive, public, or account-management operations.

What this means

Prompts, text files, images, first frames, or webhook destinations chosen for a command may be shared with MiniMax or the specified callback endpoint.

Why it was flagged

The CLI can send selected local files or URLs to the MiniMax service and can use a callback/webhook URL for video completion. These flows are aligned with media generation, but they cross local/provider boundaries.

Skill content
`--subject-ref <params>` ... `image=path-or-url`; `--first-frame <path-or-url>`; `--text-file <path>`; `--callback-url <url>`
Recommendation

Only provide files, prompts, and callback URLs that are intended for MiniMax processing, and avoid sending confidential material unless the provider terms and account settings are acceptable.