Minimax Text
AdvisoryAudited by VirusTotal on Apr 12, 2026.
Overview
Type: OpenClaw Skill Name: minimax-text Version: 1.0.0 The skill bundle provides a standard interface for interacting with the MiniMax text generation API. The Python script `scripts/text.py` correctly handles API authentication via the MINIMAX_API_KEY environment variable and communicates exclusively with the official MiniMax endpoint (api.minimaxi.com). No evidence of data exfiltration, malicious execution, or prompt injection was found in the code or documentation.
Findings (0)
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.
