Minimax Text
PassAudited by ClawScan on May 10, 2026.
Overview
This appears to be a straightforward MiniMax text-generation wrapper, but users should know it sends prompts to MiniMax and uses a MiniMax API key that is not declared in the registry requirements.
This skill looks coherent and benign for MiniMax text generation. Before installing, make sure you are comfortable providing a MiniMax API key, sending prompts to MiniMax, and manually installing the Python requests package. Use the optional --output path carefully so you do not overwrite files unintentionally.
Findings (3)
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.
Anyone using the skill must provide a MiniMax API key, and requests may be billed or attributed to that account.
The script uses a MiniMax API key as a bearer token. This is expected for the stated MiniMax integration, but it is a credential that may allow account usage or charges.
API_KEY = os.environ.get("MINIMAX_API_KEY") ... HEADERS = {"Authorization": f"Bearer {API_KEY}"}Use a dedicated MiniMax key if possible, keep it out of shared logs, and apply any provider-side spending or scope limits available.
Text you ask the skill to process may be transmitted to MiniMax's service.
The skill sends the prompt, optional system prompt, and optional message history to an external MiniMax API endpoint. This is purpose-aligned but crosses a data boundary.
API_HOST = "https://api.minimaxi.com" ... requests.post(url, headers=HEADERS, json=payload, timeout=120)
Do not send secrets, private documents, or regulated data unless MiniMax's terms and your account settings are acceptable for that data.
The exact installed dependency version depends on the user's Python package environment.
The setup instructions require installing an unpinned Python dependency. This is common and expected for the HTTP client used by the script, but it is not captured by an install spec.
- `pip3 install requests`
Install dependencies in a virtual environment from a trusted package index, and consider pinning requests to a known-good version.
