Skip to content

Releases: robbedoo/minimax-plugin-claude-code

v1.0.0 — MiniMax Plugin for Claude Code

Choose a tag to compare

@robbedoo robbedoo released this 02 Apr 09:27

MiniMax Plugin for Claude Code — v1.0.0

First release of the MiniMax plugin for Claude Code. Run MiniMax-powered code reviews, delegate tasks, and manage background jobs — all from within Claude Code.

Features

Code Review

  • /minimax:review — Run a standard MiniMax code review on uncommitted changes or a branch diff
  • /minimax:adversarial-review — Steerable challenge review that questions design decisions, tradeoffs, and hidden assumptions

Task Delegation

  • /minimax:rescue — Hand a task to MiniMax (investigate bugs, try fixes, continue previous work)
  • Supports --background, --wait, --resume, and --fresh modes
  • Multi-turn agent loop with function calling (read files, write files, run commands, search code)

Job Management

  • /minimax:status — View running and recent jobs with progress details
  • /minimax:result — Retrieve the final output of a completed job
  • /minimax:cancel — Cancel an active background job

Stop-Review Gate

  • Optional automatic review when Claude stops — blocks the stop if MiniMax finds issues
  • Enable with /minimax:setup --enable-review-gate

Architecture

The plugin communicates directly with the MiniMax API via its chat completions endpoint. It uses streaming (SSE) for real-time progress and function calling (tools) for agentic task execution. No local CLI binary or intermediary server is needed.

Configuration

Variable Required Description
MINIMAX_API_KEY Yes Your MiniMax API key
MINIMAX_MODEL No Model to use (default: MiniMax-M2.7)
MINIMAX_BASE_URL No Custom API endpoint (default: https://api.minimax.io/v1)

Getting Started

# Add the marketplace
/plugin marketplace add robbedoo/minimax-plugin-cc

# Install the plugin
/plugin install minimax@robbedoo-minimax

# Reload and verify
/reload-plugins
/minimax:setup

Agent Tools

The MiniMax agent has access to 6 tools for task execution:

Tool Description
read_file Read file contents
list_directory List directory contents
search_files Search for patterns across files
run_command Execute shell commands
write_file Create or overwrite files
apply_patch Apply unified diff patches