AGENTS / GITHUB / advance-minimax-m2-cursor-rules
githubinferredactive

advance-minimax-m2-cursor-rules

provenance:github:madebyaris/advance-minimax-m2-cursor-rules
WHAT THIS AGENT DOES

This agent, called "advance-minimax-m2-cursor-rules," helps software development teams work more effectively with AI. It focuses on managing large projects, coordinating teams of AI agents, and ensuring the AI consistently delivers accurate and verifiable results. Developers and engineering managers who want to leverage AI for complex software projects will find this agent particularly useful.

View Source ↗First seen 4mo agoNot yet hireable
README
<div align="center">

# MiniMax M2.7 Cursor Rules

[![Stars](https://img.shields.io/github/stars/madebyaris/advance-minimax-m2-cursor-rules?style=flat-square)](https://github.com/madebyaris/advance-minimax-m2-cursor-rules/stargazers)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](LICENSE)
[![Cursor 2.6](https://img.shields.io/badge/Tested-Cursor%202.6-blue?style=flat-square)](https://cursor.com/changelog)
[![MiniMax M2.7](https://img.shields.io/badge/MiniMax-M2.7-purple?style=flat-square)](https://platform.minimax.io)
[![Any Model](https://img.shields.io/badge/Compatible-Any%20Model-green?style=flat-square)](#model-compatibility)

**MiniMax M2.7 rules for repo-scale engineering, agent teams, skills, and dynamic tool use**

*Built for **MiniMax M2.7**, aligned with the official release and API docs, and written to stay useful across model changes.*

[Quick Start](#quick-start) | [Architecture](#rule-architecture) | [M27-runtime](#m27-runtime-modes) | [AGENTSmd](#agentsmd-for-other-ides-and-clis)

</div>

---

## Why This Repo Exists

This repo is designed to make MiniMax M2.7 feel strong in the places the official release emphasizes most:

- repo-scale and end-to-end engineering
- agent harnesses and multi-agent collaboration
- long skill packs and detailed tool contracts
- dynamic tool discovery in changing environments
- proportional verification with evidence-backed closeouts

The goal is not to make MiniMax merely imitate another provider's tone. The goal is to give M2.7 a durable execution spine that complements its official positioning around real-world engineering, complex skills, and agent workflows.

## Model Compatibility

The rules are designed to survive model changes:

- the core rule stays short and durable
- runtime-specific guidance lives in requestable rules
- tool advice is written around whatever the current environment actually exposes
- version-sensitive claims are meant to be verified at runtime, not frozen into the rules

This makes the repo useful for MiniMax first, while still compatible with other Cursor-supported models.

## Why M2.7-Native

MiniMax positions M2.7 as strong at real-world software engineering, full project delivery, large skill adherence, and agent teams rather than only one-shot code generation [MiniMax M2.7 release report](https://www.minimax.io/news/minimax-m27-en) [MiniMax M2.7 model page](https://www.minimax.io/models/text/m27).

That means this repo optimizes for:

- bounded repo exploration instead of reading everything
- smallest proving slices for large tasks
- explicit role and handoff discipline for multi-agent work
- strong skill contracts instead of vague long prompts
- truthful runtime and verification reporting

## What Changed

This refactor removes most of the old prompt bloat:

- no more Opus-style identity anchoring in the core
- a separate always-on verification contract instead of burying proof rules in prose
- far less duplicated tool and verification doctrine
- no hardcoded month/year version examples in workflow rules
- no fake `<think>` or `<thinking>` scaffolding
- less "always run everything" language in domain-specific rules
- `docs/AGENTS.md` is now a real standalone agent contract for non-Cursor environments
- M2.7-specific docs now distinguish core execution rules from optional agent-team, skill, and tool-discovery depth

## Execution Guarantees

The repo now tries to enforce a few non-negotiable behaviors:

- new packages, frameworks, and toolchains must be checked against current authoritative sources before they are recommended or installed
- scaffolding should use the framework's official CLI or official `create` or `init` path when one exists
- scaffold output must be inspected before continuing after generators or CLIs run
- runnable work is not done until there is runnable proof, not just static confidence
- if a required check fails or is skipped, the agent should report `blocked` or `implemented but unverified` instead of claiming completion
- browser or user-surface verification is required for UI and interaction claims
- tool-based promises should not be made until the current runtime path is confirmed

## M2.7 Runtime Modes

The official API docs expose both `MiniMax-M2.7` and `MiniMax-M2.7-highspeed`, each with a `204,800` token context window. The docs describe standard M2.7 at roughly `60 tps` and `M2.7-highspeed` at roughly `100 tps`, with the highspeed variant positioned as the same capability profile with lower latency [MiniMax text generation docs](https://platform.minimax.io/docs/guides/text-generation) [MiniMax API overview](https://platform.minimax.io/docs/api-reference/api-overview).

Use that split like this:

| Model | Best fit |
|------|---------|
| `MiniMax-M2.7` | Deep repo work, complex synthesis, richer multi-step tasks |
| `MiniMax-M2.7-highspeed` | Faster interactive loops, shorter verification cycles, lower-latency coding assistance |

## Solver Loop

The main thing this repo now tries to transfer into MiniMax M2.7 is a repeatable solver loop:

1. Define the outcome in operational terms.
2. Inspect the repo and runtime before deciding.
3. Find the spine: entry points, data flow, state boundaries, persistence, and user-visible behavior.
4. Build the smallest vertical slice that proves the feature works.
5. Verify at the surface where the user experiences the change.
6. Expand scope only after the core slice is working.

For app-building, this means:

- do not start with a pile of components
- resolve key flows and acceptance first
- prove one end-to-end slice early
- add polish and secondary features afterward

The minimum proving loop for a new app should usually be:

1. install or setup succeeds
2. dev server or health check starts
3. production build succeeds
4. one primary happy-path flow works
5. promised integrations such as styling, routing, persistence, or auth are actually verified

Example:

- For "build a task app", prioritize `create -> list -> complete -> persist -> reload`
- Delay filters, collaboration, settings, and animations until the core path works

## MoE Note

These rules do **not** assume you can directly control a model's internal MoE routing through persona text.

The controllable levers are:

- cleaner context
- better decomposition
- better tool routing
- better verification loops
- clearer definitions of done

If MiniMax performs better after a prompt rewrite, the likely reason is improved external problem structure, not magical direct access to hidden experts.

## Quick Start

### For Cursor

```bash
git clone https://github.com/madebyaris/advance-minimax-m2-cursor-rules.git
cp -r advance-minimax-m2-cursor-rules/.cursor your-project/.cursor
```

The always-on rules are:

- `.cursor/rules/minimax-m2-core.mdc`
- `.cursor/rules/minimax-m2-status-verification.mdc`

The rest of the rules are requestable and narrower by design.

The official docs recommend Anthropic-compatible access for MiniMax text models and also support OpenAI-compatible access paths [MiniMax text generation docs](https://platform.minimax.io/docs/guides/text-generation) [MiniMax API overview](https://platform.minimax.io/docs/api-reference/api-overview).

### For Other IDEs and CLIs

Copy `docs/AGENTS.md` into the target repo root as `AGENTS.md`, or use it as your agent instructions file in environments that support a portable agent contract.
It intentionally lives under `docs/` in this repo so Cursor does not auto-activate it while you are editing these rules.

## Rule Architecture

### Always-On Core

| File | Purpose |
|------|---------|
| `.cursor/rules/minimax-m2-core.mdc` | Durable always-on execution behavior: solver loop, scope control, truthful tool use, scaffold discipline, and concise progress |
| `.cursor/rules/minimax-m2-status-verification.mdc` | Always-on status and proof contract: exact claim labels, proof matching, and evidence-first closeouts |

### Runtime Rules

| File | Purpose |
|------|---

[truncated…]

PUBLIC HISTORY

First discoveredMar 21, 2026

IDENTITY

inferred

Identity inferred from code signals. No PROVENANCE.yml found.

Is this yours? Claim it →

METADATA

platformgithub
first seenDec 8, 2025
last updatedMar 20, 2026
last crawled1 day ago
version

README BADGE

Add to your README:

![Provenance](https://getprovenance.dev/api/badge?id=provenance:github:madebyaris/advance-minimax-m2-cursor-rules)