auto-review-loop-minimax

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

Updated Jul 9, 2026
One-click install
npx skills add https://github.com/Lingjie-wang/autoRL --skill auto-review-loop-minimax-lingjie-wang
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: auto-review-loop-minimax
Source: https://github.com/Lingjie-wang/autoRL/tree/main/Auto-claude-code-research-in-sleep/skills/auto-review-loop-minimax
Command: npx skills add https://github.com/Lingjie-wang/autoRL --skill auto-review-loop-minimax-lingjie-wang

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Iterating on ML research without external critique leads to blind spots and weak submissions. This Skill runs an autonomous review-fix-re-review loop against the MiniMax API, giving your research repeated senior-reviewer feedback until it reaches a submission-ready score or hits the round limit. ## Core Features & Use Cases - Autonomous Review Loop: Runs up to 4 rounds of review, fix implementation, and re-review, stopping when the score reaches 6/10 with a "ready" or "almost" 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 survives context compaction and can resume mid-run. - Use Case: You have a NeurIPS draft with experimental results. Trigger the loop, and it sends your claims and results to MiniMax-M3, implements the ranked fixes (code changes, experiments via SSH/screen, analysis), and re-reviews until the work is assessed as ready. ## Quick Start Ask the agent to run an auto review loop with MiniMax on the current research project and iterate until the reviewer scores it 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 autonomous review loop with the MiniMax API?

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

MiniMax vs Codex MCP for external research review?

Use MiniMax when Codex MCP is unavailable, since Codex CLI relies on OpenAI's Responses API which third-party providers do not support. This skill calls the MiniMax chat completions endpoint directly via MCP tool or curl fallback.

Does the review loop survive context window compaction?

Yes. The skill writes REVIEW_STATE.json after every round with the round number, score, verdict, and pending experiments. On restart it resumes from the saved round if the state is under 24 hours old and still marked in_progress.

When does the auto review loop stop iterating?

The loop stops when the reviewer score is at least 6/10 AND the verdict is exactly "ready" or "almost", or when MAX_ROUNDS of 4 is reached. A "not ready" verdict never triggers a stop regardless of score.

What happens if the MiniMax MCP tool is not available?

The skill falls back to a direct curl call to https://api.minimax.io/v1/chat/completions using the MINIMAX_API_KEY from your environment or Claude settings. The same model, system prompt, and review template are used in both methods.