JetBrains MPS is a development environment for creating domain-specific languages, which are programming languages designed for a particular field or task. It provides editors with features such as completion, semantic checks, and type checking, and can generate code in languages including Java and XML.
Borrowing it
Nothing to install: this file belongs to JetBrains/MPS. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/JetBrains/MPS/master/.agents/skills/mps-aspect-generation-plan/SKILL.mdgit clone --depth 1 https://github.com/JetBrains/MPSWrote 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/skills/jetbrains/mps/mps-aspect-generation-plan)<a href="https://agentmods.dev/skills/jetbrains/mps/mps-aspect-generation-plan"><img src="https://agentmods.dev/badge/skills/jetbrains/mps/mps-aspect-generation-plan.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.00101 | $0.01455 |
| Opus 5 | $0.00051 | $0.00727 |
| Sonnet 5 | $0.00020 | $0.00291 |
| Haiku 4.5 | $0.00010 | $0.00145 |
Grade A, and why
mps-aspect-generation-plan 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 8d 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 — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MPS Generation Plans
A generation plan (Plan) is an ordered script that controls which generators run, in what sequence, and with what synchronization points. Without a plan, MPS determines order from mutual generator priorities and dependencies. A plan lets language designers specify that ordering once, in a single place, without requiring all involved languages to know about each other.
Language: jetbrains.mps.lang.generator.plan (id 7ab1a6fa-0a11-4b95-9e48-75f363d6cb00, version 3)
Also requires: jetbrains.mps.lang.smodel (for LanguageId / LanguageIdentity nodes)
When to use a generation plan
- You need a guaranteed ordering of generators across languages that must not depend on each other.
- You are doing cross-model generation and need mapping labels from one model to be available when generating another (requires checkpoints).
- You want to fork the generation of certain models into a separate branch (e.g., generate both
.javafiles and XML descriptors from the same input). - You want a conditional contribution added to a base plan without modifying it (
PlanContribution).
Critical Directives
- Genplan models use the
genplanstereotype. File name pattern:<name>@genplan.mps. PassmodelName: "<name>@genplan"tomps_mcp_create_model. See aspect-model-stereotypes.md for all model identifiers. SetdoNotGenerate=true(MPS adds this automatically). - Only one DevKit per model may carry a genplan. Assigning multiple genplan-bearing DevKits to the same model is unsupported.
Plan.stepsis1..n. A plan with no steps is invalid.LanguageEntry.language(LanguageId) andGeneratorModulePointer.module(ModulePointer) are each cardinality 1 — missing them is a validation error.- Checkpoints persist transient state. Cross-phase reference resolution works only when phases share a plan AND a
Checkpointsits between them. - Do not hand-edit serialized
.mpsgenplan files. Use MPS MCP node tools.
What ships with it
10 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/authoring-checklist.md 1.2 KB
- references/checkpoints.md 2.2 KB
- references/composition-and-fork.md 5.0 KB
- references/concept-quick-reference.md 2.6 KB
- references/fork-selectors.md 757 B
- references/model-attributes.md 1.5 KB
- references/plan-setup.md 1.7 KB
- references/step-catalog.md 990 B
- references/transform-and-applygenerators.md 6.8 KB
- references/verification-and-discovery.md 703 B
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.
- 8d ago First seen · 60 lines · 101 tokens per session scan A 50a89c2d392d
mps-aspect-generation-plan is a skill published in the GitHub repository JetBrains/MPS (1,656 stars, last pushed yesterday), licensed Apache-2.0. It adds 101 tokens to every session and 1,455 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.
Other skills, from other repositories
langium
A comprehensive skill to understanding how Langium-based projects work — from grammar definition through code generation, runtime parsing, linking, validation, and LSP integration.
lai-gen-evals
Expand and refine the evaluation suite for a Langium DSL project. Generates comprehensive eval files that cover syntactic correctness, semantic validity, user intent matching, edge cases, and language understanding.
lai
Guide for using the langium-ai (LAI) CLI to generate language descriptors, synthesize system prompts, run evaluations, and iteratively refine AI-powered tooling in Langium projects. Use when working with lai commands, descriptors, or evaluation files.
lai-gen-descriptor
Generate or refine a language descriptor for a Langium DSL project. Bootstraps a new descriptor via lai gen descriptor if none exists, then guides refinement of paths, services, examples, documentation, and structure.
lai-gen-mcp
Generate a Model Context Protocol (MCP) server that exposes a Langium DSL's parser and validator as an MCP tool, allowing any MCP-compatible client to validate DSL code and receive diagnostics.
lai-gen-language-skill
Skill for generating a skill for understanding a specific Langium-based DSL. Used in cooperation with the lai & langium skills for understanding.