auto-review-loop-minimax

Automates multi-round research review loops using the MiniMax API.

Updated Apr 1, 2026
One-click install
npx skills add https://github.com/zniihgnexy/vid_tokenizer --skill auto-review-loop-minimax-zniihgnexy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: auto-review-loop-minimax
Source: https://github.com/zniihgnexy/vid_tokenizer/tree/main/.claude/skills/auto-review-loop-minimax
Command: npx skills add https://github.com/zniihgnexy/vid_tokenizer --skill auto-review-loop-minimax-zniihgnexy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Getting rigorous, iterative external feedback on machine learning research is slow and manual. This Skill runs an autonomous review loop that sends your research context to the MiniMax API, parses the reviewer's score and verdict, implements fixes, and re-reviews until the work is assessed as ready or a round limit is reached. ## Core Features & Use Cases - Autonomous Review Loop: Iterates review → implement fixes → re-review for up to 4 rounds, stopping early on a positive assessment (score >= 6/10 with a ready verdict). - Dual API Access: Uses the MiniMax MCP tool when available, with a curl fallback against the MiniMax chat completions endpoint. - State Persistence: Writes REVIEW_STATE.json after each round so the loop can resume after context compaction, and logs every round with verbatim reviewer responses in AUTO_REVIEW.md. - Use Case: A researcher preparing a NeurIPS submission triggers the loop on their paper claims and experiment results; the Skill collects brutal reviewer feedback, runs cheap high-impact fixes like metric additions, and produces a cumulative review log. ## Quick Start Ask the AI to run an auto review loop with MiniMax on the current research project, reviewing the claims and experiment results until the work is ready for submission.

Frequently Asked Questions about auto-review-loop-minimax

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run an automated research review loop with MiniMax?▼

Trigger the skill with "auto review loop minimax" and a topic or scope. It sends your research context to the MiniMax-M2.5 model, parses the score and verdict, implements fixes, and re-reviews for up to 4 rounds or until the work is judged ready.

MiniMax MCP tool vs curl fallback for API calls?▼

The MCP tool mcp__minimax-chat__minimax_chat is the primary method because it is more reliable. If MCP is unavailable, the skill falls back to a direct curl POST to https://api.minimax.chat/v1/chat/completions with the same model and prompts.

Why use MiniMax instead of Codex MCP for external review?▼

Codex CLI relies on OpenAI's Responses API at /v1/responses, which third-party providers do not support. MiniMax exposes a standard chat completions endpoint, so it works through both MCP and plain curl requests.

Where does the MiniMax API key come from?▼

The key is read from ~/.claude/settings.json under env.MINIMAX_API_KEY, or from the MINIMAX_API_KEY environment variable. It is passed as a Bearer token in the Authorization header of each API request.

What happens if the review loop hits the context window limit?▼

The skill writes REVIEW_STATE.json after every round with the round number, score, verdict, and pending experiments. On the next invocation it detects in-progress state under 24 hours old and resumes from the next round using AUTO_REVIEW.md for full context.

When does the auto review loop stop iterating?▼

The loop stops when the reviewer score is at least 6 out of 10 and the verdict indicates ready or almost, or when MAX_ROUNDS of 4 is reached. On termination it marks REVIEW_STATE.json as completed and writes a final summary.