Minimax Tools
Analysis
This is a coherent MiniMax API wrapper, but it uses your MiniMax API key and can send selected local media files to MiniMax.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Install dependency if needed: ```bash pip install requests ```
The documented setup relies on installing an unpinned PyPI dependency; this is common and expected for a Python API wrapper, but it is still a supply-chain consideration.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
BASE_URL = os.environ.get("MINIMAX_BASE_URL", "https://api.minimaxi.com")
API_KEY_ENV = "MINIMAX_API_KEY"
...
h = {"Authorization": f"Bearer {get_api_key()}"}The skill uses the MiniMax API key as a bearer token and allows an optional base URL override; this is purpose-aligned, but it is authenticated account access.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
with p.open("rb") as f:
files = {"file": (p.name, f)}
data = {"purpose": purpose}
return request_multipart("/v1/files/upload", data=data, files=files, timeout=600)Voice cloning uploads a user-selected local audio file to the MiniMax API; this is central to the feature, but voice data can be sensitive.
