[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-skillshare-changelog":3,"mdc--c4t445-key":33,"related-org-jetbrains-skillshare-changelog":1255,"related-repo-jetbrains-skillshare-changelog":1388},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"skillshare-changelog","generate project changelogs","Generate CHANGELOG.md entry from recent commits in conventional format. Also syncs the website changelog page. Use this skill whenever the user asks to: write release notes, generate a changelog, prepare a version release, document what changed between tags, or create a new CHANGELOG entry. If you see requests like \"write the changelog for v0.17\", \"what changed since last release\", or \"prepare release notes\", this is the skill to use. Do NOT manually edit CHANGELOG.md without this skill — it ensures proper formatting, user-perspective writing, and website changelog sync.",{"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],{"name":13,"slug":14,"type":15},"Automation","automation","tag",{"name":17,"slug":18,"type":15},"Documentation","documentation",{"name":20,"slug":21,"type":15},"Git","git",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-13T06:39:24.949902",null,17,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Curated agent skills collection verified by JetBrains","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills\u002Ftree\u002FHEAD\u002Fchangelog","---\nname: skillshare-changelog\ndescription: >-\n  Generate CHANGELOG.md entry from recent commits in conventional format. Also\n  syncs the website changelog page. Use this skill whenever the user asks to:\n  write release notes, generate a changelog, prepare a version release, document\n  what changed between tags, or create a new CHANGELOG entry. If you see\n  requests like \"write the changelog for v0.17\", \"what changed since last\n  release\", or \"prepare release notes\", this is the skill to use. Do NOT\n  manually edit CHANGELOG.md without this skill — it ensures proper formatting,\n  user-perspective writing, and website changelog sync.\nargument-hint: \"[tag-version]\"\ntargets: [claude, codex]\nmetadata:\n  short-description: \"Generate changelogs and release notes\"\n  author: Runkids\n  source: https:\u002F\u002Fgithub.com\u002Frunkids\u002Fskillshare\u002Ftree\u002Fmain\u002F.skillshare\u002Fskills\u002Fchangelog\n---\n\nGenerate a CHANGELOG.md entry for a release. $ARGUMENTS specifies the tag version (e.g., `v0.16.0`) or omit to auto-detect via `git describe --tags --abbrev=0`.\n\n**Scope**: This skill updates `CHANGELOG.md` and syncs the website changelog (`website\u002Fsrc\u002Fpages\u002Fchangelog.md`). It does NOT write code (use `implement-feature`) or update docs (use `update-docs`).\n\n## Workflow\n\n### Step 1: Determine Version Range\n\n```bash\n# Auto-detect latest tag\nLATEST_TAG=$(git describe --tags --abbrev=0)\n# Find previous tag\nPREV_TAG=$(git describe --tags --abbrev=0 \"${LATEST_TAG}^\")\n\necho \"Generating changelog: $PREV_TAG → $LATEST_TAG\"\n```\n\n### Step 2: Collect Commits\n\n```bash\ngit log \"${PREV_TAG}..${LATEST_TAG}\" --oneline --no-merges\n```\n\n### Step 3: Categorize Changes\n\nGroup commits by conventional commit type:\n\n| Prefix | Category |\n|--------|----------|\n| `feat` | New Features |\n| `fix` | Bug Fixes |\n| `refactor` | Refactoring |\n| `docs` | Documentation |\n| `perf` | Performance |\n| `test` | Tests |\n| `chore` | Maintenance |\n\n### Step 4: Read Existing Entries for Style Reference\n\nBefore writing, read the most recent 2-3 entries in `CHANGELOG.md` to match the established tone and structure. The style evolves over time — always match the latest entries, not a hardcoded template.\n\n### Step 5: Write User-Facing Entry\n\nWrite from the **user's perspective**. Only include changes users will notice or care about.\n\n**Include**:\n- New features with usage examples (CLI commands, code blocks)\n- Bug fixes that affected user-visible behavior\n- Breaking changes (renames, removed flags, scope changes)\n- Performance improvements users would notice\n\n**Exclude**:\n- Internal test changes (smoke tests, test refactoring)\n- Implementation details (error propagation, internal structs)\n- Dev toolchain changes (Makefile cleanup, CI tweaks)\n- Pure documentation adjustments\n\n**Wording guidelines**:\n- Don't use \"first-class\", \"recommended\" for non-default options\n- Be factual: \"Added X\" \u002F \"Fixed Y\" \u002F \"Renamed A to B\"\n- Include CLI example when introducing a new feature\n- Use em-dash (`—`) to separate feature name from description\n- Group related features under `####` sub-headings when there are 2+ distinct areas\n\n### Step 6: Update CHANGELOG.md\n\nRead existing `CHANGELOG.md` and insert new entry at the top, after the header. Match the style of the most recent entries exactly.\n\nStructural conventions (based on actual entries):\n```markdown\n## [X.Y.Z] - YYYY-MM-DD\n\n### New Features\n\n#### Feature Area Name\n\n- **Feature name** — description with `inline code` for commands and flags\n  ```bash\n  skillshare command --flag    # usage example\n  ```\n  Additional context as sub-bullets or continuation text\n\n#### Another Feature Area\n\n- **Feature name** — description\n\n### Bug Fixes\n\n- Fixed specific user-visible behavior — with context on what changed\n- Fixed another issue\n\n### Performance\n\n- **Improvement name** — description of what got faster\n\n### Breaking Changes\n\n- Renamed `old-name` to `new-name`\n```\n\nKey style points:\n- Version numbers use `[X.Y.Z]` without `v` prefix in the heading\n- Feature bullets use `**bold name** — em-dash description` format\n- Code blocks use `bash` language tag for CLI examples\n- Bug fixes describe the symptom, not the implementation\n- Only include sections that have content (skip empty Performance, Breaking Changes, etc.)\n\n### Step 7: Sync Website Changelog\n\nThe website has its own changelog page at `website\u002Fsrc\u002Fpages\u002Fchangelog.md`. After updating `CHANGELOG.md`, sync the new entry to the website version.\n\n**Differences between the two files**:\n- Website file has MDX frontmatter (`title`, `description`) and an intro paragraph — preserve these, don't overwrite\n- Website file has a `---` separator after the intro, before the first version entry\n- The release entries themselves are identical in content\n\n**How to sync**: Read the website changelog, then insert the same new entry after the `---` separator (line after intro paragraph), before the first existing version entry. Do NOT replace the entire file — only insert the new entry block.\n\n### Step 8: RELEASE_NOTES (Maintainer Only)\n\n`specs\u002FRELEASE_NOTES_\u003Cversion>.md` is only generated when the user is the project maintainer (runkids). Contributors skip this step.\n\nCheck if running as maintainer:\n```bash\ngit config user.name  # Should match maintainer identity\n```\n\nIf maintainer:\n- Read the most recent `specs\u002FRELEASE_NOTES_*.md` as a style reference\n- Generate `specs\u002FRELEASE_NOTES_\u003Cversion>.md` (no `v` prefix, e.g. `RELEASE_NOTES_0.17.6.md`)\n- Structure:\n  - Title: `# skillshare vX.Y.Z Release Notes`\n  - TL;DR section with numbered highlights\n  - One `##` section per feature\u002Ffix — describe **what changed** in plain language, with a CLI example or code block if relevant. No \"The problem \u002F Solution\" structure — just state what it does now\n  - Include migration guide if breaking changes exist\n\n**RELEASE_NOTES wording rules** (same user-facing standard as CHANGELOG):\n- Describe **what changed** from the user's perspective, not how the code changed\n- **Never mention**: function names, variable names, struct fields, file paths, Go syntax, internal APIs\n- ✅ Good: \"Sync now auto-creates missing target directories and shows what it did\"\n- ❌ Bad: \"upgraded `Server.mu` from `sync.Mutex` to `sync.RWMutex` and applied a snapshot pattern across 30 handlers\"\n- Keep it concise — a short paragraph per feature is enough, no need for multi-section breakdowns\n\nIf not maintainer:\n- Skip RELEASE_NOTES generation\n- Only update CHANGELOG.md + website changelog\n\n## Rules\n\n- **User perspective** — write for users, not developers\n- **No fabricated links** — never invent URLs or references\n- **Verify features exist** — grep source before claiming a feature was added\n- **No internal noise** — exclude test-only, CI-only, or refactor-only changes\n- **Conventional format** — follow existing CHANGELOG.md style exactly\n- **Always sync both** — `CHANGELOG.md` and `website\u002Fsrc\u002Fpages\u002Fchangelog.md` must have identical release entries\n- **RELEASE_NOTES = maintainer only** — contributors only update CHANGELOG.md + website changelog\n",{"data":34,"body":43},{"name":4,"description":6,"argument-hint":35,"targets":36,"metadata":39},"[tag-version]",[37,38],"claude","codex",{"short-description":40,"author":41,"source":42},"Generate changelogs and release notes","Runkids","https:\u002F\u002Fgithub.com\u002Frunkids\u002Fskillshare\u002Ftree\u002Fmain\u002F.skillshare\u002Fskills\u002Fchangelog",{"type":44,"children":45},"root",[46,71,114,121,128,309,315,375,381,386,532,538,550,556,568,578,603,612,635,644,688,694,706,711,869,874,881,893,898,911,916,929,935,957,967,972,1066,1076,1138,1143,1156,1162,1249],{"type":47,"tag":48,"props":49,"children":50},"element","p",{},[51,54,61,63,69],{"type":52,"value":53},"text","Generate a CHANGELOG.md entry for a release. $ARGUMENTS specifies the tag version (e.g., ",{"type":47,"tag":55,"props":56,"children":58},"code",{"className":57},[],[59],{"type":52,"value":60},"v0.16.0",{"type":52,"value":62},") or omit to auto-detect via ",{"type":47,"tag":55,"props":64,"children":66},{"className":65},[],[67],{"type":52,"value":68},"git describe --tags --abbrev=0",{"type":52,"value":70},".",{"type":47,"tag":48,"props":72,"children":73},{},[74,80,82,88,90,96,98,104,106,112],{"type":47,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":52,"value":79},"Scope",{"type":52,"value":81},": This skill updates ",{"type":47,"tag":55,"props":83,"children":85},{"className":84},[],[86],{"type":52,"value":87},"CHANGELOG.md",{"type":52,"value":89}," and syncs the website changelog (",{"type":47,"tag":55,"props":91,"children":93},{"className":92},[],[94],{"type":52,"value":95},"website\u002Fsrc\u002Fpages\u002Fchangelog.md",{"type":52,"value":97},"). It does NOT write code (use ",{"type":47,"tag":55,"props":99,"children":101},{"className":100},[],[102],{"type":52,"value":103},"implement-feature",{"type":52,"value":105},") or update docs (use ",{"type":47,"tag":55,"props":107,"children":109},{"className":108},[],[110],{"type":52,"value":111},"update-docs",{"type":52,"value":113},").",{"type":47,"tag":115,"props":116,"children":118},"h2",{"id":117},"workflow",[119],{"type":52,"value":120},"Workflow",{"type":47,"tag":122,"props":123,"children":125},"h3",{"id":124},"step-1-determine-version-range",[126],{"type":52,"value":127},"Step 1: Determine Version Range",{"type":47,"tag":129,"props":130,"children":135},"pre",{"className":131,"code":132,"language":133,"meta":134,"style":134},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Auto-detect latest tag\nLATEST_TAG=$(git describe --tags --abbrev=0)\n# Find previous tag\nPREV_TAG=$(git describe --tags --abbrev=0 \"${LATEST_TAG}^\")\n\necho \"Generating changelog: $PREV_TAG → $LATEST_TAG\"\n","bash","",[136],{"type":47,"tag":55,"props":137,"children":138},{"__ignoreMap":134},[139,151,193,202,259,269],{"type":47,"tag":140,"props":141,"children":144},"span",{"class":142,"line":143},"line",1,[145],{"type":47,"tag":140,"props":146,"children":148},{"style":147},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[149],{"type":52,"value":150},"# Auto-detect latest tag\n",{"type":47,"tag":140,"props":152,"children":154},{"class":142,"line":153},2,[155,161,167,172,178,183,188],{"type":47,"tag":140,"props":156,"children":158},{"style":157},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[159],{"type":52,"value":160},"LATEST_TAG",{"type":47,"tag":140,"props":162,"children":164},{"style":163},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[165],{"type":52,"value":166},"=$(",{"type":47,"tag":140,"props":168,"children":170},{"style":169},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[171],{"type":52,"value":21},{"type":47,"tag":140,"props":173,"children":175},{"style":174},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[176],{"type":52,"value":177}," describe",{"type":47,"tag":140,"props":179,"children":180},{"style":174},[181],{"type":52,"value":182}," --tags",{"type":47,"tag":140,"props":184,"children":185},{"style":174},[186],{"type":52,"value":187}," --abbrev=0",{"type":47,"tag":140,"props":189,"children":190},{"style":163},[191],{"type":52,"value":192},")\n",{"type":47,"tag":140,"props":194,"children":196},{"class":142,"line":195},3,[197],{"type":47,"tag":140,"props":198,"children":199},{"style":147},[200],{"type":52,"value":201},"# Find previous tag\n",{"type":47,"tag":140,"props":203,"children":205},{"class":142,"line":204},4,[206,211,215,219,223,227,231,236,240,245,250,255],{"type":47,"tag":140,"props":207,"children":208},{"style":157},[209],{"type":52,"value":210},"PREV_TAG",{"type":47,"tag":140,"props":212,"children":213},{"style":163},[214],{"type":52,"value":166},{"type":47,"tag":140,"props":216,"children":217},{"style":169},[218],{"type":52,"value":21},{"type":47,"tag":140,"props":220,"children":221},{"style":174},[222],{"type":52,"value":177},{"type":47,"tag":140,"props":224,"children":225},{"style":174},[226],{"type":52,"value":182},{"type":47,"tag":140,"props":228,"children":229},{"style":174},[230],{"type":52,"value":187},{"type":47,"tag":140,"props":232,"children":233},{"style":163},[234],{"type":52,"value":235}," \"${",{"type":47,"tag":140,"props":237,"children":238},{"style":157},[239],{"type":52,"value":160},{"type":47,"tag":140,"props":241,"children":242},{"style":163},[243],{"type":52,"value":244},"}",{"type":47,"tag":140,"props":246,"children":247},{"style":174},[248],{"type":52,"value":249},"^",{"type":47,"tag":140,"props":251,"children":252},{"style":163},[253],{"type":52,"value":254},"\"",{"type":47,"tag":140,"props":256,"children":257},{"style":163},[258],{"type":52,"value":192},{"type":47,"tag":140,"props":260,"children":262},{"class":142,"line":261},5,[263],{"type":47,"tag":140,"props":264,"children":266},{"emptyLinePlaceholder":265},true,[267],{"type":52,"value":268},"\n",{"type":47,"tag":140,"props":270,"children":272},{"class":142,"line":271},6,[273,279,284,289,294,299,304],{"type":47,"tag":140,"props":274,"children":276},{"style":275},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[277],{"type":52,"value":278},"echo",{"type":47,"tag":140,"props":280,"children":281},{"style":163},[282],{"type":52,"value":283}," \"",{"type":47,"tag":140,"props":285,"children":286},{"style":174},[287],{"type":52,"value":288},"Generating changelog: ",{"type":47,"tag":140,"props":290,"children":291},{"style":157},[292],{"type":52,"value":293},"$PREV_TAG",{"type":47,"tag":140,"props":295,"children":296},{"style":174},[297],{"type":52,"value":298}," → ",{"type":47,"tag":140,"props":300,"children":301},{"style":157},[302],{"type":52,"value":303},"$LATEST_TAG",{"type":47,"tag":140,"props":305,"children":306},{"style":163},[307],{"type":52,"value":308},"\"\n",{"type":47,"tag":122,"props":310,"children":312},{"id":311},"step-2-collect-commits",[313],{"type":52,"value":314},"Step 2: Collect Commits",{"type":47,"tag":129,"props":316,"children":318},{"className":131,"code":317,"language":133,"meta":134,"style":134},"git log \"${PREV_TAG}..${LATEST_TAG}\" --oneline --no-merges\n",[319],{"type":47,"tag":55,"props":320,"children":321},{"__ignoreMap":134},[322],{"type":47,"tag":140,"props":323,"children":324},{"class":142,"line":143},[325,329,334,338,342,346,351,356,360,365,370],{"type":47,"tag":140,"props":326,"children":327},{"style":169},[328],{"type":52,"value":21},{"type":47,"tag":140,"props":330,"children":331},{"style":174},[332],{"type":52,"value":333}," log",{"type":47,"tag":140,"props":335,"children":336},{"style":163},[337],{"type":52,"value":235},{"type":47,"tag":140,"props":339,"children":340},{"style":157},[341],{"type":52,"value":210},{"type":47,"tag":140,"props":343,"children":344},{"style":163},[345],{"type":52,"value":244},{"type":47,"tag":140,"props":347,"children":348},{"style":174},[349],{"type":52,"value":350},"..",{"type":47,"tag":140,"props":352,"children":353},{"style":163},[354],{"type":52,"value":355},"${",{"type":47,"tag":140,"props":357,"children":358},{"style":157},[359],{"type":52,"value":160},{"type":47,"tag":140,"props":361,"children":362},{"style":163},[363],{"type":52,"value":364},"}\"",{"type":47,"tag":140,"props":366,"children":367},{"style":174},[368],{"type":52,"value":369}," --oneline",{"type":47,"tag":140,"props":371,"children":372},{"style":174},[373],{"type":52,"value":374}," --no-merges\n",{"type":47,"tag":122,"props":376,"children":378},{"id":377},"step-3-categorize-changes",[379],{"type":52,"value":380},"Step 3: Categorize Changes",{"type":47,"tag":48,"props":382,"children":383},{},[384],{"type":52,"value":385},"Group commits by conventional commit type:",{"type":47,"tag":387,"props":388,"children":389},"table",{},[390,409],{"type":47,"tag":391,"props":392,"children":393},"thead",{},[394],{"type":47,"tag":395,"props":396,"children":397},"tr",{},[398,404],{"type":47,"tag":399,"props":400,"children":401},"th",{},[402],{"type":52,"value":403},"Prefix",{"type":47,"tag":399,"props":405,"children":406},{},[407],{"type":52,"value":408},"Category",{"type":47,"tag":410,"props":411,"children":412},"tbody",{},[413,431,448,465,481,498,515],{"type":47,"tag":395,"props":414,"children":415},{},[416,426],{"type":47,"tag":417,"props":418,"children":419},"td",{},[420],{"type":47,"tag":55,"props":421,"children":423},{"className":422},[],[424],{"type":52,"value":425},"feat",{"type":47,"tag":417,"props":427,"children":428},{},[429],{"type":52,"value":430},"New Features",{"type":47,"tag":395,"props":432,"children":433},{},[434,443],{"type":47,"tag":417,"props":435,"children":436},{},[437],{"type":47,"tag":55,"props":438,"children":440},{"className":439},[],[441],{"type":52,"value":442},"fix",{"type":47,"tag":417,"props":444,"children":445},{},[446],{"type":52,"value":447},"Bug Fixes",{"type":47,"tag":395,"props":449,"children":450},{},[451,460],{"type":47,"tag":417,"props":452,"children":453},{},[454],{"type":47,"tag":55,"props":455,"children":457},{"className":456},[],[458],{"type":52,"value":459},"refactor",{"type":47,"tag":417,"props":461,"children":462},{},[463],{"type":52,"value":464},"Refactoring",{"type":47,"tag":395,"props":466,"children":467},{},[468,477],{"type":47,"tag":417,"props":469,"children":470},{},[471],{"type":47,"tag":55,"props":472,"children":474},{"className":473},[],[475],{"type":52,"value":476},"docs",{"type":47,"tag":417,"props":478,"children":479},{},[480],{"type":52,"value":17},{"type":47,"tag":395,"props":482,"children":483},{},[484,493],{"type":47,"tag":417,"props":485,"children":486},{},[487],{"type":47,"tag":55,"props":488,"children":490},{"className":489},[],[491],{"type":52,"value":492},"perf",{"type":47,"tag":417,"props":494,"children":495},{},[496],{"type":52,"value":497},"Performance",{"type":47,"tag":395,"props":499,"children":500},{},[501,510],{"type":47,"tag":417,"props":502,"children":503},{},[504],{"type":47,"tag":55,"props":505,"children":507},{"className":506},[],[508],{"type":52,"value":509},"test",{"type":47,"tag":417,"props":511,"children":512},{},[513],{"type":52,"value":514},"Tests",{"type":47,"tag":395,"props":516,"children":517},{},[518,527],{"type":47,"tag":417,"props":519,"children":520},{},[521],{"type":47,"tag":55,"props":522,"children":524},{"className":523},[],[525],{"type":52,"value":526},"chore",{"type":47,"tag":417,"props":528,"children":529},{},[530],{"type":52,"value":531},"Maintenance",{"type":47,"tag":122,"props":533,"children":535},{"id":534},"step-4-read-existing-entries-for-style-reference",[536],{"type":52,"value":537},"Step 4: Read Existing Entries for Style Reference",{"type":47,"tag":48,"props":539,"children":540},{},[541,543,548],{"type":52,"value":542},"Before writing, read the most recent 2-3 entries in ",{"type":47,"tag":55,"props":544,"children":546},{"className":545},[],[547],{"type":52,"value":87},{"type":52,"value":549}," to match the established tone and structure. The style evolves over time — always match the latest entries, not a hardcoded template.",{"type":47,"tag":122,"props":551,"children":553},{"id":552},"step-5-write-user-facing-entry",[554],{"type":52,"value":555},"Step 5: Write User-Facing Entry",{"type":47,"tag":48,"props":557,"children":558},{},[559,561,566],{"type":52,"value":560},"Write from the ",{"type":47,"tag":75,"props":562,"children":563},{},[564],{"type":52,"value":565},"user's perspective",{"type":52,"value":567},". Only include changes users will notice or care about.",{"type":47,"tag":48,"props":569,"children":570},{},[571,576],{"type":47,"tag":75,"props":572,"children":573},{},[574],{"type":52,"value":575},"Include",{"type":52,"value":577},":",{"type":47,"tag":579,"props":580,"children":581},"ul",{},[582,588,593,598],{"type":47,"tag":583,"props":584,"children":585},"li",{},[586],{"type":52,"value":587},"New features with usage examples (CLI commands, code blocks)",{"type":47,"tag":583,"props":589,"children":590},{},[591],{"type":52,"value":592},"Bug fixes that affected user-visible behavior",{"type":47,"tag":583,"props":594,"children":595},{},[596],{"type":52,"value":597},"Breaking changes (renames, removed flags, scope changes)",{"type":47,"tag":583,"props":599,"children":600},{},[601],{"type":52,"value":602},"Performance improvements users would notice",{"type":47,"tag":48,"props":604,"children":605},{},[606,611],{"type":47,"tag":75,"props":607,"children":608},{},[609],{"type":52,"value":610},"Exclude",{"type":52,"value":577},{"type":47,"tag":579,"props":613,"children":614},{},[615,620,625,630],{"type":47,"tag":583,"props":616,"children":617},{},[618],{"type":52,"value":619},"Internal test changes (smoke tests, test refactoring)",{"type":47,"tag":583,"props":621,"children":622},{},[623],{"type":52,"value":624},"Implementation details (error propagation, internal structs)",{"type":47,"tag":583,"props":626,"children":627},{},[628],{"type":52,"value":629},"Dev toolchain changes (Makefile cleanup, CI tweaks)",{"type":47,"tag":583,"props":631,"children":632},{},[633],{"type":52,"value":634},"Pure documentation adjustments",{"type":47,"tag":48,"props":636,"children":637},{},[638,643],{"type":47,"tag":75,"props":639,"children":640},{},[641],{"type":52,"value":642},"Wording guidelines",{"type":52,"value":577},{"type":47,"tag":579,"props":645,"children":646},{},[647,652,657,662,675],{"type":47,"tag":583,"props":648,"children":649},{},[650],{"type":52,"value":651},"Don't use \"first-class\", \"recommended\" for non-default options",{"type":47,"tag":583,"props":653,"children":654},{},[655],{"type":52,"value":656},"Be factual: \"Added X\" \u002F \"Fixed Y\" \u002F \"Renamed A to B\"",{"type":47,"tag":583,"props":658,"children":659},{},[660],{"type":52,"value":661},"Include CLI example when introducing a new feature",{"type":47,"tag":583,"props":663,"children":664},{},[665,667,673],{"type":52,"value":666},"Use em-dash (",{"type":47,"tag":55,"props":668,"children":670},{"className":669},[],[671],{"type":52,"value":672},"—",{"type":52,"value":674},") to separate feature name from description",{"type":47,"tag":583,"props":676,"children":677},{},[678,680,686],{"type":52,"value":679},"Group related features under ",{"type":47,"tag":55,"props":681,"children":683},{"className":682},[],[684],{"type":52,"value":685},"####",{"type":52,"value":687}," sub-headings when there are 2+ distinct areas",{"type":47,"tag":122,"props":689,"children":691},{"id":690},"step-6-update-changelogmd",[692],{"type":52,"value":693},"Step 6: Update CHANGELOG.md",{"type":47,"tag":48,"props":695,"children":696},{},[697,699,704],{"type":52,"value":698},"Read existing ",{"type":47,"tag":55,"props":700,"children":702},{"className":701},[],[703],{"type":52,"value":87},{"type":52,"value":705}," and insert new entry at the top, after the header. Match the style of the most recent entries exactly.",{"type":47,"tag":48,"props":707,"children":708},{},[709],{"type":52,"value":710},"Structural conventions (based on actual entries):",{"type":47,"tag":129,"props":712,"children":716},{"className":713,"code":714,"language":715,"meta":134,"style":134},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","## [X.Y.Z] - YYYY-MM-DD\n\n### New Features\n\n#### Feature Area Name\n\n- **Feature name** — description with `inline code` for commands and flags\n  ```bash\n  skillshare command --flag    # usage example\n","markdown",[717],{"type":47,"tag":55,"props":718,"children":719},{"__ignoreMap":134},[720,743,750,763,770,783,790,840,855],{"type":47,"tag":140,"props":721,"children":722},{"class":142,"line":143},[723,728,733,738],{"type":47,"tag":140,"props":724,"children":725},{"style":163},[726],{"type":52,"value":727},"## [",{"type":47,"tag":140,"props":729,"children":730},{"style":174},[731],{"type":52,"value":732},"X.Y.Z",{"type":47,"tag":140,"props":734,"children":735},{"style":163},[736],{"type":52,"value":737},"]",{"type":47,"tag":140,"props":739,"children":740},{"style":169},[741],{"type":52,"value":742}," - YYYY-MM-DD\n",{"type":47,"tag":140,"props":744,"children":745},{"class":142,"line":153},[746],{"type":47,"tag":140,"props":747,"children":748},{"emptyLinePlaceholder":265},[749],{"type":52,"value":268},{"type":47,"tag":140,"props":751,"children":752},{"class":142,"line":195},[753,758],{"type":47,"tag":140,"props":754,"children":755},{"style":163},[756],{"type":52,"value":757},"### ",{"type":47,"tag":140,"props":759,"children":760},{"style":169},[761],{"type":52,"value":762},"New Features\n",{"type":47,"tag":140,"props":764,"children":765},{"class":142,"line":204},[766],{"type":47,"tag":140,"props":767,"children":768},{"emptyLinePlaceholder":265},[769],{"type":52,"value":268},{"type":47,"tag":140,"props":771,"children":772},{"class":142,"line":261},[773,778],{"type":47,"tag":140,"props":774,"children":775},{"style":163},[776],{"type":52,"value":777},"#### ",{"type":47,"tag":140,"props":779,"children":780},{"style":169},[781],{"type":52,"value":782},"Feature Area Name\n",{"type":47,"tag":140,"props":784,"children":785},{"class":142,"line":271},[786],{"type":47,"tag":140,"props":787,"children":788},{"emptyLinePlaceholder":265},[789],{"type":52,"value":268},{"type":47,"tag":140,"props":791,"children":793},{"class":142,"line":792},7,[794,799,805,811,816,821,826,831,835],{"type":47,"tag":140,"props":795,"children":796},{"style":163},[797],{"type":52,"value":798},"-",{"type":47,"tag":140,"props":800,"children":802},{"style":801},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[803],{"type":52,"value":804}," **",{"type":47,"tag":140,"props":806,"children":808},{"style":807},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[809],{"type":52,"value":810},"Feature name",{"type":47,"tag":140,"props":812,"children":813},{"style":801},[814],{"type":52,"value":815},"**",{"type":47,"tag":140,"props":817,"children":818},{"style":157},[819],{"type":52,"value":820}," — description with ",{"type":47,"tag":140,"props":822,"children":823},{"style":163},[824],{"type":52,"value":825},"`",{"type":47,"tag":140,"props":827,"children":828},{"style":174},[829],{"type":52,"value":830},"inline code",{"type":47,"tag":140,"props":832,"children":833},{"style":163},[834],{"type":52,"value":825},{"type":47,"tag":140,"props":836,"children":837},{"style":157},[838],{"type":52,"value":839}," for commands and flags\n",{"type":47,"tag":140,"props":841,"children":843},{"class":142,"line":842},8,[844,849],{"type":47,"tag":140,"props":845,"children":846},{"style":174},[847],{"type":52,"value":848},"  ```",{"type":47,"tag":140,"props":850,"children":852},{"style":851},"--shiki-light:#90A4AE90;--shiki-default:#EEFFFF90;--shiki-dark:#BABED890",[853],{"type":52,"value":854},"bash\n",{"type":47,"tag":140,"props":856,"children":858},{"class":142,"line":857},9,[859,864],{"type":47,"tag":140,"props":860,"children":861},{"style":157},[862],{"type":52,"value":863},"  skillshare command --flag    ",{"type":47,"tag":140,"props":865,"children":866},{"style":147},[867],{"type":52,"value":868},"# usage example\n",{"type":47,"tag":48,"props":870,"children":871},{},[872],{"type":52,"value":873},"Additional context as sub-bullets or continuation text",{"type":47,"tag":875,"props":876,"children":878},"h4",{"id":877},"another-feature-area",[879],{"type":52,"value":880},"Another Feature Area",{"type":47,"tag":579,"props":882,"children":883},{},[884],{"type":47,"tag":583,"props":885,"children":886},{},[887,891],{"type":47,"tag":75,"props":888,"children":889},{},[890],{"type":52,"value":810},{"type":52,"value":892}," — description",{"type":47,"tag":122,"props":894,"children":896},{"id":895},"bug-fixes",[897],{"type":52,"value":447},{"type":47,"tag":579,"props":899,"children":900},{},[901,906],{"type":47,"tag":583,"props":902,"children":903},{},[904],{"type":52,"value":905},"Fixed specific user-visible behavior — with context on what changed",{"type":47,"tag":583,"props":907,"children":908},{},[909],{"type":52,"value":910},"Fixed another issue",{"type":47,"tag":122,"props":912,"children":914},{"id":913},"performance",[915],{"type":52,"value":497},{"type":47,"tag":579,"props":917,"children":918},{},[919],{"type":47,"tag":583,"props":920,"children":921},{},[922,927],{"type":47,"tag":75,"props":923,"children":924},{},[925],{"type":52,"value":926},"Improvement name",{"type":52,"value":928}," — description of what got faster",{"type":47,"tag":122,"props":930,"children":932},{"id":931},"breaking-changes",[933],{"type":52,"value":934},"Breaking Changes",{"type":47,"tag":579,"props":936,"children":937},{},[938],{"type":47,"tag":583,"props":939,"children":940},{},[941,943,949,951],{"type":52,"value":942},"Renamed ",{"type":47,"tag":55,"props":944,"children":946},{"className":945},[],[947],{"type":52,"value":948},"old-name",{"type":52,"value":950}," to ",{"type":47,"tag":55,"props":952,"children":954},{"className":953},[],[955],{"type":52,"value":956},"new-name",{"type":47,"tag":129,"props":958,"children":962},{"className":959,"code":961,"language":52},[960],"language-text","\nKey style points:\n- Version numbers use `[X.Y.Z]` without `v` prefix in the heading\n- Feature bullets use `**bold name** — em-dash description` format\n- Code blocks use `bash` language tag for CLI examples\n- Bug fixes describe the symptom, not the implementation\n- Only include sections that have content (skip empty Performance, Breaking Changes, etc.)\n\n### Step 7: Sync Website Changelog\n\nThe website has its own changelog page at `website\u002Fsrc\u002Fpages\u002Fchangelog.md`. After updating `CHANGELOG.md`, sync the new entry to the website version.\n\n**Differences between the two files**:\n- Website file has MDX frontmatter (`title`, `description`) and an intro paragraph — preserve these, don't overwrite\n- Website file has a `---` separator after the intro, before the first version entry\n- The release entries themselves are identical in content\n\n**How to sync**: Read the website changelog, then insert the same new entry after the `---` separator (line after intro paragraph), before the first existing version entry. Do NOT replace the entire file — only insert the new entry block.\n\n### Step 8: RELEASE_NOTES (Maintainer Only)\n\n`specs\u002FRELEASE_NOTES_\u003Cversion>.md` is only generated when the user is the project maintainer (runkids). Contributors skip this step.\n\nCheck if running as maintainer:\n```bash\ngit config user.name  # Should match maintainer identity\n",[963],{"type":47,"tag":55,"props":964,"children":965},{"__ignoreMap":134},[966],{"type":52,"value":961},{"type":47,"tag":48,"props":968,"children":969},{},[970],{"type":52,"value":971},"If maintainer:",{"type":47,"tag":579,"props":973,"children":974},{},[975,988,1017],{"type":47,"tag":583,"props":976,"children":977},{},[978,980,986],{"type":52,"value":979},"Read the most recent ",{"type":47,"tag":55,"props":981,"children":983},{"className":982},[],[984],{"type":52,"value":985},"specs\u002FRELEASE_NOTES_*.md",{"type":52,"value":987}," as a style reference",{"type":47,"tag":583,"props":989,"children":990},{},[991,993,999,1001,1007,1009,1015],{"type":52,"value":992},"Generate ",{"type":47,"tag":55,"props":994,"children":996},{"className":995},[],[997],{"type":52,"value":998},"specs\u002FRELEASE_NOTES_\u003Cversion>.md",{"type":52,"value":1000}," (no ",{"type":47,"tag":55,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":52,"value":1006},"v",{"type":52,"value":1008}," prefix, e.g. ",{"type":47,"tag":55,"props":1010,"children":1012},{"className":1011},[],[1013],{"type":52,"value":1014},"RELEASE_NOTES_0.17.6.md",{"type":52,"value":1016},")",{"type":47,"tag":583,"props":1018,"children":1019},{},[1020,1022],{"type":52,"value":1021},"Structure:\n",{"type":47,"tag":579,"props":1023,"children":1024},{},[1025,1036,1041,1061],{"type":47,"tag":583,"props":1026,"children":1027},{},[1028,1030],{"type":52,"value":1029},"Title: ",{"type":47,"tag":55,"props":1031,"children":1033},{"className":1032},[],[1034],{"type":52,"value":1035},"# skillshare vX.Y.Z Release Notes",{"type":47,"tag":583,"props":1037,"children":1038},{},[1039],{"type":52,"value":1040},"TL;DR section with numbered highlights",{"type":47,"tag":583,"props":1042,"children":1043},{},[1044,1046,1052,1054,1059],{"type":52,"value":1045},"One ",{"type":47,"tag":55,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":52,"value":1051},"##",{"type":52,"value":1053}," section per feature\u002Ffix — describe ",{"type":47,"tag":75,"props":1055,"children":1056},{},[1057],{"type":52,"value":1058},"what changed",{"type":52,"value":1060}," in plain language, with a CLI example or code block if relevant. No \"The problem \u002F Solution\" structure — just state what it does now",{"type":47,"tag":583,"props":1062,"children":1063},{},[1064],{"type":52,"value":1065},"Include migration guide if breaking changes exist",{"type":47,"tag":48,"props":1067,"children":1068},{},[1069,1074],{"type":47,"tag":75,"props":1070,"children":1071},{},[1072],{"type":52,"value":1073},"RELEASE_NOTES wording rules",{"type":52,"value":1075}," (same user-facing standard as CHANGELOG):",{"type":47,"tag":579,"props":1077,"children":1078},{},[1079,1090,1100,1105,1133],{"type":47,"tag":583,"props":1080,"children":1081},{},[1082,1084,1088],{"type":52,"value":1083},"Describe ",{"type":47,"tag":75,"props":1085,"children":1086},{},[1087],{"type":52,"value":1058},{"type":52,"value":1089}," from the user's perspective, not how the code changed",{"type":47,"tag":583,"props":1091,"children":1092},{},[1093,1098],{"type":47,"tag":75,"props":1094,"children":1095},{},[1096],{"type":52,"value":1097},"Never mention",{"type":52,"value":1099},": function names, variable names, struct fields, file paths, Go syntax, internal APIs",{"type":47,"tag":583,"props":1101,"children":1102},{},[1103],{"type":52,"value":1104},"✅ Good: \"Sync now auto-creates missing target directories and shows what it did\"",{"type":47,"tag":583,"props":1106,"children":1107},{},[1108,1110,1116,1118,1124,1125,1131],{"type":52,"value":1109},"❌ Bad: \"upgraded ",{"type":47,"tag":55,"props":1111,"children":1113},{"className":1112},[],[1114],{"type":52,"value":1115},"Server.mu",{"type":52,"value":1117}," from ",{"type":47,"tag":55,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":52,"value":1123},"sync.Mutex",{"type":52,"value":950},{"type":47,"tag":55,"props":1126,"children":1128},{"className":1127},[],[1129],{"type":52,"value":1130},"sync.RWMutex",{"type":52,"value":1132}," and applied a snapshot pattern across 30 handlers\"",{"type":47,"tag":583,"props":1134,"children":1135},{},[1136],{"type":52,"value":1137},"Keep it concise — a short paragraph per feature is enough, no need for multi-section breakdowns",{"type":47,"tag":48,"props":1139,"children":1140},{},[1141],{"type":52,"value":1142},"If not maintainer:",{"type":47,"tag":579,"props":1144,"children":1145},{},[1146,1151],{"type":47,"tag":583,"props":1147,"children":1148},{},[1149],{"type":52,"value":1150},"Skip RELEASE_NOTES generation",{"type":47,"tag":583,"props":1152,"children":1153},{},[1154],{"type":52,"value":1155},"Only update CHANGELOG.md + website changelog",{"type":47,"tag":115,"props":1157,"children":1159},{"id":1158},"rules",[1160],{"type":52,"value":1161},"Rules",{"type":47,"tag":579,"props":1163,"children":1164},{},[1165,1175,1185,1195,1205,1215,1239],{"type":47,"tag":583,"props":1166,"children":1167},{},[1168,1173],{"type":47,"tag":75,"props":1169,"children":1170},{},[1171],{"type":52,"value":1172},"User perspective",{"type":52,"value":1174}," — write for users, not developers",{"type":47,"tag":583,"props":1176,"children":1177},{},[1178,1183],{"type":47,"tag":75,"props":1179,"children":1180},{},[1181],{"type":52,"value":1182},"No fabricated links",{"type":52,"value":1184}," — never invent URLs or references",{"type":47,"tag":583,"props":1186,"children":1187},{},[1188,1193],{"type":47,"tag":75,"props":1189,"children":1190},{},[1191],{"type":52,"value":1192},"Verify features exist",{"type":52,"value":1194}," — grep source before claiming a feature was added",{"type":47,"tag":583,"props":1196,"children":1197},{},[1198,1203],{"type":47,"tag":75,"props":1199,"children":1200},{},[1201],{"type":52,"value":1202},"No internal noise",{"type":52,"value":1204}," — exclude test-only, CI-only, or refactor-only changes",{"type":47,"tag":583,"props":1206,"children":1207},{},[1208,1213],{"type":47,"tag":75,"props":1209,"children":1210},{},[1211],{"type":52,"value":1212},"Conventional format",{"type":52,"value":1214}," — follow existing CHANGELOG.md style exactly",{"type":47,"tag":583,"props":1216,"children":1217},{},[1218,1223,1225,1230,1232,1237],{"type":47,"tag":75,"props":1219,"children":1220},{},[1221],{"type":52,"value":1222},"Always sync both",{"type":52,"value":1224}," — ",{"type":47,"tag":55,"props":1226,"children":1228},{"className":1227},[],[1229],{"type":52,"value":87},{"type":52,"value":1231}," and ",{"type":47,"tag":55,"props":1233,"children":1235},{"className":1234},[],[1236],{"type":52,"value":95},{"type":52,"value":1238}," must have identical release entries",{"type":47,"tag":583,"props":1240,"children":1241},{},[1242,1247],{"type":47,"tag":75,"props":1243,"children":1244},{},[1245],{"type":52,"value":1246},"RELEASE_NOTES = maintainer only",{"type":52,"value":1248}," — contributors only update CHANGELOG.md + website changelog",{"type":47,"tag":1250,"props":1251,"children":1252},"style",{},[1253],{"type":52,"value":1254},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1256,"total":1387},[1257,1275,1284,1293,1304,1314,1327,1336,1345,1355,1364,1377],{"slug":1258,"name":1258,"fn":1259,"description":1260,"org":1261,"tags":1262,"stars":1272,"repoUrl":1273,"updatedAt":1274},"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},[1263,1266,1269],{"name":1264,"slug":1265,"type":15},"Architecture","architecture",{"name":1267,"slug":1268,"type":15},"Configuration","configuration",{"name":1270,"slug":1271,"type":15},"Engineering","engineering",1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":1276,"name":1276,"fn":1277,"description":1278,"org":1279,"tags":1280,"stars":1272,"repoUrl":1273,"updatedAt":1283},"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},[1281,1282],{"name":1264,"slug":1265,"type":15},{"name":1270,"slug":1271,"type":15},"2026-07-17T06:04:48.066901",{"slug":1285,"name":1285,"fn":1286,"description":1287,"org":1288,"tags":1289,"stars":1272,"repoUrl":1273,"updatedAt":1292},"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},[1290,1291],{"name":1264,"slug":1265,"type":15},{"name":1270,"slug":1271,"type":15},"2026-07-13T06:45:21.757084",{"slug":1294,"name":1294,"fn":1295,"description":1296,"org":1297,"tags":1298,"stars":1272,"repoUrl":1273,"updatedAt":1303},"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},[1299,1300],{"name":1264,"slug":1265,"type":15},{"name":1301,"slug":1302,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":1305,"name":1305,"fn":1306,"description":1307,"org":1308,"tags":1309,"stars":1272,"repoUrl":1273,"updatedAt":1313},"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},[1310],{"name":1311,"slug":1312,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":1315,"name":1315,"fn":1316,"description":1317,"org":1318,"tags":1319,"stars":1272,"repoUrl":1273,"updatedAt":1326},"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},[1320,1323],{"name":1321,"slug":1322,"type":15},"Design","design",{"name":1324,"slug":1325,"type":15},"UI Components","ui-components","2026-07-23T05:41:56.638151",{"slug":1328,"name":1328,"fn":1329,"description":1330,"org":1331,"tags":1332,"stars":1272,"repoUrl":1273,"updatedAt":1335},"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},[1333,1334],{"name":1270,"slug":1271,"type":15},{"name":1324,"slug":1325,"type":15},"2026-07-23T05:41:49.666535",{"slug":1337,"name":1337,"fn":1338,"description":1339,"org":1340,"tags":1341,"stars":1272,"repoUrl":1273,"updatedAt":1344},"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},[1342,1343],{"name":1264,"slug":1265,"type":15},{"name":1270,"slug":1271,"type":15},"2026-07-13T06:44:59.507855",{"slug":1346,"name":1346,"fn":1347,"description":1348,"org":1349,"tags":1350,"stars":1272,"repoUrl":1273,"updatedAt":1354},"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},[1351,1352,1353],{"name":1264,"slug":1265,"type":15},{"name":1301,"slug":1302,"type":15},{"name":1270,"slug":1271,"type":15},"2026-07-17T06:06:58.042999",{"slug":1356,"name":1356,"fn":1357,"description":1358,"org":1359,"tags":1360,"stars":1272,"repoUrl":1273,"updatedAt":1363},"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},[1361,1362],{"name":1264,"slug":1265,"type":15},{"name":1270,"slug":1271,"type":15},"2026-07-23T05:41:48.692899",{"slug":1365,"name":1365,"fn":1366,"description":1367,"org":1368,"tags":1369,"stars":1272,"repoUrl":1273,"updatedAt":1376},"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},[1370,1373],{"name":1371,"slug":1372,"type":15},"Debugging","debugging",{"name":1374,"slug":1375,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":1378,"name":1378,"fn":1379,"description":1380,"org":1381,"tags":1382,"stars":1272,"repoUrl":1273,"updatedAt":1386},"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},[1383],{"name":1384,"slug":1385,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188,{"items":1389,"total":1505},[1390,1409,1424,1438,1453,1476,1493],{"slug":1391,"name":1391,"fn":1392,"description":1393,"org":1394,"tags":1395,"stars":22,"repoUrl":23,"updatedAt":1408},"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},[1396,1399,1402,1405],{"name":1397,"slug":1398,"type":15},"Creative","creative",{"name":1400,"slug":1401,"type":15},"Generative Art","generative-art",{"name":1403,"slug":1404,"type":15},"Graphics","graphics",{"name":1406,"slug":1407,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":1410,"name":1410,"fn":1411,"description":1412,"org":1413,"tags":1414,"stars":22,"repoUrl":23,"updatedAt":1423},"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},[1415,1418,1419,1420],{"name":1416,"slug":1417,"type":15},"Best Practices","best-practices",{"name":1270,"slug":1271,"type":15},{"name":1406,"slug":1407,"type":15},{"name":1421,"slug":1422,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":1425,"name":1425,"fn":1426,"description":1427,"org":1428,"tags":1429,"stars":22,"repoUrl":23,"updatedAt":1437},"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},[1430,1433,1434],{"name":1431,"slug":1432,"type":15},"Branding","branding",{"name":1321,"slug":1322,"type":15},{"name":1435,"slug":1436,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":1439,"name":1439,"fn":1440,"description":1441,"org":1442,"tags":1443,"stars":22,"repoUrl":23,"updatedAt":1452},"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},[1444,1445,1446,1449],{"name":1397,"slug":1398,"type":15},{"name":1321,"slug":1322,"type":15},{"name":1447,"slug":1448,"type":15},"Images","images",{"name":1450,"slug":1451,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":1454,"name":1454,"fn":1455,"description":1456,"org":1457,"tags":1458,"stars":22,"repoUrl":23,"updatedAt":1475},"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},[1459,1462,1465,1468,1469,1472],{"name":1460,"slug":1461,"type":15},"CI\u002FCD","ci-cd",{"name":1463,"slug":1464,"type":15},"Containers","containers",{"name":1466,"slug":1467,"type":15},"Deployment","deployment",{"name":1270,"slug":1271,"type":15},{"name":1470,"slug":1471,"type":15},"Kotlin","kotlin",{"name":1473,"slug":1474,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":1477,"name":1477,"fn":1478,"description":1479,"org":1480,"tags":1481,"stars":22,"repoUrl":23,"updatedAt":1492},"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},[1482,1485,1488,1491],{"name":1483,"slug":1484,"type":15},"Cloudflare","cloudflare",{"name":1486,"slug":1487,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1489,"slug":1490,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1466,"slug":1467,"type":15},"2026-07-17T06:04:42.853896",{"slug":1494,"name":1494,"fn":1495,"description":1496,"org":1497,"tags":1498,"stars":22,"repoUrl":23,"updatedAt":1504},"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},[1499,1500,1503],{"name":13,"slug":14,"type":15},{"name":1501,"slug":1502,"type":15},"Desktop","desktop",{"name":1324,"slug":1325,"type":15},"2026-07-13T06:40:38.798626",128]