/SKILL.md
MiniMax M2.5 for one-shot LLM prompts, summaries, and generation. Uses the MiniMax Anthropic-compatible API via the minimax-prompt CLI wrapper. Fast (~2s), included in MiniMax Coding Plan subscription.
npx skillsauth add kesslerio/minimax-prompt-openclaw-skill minimax-promptInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use MiniMax M2.5 for one-shot LLM tasks. Two execution methods available:
Shell wrapper at ~/.local/bin/minimax-prompt. Drop-in replacement for gemini -p.
# Simple prompt
minimax-prompt "Explain quantum computing in one paragraph"
# With -p flag (gemini-compatible)
minimax-prompt -p "Summarize this text"
# Pipe content + prompt
echo "Raw data here" | minimax-prompt -p "Summarize the above"
# Pipe content only (content becomes the prompt)
echo "What is 2+2?" | minimax-prompt
Timeout: 180s default. Output: plain text to stdout. Errors go to stderr.
For Python/shell scripts that can't depend on the CLI (e.g., Docker containers):
curl -sS https://api.minimax.io/anthropic/v1/messages \
-H "x-api-key: $MINIMAX_CODING_PLAN_API_KEY" \
-H "content-type: application/json" \
-H "anthropic-version: 2023-06-01" \
-d '{
"model": "MiniMax-M2.5",
"max_tokens": 8192,
"messages": [{"role": "user", "content": "Your prompt here"}]
}'
Response format (Anthropic Messages API):
{
"content": [{"type": "text", "text": "Response here"}],
"model": "MiniMax-M2.5",
"stop_reason": "end_turn"
}
| Endpoint | Format | Speed |
|----------|--------|-------|
| https://api.minimax.io/anthropic/v1/messages | Anthropic Messages | ~2s (preferred) |
| https://api.minimax.io/v1/chat/completions | OpenAI Completions | ~6s |
The Anthropic endpoint is 3x faster and separates thinking tags natively.
Requires MINIMAX_CODING_PLAN_API_KEY environment variable. Set via:
~/.config/systemd/user/secrets.conf (referenced as ${MINIMAX_CODING_PLAN_API_KEY} in openclaw.json)export MINIMAX_CODING_PLAN_API_KEY="your-key"-e MINIMAX_CODING_PLAN_API_KEYgemini skill (Gemini CLI banned, Feb 2026)openclaw agent --local insteadtools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.