[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-refactoring-code":3,"mdc-bkm61a-key":39,"related-repo-jetbrains-refactoring-code":922,"related-org-jetbrains-refactoring-code":1046},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"refactoring-code","refactor code in JetBrains IDEs","Use when semantic refactoring is needed in Rider-supported solutions and projects, including .NET\u002FC#, F#, VB, C++, Unity, Unreal Engine, XAML, Razor, and other GameDev or mixed-language projects. Trigger when edits must update declarations and usages across IDE-resolved references — rename symbols, move types or namespaces, safe-delete unused code, extract interface\u002Fbase class\u002Fmethod, change signatures, or reorganize namespaces. Do not use for file-only moves, config keys, strings, comments, prose-only edits, generated output, or logic changes with unchanged names\u002Fsignatures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"jetbrains","JetBrains","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fjetbrains.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Unreal Engine","unreal-engine","tag",{"name":17,"slug":18,"type":15},"Unity","unity",{"name":20,"slug":21,"type":15},"C#","c",{"name":23,"slug":24,"type":15},"Engineering","engineering",{"name":26,"slug":27,"type":15},"Code Analysis","code-analysis",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-13T06:42:23.025696",null,17,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"Curated agent skills collection verified by JetBrains","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills\u002Ftree\u002FHEAD\u002Frefactoring-code","---\nname: refactoring-code\ndescription: Use when semantic refactoring is needed in Rider-supported solutions and projects, including .NET\u002FC#, F#, VB, C++, Unity, Unreal Engine, XAML, Razor, and other GameDev or mixed-language projects. Trigger when edits must update declarations and usages across IDE-resolved references — rename symbols, move types or namespaces, safe-delete unused code, extract interface\u002Fbase class\u002Fmethod, change signatures, or reorganize namespaces. Do not use for file-only moves, config keys, strings, comments, prose-only edits, generated output, or logic changes with unchanged names\u002Fsignatures.\nallowed-tools: execute_tool\nmetadata:\n  author: JetBrains\n---\n\n# Code Refactoring\n\nRider\u002FReSharper-driven semantic refactorings across solutions opened in Rider. Each tool resolves the target through the IDE's reference index and rewrites every affected site — language-aware usages such as `nameof`, XML-doc `\u003Csee cref>`, XAML `x:Name`, Razor, C++\u002FUnreal references, and ordinary references that grep cannot resolve — instead of a grep + text replace.\n\n## Invoking a tool\n\nAlways call a refactoring tool **through `execute_tool`** — direct calls are not routed:\n\n```\nexecute_tool(command=\"\u003Ctool> --arg value [--flag true]\")\n```\n\n[reference\u002Ftools.md](reference\u002Ftools.md) lists every available tool; the linked `reference\u002Ftools\u002F\u003Ctool>.md` gives the exact parameters, response shape, outcomes, and error kinds for the one tool you are about to call. Read only that one — do not pre-load the whole tree.\n\n## Shared rules\n\n1. **Prefer the MCP tool.** It resolves references semantically across the solution; a text edit cannot. On any error you cannot fix by adjusting the input, or when `execute_tool` is unavailable, fall back to a text-based edit.\n2. **Trust the success signal.** When a tool reports success, do not re-read the mutated files to verify. When a tool reports a count of touched\u002Faffected sites, a value of **1** for a type, method, property, field, or namespace is suspicious (declaration only, no callers) — surface it to the user.\n3. **Do not retry blindly.** Adjust the arguments (query, name, file path, namespace, member selection) between calls; a second identical call fails the same way.\n4. **Argument hygiene.** Parameter names are **camelCase** — hyphenated variants like `--new-name` are rejected. Pass real values or omit optional parameters entirely; never encode an omitted value with a placeholder such as `\"\"`, `\"\u002F\"`, `\"__omit__\"`, or a fake path. Treat file paths and identifiers as opaque: copy them from `search_*` \u002F `get_symbol_info` output (solution-relative, `\u002F` separators) rather than synthesizing them.\n5. **Library \u002F external symbols cannot be refactored** — the change must be made upstream. Confirm with the user.\n\n## Preview before applying\n\nWhen a tool offers an analysis-only mode — rename's `--preview true` (the older `--dryRun` is a deprecated alias) returns the blast radius in `affects` without mutating files — use it first for:\n\n- public \u002F protected API changes;\n- targets with many call sites or cross-language references (XAML, Razor, C++\u002FUnreal, `\u003Csee cref>`);\n- any change where the user signalled hesitation.\n\nAudit `affects`, then re-issue without `--preview` to apply. Preview resolves the symbol and counts usages only — it does **not** run conflict analysis, so a clean preview can still come back with conflicts on apply. Which tools expose an analysis mode is documented per tool in the reference; a tool without one (e.g. a namespace move) applies directly and reports no blast-radius counts, so for a high-impact call narrate what you are about to change before issuing it.\n\n## Conflicts and ambiguity\n\nTools that rewrite or remove use sites (rename, safe-delete, the extract family) can refuse the operation and report **conflicts**; a symbol query can also match more than one candidate (**ambiguous**). Both come back in the tool's response — see its reference file for the exact fields. A non-empty `conflicts` list always means **no files were touched**.\n\nEach conflict entry is `{kind, file, context}`: `kind` mirrors ReSharper's `ConflictType` (snake_case); `context` is the engine's localized description; `file` is the first occurrence's path, or `null` for a textual-only conflict or a clash with a compiled-only symbol.\n\n| Kind | Meaning | Action |\n|------|---------|--------|\n| `same_name_conflict` | New name collides with an existing member in the same scope. | Pick a different name and retry. |\n| `default_element_conflict` | Generic element-level conflict without a more specific category. | Read `context`; if it names a colliding member, treat like `same_name_conflict`, else escalate. |\n| `cannot_update_usage_conflict` | A call site can't be rewritten safely — downstream code would break. | Escalate to user; do not auto-retry. |\n| `cannot_remove`, `cannot_delete_safely`, `cannot_inline_usage_conflict`, `will_be_removed` | Engine refuses to remove\u002Fdelete\u002Finline\u002Frewrite a use site. | Escalate to user; do not auto-retry. |\n| `not_accessible` | The symbol becomes invisible from one or more use sites after the change. | Escalate to user — a visibility regression. |\n| `will_be_made_public` | Access widens as a side-effect (e.g. promoted from private). | Narrate the trade-off to the user before retrying. |\n| `hierarchy_conflict` | Override\u002Fimplementation hierarchy clashes with the result. | Escalate to user; cross-type effect. |\n| `text_only`, `default_conflict`, `invalid` | Generic textual conflict the engine couldn't categorise structurally. | Read `context`; decide from the message. |\n\nEscalate to the user (instead of auto-deciding) when there are more than 5 conflicts, or any entry is `cannot_update_usage_conflict`, `cannot_remove`, `cannot_delete_safely`, `cannot_inline_usage_conflict`, `will_be_removed`, `not_accessible`, or `hierarchy_conflict`. For a rename, also escalate when `affects.callSites == 0` for a public\u002Fprotected symbol — it usually means the query resolved to the wrong target.\n\nFor **ambiguous** matches, each candidate carries `name`, `kind`, `fqn`, `file`, and `line`. Re-issue with a more specific query — a fully qualified path like `Namespace.Type.Method`, or `Type._field` for a private member (bare short-name lookup prioritises type-level entries and misses private fields\u002Fmethods). The candidate list is capped at 5; if you see 5, the query is too broad — narrow it rather than expecting the full set.\n\n## Known limitations\n\nThese hold across the toolset and are not reported in tool output:\n\n- **String and comment occurrences** of an old name or namespace are not updated. Fix them with a regular edit pass afterward.\n- **XML-doc `\u003Csee cref>` references**: a method rename rewrites `\u003Csee cref=\"Type.Method(int, int)\"\u002F>` to `\u003Csee cref=\"NewName\"\u002F>`, dropping the containing type and parameter list. Surface to the user after method renames and offer a separate edit pass.\n- **Moving a type does not move its file** — only the namespace declaration and references change. If the user also wants the file relocated to match, do that as a separate file operation.\n\n## Tool reference\n\n[reference\u002Ftools.md](reference\u002Ftools.md) is the auto-generated index of every tool in the Rider refactoring toolset, each entry linking to its full parameter and response contract. It is regenerated from the live MCP descriptors, so it — not this file — is the source of truth for tool names, signatures, and response shapes. This skill carries only the workflow and judgment the contracts don't.\n",{"data":40,"body":43},{"name":4,"description":6,"allowed-tools":41,"metadata":42},"execute_tool",{"author":9},{"type":44,"children":45},"root",[46,55,86,93,111,123,142,148,279,285,314,340,367,373,406,459,722,779,840,846,851,907,913],{"type":47,"tag":48,"props":49,"children":51},"element","h1",{"id":50},"code-refactoring",[52],{"type":53,"value":54},"text","Code Refactoring",{"type":47,"tag":56,"props":57,"children":58},"p",{},[59,61,68,70,76,78,84],{"type":53,"value":60},"Rider\u002FReSharper-driven semantic refactorings across solutions opened in Rider. Each tool resolves the target through the IDE's reference index and rewrites every affected site — language-aware usages such as ",{"type":47,"tag":62,"props":63,"children":65},"code",{"className":64},[],[66],{"type":53,"value":67},"nameof",{"type":53,"value":69},", XML-doc ",{"type":47,"tag":62,"props":71,"children":73},{"className":72},[],[74],{"type":53,"value":75},"\u003Csee cref>",{"type":53,"value":77},", XAML ",{"type":47,"tag":62,"props":79,"children":81},{"className":80},[],[82],{"type":53,"value":83},"x:Name",{"type":53,"value":85},", Razor, C++\u002FUnreal references, and ordinary references that grep cannot resolve — instead of a grep + text replace.",{"type":47,"tag":87,"props":88,"children":90},"h2",{"id":89},"invoking-a-tool",[91],{"type":53,"value":92},"Invoking a tool",{"type":47,"tag":56,"props":94,"children":95},{},[96,98,109],{"type":53,"value":97},"Always call a refactoring tool ",{"type":47,"tag":99,"props":100,"children":101},"strong",{},[102,104],{"type":53,"value":103},"through ",{"type":47,"tag":62,"props":105,"children":107},{"className":106},[],[108],{"type":53,"value":41},{"type":53,"value":110}," — direct calls are not routed:",{"type":47,"tag":112,"props":113,"children":117},"pre",{"className":114,"code":116,"language":53},[115],"language-text","execute_tool(command=\"\u003Ctool> --arg value [--flag true]\")\n",[118],{"type":47,"tag":62,"props":119,"children":121},{"__ignoreMap":120},"",[122],{"type":53,"value":116},{"type":47,"tag":56,"props":124,"children":125},{},[126,132,134,140],{"type":47,"tag":127,"props":128,"children":130},"a",{"href":129},"reference\u002Ftools.md",[131],{"type":53,"value":129},{"type":53,"value":133}," lists every available tool; the linked ",{"type":47,"tag":62,"props":135,"children":137},{"className":136},[],[138],{"type":53,"value":139},"reference\u002Ftools\u002F\u003Ctool>.md",{"type":53,"value":141}," gives the exact parameters, response shape, outcomes, and error kinds for the one tool you are about to call. Read only that one — do not pre-load the whole tree.",{"type":47,"tag":87,"props":143,"children":145},{"id":144},"shared-rules",[146],{"type":53,"value":147},"Shared rules",{"type":47,"tag":149,"props":150,"children":151},"ol",{},[152,170,187,197,269],{"type":47,"tag":153,"props":154,"children":155},"li",{},[156,161,163,168],{"type":47,"tag":99,"props":157,"children":158},{},[159],{"type":53,"value":160},"Prefer the MCP tool.",{"type":53,"value":162}," It resolves references semantically across the solution; a text edit cannot. On any error you cannot fix by adjusting the input, or when ",{"type":47,"tag":62,"props":164,"children":166},{"className":165},[],[167],{"type":53,"value":41},{"type":53,"value":169}," is unavailable, fall back to a text-based edit.",{"type":47,"tag":153,"props":171,"children":172},{},[173,178,180,185],{"type":47,"tag":99,"props":174,"children":175},{},[176],{"type":53,"value":177},"Trust the success signal.",{"type":53,"value":179}," When a tool reports success, do not re-read the mutated files to verify. When a tool reports a count of touched\u002Faffected sites, a value of ",{"type":47,"tag":99,"props":181,"children":182},{},[183],{"type":53,"value":184},"1",{"type":53,"value":186}," for a type, method, property, field, or namespace is suspicious (declaration only, no callers) — surface it to the user.",{"type":47,"tag":153,"props":188,"children":189},{},[190,195],{"type":47,"tag":99,"props":191,"children":192},{},[193],{"type":53,"value":194},"Do not retry blindly.",{"type":53,"value":196}," Adjust the arguments (query, name, file path, namespace, member selection) between calls; a second identical call fails the same way.",{"type":47,"tag":153,"props":198,"children":199},{},[200,205,207,212,214,220,222,228,230,236,237,243,245,251,253,259,261,267],{"type":47,"tag":99,"props":201,"children":202},{},[203],{"type":53,"value":204},"Argument hygiene.",{"type":53,"value":206}," Parameter names are ",{"type":47,"tag":99,"props":208,"children":209},{},[210],{"type":53,"value":211},"camelCase",{"type":53,"value":213}," — hyphenated variants like ",{"type":47,"tag":62,"props":215,"children":217},{"className":216},[],[218],{"type":53,"value":219},"--new-name",{"type":53,"value":221}," are rejected. Pass real values or omit optional parameters entirely; never encode an omitted value with a placeholder such as ",{"type":47,"tag":62,"props":223,"children":225},{"className":224},[],[226],{"type":53,"value":227},"\"\"",{"type":53,"value":229},", ",{"type":47,"tag":62,"props":231,"children":233},{"className":232},[],[234],{"type":53,"value":235},"\"\u002F\"",{"type":53,"value":229},{"type":47,"tag":62,"props":238,"children":240},{"className":239},[],[241],{"type":53,"value":242},"\"__omit__\"",{"type":53,"value":244},", or a fake path. Treat file paths and identifiers as opaque: copy them from ",{"type":47,"tag":62,"props":246,"children":248},{"className":247},[],[249],{"type":53,"value":250},"search_*",{"type":53,"value":252}," \u002F ",{"type":47,"tag":62,"props":254,"children":256},{"className":255},[],[257],{"type":53,"value":258},"get_symbol_info",{"type":53,"value":260}," output (solution-relative, ",{"type":47,"tag":62,"props":262,"children":264},{"className":263},[],[265],{"type":53,"value":266},"\u002F",{"type":53,"value":268}," separators) rather than synthesizing them.",{"type":47,"tag":153,"props":270,"children":271},{},[272,277],{"type":47,"tag":99,"props":273,"children":274},{},[275],{"type":53,"value":276},"Library \u002F external symbols cannot be refactored",{"type":53,"value":278}," — the change must be made upstream. Confirm with the user.",{"type":47,"tag":87,"props":280,"children":282},{"id":281},"preview-before-applying",[283],{"type":53,"value":284},"Preview before applying",{"type":47,"tag":56,"props":286,"children":287},{},[288,290,296,298,304,306,312],{"type":53,"value":289},"When a tool offers an analysis-only mode — rename's ",{"type":47,"tag":62,"props":291,"children":293},{"className":292},[],[294],{"type":53,"value":295},"--preview true",{"type":53,"value":297}," (the older ",{"type":47,"tag":62,"props":299,"children":301},{"className":300},[],[302],{"type":53,"value":303},"--dryRun",{"type":53,"value":305}," is a deprecated alias) returns the blast radius in ",{"type":47,"tag":62,"props":307,"children":309},{"className":308},[],[310],{"type":53,"value":311},"affects",{"type":53,"value":313}," without mutating files — use it first for:",{"type":47,"tag":315,"props":316,"children":317},"ul",{},[318,323,335],{"type":47,"tag":153,"props":319,"children":320},{},[321],{"type":53,"value":322},"public \u002F protected API changes;",{"type":47,"tag":153,"props":324,"children":325},{},[326,328,333],{"type":53,"value":327},"targets with many call sites or cross-language references (XAML, Razor, C++\u002FUnreal, ",{"type":47,"tag":62,"props":329,"children":331},{"className":330},[],[332],{"type":53,"value":75},{"type":53,"value":334},");",{"type":47,"tag":153,"props":336,"children":337},{},[338],{"type":53,"value":339},"any change where the user signalled hesitation.",{"type":47,"tag":56,"props":341,"children":342},{},[343,345,350,352,358,360,365],{"type":53,"value":344},"Audit ",{"type":47,"tag":62,"props":346,"children":348},{"className":347},[],[349],{"type":53,"value":311},{"type":53,"value":351},", then re-issue without ",{"type":47,"tag":62,"props":353,"children":355},{"className":354},[],[356],{"type":53,"value":357},"--preview",{"type":53,"value":359}," to apply. Preview resolves the symbol and counts usages only — it does ",{"type":47,"tag":99,"props":361,"children":362},{},[363],{"type":53,"value":364},"not",{"type":53,"value":366}," run conflict analysis, so a clean preview can still come back with conflicts on apply. Which tools expose an analysis mode is documented per tool in the reference; a tool without one (e.g. a namespace move) applies directly and reports no blast-radius counts, so for a high-impact call narrate what you are about to change before issuing it.",{"type":47,"tag":87,"props":368,"children":370},{"id":369},"conflicts-and-ambiguity",[371],{"type":53,"value":372},"Conflicts and ambiguity",{"type":47,"tag":56,"props":374,"children":375},{},[376,378,383,385,390,392,397,399,404],{"type":53,"value":377},"Tools that rewrite or remove use sites (rename, safe-delete, the extract family) can refuse the operation and report ",{"type":47,"tag":99,"props":379,"children":380},{},[381],{"type":53,"value":382},"conflicts",{"type":53,"value":384},"; a symbol query can also match more than one candidate (",{"type":47,"tag":99,"props":386,"children":387},{},[388],{"type":53,"value":389},"ambiguous",{"type":53,"value":391},"). Both come back in the tool's response — see its reference file for the exact fields. A non-empty ",{"type":47,"tag":62,"props":393,"children":395},{"className":394},[],[396],{"type":53,"value":382},{"type":53,"value":398}," list always means ",{"type":47,"tag":99,"props":400,"children":401},{},[402],{"type":53,"value":403},"no files were touched",{"type":53,"value":405},".",{"type":47,"tag":56,"props":407,"children":408},{},[409,411,417,419,425,427,433,435,441,443,449,451,457],{"type":53,"value":410},"Each conflict entry is ",{"type":47,"tag":62,"props":412,"children":414},{"className":413},[],[415],{"type":53,"value":416},"{kind, file, context}",{"type":53,"value":418},": ",{"type":47,"tag":62,"props":420,"children":422},{"className":421},[],[423],{"type":53,"value":424},"kind",{"type":53,"value":426}," mirrors ReSharper's ",{"type":47,"tag":62,"props":428,"children":430},{"className":429},[],[431],{"type":53,"value":432},"ConflictType",{"type":53,"value":434}," (snake_case); ",{"type":47,"tag":62,"props":436,"children":438},{"className":437},[],[439],{"type":53,"value":440},"context",{"type":53,"value":442}," is the engine's localized description; ",{"type":47,"tag":62,"props":444,"children":446},{"className":445},[],[447],{"type":53,"value":448},"file",{"type":53,"value":450}," is the first occurrence's path, or ",{"type":47,"tag":62,"props":452,"children":454},{"className":453},[],[455],{"type":53,"value":456},"null",{"type":53,"value":458}," for a textual-only conflict or a clash with a compiled-only symbol.",{"type":47,"tag":460,"props":461,"children":462},"table",{},[463,487],{"type":47,"tag":464,"props":465,"children":466},"thead",{},[467],{"type":47,"tag":468,"props":469,"children":470},"tr",{},[471,477,482],{"type":47,"tag":472,"props":473,"children":474},"th",{},[475],{"type":53,"value":476},"Kind",{"type":47,"tag":472,"props":478,"children":479},{},[480],{"type":53,"value":481},"Meaning",{"type":47,"tag":472,"props":483,"children":484},{},[485],{"type":53,"value":486},"Action",{"type":47,"tag":488,"props":489,"children":490},"tbody",{},[491,514,550,572,614,636,658,680],{"type":47,"tag":468,"props":492,"children":493},{},[494,504,509],{"type":47,"tag":495,"props":496,"children":497},"td",{},[498],{"type":47,"tag":62,"props":499,"children":501},{"className":500},[],[502],{"type":53,"value":503},"same_name_conflict",{"type":47,"tag":495,"props":505,"children":506},{},[507],{"type":53,"value":508},"New name collides with an existing member in the same scope.",{"type":47,"tag":495,"props":510,"children":511},{},[512],{"type":53,"value":513},"Pick a different name and retry.",{"type":47,"tag":468,"props":515,"children":516},{},[517,526,531],{"type":47,"tag":495,"props":518,"children":519},{},[520],{"type":47,"tag":62,"props":521,"children":523},{"className":522},[],[524],{"type":53,"value":525},"default_element_conflict",{"type":47,"tag":495,"props":527,"children":528},{},[529],{"type":53,"value":530},"Generic element-level conflict without a more specific category.",{"type":47,"tag":495,"props":532,"children":533},{},[534,536,541,543,548],{"type":53,"value":535},"Read ",{"type":47,"tag":62,"props":537,"children":539},{"className":538},[],[540],{"type":53,"value":440},{"type":53,"value":542},"; if it names a colliding member, treat like ",{"type":47,"tag":62,"props":544,"children":546},{"className":545},[],[547],{"type":53,"value":503},{"type":53,"value":549},", else escalate.",{"type":47,"tag":468,"props":551,"children":552},{},[553,562,567],{"type":47,"tag":495,"props":554,"children":555},{},[556],{"type":47,"tag":62,"props":557,"children":559},{"className":558},[],[560],{"type":53,"value":561},"cannot_update_usage_conflict",{"type":47,"tag":495,"props":563,"children":564},{},[565],{"type":53,"value":566},"A call site can't be rewritten safely — downstream code would break.",{"type":47,"tag":495,"props":568,"children":569},{},[570],{"type":53,"value":571},"Escalate to user; do not auto-retry.",{"type":47,"tag":468,"props":573,"children":574},{},[575,605,610],{"type":47,"tag":495,"props":576,"children":577},{},[578,584,585,591,592,598,599],{"type":47,"tag":62,"props":579,"children":581},{"className":580},[],[582],{"type":53,"value":583},"cannot_remove",{"type":53,"value":229},{"type":47,"tag":62,"props":586,"children":588},{"className":587},[],[589],{"type":53,"value":590},"cannot_delete_safely",{"type":53,"value":229},{"type":47,"tag":62,"props":593,"children":595},{"className":594},[],[596],{"type":53,"value":597},"cannot_inline_usage_conflict",{"type":53,"value":229},{"type":47,"tag":62,"props":600,"children":602},{"className":601},[],[603],{"type":53,"value":604},"will_be_removed",{"type":47,"tag":495,"props":606,"children":607},{},[608],{"type":53,"value":609},"Engine refuses to remove\u002Fdelete\u002Finline\u002Frewrite a use site.",{"type":47,"tag":495,"props":611,"children":612},{},[613],{"type":53,"value":571},{"type":47,"tag":468,"props":615,"children":616},{},[617,626,631],{"type":47,"tag":495,"props":618,"children":619},{},[620],{"type":47,"tag":62,"props":621,"children":623},{"className":622},[],[624],{"type":53,"value":625},"not_accessible",{"type":47,"tag":495,"props":627,"children":628},{},[629],{"type":53,"value":630},"The symbol becomes invisible from one or more use sites after the change.",{"type":47,"tag":495,"props":632,"children":633},{},[634],{"type":53,"value":635},"Escalate to user — a visibility regression.",{"type":47,"tag":468,"props":637,"children":638},{},[639,648,653],{"type":47,"tag":495,"props":640,"children":641},{},[642],{"type":47,"tag":62,"props":643,"children":645},{"className":644},[],[646],{"type":53,"value":647},"will_be_made_public",{"type":47,"tag":495,"props":649,"children":650},{},[651],{"type":53,"value":652},"Access widens as a side-effect (e.g. promoted from private).",{"type":47,"tag":495,"props":654,"children":655},{},[656],{"type":53,"value":657},"Narrate the trade-off to the user before retrying.",{"type":47,"tag":468,"props":659,"children":660},{},[661,670,675],{"type":47,"tag":495,"props":662,"children":663},{},[664],{"type":47,"tag":62,"props":665,"children":667},{"className":666},[],[668],{"type":53,"value":669},"hierarchy_conflict",{"type":47,"tag":495,"props":671,"children":672},{},[673],{"type":53,"value":674},"Override\u002Fimplementation hierarchy clashes with the result.",{"type":47,"tag":495,"props":676,"children":677},{},[678],{"type":53,"value":679},"Escalate to user; cross-type effect.",{"type":47,"tag":468,"props":681,"children":682},{},[683,706,711],{"type":47,"tag":495,"props":684,"children":685},{},[686,692,693,699,700],{"type":47,"tag":62,"props":687,"children":689},{"className":688},[],[690],{"type":53,"value":691},"text_only",{"type":53,"value":229},{"type":47,"tag":62,"props":694,"children":696},{"className":695},[],[697],{"type":53,"value":698},"default_conflict",{"type":53,"value":229},{"type":47,"tag":62,"props":701,"children":703},{"className":702},[],[704],{"type":53,"value":705},"invalid",{"type":47,"tag":495,"props":707,"children":708},{},[709],{"type":53,"value":710},"Generic textual conflict the engine couldn't categorise structurally.",{"type":47,"tag":495,"props":712,"children":713},{},[714,715,720],{"type":53,"value":535},{"type":47,"tag":62,"props":716,"children":718},{"className":717},[],[719],{"type":53,"value":440},{"type":53,"value":721},"; decide from the message.",{"type":47,"tag":56,"props":723,"children":724},{},[725,727,732,733,738,739,744,745,750,751,756,757,762,764,769,771,777],{"type":53,"value":726},"Escalate to the user (instead of auto-deciding) when there are more than 5 conflicts, or any entry is ",{"type":47,"tag":62,"props":728,"children":730},{"className":729},[],[731],{"type":53,"value":561},{"type":53,"value":229},{"type":47,"tag":62,"props":734,"children":736},{"className":735},[],[737],{"type":53,"value":583},{"type":53,"value":229},{"type":47,"tag":62,"props":740,"children":742},{"className":741},[],[743],{"type":53,"value":590},{"type":53,"value":229},{"type":47,"tag":62,"props":746,"children":748},{"className":747},[],[749],{"type":53,"value":597},{"type":53,"value":229},{"type":47,"tag":62,"props":752,"children":754},{"className":753},[],[755],{"type":53,"value":604},{"type":53,"value":229},{"type":47,"tag":62,"props":758,"children":760},{"className":759},[],[761],{"type":53,"value":625},{"type":53,"value":763},", or ",{"type":47,"tag":62,"props":765,"children":767},{"className":766},[],[768],{"type":53,"value":669},{"type":53,"value":770},". For a rename, also escalate when ",{"type":47,"tag":62,"props":772,"children":774},{"className":773},[],[775],{"type":53,"value":776},"affects.callSites == 0",{"type":53,"value":778}," for a public\u002Fprotected symbol — it usually means the query resolved to the wrong target.",{"type":47,"tag":56,"props":780,"children":781},{},[782,784,788,790,796,797,802,803,809,810,815,817,823,825,831,832,838],{"type":53,"value":783},"For ",{"type":47,"tag":99,"props":785,"children":786},{},[787],{"type":53,"value":389},{"type":53,"value":789}," matches, each candidate carries ",{"type":47,"tag":62,"props":791,"children":793},{"className":792},[],[794],{"type":53,"value":795},"name",{"type":53,"value":229},{"type":47,"tag":62,"props":798,"children":800},{"className":799},[],[801],{"type":53,"value":424},{"type":53,"value":229},{"type":47,"tag":62,"props":804,"children":806},{"className":805},[],[807],{"type":53,"value":808},"fqn",{"type":53,"value":229},{"type":47,"tag":62,"props":811,"children":813},{"className":812},[],[814],{"type":53,"value":448},{"type":53,"value":816},", and ",{"type":47,"tag":62,"props":818,"children":820},{"className":819},[],[821],{"type":53,"value":822},"line",{"type":53,"value":824},". Re-issue with a more specific query — a fully qualified path like ",{"type":47,"tag":62,"props":826,"children":828},{"className":827},[],[829],{"type":53,"value":830},"Namespace.Type.Method",{"type":53,"value":763},{"type":47,"tag":62,"props":833,"children":835},{"className":834},[],[836],{"type":53,"value":837},"Type._field",{"type":53,"value":839}," for a private member (bare short-name lookup prioritises type-level entries and misses private fields\u002Fmethods). The candidate list is capped at 5; if you see 5, the query is too broad — narrow it rather than expecting the full set.",{"type":47,"tag":87,"props":841,"children":843},{"id":842},"known-limitations",[844],{"type":53,"value":845},"Known limitations",{"type":47,"tag":56,"props":847,"children":848},{},[849],{"type":53,"value":850},"These hold across the toolset and are not reported in tool output:",{"type":47,"tag":315,"props":852,"children":853},{},[854,864,897],{"type":47,"tag":153,"props":855,"children":856},{},[857,862],{"type":47,"tag":99,"props":858,"children":859},{},[860],{"type":53,"value":861},"String and comment occurrences",{"type":53,"value":863}," of an old name or namespace are not updated. Fix them with a regular edit pass afterward.",{"type":47,"tag":153,"props":865,"children":866},{},[867,879,881,887,889,895],{"type":47,"tag":99,"props":868,"children":869},{},[870,872,877],{"type":53,"value":871},"XML-doc ",{"type":47,"tag":62,"props":873,"children":875},{"className":874},[],[876],{"type":53,"value":75},{"type":53,"value":878}," references",{"type":53,"value":880},": a method rename rewrites ",{"type":47,"tag":62,"props":882,"children":884},{"className":883},[],[885],{"type":53,"value":886},"\u003Csee cref=\"Type.Method(int, int)\"\u002F>",{"type":53,"value":888}," to ",{"type":47,"tag":62,"props":890,"children":892},{"className":891},[],[893],{"type":53,"value":894},"\u003Csee cref=\"NewName\"\u002F>",{"type":53,"value":896},", dropping the containing type and parameter list. Surface to the user after method renames and offer a separate edit pass.",{"type":47,"tag":153,"props":898,"children":899},{},[900,905],{"type":47,"tag":99,"props":901,"children":902},{},[903],{"type":53,"value":904},"Moving a type does not move its file",{"type":53,"value":906}," — only the namespace declaration and references change. If the user also wants the file relocated to match, do that as a separate file operation.",{"type":47,"tag":87,"props":908,"children":910},{"id":909},"tool-reference",[911],{"type":53,"value":912},"Tool reference",{"type":47,"tag":56,"props":914,"children":915},{},[916,920],{"type":47,"tag":127,"props":917,"children":918},{"href":129},[919],{"type":53,"value":129},{"type":53,"value":921}," is the auto-generated index of every tool in the Rider refactoring toolset, each entry linking to its full parameter and response contract. It is regenerated from the live MCP descriptors, so it — not this file — is the source of truth for tool names, signatures, and response shapes. This skill carries only the workflow and judgment the contracts don't.",{"items":923,"total":1045},[924,943,958,974,989,1012,1029],{"slug":925,"name":925,"fn":926,"description":927,"org":928,"tags":929,"stars":28,"repoUrl":29,"updatedAt":942},"algorithmic-art","create generative art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[930,933,936,939],{"name":931,"slug":932,"type":15},"Creative","creative",{"name":934,"slug":935,"type":15},"Generative Art","generative-art",{"name":937,"slug":938,"type":15},"Graphics","graphics",{"name":940,"slug":941,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":944,"name":944,"fn":945,"description":946,"org":947,"tags":948,"stars":28,"repoUrl":29,"updatedAt":957},"antfu","configure JavaScript projects with Anthony Fu's tools","Anthony Fu's opinionated tooling and conventions for JavaScript\u002FTypeScript projects. Use when setting up new projects, configuring ESLint\u002FPrettier alternatives, monorepos, library publishing, or when the user mentions Anthony Fu's preferences.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[949,952,953,954],{"name":950,"slug":951,"type":15},"Best Practices","best-practices",{"name":23,"slug":24,"type":15},{"name":940,"slug":941,"type":15},{"name":955,"slug":956,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":959,"name":959,"fn":960,"description":961,"org":962,"tags":963,"stars":28,"repoUrl":29,"updatedAt":973},"brand-guidelines","apply Anthropic brand guidelines","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[964,967,970],{"name":965,"slug":966,"type":15},"Branding","branding",{"name":968,"slug":969,"type":15},"Design","design",{"name":971,"slug":972,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":975,"name":975,"fn":976,"description":977,"org":978,"tags":979,"stars":28,"repoUrl":29,"updatedAt":988},"canvas-design","create visual art and design assets","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[980,981,982,985],{"name":931,"slug":932,"type":15},{"name":968,"slug":969,"type":15},{"name":983,"slug":984,"type":15},"Images","images",{"name":986,"slug":987,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":990,"name":990,"fn":991,"description":992,"org":993,"tags":994,"stars":28,"repoUrl":29,"updatedAt":1011},"ci-cd-containerization-advisor","design CI\u002FCD pipelines for Kotlin applications","Design reproducible build, image, and deployment pipelines for Kotlin plus Spring applications, including CI verification, layered containers, rollout safety, and deployment-time migration coordination. Use when creating or improving Dockerfiles, CI workflows, image hardening, Kubernetes manifests, release gates, or deployment strategies for Spring Boot services, especially where build reproducibility and operational safety matter.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[995,998,1001,1004,1005,1008],{"name":996,"slug":997,"type":15},"CI\u002FCD","ci-cd",{"name":999,"slug":1000,"type":15},"Containers","containers",{"name":1002,"slug":1003,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},{"name":1006,"slug":1007,"type":15},"Kotlin","kotlin",{"name":1009,"slug":1010,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":1013,"name":1013,"fn":1014,"description":1015,"org":1016,"tags":1017,"stars":28,"repoUrl":29,"updatedAt":1028},"cloudflare-deploy","deploy applications to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1018,1021,1024,1027],{"name":1019,"slug":1020,"type":15},"Cloudflare","cloudflare",{"name":1022,"slug":1023,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1025,"slug":1026,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1002,"slug":1003,"type":15},"2026-07-17T06:04:42.853896",{"slug":1030,"name":1030,"fn":1031,"description":1032,"org":1033,"tags":1034,"stars":28,"repoUrl":29,"updatedAt":1044},"compose-ui-control","interact with Compose Desktop applications","Control a running Compose Desktop application via HTTP. Use when you need to interact with UI elements, click buttons, enter text, wait for elements to appear, or capture screenshots in a Compose Desktop app that has compose-ui-test-server enabled.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1035,1038,1041],{"name":1036,"slug":1037,"type":15},"Automation","automation",{"name":1039,"slug":1040,"type":15},"Desktop","desktop",{"name":1042,"slug":1043,"type":15},"UI Components","ui-components","2026-07-13T06:40:38.798626",128,{"items":1047,"total":1170},[1048,1064,1073,1082,1091,1101,1110,1119,1128,1138,1147,1160],{"slug":1049,"name":1049,"fn":1050,"description":1051,"org":1052,"tags":1053,"stars":1061,"repoUrl":1062,"updatedAt":1063},"mps-aspect-accessories","configure JetBrains MPS module dependencies","Wire MPS module and model dependencies, used languages, used devkits, extended languages, runtime solutions, accessory models, and language\u002Fdependency versions. Use when adding\u002Fremoving module dependencies, importing languages or devkits into a model, declaring runtime solutions, or shipping accessory content visible to consumers without explicit import.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1054,1057,1060],{"name":1055,"slug":1056,"type":15},"Architecture","architecture",{"name":1058,"slug":1059,"type":15},"Configuration","configuration",{"name":23,"slug":24,"type":15},1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":1065,"name":1065,"fn":1066,"description":1067,"org":1068,"tags":1069,"stars":1061,"repoUrl":1062,"updatedAt":1072},"mps-aspect-actions","define and edit MPS node factories","Use when defining or editing MPS node factories (the \"actions\" aspect) — `NodeFactories` roots, per-concept `NodeFactory` setup functions that initialize a freshly created node and optionally copy data from a replaced `sampleNode`, plus the actions aspect's `CopyPasteHandlers` and `PasteWrappers` roots. Reach for this skill when a substitution, side transform, completion replacement, or `add new initialized(...)` should preserve fields from the node it is replacing, or when defaults set in a constructor are not enough.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1070,1071],{"name":1055,"slug":1056,"type":15},{"name":23,"slug":24,"type":15},"2026-07-17T06:04:48.066901",{"slug":1074,"name":1074,"fn":1075,"description":1076,"org":1077,"tags":1078,"stars":1061,"repoUrl":1062,"updatedAt":1081},"mps-aspect-behavior","define and edit MPS concept behavior","Use when defining or editing MPS `ConceptBehavior` — per-concept methods (non-virtual \u002F virtual \u002F abstract \u002F static \u002F virtual static), constructors, virtual dispatch (MRO), super and interface-default calls (`super\u003CInterface>.method`), overriding methods from `lang.core.behavior` interfaces such as `ScopeProvider.getScope` \u002F `INamedConcept.getName` \u002F `BaseConcept.getPresentation`, calling sibling methods (`LocalBehaviorMethodCall`) and behavior methods from other aspects via `node.method(...)`. Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fbehavior.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1079,1080],{"name":1055,"slug":1056,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:45:21.757084",{"slug":1083,"name":1083,"fn":1084,"description":1085,"org":1086,"tags":1087,"stars":1061,"repoUrl":1062,"updatedAt":1090},"mps-aspect-constraints","define JetBrains MPS language constraints","Use when defining or editing MPS language constraints — property validators \u002F setters \u002F getters, referent search scopes (imperative or inherited via `ScopeProvider.getScope`), `referentSetHandler` side effects, default-scope blocks, `canBeChild` \u002F `canBeParent` \u002F `canBeAncestor` \u002F `canBeRoot` placement rules, `defaultConcreteConcept` for abstract concepts, `set \u003Cread-only>` and `{name}` aliasing, and scope helpers (`SimpleRoleScope`, `ListScope`, `CompositeScope`, `HidingByNameScope`). Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fconstraints.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1088,1089],{"name":1055,"slug":1056,"type":15},{"name":26,"slug":27,"type":15},"2026-07-23T05:41:33.639365",{"slug":1092,"name":1092,"fn":1093,"description":1094,"org":1095,"tags":1096,"stars":1061,"repoUrl":1062,"updatedAt":1100},"mps-aspect-dataflow","define and debug MPS dataflow builders","Use when defining or debugging MPS dataflow builders for a concept — control\u002Fdata flow declarations that drive reachability analysis and variable-use checking. Covers DataFlowBuilderDeclaration, BuilderBlock, emit instructions (code for, jump, ifjump, label, read, write, ret, mayBeUnreachable), positions (AfterPosition, BeforePosition, LabelPosition), the jetbrains.mps.lang.dataFlow language, the NodeParameter implicit, BL+smodel usage inside builder bodies, and IBuilderMode for advanced analyses such as nullable\u002Fnon-null tracking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1097],{"name":1098,"slug":1099,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":1102,"name":1102,"fn":1103,"description":1104,"org":1105,"tags":1106,"stars":1061,"repoUrl":1062,"updatedAt":1109},"mps-aspect-editor","define MPS editor layouts","Use when creating or changing MPS editor definitions — the overall workflow from scaffolding a `ConceptEditorDeclaration` through componentizing reusable `EditorComponentDeclaration`s, refining cell models and cell layouts, applying style sheets and indent-layout style items, wiring smart references, leveraging inheritance via super-concepts and interfaces, inspecting (`print_node_json`, `show_node_representation`) and validating (`check_root_node_problems`). Covers `jetbrains.mps.lang.editor` cell models (`CellModel_RefNode`\u002F`CellModel_RefNodeList`\u002F`CellModel_RefCell`\u002F`CellModel_Property`\u002F`CellModel_Constant`), layout choices, and JSON blueprints for common editor shapes. For the non-layout side (action maps, keymaps, transformation\u002Fsubstitute menus) use `mps-aspect-editor-menus-and-keymaps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1107,1108],{"name":968,"slug":969,"type":15},{"name":1042,"slug":1043,"type":15},"2026-07-23T05:41:56.638151",{"slug":1111,"name":1111,"fn":1112,"description":1113,"org":1114,"tags":1115,"stars":1061,"repoUrl":1062,"updatedAt":1118},"mps-aspect-editor-menus-and-keymaps","author MPS editor menus and keymaps","Use when authoring the **non-layout** parts of the MPS editor aspect — what happens when the user types, presses a key, triggers completion, pastes, or invokes a context action. Covers action maps (`CellActionMapDeclaration`), cell keymaps (`CellKeyMapDeclaration`), transformation menus (`TransformationMenu_Default` \u002F `_Named` \u002F `_Contribution`), substitute menus (`SubstituteMenu_Default` \u002F `SubstituteMenu` \u002F contributions), side transforms (LEFT\u002FRIGHT), legacy cell menus, paste wrappers and copy-paste handlers (in the actions language), completion styling, reference presentation, two-step deletion, and the editor selection API. Trigger terms: `actionMap`, `keyMap`, `delete_action_id`, `transformationMenu`, `substituteMenu`, `Ctrl+Space`, `Ctrl+Alt+B`, side transform, paste wrapper, completion styling, `PasteWrappers`, `CopyPasteHandlers`. For the **layout** side (cells, layouts, style sheets) use `mps-aspect-editor` instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1116,1117],{"name":23,"slug":24,"type":15},{"name":1042,"slug":1043,"type":15},"2026-07-23T05:41:49.666535",{"slug":1120,"name":1120,"fn":1121,"description":1122,"org":1123,"tags":1124,"stars":1061,"repoUrl":1062,"updatedAt":1127},"mps-aspect-generation-plan","modify MPS generation plans","Use when defining or modifying an MPS generation plan — explicit ordering of generators, checkpoints for cross-model reference resolution, forks for parallel branches, IncludePlan composition, conditional PlanContribution activation, ParameterEquals\u002FConceptListSelector fork selectors, and InitModelAttributes for targetFacet routing. Apply when working with @genplan models, the jetbrains.mps.lang.generator.plan language, attaching plans via DevKits or the Custom generation facet, or debugging cross-model mapping label resolution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1125,1126],{"name":1055,"slug":1056,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:44:59.507855",{"slug":1129,"name":1129,"fn":1130,"description":1131,"org":1132,"tags":1133,"stars":1061,"repoUrl":1062,"updatedAt":1137},"mps-aspect-generator","define JetBrains MPS generator rules","Use when defining or modifying MPS generators — author a generator module, add or edit root\u002Freduction\u002Fweaving\u002Fpattern mapping rules, attach template macros ($COPY_SRC, $LOOP, $IF, $PROPERTY, $REF, $SWITCH, $MAP_SRC, $WEAVE, $INSERT, $LABEL, $TRACE, $VAR), wire mapping labels, build template switches, write pre\u002Fpost mapping scripts, navigate `genContext`, or debug \"rule didn't fire\", missing references, empty output, infinite reduction loops, and generated-Java compile failures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1134,1135,1136],{"name":1055,"slug":1056,"type":15},{"name":26,"slug":27,"type":15},{"name":23,"slug":24,"type":15},"2026-07-17T06:06:58.042999",{"slug":1139,"name":1139,"fn":1140,"description":1141,"org":1142,"tags":1143,"stars":1061,"repoUrl":1062,"updatedAt":1146},"mps-aspect-intentions","define and edit MPS intentions","Use when defining or editing MPS intentions (the Alt+Enter context-action aspect) — adding `IntentionDeclaration` roots, parameterized or surround-with variants, description\u002FisApplicable\u002Fexecute blocks, child-filter functions, factory-initialized AST splicing, or debugging why an intention is not offered. Lives in the language's `intentions` model and uses `jetbrains.mps.lang.intentions`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1144,1145],{"name":1055,"slug":1056,"type":15},{"name":23,"slug":24,"type":15},"2026-07-23T05:41:48.692899",{"slug":1148,"name":1148,"fn":1149,"description":1150,"org":1151,"tags":1152,"stars":1061,"repoUrl":1062,"updatedAt":1159},"mps-aspect-migrations","author and debug MPS migration scripts","Use when authoring or debugging MPS migration scripts that upgrade user models after a language definition changes — covers jetbrains.mps.lang.migration (MigrationScript class-based, PureMigrationScript declarative, MoveConcept\u002FMoveContainmentLink\u002FMoveReferenceLink\u002FMoveProperty, ordering via OrderDependency, data exchange via putData\u002FgetData, RefactoringLog, ConceptMigrationReference) and jetbrains.mps.lang.script Enhancement Scripts (MigrationScript with MigrationScriptPart_Instance, ExtractInterfaceMigration, FactoryMigrationScriptPart, CommentMigrationScriptPart) — when a model needs version-gated upgrade, concept rename or removal, link or property rename, instance-level transformation, or composition of migration steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1153,1156],{"name":1154,"slug":1155,"type":15},"Debugging","debugging",{"name":1157,"slug":1158,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":1161,"name":1161,"fn":1162,"description":1163,"org":1164,"tags":1165,"stars":1061,"repoUrl":1062,"updatedAt":1169},"mps-aspect-structure-concepts","define concepts in MPS structure aspect","Define concepts, interface concepts, enumerations, and constrained data types in an MPS language's `structure` aspect. Covers smart-reference detection, alias rules, cardinality, INamedConcept usage, bulk creation, and the full `mps_mcp_alter_structure` \u002F `mps_mcp_query_structure` reference. Use when authoring or modifying a language's structure model.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1166],{"name":1167,"slug":1168,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188]