.claude/skills/minimax-mcp-usage/SKILL.md
[DEPRECATED] Use /research skill with Zai MCP instead - Optimal patterns for MiniMax MCP tools
npx skillsauth add alfredolopez80/multi-agent-ralph-loop minimax-mcp-usageInstall 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.
DEPRECATED (v2.88.0): This skill is deprecated. Use the
/researchskill instead, which leverages Zai MCP for comprehensive web search with better features:
- No API key required (free)
- Chinese content support (CSDN, Juejin, Linux.do)
- GitHub README extraction
- URL reader with markdown conversion
- Domain and recency filtering
See:
.claude/skills/research/SKILL.md
ultrathink - Take a deep breath. We're not here to write code. We're here to make a dent in the universe.
MiniMax queries should be lean, accurate, and decisive.
This skill documents optimal usage patterns for MiniMax MCP tools.
Purpose: Web search with 8% cost of alternatives
Input:
query: string # 3-5 keywords, include year for recent topics
Output:
{
"organic": [{ "title", "link", "snippet", "date" }],
"related_searches": [{ "query" }]
}
Optimal Patterns:
# Good: Specific, time-bounded
mcp__MiniMax__web_search:
query: "React 19 useOptimistic hook examples 2025"
# Good: Error-focused
mcp__MiniMax__web_search:
query: "TypeError cannot read property undefined Next.js"
# Bad: Too vague
mcp__MiniMax__web_search:
query: "javascript" # Too broad
Purpose: Image analysis for debugging and review
Input:
prompt: string # Clear, specific question about the image
image_source: string # Local path (no @) or HTTPS URL
Optimal Patterns:
# Good: Specific analysis request
mcp__MiniMax__understand_image:
prompt: "Identify the exact error message and stack trace in this screenshot"
image_source: "/tmp/error.png"
# Good: UI review
mcp__MiniMax__understand_image:
prompt: "List all accessibility violations in this form design"
image_source: "./mockup.png"
# Bad: Vague prompt
mcp__MiniMax__understand_image:
prompt: "What's this?" # Too vague
image_source: "./image.png"
# Research phase: Use web_search
Task:
prompt: |
Research latest patterns for $TOPIC using mcp__MiniMax__web_search.
Compile findings into structured report.
# Debugging phase: Use understand_image
Task:
prompt: |
Analyze error screenshot at $PATH using mcp__MiniMax__understand_image.
Identify root cause and suggest fixes.
| Operation | MiniMax MCP | Gemini CLI | Savings | |-----------|-------------|------------|---------| | Web search | ~$0.008 | ~$0.06 | 87% | | Image analysis | ~$0.01 | N/A | New capability |
| Scenario | Alternative | |----------|-------------| | US-only search | WebSearch (free) | | Code search | ast-grep MCP (v2.23) | | Long-form generation | Gemini CLI (1M context) | | Real-time data | Native WebFetch |
| Issue | Solution | |-------|----------| | "API key invalid" | Check MINIMAX_API_KEY in ~/.claude.json | | "Image too large" | Compress to <20MB | | "Format not supported" | Convert to JPEG/PNG/WebP | | "No results" | Refine query with more keywords |
development
Living knowledge base management. Actions: search (query vault), save (store learning), index (update indices), compile (raw->wiki->rules graduation), init (create vault structure). Follows Karpathy pipeline: ingest->compile->query. Use when: (1) searching accumulated knowledge, (2) saving learnings, (3) compiling raw notes into wiki, (4) initializing a new vault. Triggers: /vault, 'vault search', 'knowledge base', 'save learning'.
testing
Produce a verifiable technical specification before coding. 6 mandatory sections: Interfaces, Behaviors, Invariants (from Aristotle Phase 2), File Plan, Test Plan, Exit Criteria (executable bash commands + expected results). Use when: (1) before implementing features with complexity > 4, (2) as Step 1.5 in orchestrator workflow, (3) when requirements need formalization. Triggers: /spec, 'create spec', 'write specification', 'technical spec'.
testing
Pre-launch shipping checklist orchestrating /gates, /security, /browser-test, /perf. Ensures nothing ships without passing all quality checks. Use when: (1) before deploying, (2) before merging to main, (3) before release. Triggers: /ship, 'ship it', 'ready to deploy', 'pre-launch check'.
development
Performance optimization skill. Core Web Vitals via Lighthouse, bundle size analysis, metrics tracking over time. Use when: (1) optimizing frontend performance, (2) analyzing bundle size, (3) tracking metrics regression. Triggers: /perf, 'performance audit', 'core web vitals', 'bundle size'.