Kai Minimax Tts

v1.0.7

Generate voice audio and transcribe speech using MiniMax TTS API. Use when responding with voice or transcribing audio files.

0· 167·0 current·0 all-time
byBlaze🔥@ogdegenblaze

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for ogdegenblaze/kai-minimax-tts.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Kai Minimax Tts" (ogdegenblaze/kai-minimax-tts) from ClawHub.
Skill page: https://clawhub.ai/ogdegenblaze/kai-minimax-tts
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: MINIMAX_API_KEY
Required binaries: whisper, curl, xxd
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install kai-minimax-tts

ClawHub CLI

Package manager switcher

npx clawhub@latest install kai-minimax-tts
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description, required env var (MINIMAX_API_KEY), and required binaries (curl, xxd, whisper) align with a TTS + transcription skill. The script calls a MiniMax API endpoint and uses whisper locally for transcription—these requirements are expected for this functionality.
Instruction Scope
SKILL.md and the included script stick to the stated tasks: generating audio via the MiniMax API and transcribing via a local whisper binary. The script only reads the declared MINIMAX_API_KEY and optional KAI_* env vars, writes outputs into a per-skill workspace, and does not attempt to read unrelated files or credentials.
Install Mechanism
This is an instruction-only skill with an included shell script; there is no install spec that downloads or executes remote code. No high-risk install behavior detected.
Credentials
Only MINIMAX_API_KEY is required (plus optional workspace and voice ID env vars). That single credential is appropriate for calling the external MiniMax API; no unrelated secrets or multiple service credentials are requested.
Persistence & Privilege
The skill does not request always:true and does not change other skills or system-wide settings. It creates and writes files within its workspace only, which is normal for this type of skill.
Assessment
This skill appears to do exactly what it says: it sends the text you provide to MiniMax's API (https://api-uw.minimax.io) using the MINIMAX_API_KEY and writes an MP3 and a transcript into a workspace directory. Before installing: 1) Ensure the MINIMAX_API_KEY you provide is only for the intended MiniMax service and that you trust that endpoint. 2) Confirm the whisper binary on your system is the implementation you expect (local vs. a wrapper that might upload audio). 3) Be aware output files overwrite fixed names (Kai.mp3 and latest_from_blaze.txt) in the skill workspace; customize KAI_MINIMAX_WORKSPACE if you want a different path. 4) If you need stricter isolation, run the script in a controlled environment since it performs network I/O (to the TTS API) and writes files locally.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binswhisper, curl, xxd
EnvMINIMAX_API_KEY
audiovk9728vr5f6rnvtz436e9rz4ecn8386g6kaivk9728vr5f6rnvtz436e9rz4ecn8386g6latestvk9728vr5f6rnvtz436e9rz4ecn8386g6ttsvk9728vr5f6rnvtz436e9rz4ecn8386g6voicevk9728vr5f6rnvtz436e9rz4ecn8386g6
167downloads
0stars
8versions
Updated 1mo ago
v1.0.7
MIT-0

Kai MiniMax TTS

Generate voice audio using MiniMax TTS.

Setup

Add to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "kai-minimax-tts": {
        "enabled": true,
        "env": {
          "MINIMAX_API_KEY": "your_key_here"
        }
      }
    }
  }
}

Usage

Generate voice (English):

bash {baseDir}/scripts/kai_tts.sh --speak "Hello" en

Generate voice (Spanish):

bash {baseDir}/scripts/kai_tts.sh --speak "Hola" es

Transcribe audio:

bash {baseDir}/scripts/kai_tts.sh --transcribe /path/to/audio.ogg

Output Files

  • Voice: $WORKSPACE/Kai.mp3
  • Transcript: $WORKSPACE/latest_from_blaze.txt

Customization

Set custom workspace:

"env": { "KAI_MINIMAX_WORKSPACE": "/custom/path" }

Set custom voice IDs:

"env": { 
  "KAI_ENGLISH_VOICE_ID": "voice_id",
  "KAI_SPANISH_VOICE_ID": "voice_id"
}

Comments

Loading comments...