auto-review-loop-minimax

Solid

Autonomous multi-round research review loop using MiniMax API. Use when you want to use MiniMax instead of Codex MCP for external review. Trigger with "auto review loop minimax" or "minimax review".

AI & Automation 11,051 stars 1037 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Auto Review Loop (MiniMax Version): Autonomous Research Improvement Autonomously iterate: review → implement fixes → re-review, until the external reviewer gives a positive assessment or MAX_ROUNDS is reached. ## Context: $ARGUMENTS ## Constants - MAX_ROUNDS = 4 - POSITIVE_THRESHOLD: score >= 6/10, or verdict contains "accept", "sufficient", "ready for submission" - REVIEW_DOC: `AUTO_REVIEW.md` in project root (cumulative log) - REVIEWER_MODEL = `MiniMax-M2.7` — Model used via MiniMax API ## API Configuration This skill uses MiniMax API for external review. Two methods are supported: ### Method 1: MCP Tool (Primary) If `mcp__minimax-chat__minimax_chat` is available, use it: ``` mcp__minimax-chat__minimax_chat: message: | [Review prompt content] model: "MiniMax-M2.7" system: "You are a senior machine learning researcher..." ``` ### Method 2: curl (Fallback) If MCP is not available, use curl directly: ```bash curl -s "https://api.minimax.io/v1/chat/completions" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $MINIMAX_API_KEY" \ -d '{ "model": "MiniMax-M2.7", "messages": [ {"role": "system", "content": "You are a senior ML researcher..."}, {"role": "user", "content": "[Review prompt]"} ], "max_tokens": 4096 }' ``` **API Key**: Read from `~/.codex/settings.json` under `env.MINIMAX_API_KEY`, or from environment variable. **Why MiniMax instead of a secondary Codex agent?** Codex CLI uses OpenAI's Respon...

Details

Author
wanshuiyin
Repository
wanshuiyin/Auto-claude-code-research-in-sleep
Created
2 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

auto-review-loop

Autonomous multi-round research review loop. Repeatedly reviews using a secondary Codex agent, implements fixes, and re-reviews until positive assessment or max rounds reached. Use when user says "auto review loop", "review until it passes", or wants autonomous iterative improvement.

11,051 Updated today
wanshuiyin
AI & Automation Solid

auto-review-loop-llm

Autonomous research review loop using any OpenAI-compatible LLM API. Configure via llm-chat MCP server or environment variables. Trigger with "auto review loop llm" or "llm review".

11,051 Updated today
wanshuiyin
AI & Automation Solid

research-review

Get a deep critical review of research from GPT using a secondary Codex agent. Use when user says "review my research", "help me review", "get external review", or wants critical feedback on research ideas, papers, or experimental results.

11,051 Updated today
wanshuiyin
Code & Development Listed

doc-review

Document review via Codex MCP. Use when: reviewing .md docs, tech spec audit, document quality check. Not for: code review (use codex-code-review), test review (use test-review). Output: 5-dimension rating table + gate.

1 Updated yesterday
hmj1026
Code & Development Listed

codex-code-review

Automate code review remediation loops with the codex CLI. Requests reviews from codex, classifies findings by severity (P0-P4), fixes critical issues (P0/P1) through iterative cycles, defers quality improvements to backlog, and escalates after 3 review cycles. Use when working with code that needs structured remediation: 'codex review' in a request triggers this workflow.

15 Updated yesterday
NickCrew