From claude-commands
Configures Claude Code to run PR automation jobs (fixpr, fix-comment) via the MiniMax API provider, setting environment variables and model selection automatically.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-commands:minimaxThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Usage**: Run jleechanorg-pr-monitor automation jobs using MiniMax API provider.
Usage: Run jleechanorg-pr-monitor automation jobs using MiniMax API provider.
Run fixpr automation with minimax:
jleechanorg-pr-monitor --fixpr --max-prs 10 --cli-agent minimax
Run fix-comment with minimax:
jleechanorg-pr-monitor --fix-comment --cli-agent minimax --max-prs 3
The minimax CLI agent runs Claude Code with the MiniMax API endpoint:
claude CLI binaryANTHROPIC_AUTH_TOKEN and ANTHROPIC_BASE_URL for MiniMax proxyThe automation automatically sets these from MINIMAX_API_KEY:
ANTHROPIC_AUTH_TOKEN=<MINIMAX_API_KEY>
ANTHROPIC_API_KEY=<MINIMAX_API_KEY>
ANTHROPIC_BASE_URL="https://api.minimax.io/anthropic"
ANTHROPIC_MODEL="MiniMax-M2.5"
API_TIMEOUT_MS="3000000"
CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC="1"
If preflight fails (CLI not found), you can skip it with:
TESTING=true jleechanorg-pr-monitor --fixpr --cli-agent minimax
From crontab:
# Fix-comment every hour at :45
45 * * * * jleechanorg-pr-monitor --fix-comment --cli-agent minimax --max-prs 3
# Fixpr every 30 minutes
*/30 * * * * jleechanorg-pr-monitor --fixpr --max-prs 10 --cli-agent minimax
Preflight fails with "minimax binary not found":
claude binary with minimax APITESTING=true to skip preflight validationAPI errors:
MINIMAX_API_KEY is set: echo $MINIMAX_API_KEYpip show jleechanorg-orchestrationnpx claudepluginhub jleechanorg/claude-commands --plugin claude-commandsConfigures Claude Code CLI to use MiniMax API endpoint. Sets environment variables and provides a claudem function for running commands via MiniMax.
Sets up GitHub Actions workflows with Claude Code for automated PR reviews, @claude mention responses, and issue triage, including templates, secrets, and permissions.
Integrates Claude Code into CI/CD pipelines using GitHub Actions, GitLab CI, pre-commit hooks for automated PR reviews, code generation, test validation, security scanning, headless mode, and cost control.