AutoMCM-Pro: Skill for Claude Code

.claude/skills/mcm-master/SKILL.md

mcm-master is a skill for Claude Code from RealSeaberry/AutoMCM-Pro. It costs 90 tokens per session (2,864 once invoked), scanned A, original, MIT.

An end-to-end assistant for MCM and ICM, university mathematical modelling competitions. It can guide problem selection, data analysis, model building, verification, academic writing, and LaTeX paper generation.

In plain words
What is it for?
Use it when working on an MCM or ICM problem and you need help exploring data, choosing or building a model, checking code, writing the report, or creating a PDF.
Why use it?
It organizes the many stages of a modelling competition into one workflow, from preparing the workspace to producing the paper. This reduces the amount of setup and coordination the team must do manually.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: names the AskUserQuestion tool.

This is RealSeaberry/AutoMCM-Pro's own configuration. It tells Claude Code how to work on AutoMCM-Pro itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything AutoMCM-Pro configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/setup_workspace.py --mode mcm.

Reuse

Borrowing it

Nothing to install: this file belongs to RealSeaberry/AutoMCM-Pro. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/RealSeaberry/AutoMCM-Pro/main/.claude/skills/mcm-master/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/RealSeaberry/AutoMCM-Pro

Made for: Claude Code.

Wrote 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.

agentmods badge for mcm-master

README.md
[![agentmods](https://agentmods.dev/badge/skills/realseaberry/automcm-pro/mcm-master/github.svg)](https://agentmods.dev/skills/realseaberry/automcm-pro/mcm-master)
Your own site
<a href="https://agentmods.dev/skills/realseaberry/automcm-pro/mcm-master"><img src="https://agentmods.dev/badge/skills/realseaberry/automcm-pro/mcm-master/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.

agentmods 80×15 button for mcm-master

Your own site · 80×15
<a href="https://agentmods.dev/skills/realseaberry/automcm-pro/mcm-master"><img src="https://agentmods.dev/badge/skills/realseaberry/automcm-pro/mcm-master.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,864 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00090 $0.02864
Opus 5 $0.00045 $0.01432
Sonnet 5 $0.00018 $0.00573
Haiku 4.5 $0.00009 $0.00286

Measured 9d ago against content hash 741c43c21945, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

mcm-master 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 9d 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.

.claude/skills/mcm-master/SKILL.md · 327 lines

How it starts

The opening of the file, as written. The whole thing — 327 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCM-Master: Full-Stack MCM/ICM Autonomous Modeling Agent

You are a world-class interdisciplinary mathematical modeling team: a rigorous applied mathematician, a senior data scientist, and a fluent academic English writer. Your mission: given an MCM/ICM problem and data, autonomously complete the full pipeline from data exploration → model building → code verification → LaTeX paper generation → PDF output, producing a competition-ready paper that meets COMAP's standards.

Mind-Reader active: All your reasoning is streamed to http://localhost:8080. Write memory/thought_process.md entries in vivid detail — show your math, cite your data, explain your model pivots. Make it worth watching.


【Step 0】Workspace Initialization

python scripts/setup_workspace.py --mode mcm

This creates the standard workspace under CUMCM_Workspace/.


【Step 1】Collect Contest Metadata

Use AskUserQuestion to collect:

  1. Team Control Number (队号/控制号) "Please enter your 7-digit MCM/ICM Team Control Number (e.g., 2400001):"

  2. Problem Choice (选题) "Which problem did your team choose?"

    • MCM: A (Continuous), B (Discrete), C (Data Insights)
    • ICM: D (Operations Research / Network Science), E (Sustainability), F (Policy) Present as a numbered menu.
  3. Contest type "MCM or ICM?"

  4. Problem file path "Path to problem PDF or text file (e.g., ./problem.pdf):"

  5. Data file path (if any) "Path to data folder or file (press Enter if no data provided):"

Save all metadata:

python scripts/agent_memory_manager.py init \
  --title "MCM/ICM 20XX Problem [CHOICE]  TCN: [TEAM_NUMBER]" \
  --problems "问题一描述|问题二描述|问题三描述" \
  --models "拟用模型一|拟用模型二|拟用模型三"

【Step 2】Detect Practical Deliverable Requirement

This is MCM/ICM-specific and critical. After reading the problem, scan for keywords:

  • "write a memo", "one-page memo", "letter to", "write a report to", "non-technical summary", "policy brief", "executive summary"

Read the full file on GitHub · 327 lines

Changes

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.

  1. 9d ago First seen · 327 lines · 90 tokens per session scan A 741c43c21945

Subscribe to this mod's changes

mcm-master is a skill published in the GitHub repository RealSeaberry/AutoMCM-Pro (231 stars, last pushed 15d ago), licensed MIT. It adds 90 tokens to every session and 2,864 once invoked, about $0.0005 per session on Opus 5. 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.

Related

Other skills, from other repositories

html-ppt-zhangzara-pin-and-paper

A field-biology capstone on urban pollinator decline — the survey design, the data, the contribution, and the caveats. Built as a decision-grade coursework defense deck for faculty reviewers.

nexu-io/open-design · 51 tokens

proof-writer

A tool for writing or checking rigorous mathematical proofs for claims such as theorems, lemmas, propositions, and corollaries.

wanshuiyin/Auto-claude-code-research-in-sleep · 73 tokens

tooluniverse-organic-chemistry

Organic chemistry reasoning guide for reaction product prediction, mechanism analysis (electrophilic/nucleophilic substitution, addition, elimination, pericyclic, radical), and spectroscopy interpretation (1H/13C NMR, IR, MS). Reasons from first principles (electron flow, kinetic vs thermodynamic) rather than…

mims-harvard/ToolUniverse · 86 tokens

scaffold-exercises

Scaffold a graded problem set with sections, problems, worked solutions, and short "why this matters" explainers across analytical, empirical, and coding types. Use when user says "make a problem set on X", "scaffold exercises for this lecture", "create practice problems", "generate homework with a solution key"…

pedrohcgs/claude-code-my-workflow · 101 tokens

edu-chem-reaction

A guide for turning a chemical reaction into a self-contained interactive 3D web demonstration. It shows molecules changing while also displaying the balanced equation, explanations, atom counts, and optionally an energy curve.

wy51ai/edulab · 495 tokens

present-paper

Academic presentation preparation — paper-driven (journal club, grand rounds, seminar) and lecture/teaching decks (course material, workshop slides, conference talks). Analyzes source material, finds supporting references, drafts audience-adapted speaker scripts, generates or augments PPTX with speaker notes, and…

Aperivue/medsci-skills · 67 tokens