[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-gradle-kotlin-dsl-doctor":3,"mdc-mygnu-key":39,"related-org-jetbrains-gradle-kotlin-dsl-doctor":669,"related-repo-jetbrains-gradle-kotlin-dsl-doctor":800},{"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},"gradle-kotlin-dsl-doctor","debug and repair Gradle Kotlin builds","Generate, debug, and repair Kotlin + Spring Gradle builds with minimal, compatible changes. Use when `build.gradle.kts` or `settings.gradle.kts` is failing, plugins or toolchains are incompatible, dependency management is drifting from the Spring Boot BOM, test or runtime classpaths are broken, or a Kotlin DSL patch must be safe and incremental.",{"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},"Kotlin","kotlin","tag",{"name":17,"slug":18,"type":15},"Gradle","gradle",{"name":20,"slug":21,"type":15},"Build","build",{"name":23,"slug":24,"type":15},"Spring","spring",{"name":26,"slug":27,"type":15},"Debugging","debugging",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-13T06:41:41.346629",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\u002Fgradle-kotlin-dsl-doctor","---\nname: gradle-kotlin-dsl-doctor\ndescription: Generate, debug, and repair Kotlin + Spring Gradle builds with minimal, compatible changes. Use when `build.gradle.kts` or `settings.gradle.kts` is failing, plugins or toolchains are incompatible, dependency management is drifting from the Spring Boot BOM, test or runtime classpaths are broken, or a Kotlin DSL patch must be safe and incremental.\nmetadata:\n  short-description: \"Repair Kotlin\u002FSpring builds safely\"\n  author: Kotlin\n  source: https:\u002F\u002Fgithub.com\u002FKotlin\u002Fkotlin-backend-agent-skills\u002Ftree\u002Fmain\u002F.agents\u002Fskills\u002Fgradle-kotlin-dsl-doctor\n---\n\n# Gradle Kotlin DSL Doctor\n\nSource mapping: Tier 1 critical skill derived from `Kotlin_Spring_Developer_Pipeline.md` (`SK-04`).\n\n## Mission\n\nStabilize the build with the smallest defensible change.\nTreat Gradle problems as compatibility and model problems, not only syntax problems.\n\n## Read First\n\n- `settings.gradle.kts`\n- root and module `build.gradle.kts`\n- `gradle.properties`\n- `gradle\u002Flibs.versions.toml` or other version catalogs\n- `gradle-wrapper.properties`\n- the exact Gradle output from the failing task\n\n## Classify The Failure\n\nClassify the problem before editing anything:\n\n- plugin resolution or plugin version mismatch\n- Kotlin DSL syntax or type-safe accessor issue\n- dependency resolution or BOM conflict\n- JDK toolchain or target mismatch\n- source set or test runtime misconfiguration\n- compiler plugin problem such as `plugin.spring`, `plugin.jpa`, KAPT, or KSP\n- task wiring or multi-module convention issue\n\n## Work Sequence\n\n1. Identify the failing task and the first meaningful error line.\n2. Determine whether the breakage is in plugin resolution, dependency resolution, compilation, test execution, or packaging.\n3. Extract the current version authorities:\n   - Spring Boot plugin\n   - Kotlin plugin\n   - Gradle wrapper\n   - JDK toolchain\n   - version catalog or convention plugin\n4. Verify whether the project should inherit versions from the Spring Boot BOM instead of declaring them manually.\n5. Patch the narrowest file possible. Prefer module-local fixes over global rewrites.\n6. Recommend the smallest verification command that proves the fix before running the full build.\n\n## Kotlin And Spring Checks\n\n- Verify `kotlin(\"plugin.spring\")` when Spring-managed classes rely on proxies.\n- Verify `kotlin(\"plugin.jpa\")` when JPA entities are present.\n- Verify JVM target and Java toolchain alignment.\n- Verify `kotlin-reflect`, serialization, and coroutine libraries align with the Kotlin version in use.\n- Verify whether annotation processing should use KAPT or KSP in this project.\n\n## Preferred Fix Style\n\n- Remove unnecessary explicit versions before adding new ones.\n- Let the Spring Boot BOM manage compatible dependency versions whenever possible.\n- Prefer small diffs over full-file replacement.\n- Preserve existing conventions such as version catalogs, convention plugins, or build logic modules.\n- If a fix spans several modules, explain the dependency graph that forces it.\n\n## Advanced Build Diagnostics\n\n- Distinguish dependency declaration problems from variant-selection problems. A dependency can exist and still resolve the wrong JVM target, classifier, or capability.\n- Check whether the repo uses `platform(...)` or `enforcedPlatform(...)` in addition to the Spring Boot BOM. That changes how conflict resolution behaves.\n- Check whether the real plugin source of truth is `pluginManagement`, a version catalog, or a convention plugin rather than the module build file.\n- Check whether the Boot plugin is applied to library modules that should publish plain jars instead of executable jars.\n- Check configuration-cache compatibility if the project is trying to use it. Eager task access and mutable global state in custom build logic often explain strange Gradle behavior.\n- Check whether KAPT, KSP, code generation, or source-set wiring requires generated-source directories or task ordering that is currently missing.\n- Check dependency locking, verification metadata, or repository policy files before suggesting new repositories or version changes.\n- Check test fixtures, included builds, and composite builds when inter-module dependencies behave differently in IDE and CI.\n\n## Expert Heuristics\n\n- Prefer explaining which layer owns a version: wrapper, plugin, platform, version catalog, or module override. This avoids repeated drift after the immediate fix.\n- If the build fails only in CI, compare wrapper version, JDK vendor, `org.gradle.jvmargs`, configuration cache flags, and repository credentials before touching dependency declarations.\n- If a custom task or plugin breaks under a new Gradle version, isolate that change from ordinary dependency or Kotlin compiler fixes.\n- If the build uses dependency substitution or included builds, verify whether the resolved artifact is local source or published binary before diagnosing API mismatches.\n\n## Output Contract\n\nReturn these sections:\n\n- `Root cause`: what is broken and at which stage of the build.\n- `Minimal patch`: the exact Gradle change to make.\n- `Why this works`: the compatibility rule or Gradle model fact behind the patch.\n- `Verification`: one or more commands in increasing confidence order.\n- `Follow-up risk`: only if the fix unblocks the build but leaves technical debt behind.\n\n## Guardrails\n\n- Do not invent random dependency or plugin versions.\n- Do not rewrite Kotlin DSL into Groovy or Maven syntax.\n- Do not change unrelated modules just because they look similar.\n- Do not hide version conflicts with `force` or aggressive exclusions unless there is a strong, explicit reason.\n- Do not recommend clearing caches as the primary fix when the build model itself is wrong.\n\n## High-Signal Commands\n\nUse these when the repository permits command execution:\n\n- `.\u002Fgradlew help`\n- `.\u002Fgradlew build`\n- `.\u002Fgradlew :module:compileKotlin`\n- `.\u002Fgradlew dependencies`\n- `.\u002Fgradlew dependencyInsight --dependency \u003Cartifact>`\n\n## Quality Bar\n\nA good run of this skill leaves the build model clearer than before and produces a fix that survives CI.\nA bad run throws version guesses at the problem, rewrites too much, or ignores the Spring Boot compatibility model.\n",{"data":40,"body":44},{"name":4,"description":6,"metadata":41},{"short-description":42,"author":13,"source":43},"Repair Kotlin\u002FSpring builds safely","https:\u002F\u002Fgithub.com\u002FKotlin\u002Fkotlin-backend-agent-skills\u002Ftree\u002Fmain\u002F.agents\u002Fskills\u002Fgradle-kotlin-dsl-doctor",{"type":45,"children":46},"root",[47,55,78,85,90,96,155,161,166,220,226,288,294,344,350,378,384,451,457,488,494,499,557,563,599,605,610,658,664],{"type":48,"tag":49,"props":50,"children":51},"element","h1",{"id":4},[52],{"type":53,"value":54},"text","Gradle Kotlin DSL Doctor",{"type":48,"tag":56,"props":57,"children":58},"p",{},[59,61,68,70,76],{"type":53,"value":60},"Source mapping: Tier 1 critical skill derived from ",{"type":48,"tag":62,"props":63,"children":65},"code",{"className":64},[],[66],{"type":53,"value":67},"Kotlin_Spring_Developer_Pipeline.md",{"type":53,"value":69}," (",{"type":48,"tag":62,"props":71,"children":73},{"className":72},[],[74],{"type":53,"value":75},"SK-04",{"type":53,"value":77},").",{"type":48,"tag":79,"props":80,"children":82},"h2",{"id":81},"mission",[83],{"type":53,"value":84},"Mission",{"type":48,"tag":56,"props":86,"children":87},{},[88],{"type":53,"value":89},"Stabilize the build with the smallest defensible change.\nTreat Gradle problems as compatibility and model problems, not only syntax problems.",{"type":48,"tag":79,"props":91,"children":93},{"id":92},"read-first",[94],{"type":53,"value":95},"Read First",{"type":48,"tag":97,"props":98,"children":99},"ul",{},[100,110,121,130,141,150],{"type":48,"tag":101,"props":102,"children":103},"li",{},[104],{"type":48,"tag":62,"props":105,"children":107},{"className":106},[],[108],{"type":53,"value":109},"settings.gradle.kts",{"type":48,"tag":101,"props":111,"children":112},{},[113,115],{"type":53,"value":114},"root and module ",{"type":48,"tag":62,"props":116,"children":118},{"className":117},[],[119],{"type":53,"value":120},"build.gradle.kts",{"type":48,"tag":101,"props":122,"children":123},{},[124],{"type":48,"tag":62,"props":125,"children":127},{"className":126},[],[128],{"type":53,"value":129},"gradle.properties",{"type":48,"tag":101,"props":131,"children":132},{},[133,139],{"type":48,"tag":62,"props":134,"children":136},{"className":135},[],[137],{"type":53,"value":138},"gradle\u002Flibs.versions.toml",{"type":53,"value":140}," or other version catalogs",{"type":48,"tag":101,"props":142,"children":143},{},[144],{"type":48,"tag":62,"props":145,"children":147},{"className":146},[],[148],{"type":53,"value":149},"gradle-wrapper.properties",{"type":48,"tag":101,"props":151,"children":152},{},[153],{"type":53,"value":154},"the exact Gradle output from the failing task",{"type":48,"tag":79,"props":156,"children":158},{"id":157},"classify-the-failure",[159],{"type":53,"value":160},"Classify The Failure",{"type":48,"tag":56,"props":162,"children":163},{},[164],{"type":53,"value":165},"Classify the problem before editing anything:",{"type":48,"tag":97,"props":167,"children":168},{},[169,174,179,184,189,194,215],{"type":48,"tag":101,"props":170,"children":171},{},[172],{"type":53,"value":173},"plugin resolution or plugin version mismatch",{"type":48,"tag":101,"props":175,"children":176},{},[177],{"type":53,"value":178},"Kotlin DSL syntax or type-safe accessor issue",{"type":48,"tag":101,"props":180,"children":181},{},[182],{"type":53,"value":183},"dependency resolution or BOM conflict",{"type":48,"tag":101,"props":185,"children":186},{},[187],{"type":53,"value":188},"JDK toolchain or target mismatch",{"type":48,"tag":101,"props":190,"children":191},{},[192],{"type":53,"value":193},"source set or test runtime misconfiguration",{"type":48,"tag":101,"props":195,"children":196},{},[197,199,205,207,213],{"type":53,"value":198},"compiler plugin problem such as ",{"type":48,"tag":62,"props":200,"children":202},{"className":201},[],[203],{"type":53,"value":204},"plugin.spring",{"type":53,"value":206},", ",{"type":48,"tag":62,"props":208,"children":210},{"className":209},[],[211],{"type":53,"value":212},"plugin.jpa",{"type":53,"value":214},", KAPT, or KSP",{"type":48,"tag":101,"props":216,"children":217},{},[218],{"type":53,"value":219},"task wiring or multi-module convention issue",{"type":48,"tag":79,"props":221,"children":223},{"id":222},"work-sequence",[224],{"type":53,"value":225},"Work Sequence",{"type":48,"tag":227,"props":228,"children":229},"ol",{},[230,235,240,273,278,283],{"type":48,"tag":101,"props":231,"children":232},{},[233],{"type":53,"value":234},"Identify the failing task and the first meaningful error line.",{"type":48,"tag":101,"props":236,"children":237},{},[238],{"type":53,"value":239},"Determine whether the breakage is in plugin resolution, dependency resolution, compilation, test execution, or packaging.",{"type":48,"tag":101,"props":241,"children":242},{},[243,245],{"type":53,"value":244},"Extract the current version authorities:\n",{"type":48,"tag":97,"props":246,"children":247},{},[248,253,258,263,268],{"type":48,"tag":101,"props":249,"children":250},{},[251],{"type":53,"value":252},"Spring Boot plugin",{"type":48,"tag":101,"props":254,"children":255},{},[256],{"type":53,"value":257},"Kotlin plugin",{"type":48,"tag":101,"props":259,"children":260},{},[261],{"type":53,"value":262},"Gradle wrapper",{"type":48,"tag":101,"props":264,"children":265},{},[266],{"type":53,"value":267},"JDK toolchain",{"type":48,"tag":101,"props":269,"children":270},{},[271],{"type":53,"value":272},"version catalog or convention plugin",{"type":48,"tag":101,"props":274,"children":275},{},[276],{"type":53,"value":277},"Verify whether the project should inherit versions from the Spring Boot BOM instead of declaring them manually.",{"type":48,"tag":101,"props":279,"children":280},{},[281],{"type":53,"value":282},"Patch the narrowest file possible. Prefer module-local fixes over global rewrites.",{"type":48,"tag":101,"props":284,"children":285},{},[286],{"type":53,"value":287},"Recommend the smallest verification command that proves the fix before running the full build.",{"type":48,"tag":79,"props":289,"children":291},{"id":290},"kotlin-and-spring-checks",[292],{"type":53,"value":293},"Kotlin And Spring Checks",{"type":48,"tag":97,"props":295,"children":296},{},[297,310,322,327,339],{"type":48,"tag":101,"props":298,"children":299},{},[300,302,308],{"type":53,"value":301},"Verify ",{"type":48,"tag":62,"props":303,"children":305},{"className":304},[],[306],{"type":53,"value":307},"kotlin(\"plugin.spring\")",{"type":53,"value":309}," when Spring-managed classes rely on proxies.",{"type":48,"tag":101,"props":311,"children":312},{},[313,314,320],{"type":53,"value":301},{"type":48,"tag":62,"props":315,"children":317},{"className":316},[],[318],{"type":53,"value":319},"kotlin(\"plugin.jpa\")",{"type":53,"value":321}," when JPA entities are present.",{"type":48,"tag":101,"props":323,"children":324},{},[325],{"type":53,"value":326},"Verify JVM target and Java toolchain alignment.",{"type":48,"tag":101,"props":328,"children":329},{},[330,331,337],{"type":53,"value":301},{"type":48,"tag":62,"props":332,"children":334},{"className":333},[],[335],{"type":53,"value":336},"kotlin-reflect",{"type":53,"value":338},", serialization, and coroutine libraries align with the Kotlin version in use.",{"type":48,"tag":101,"props":340,"children":341},{},[342],{"type":53,"value":343},"Verify whether annotation processing should use KAPT or KSP in this project.",{"type":48,"tag":79,"props":345,"children":347},{"id":346},"preferred-fix-style",[348],{"type":53,"value":349},"Preferred Fix Style",{"type":48,"tag":97,"props":351,"children":352},{},[353,358,363,368,373],{"type":48,"tag":101,"props":354,"children":355},{},[356],{"type":53,"value":357},"Remove unnecessary explicit versions before adding new ones.",{"type":48,"tag":101,"props":359,"children":360},{},[361],{"type":53,"value":362},"Let the Spring Boot BOM manage compatible dependency versions whenever possible.",{"type":48,"tag":101,"props":364,"children":365},{},[366],{"type":53,"value":367},"Prefer small diffs over full-file replacement.",{"type":48,"tag":101,"props":369,"children":370},{},[371],{"type":53,"value":372},"Preserve existing conventions such as version catalogs, convention plugins, or build logic modules.",{"type":48,"tag":101,"props":374,"children":375},{},[376],{"type":53,"value":377},"If a fix spans several modules, explain the dependency graph that forces it.",{"type":48,"tag":79,"props":379,"children":381},{"id":380},"advanced-build-diagnostics",[382],{"type":53,"value":383},"Advanced Build Diagnostics",{"type":48,"tag":97,"props":385,"children":386},{},[387,392,413,426,431,436,441,446],{"type":48,"tag":101,"props":388,"children":389},{},[390],{"type":53,"value":391},"Distinguish dependency declaration problems from variant-selection problems. A dependency can exist and still resolve the wrong JVM target, classifier, or capability.",{"type":48,"tag":101,"props":393,"children":394},{},[395,397,403,405,411],{"type":53,"value":396},"Check whether the repo uses ",{"type":48,"tag":62,"props":398,"children":400},{"className":399},[],[401],{"type":53,"value":402},"platform(...)",{"type":53,"value":404}," or ",{"type":48,"tag":62,"props":406,"children":408},{"className":407},[],[409],{"type":53,"value":410},"enforcedPlatform(...)",{"type":53,"value":412}," in addition to the Spring Boot BOM. That changes how conflict resolution behaves.",{"type":48,"tag":101,"props":414,"children":415},{},[416,418,424],{"type":53,"value":417},"Check whether the real plugin source of truth is ",{"type":48,"tag":62,"props":419,"children":421},{"className":420},[],[422],{"type":53,"value":423},"pluginManagement",{"type":53,"value":425},", a version catalog, or a convention plugin rather than the module build file.",{"type":48,"tag":101,"props":427,"children":428},{},[429],{"type":53,"value":430},"Check whether the Boot plugin is applied to library modules that should publish plain jars instead of executable jars.",{"type":48,"tag":101,"props":432,"children":433},{},[434],{"type":53,"value":435},"Check configuration-cache compatibility if the project is trying to use it. Eager task access and mutable global state in custom build logic often explain strange Gradle behavior.",{"type":48,"tag":101,"props":437,"children":438},{},[439],{"type":53,"value":440},"Check whether KAPT, KSP, code generation, or source-set wiring requires generated-source directories or task ordering that is currently missing.",{"type":48,"tag":101,"props":442,"children":443},{},[444],{"type":53,"value":445},"Check dependency locking, verification metadata, or repository policy files before suggesting new repositories or version changes.",{"type":48,"tag":101,"props":447,"children":448},{},[449],{"type":53,"value":450},"Check test fixtures, included builds, and composite builds when inter-module dependencies behave differently in IDE and CI.",{"type":48,"tag":79,"props":452,"children":454},{"id":453},"expert-heuristics",[455],{"type":53,"value":456},"Expert Heuristics",{"type":48,"tag":97,"props":458,"children":459},{},[460,465,478,483],{"type":48,"tag":101,"props":461,"children":462},{},[463],{"type":53,"value":464},"Prefer explaining which layer owns a version: wrapper, plugin, platform, version catalog, or module override. This avoids repeated drift after the immediate fix.",{"type":48,"tag":101,"props":466,"children":467},{},[468,470,476],{"type":53,"value":469},"If the build fails only in CI, compare wrapper version, JDK vendor, ",{"type":48,"tag":62,"props":471,"children":473},{"className":472},[],[474],{"type":53,"value":475},"org.gradle.jvmargs",{"type":53,"value":477},", configuration cache flags, and repository credentials before touching dependency declarations.",{"type":48,"tag":101,"props":479,"children":480},{},[481],{"type":53,"value":482},"If a custom task or plugin breaks under a new Gradle version, isolate that change from ordinary dependency or Kotlin compiler fixes.",{"type":48,"tag":101,"props":484,"children":485},{},[486],{"type":53,"value":487},"If the build uses dependency substitution or included builds, verify whether the resolved artifact is local source or published binary before diagnosing API mismatches.",{"type":48,"tag":79,"props":489,"children":491},{"id":490},"output-contract",[492],{"type":53,"value":493},"Output Contract",{"type":48,"tag":56,"props":495,"children":496},{},[497],{"type":53,"value":498},"Return these sections:",{"type":48,"tag":97,"props":500,"children":501},{},[502,513,524,535,546],{"type":48,"tag":101,"props":503,"children":504},{},[505,511],{"type":48,"tag":62,"props":506,"children":508},{"className":507},[],[509],{"type":53,"value":510},"Root cause",{"type":53,"value":512},": what is broken and at which stage of the build.",{"type":48,"tag":101,"props":514,"children":515},{},[516,522],{"type":48,"tag":62,"props":517,"children":519},{"className":518},[],[520],{"type":53,"value":521},"Minimal patch",{"type":53,"value":523},": the exact Gradle change to make.",{"type":48,"tag":101,"props":525,"children":526},{},[527,533],{"type":48,"tag":62,"props":528,"children":530},{"className":529},[],[531],{"type":53,"value":532},"Why this works",{"type":53,"value":534},": the compatibility rule or Gradle model fact behind the patch.",{"type":48,"tag":101,"props":536,"children":537},{},[538,544],{"type":48,"tag":62,"props":539,"children":541},{"className":540},[],[542],{"type":53,"value":543},"Verification",{"type":53,"value":545},": one or more commands in increasing confidence order.",{"type":48,"tag":101,"props":547,"children":548},{},[549,555],{"type":48,"tag":62,"props":550,"children":552},{"className":551},[],[553],{"type":53,"value":554},"Follow-up risk",{"type":53,"value":556},": only if the fix unblocks the build but leaves technical debt behind.",{"type":48,"tag":79,"props":558,"children":560},{"id":559},"guardrails",[561],{"type":53,"value":562},"Guardrails",{"type":48,"tag":97,"props":564,"children":565},{},[566,571,576,581,594],{"type":48,"tag":101,"props":567,"children":568},{},[569],{"type":53,"value":570},"Do not invent random dependency or plugin versions.",{"type":48,"tag":101,"props":572,"children":573},{},[574],{"type":53,"value":575},"Do not rewrite Kotlin DSL into Groovy or Maven syntax.",{"type":48,"tag":101,"props":577,"children":578},{},[579],{"type":53,"value":580},"Do not change unrelated modules just because they look similar.",{"type":48,"tag":101,"props":582,"children":583},{},[584,586,592],{"type":53,"value":585},"Do not hide version conflicts with ",{"type":48,"tag":62,"props":587,"children":589},{"className":588},[],[590],{"type":53,"value":591},"force",{"type":53,"value":593}," or aggressive exclusions unless there is a strong, explicit reason.",{"type":48,"tag":101,"props":595,"children":596},{},[597],{"type":53,"value":598},"Do not recommend clearing caches as the primary fix when the build model itself is wrong.",{"type":48,"tag":79,"props":600,"children":602},{"id":601},"high-signal-commands",[603],{"type":53,"value":604},"High-Signal Commands",{"type":48,"tag":56,"props":606,"children":607},{},[608],{"type":53,"value":609},"Use these when the repository permits command execution:",{"type":48,"tag":97,"props":611,"children":612},{},[613,622,631,640,649],{"type":48,"tag":101,"props":614,"children":615},{},[616],{"type":48,"tag":62,"props":617,"children":619},{"className":618},[],[620],{"type":53,"value":621},".\u002Fgradlew help",{"type":48,"tag":101,"props":623,"children":624},{},[625],{"type":48,"tag":62,"props":626,"children":628},{"className":627},[],[629],{"type":53,"value":630},".\u002Fgradlew build",{"type":48,"tag":101,"props":632,"children":633},{},[634],{"type":48,"tag":62,"props":635,"children":637},{"className":636},[],[638],{"type":53,"value":639},".\u002Fgradlew :module:compileKotlin",{"type":48,"tag":101,"props":641,"children":642},{},[643],{"type":48,"tag":62,"props":644,"children":646},{"className":645},[],[647],{"type":53,"value":648},".\u002Fgradlew dependencies",{"type":48,"tag":101,"props":650,"children":651},{},[652],{"type":48,"tag":62,"props":653,"children":655},{"className":654},[],[656],{"type":53,"value":657},".\u002Fgradlew dependencyInsight --dependency \u003Cartifact>",{"type":48,"tag":79,"props":659,"children":661},{"id":660},"quality-bar",[662],{"type":53,"value":663},"Quality Bar",{"type":48,"tag":56,"props":665,"children":666},{},[667],{"type":53,"value":668},"A good run of this skill leaves the build model clearer than before and produces a fix that survives CI.\nA bad run throws version guesses at the problem, rewrites too much, or ignores the Spring Boot compatibility model.",{"items":670,"total":799},[671,689,698,707,718,728,741,750,759,769,778,789],{"slug":672,"name":672,"fn":673,"description":674,"org":675,"tags":676,"stars":686,"repoUrl":687,"updatedAt":688},"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},[677,680,683],{"name":678,"slug":679,"type":15},"Architecture","architecture",{"name":681,"slug":682,"type":15},"Configuration","configuration",{"name":684,"slug":685,"type":15},"Engineering","engineering",1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":690,"name":690,"fn":691,"description":692,"org":693,"tags":694,"stars":686,"repoUrl":687,"updatedAt":697},"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},[695,696],{"name":678,"slug":679,"type":15},{"name":684,"slug":685,"type":15},"2026-07-17T06:04:48.066901",{"slug":699,"name":699,"fn":700,"description":701,"org":702,"tags":703,"stars":686,"repoUrl":687,"updatedAt":706},"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},[704,705],{"name":678,"slug":679,"type":15},{"name":684,"slug":685,"type":15},"2026-07-13T06:45:21.757084",{"slug":708,"name":708,"fn":709,"description":710,"org":711,"tags":712,"stars":686,"repoUrl":687,"updatedAt":717},"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},[713,714],{"name":678,"slug":679,"type":15},{"name":715,"slug":716,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":719,"name":719,"fn":720,"description":721,"org":722,"tags":723,"stars":686,"repoUrl":687,"updatedAt":727},"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},[724],{"name":725,"slug":726,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":729,"name":729,"fn":730,"description":731,"org":732,"tags":733,"stars":686,"repoUrl":687,"updatedAt":740},"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},[734,737],{"name":735,"slug":736,"type":15},"Design","design",{"name":738,"slug":739,"type":15},"UI Components","ui-components","2026-07-23T05:41:56.638151",{"slug":742,"name":742,"fn":743,"description":744,"org":745,"tags":746,"stars":686,"repoUrl":687,"updatedAt":749},"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},[747,748],{"name":684,"slug":685,"type":15},{"name":738,"slug":739,"type":15},"2026-07-23T05:41:49.666535",{"slug":751,"name":751,"fn":752,"description":753,"org":754,"tags":755,"stars":686,"repoUrl":687,"updatedAt":758},"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},[756,757],{"name":678,"slug":679,"type":15},{"name":684,"slug":685,"type":15},"2026-07-13T06:44:59.507855",{"slug":760,"name":760,"fn":761,"description":762,"org":763,"tags":764,"stars":686,"repoUrl":687,"updatedAt":768},"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},[765,766,767],{"name":678,"slug":679,"type":15},{"name":715,"slug":716,"type":15},{"name":684,"slug":685,"type":15},"2026-07-17T06:06:58.042999",{"slug":770,"name":770,"fn":771,"description":772,"org":773,"tags":774,"stars":686,"repoUrl":687,"updatedAt":777},"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},[775,776],{"name":678,"slug":679,"type":15},{"name":684,"slug":685,"type":15},"2026-07-23T05:41:48.692899",{"slug":779,"name":779,"fn":780,"description":781,"org":782,"tags":783,"stars":686,"repoUrl":687,"updatedAt":788},"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},[784,785],{"name":26,"slug":27,"type":15},{"name":786,"slug":787,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":790,"name":790,"fn":791,"description":792,"org":793,"tags":794,"stars":686,"repoUrl":687,"updatedAt":798},"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},[795],{"name":796,"slug":797,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188,{"items":801,"total":915},[802,821,836,850,865,884,901],{"slug":803,"name":803,"fn":804,"description":805,"org":806,"tags":807,"stars":28,"repoUrl":29,"updatedAt":820},"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},[808,811,814,817],{"name":809,"slug":810,"type":15},"Creative","creative",{"name":812,"slug":813,"type":15},"Generative Art","generative-art",{"name":815,"slug":816,"type":15},"Graphics","graphics",{"name":818,"slug":819,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":822,"name":822,"fn":823,"description":824,"org":825,"tags":826,"stars":28,"repoUrl":29,"updatedAt":835},"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},[827,830,831,832],{"name":828,"slug":829,"type":15},"Best Practices","best-practices",{"name":684,"slug":685,"type":15},{"name":818,"slug":819,"type":15},{"name":833,"slug":834,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":837,"name":837,"fn":838,"description":839,"org":840,"tags":841,"stars":28,"repoUrl":29,"updatedAt":849},"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},[842,845,846],{"name":843,"slug":844,"type":15},"Branding","branding",{"name":735,"slug":736,"type":15},{"name":847,"slug":848,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":851,"name":851,"fn":852,"description":853,"org":854,"tags":855,"stars":28,"repoUrl":29,"updatedAt":864},"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},[856,857,858,861],{"name":809,"slug":810,"type":15},{"name":735,"slug":736,"type":15},{"name":859,"slug":860,"type":15},"Images","images",{"name":862,"slug":863,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":866,"name":866,"fn":867,"description":868,"org":869,"tags":870,"stars":28,"repoUrl":29,"updatedAt":883},"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},[871,874,877,880,881,882],{"name":872,"slug":873,"type":15},"CI\u002FCD","ci-cd",{"name":875,"slug":876,"type":15},"Containers","containers",{"name":878,"slug":879,"type":15},"Deployment","deployment",{"name":684,"slug":685,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:41:47.83899",{"slug":885,"name":885,"fn":886,"description":887,"org":888,"tags":889,"stars":28,"repoUrl":29,"updatedAt":900},"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},[890,893,896,899],{"name":891,"slug":892,"type":15},"Cloudflare","cloudflare",{"name":894,"slug":895,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":897,"slug":898,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":878,"slug":879,"type":15},"2026-07-17T06:04:42.853896",{"slug":902,"name":902,"fn":903,"description":904,"org":905,"tags":906,"stars":28,"repoUrl":29,"updatedAt":914},"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},[907,910,913],{"name":908,"slug":909,"type":15},"Automation","automation",{"name":911,"slug":912,"type":15},"Desktop","desktop",{"name":738,"slug":739,"type":15},"2026-07-13T06:40:38.798626",128]