Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/madebyaris/advance-minimax-m3-cursor-rulesWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/madebyaris/advance-minimax-m3-cursor-rules/design-systems)<a href="https://agentmods.dev/rules/madebyaris/advance-minimax-m3-cursor-rules/design-systems"><img src="https://agentmods.dev/badge/rules/madebyaris/advance-minimax-m3-cursor-rules/design-systems/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/rules/madebyaris/advance-minimax-m3-cursor-rules/design-systems"><img src="https://agentmods.dev/badge/rules/madebyaris/advance-minimax-m3-cursor-rules/design-systems.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01457 |
| Opus 5 | $0.00000 | $0.00728 |
| Sonnet 5 | $0.00000 | $0.00291 |
| Haiku 4.5 | $0.00000 | $0.00146 |
Grade A, and why
design-systems scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 127 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Design System Mechanics
Token structure, shadcn/ui usage, Tailwind v4 features, and component composition — not aesthetic direction.
For palettes, font pairings, category tone, layout direction, and the slop checklist, load the anti-slop-design skill (and its reference.md for full pages / responsive matrices). For general coding workflow, use core Code Discipline.
Inspect the project first: package.json, tailwind.config.*, globals.css, components.json, existing fonts and icon library. Extend what exists; do not replace the design system unprompted.
Token Shape (semantic, not hex soup)
Prefer semantic names mapped to CSS variables so themes and shadcn primitives stay aligned:
/* globals.css — Tailwind v4 @theme or :root */
@theme {
--color-background: …;
--color-foreground: …;
--color-primary: …;
--color-muted: …;
--color-border: …;
--radius-md: 8px;
--font-body: …;
--font-display: …;
}
- Derive real values from the project brand or
anti-slop-designCategory Guide — placeholders above are structural only. - Prefer OKLCH for new token values (
oklch(0.65 0.15 250)) — perceptually uniform lightness makes scales and dark-mode variants predictable. Tint neutrals toward the brand hue (chroma 0.005–0.01); never ship pure-gray scales or pure#000/#FFF. - Three token tiers when the system grows: primitive (
--blue-600) → semantic (--color-primary) → component (--button-bg). Components consume semantic tokens; only semantic tokens reference primitives. Skip the component tier until a component actually needs an override. - Do not default to generic blue/indigo scales or
Inter/Robotounless the project already uses them. - Status colors:
--destructive,--success, etc. — keep consistent with shadcn semantic tokens when present.
Typography Mechanics
- Fluid display sizes with
clamp():font-size: clamp(2rem, 1.2rem + 3.5vw, 4rem)— no breakpoint jumps on headings. - Pair line-height inversely with size: body
1.6–1.8, headings1.1–1.2. A 56px heading atline-height: 1.6is broken. - Tighten tracking as display size grows (
letter-spacing: -0.01emto-0.04emabove ~32px); never negative-track body text. - Body measure:
max-width: 65chon prose containers, not pixel guesses. - Keep ≥1.25 ratio between adjacent type-scale steps; expose the scale as tokens, not ad-hoc
text-[17px]values. - Load fonts with
font-display: swapand preconnect; subset when the toolchain supports it.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 127 lines · 0 tokens per session scan A 3eed6b3492d7
design-systems is a cursor rule published in the GitHub repository madebyaris/advance-minimax-m3-cursor-rules (125 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,457 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
components
Component patterns and UI conventions.
tailwind
Tailwind CSS and styling conventions.
shadcn-ui
Cursor rule "shadcn-ui" from nedcodes-ok/cursorrules-collection, covering shadcn/ui rules, component usage, styling, forms and dialog/sheet/modal patterns.
shadcn-ui
Cursor rule "shadcn-ui" from Renvia-code/best-cursor-rules, covering shadcn/ui best practices, installation, initial setup, initialize shadcn/ui in your project and add components as needed.
tailwind-css
Tailwind CSS: utility patterns, design tokens, component extraction.
nextjs-react-tailwind-cursorrules-prompt-file
Cursor rules for Next.js development with React and Tailwind CSS integration.