with one click
opusminimax
// Run the Opus planner plus MiniMax-M2.7-highspeed executor workflow. Use when the user invokes /opusminimax or wants Claude/Opus to plan, adversarially review, and verify while MiniMax executes bounded coding packets.
// Run the Opus planner plus MiniMax-M2.7-highspeed executor workflow. Use when the user invokes /opusminimax or wants Claude/Opus to plan, adversarially review, and verify while MiniMax executes bounded coding packets.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | opusminimax |
| description | Advanced engine behind /opusworkflow for provider split, packet, repair, and benchmark work. Normal build/fix/refactor work should use /opusworkflow, which asks Opus 4.7 to plan/review when proven available and MiniMax-M2.7-highspeed to execute. |
| argument-hint | ["task",{"mode":"workflow|benchmark|repair"}] |
| disable-model-invocation | true |
Run the governed Opus planner + MiniMax executor mode for:
$ARGUMENTS
Plain rule:
If you are trying to build, fix, refactor, or ship a product, use /opusworkflow.
Use /opusminimax directly only for engine, provider, packet, repair, or benchmark work.
/opusworkflow is the human command; /opusminimax is the advanced engine.
Mode banner:
Claude is planner, adversary, and reviewer.
MiniMax-M2.7-highspeed is executor for bulk coding.
Worker summaries are claims until verified by diffs, logs, tests, or artifacts.
ANTHROPIC_BASE_URL=https://api.minimax.io/anthropic..env, .env.*, .claude/settings.local.json,
.claude/*.local.json, secrets/**, private credentials, customer artifacts,
or MiniMax key files./deepresearch for architecture, provider, benchmark, harness, or
high-stakes implementation decisions. Use /claudeproduct first for Claude
product facts.max_threads, and MAX_PARALLEL_AGENTS as
ceilings. Treat MiniMax Token Plan capacity as the executor bottleneck until
verified.1 unless provider-tier evidence
proves a higher ceiling.executor_provider=claude-sonnet is explicit, treat it as the optional
Claude-only /opussonnet route: no MiniMax base URL, executor model must be
Sonnet, and the run artifact must not imply MiniMax executed anything.model_profile=sonnet|opus|default|custom is explicit, treat it as a
governed Anthropic-only route: no MiniMax base URL, no MiniMax executor model,
and no runtime model identity claim without /status, sentinel, or artifact
proof./introspect before plan freeze, after executor execution, after failed
verification, and before push or ship decisions./verify against SPEC.md after executor aggregation.Use static proof first:
bash scripts/opusminimax-doctor.sh --static
bash scripts/parallel-capacity.sh --json
When runtime planner execution is requested, diagnose and repair safe local profile drift before model invocation:
bash scripts/opusminimax-doctor.sh --runtime --fix-local-profiles
If auth, account access, ANTHROPIC_API_KEY, or model availability still blocks
the planner, stop with repair steps. Do not silently downgrade or claim Opus.
Record:
MiniMax-M2.7-highspeedmodel_profile and whether it is default cost-optimized or an
explicit user overrideunverified-default-1Budget formula:
effective_executor_budget = min(
local_recommended_ceiling,
provider_executor_ceiling,
independent_packets,
supervisor_review_capacity,
verifier_capacity
)
For file-changing work, follow the repo's normal lifecycle:
/deepresearch or local-only research brief./introspect pre-plan.SPEC.md active contract.Do not skip /workflow discipline. /opusminimax wraps the workflow with a
provider split and packet contract.
MiniMax only receives bounded packets. Write or request packets with:
{
"artifact_type": "opusminimax-packet",
"run_id": "YYYYMMDD-HHMMSS-task",
"packet_id": "P1",
"objective": "One bounded implementation objective",
"context_summary": "Planner-provided context, not full hidden reasoning",
"owned_paths": ["path/or/glob"],
"forbidden_paths": [".env", ".claude/*.local.json", "secrets/**"],
"commands_allowed": ["bash scripts/specific-check.sh"],
"acceptance_checks": ["observable check"],
"risk_notes": ["what can go wrong"],
"rollback_plan": "How to revert this packet safely",
"expected_outputs": ["diff", "worker-result", "logs"],
"stop_conditions": ["ambiguous ownership", "secret requested"]
}
Hard packet rules:
** ownership for implementation packets unless the packet is
explicitly read-only.Use the executor bridge:
bash scripts/minimax-exec.sh --packet .taste/opusminimax/{run_id}/packets/P1.json --run-dir .taste/opusminimax/{run_id}
The bridge validates the packet and writes a sidecar. Runtime model calls are opt-in:
bash scripts/minimax-exec.sh --packet ... --run-dir ... --execute
Do not trust the executor closeout by default. Required evidence:
Claude/Opus reviewer duties:
SPEC.md./introspect post-implementation.Final status must be one of:
verified: static/runtime evidence supports the claimblocked: execution cannot be trusted yetpartial: some packets accepted, others rejectedruntime-pending: static contract passes, provider runtime not exercisedUse for SWE-bench-style or Terminal-Bench-style tasks only when the user asks for benchmark/repair mode.
Pipeline:
task intake -> gold/hidden quarantine -> localization -> repro test attempt ->
MiniMax candidate patches -> validation -> Claude adversarial selection ->
prediction/export
Benchmark rules:
When /opusminimax executes or prepares a real run, produce:
{
"artifact_type": "opusminimax-run",
"run_id": "YYYYMMDD-HHMMSS-task",
"outer_route": "opusworkflow",
"inner_contract": "workflow",
"model_profile": "minimax",
"executor_provider": "minimax",
"planner_identity_status": "blocked",
"executor_identity_status": "configured",
"fallback_status": "none",
"provider_profiles": {
"planner": {"path": ".claude/settings.opusminimax-planner.example.json"},
"executor": {"path": ".claude/settings.minimax-executor.example.json"}
},
"model_ids": {
"planner_requested": "claude-opus-4-7",
"executor_requested": "MiniMax-M2.7-highspeed"
},
"model_route": {
"profile": "minimax",
"planner": {"provider": "anthropic", "requested_model": "claude-opus-4-7", "identity_status": "blocked"},
"executor": {"provider": "minimax", "requested_model": "MiniMax-M2.7-highspeed", "identity_status": "configured"},
"fallback_policy": "fail-closed-unless-explicit"
},
"capacity": {
"local_ceiling": 10,
"provider_ceiling": 1,
"task_packet_count": 1,
"safety_cap": 1,
"effective_concurrency": 1
},
"packets": ["P1"],
"verification": {"status": "runtime-pending"},
"failures": [],
"retries": 0,
"final_confidence": "medium"
}
Validate sidecars:
bash scripts/artifact-lint.sh .taste/opusminimax/{run_id}/opusminimax-run.json
bash scripts/artifact-lint.sh .taste/opusminimax/{run_id}/packets/P1.json