[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-antfu":3,"mdc-hzof7j-key":36,"related-org-jetbrains-antfu":1469,"related-repo-jetbrains-antfu":1600},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"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},"jetbrains","JetBrains","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fjetbrains.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"TypeScript","typescript","tag",{"name":17,"slug":18,"type":15},"JavaScript","javascript",{"name":20,"slug":21,"type":15},"Best Practices","best-practices",{"name":23,"slug":24,"type":15},"Engineering","engineering",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-13T06:43:13.153309",null,17,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Curated agent skills collection verified by JetBrains","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills\u002Ftree\u002FHEAD\u002Fantfu","---\nname: antfu\ndescription: 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.\nmetadata:\n  short-description: \"Apply Anthony Fu's TS\u002FJS conventions\"\n  author: Anthony Fu\n  version: \"2026.02.03\"\n  source: https:\u002F\u002Fgithub.com\u002Fantfu\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002Fantfu\n---\n\n## Coding Practices\n\n### Code Organization\n\n- **Single responsibility**: Each source file should have a clear, focused scope\u002Fpurpose\n- **Split large files**: Break files when they become large or handle too many concerns\n- **Type separation**: Always separate types and interfaces into `types.ts` or `types\u002F*.ts`\n- **Constants extraction**: Move constants to a dedicated `constants.ts` file\n\n### Runtime Environment\n\n- **Prefer isomorphic code**: Write runtime-agnostic code that works in Node, browser, and workers whenever possible\n- **Clear runtime indicators**: When code is environment-specific, add a comment at the top of the file:\n\n```ts\n\u002F\u002F @env node\n\u002F\u002F @env browser\n```\n\n### TypeScript\n\n- **Explicit return types**: Declare return types explicitly when possible\n- **Avoid complex inline types**: Extract complex types into dedicated `type` or `interface` declarations\n\n### Comments\n\n- **Avoid unnecessary comments**: Code should be self-explanatory\n- **Explain \"why\" not \"how\"**: Comments should describe the reasoning or intent, not what the code does\n\n### Testing (Vitest)\n\n- Test files: `foo.ts` → `foo.test.ts` (same directory)\n- Use `describe`\u002F`it` API (not `test`)\n- Use `toMatchSnapshot` for complex outputs\n- Use `toMatchFileSnapshot` with explicit path for language-specific snapshots\n\n---\n\n## Tooling Choices\n\n### @antfu\u002Fni Commands\n\n| Command | Description |\n|---------|-------------|\n| `ni` | Install dependencies |\n| `ni \u003Cpkg>` \u002F `ni -D \u003Cpkg>` | Add dependency \u002F dev dependency |\n| `nr \u003Cscript>` | Run script |\n| `nu` | Upgrade dependencies |\n| `nun \u003Cpkg>` | Uninstall dependency |\n| `nci` | Clean install (`pnpm i --frozen-lockfile`) |\n| `nlx \u003Cpkg>` | Execute package (`npx`) |\n\n### TypeScript Config\n\n```json\n{\n  \"compilerOptions\": {\n    \"target\": \"ESNext\",\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"bundler\",\n    \"strict\": true,\n    \"esModuleInterop\": true,\n    \"skipLibCheck\": true,\n    \"resolveJsonModule\": true,\n    \"isolatedModules\": true,\n    \"noEmit\": true\n  }\n}\n```\n\n### ESLint Setup\n\n```js\n\u002F\u002F eslint.config.mjs\nimport antfu from '@antfu\u002Feslint-config'\n\nexport default antfu()\n```\n\n\nWhen completing tasks, run `pnpm run lint --fix` to format the code and fix coding style.\n\nFor detailed configuration options: [antfu-eslint-config](references\u002Fantfu-eslint-config.md)\n\n### Git Hooks\n\n```json\n{\n  \"simple-git-hooks\": {\n    \"pre-commit\": \"pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged\"\n  },\n  \"lint-staged\": { \"*\": \"eslint --fix\" },\n  \"scripts\": {\n    \"prepare\": \"npx simple-git-hooks\"\n  }\n}\n```\n\n### pnpm Catalogs\n\nUse named catalogs in `pnpm-workspace.yaml` for version management:\n\n| Catalog | Purpose |\n|---------|---------|\n| `prod` | Production dependencies |\n| `inlined` | Bundler-inlined dependencies |\n| `dev` | Dev tools (linter, bundler, testing) |\n| `frontend` | Frontend libraries |\n\nAvoid the default catalog. Catalog names can be adjusted per project needs.\n\n---\n\n## References\n\n| Topic | Description | Reference |\n|-------|-------------|-----------|\n| ESLint Config | Framework support, formatters, rule overrides, VS Code settings | [antfu-eslint-config](references\u002Fantfu-eslint-config.md) |\n| Project Setup | .gitignore, GitHub Actions, VS Code extensions | [setting-up](references\u002Fsetting-up.md) |\n| App Development | Vue\u002FNuxt\u002FUnoCSS conventions and patterns | [app-development](references\u002Fapp-development.md) |\n| Library Development | tsdown bundling, pure ESM publishing | [library-development](references\u002Flibrary-development.md) |\n| Monorepo | pnpm workspaces, centralized alias, Turborepo | [monorepo](references\u002Fmonorepo.md) |\n",{"data":37,"body":43},{"name":4,"description":6,"metadata":38},{"short-description":39,"author":40,"version":41,"source":42},"Apply Anthony Fu's TS\u002FJS conventions","Anthony Fu","2026.02.03","https:\u002F\u002Fgithub.com\u002Fantfu\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002Fantfu",{"type":44,"children":45},"root",[46,55,62,131,137,160,192,196,234,240,263,269,346,350,356,362,531,537,872,878,963,977,989,995,1206,1212,1225,1315,1320,1323,1329,1463],{"type":47,"tag":48,"props":49,"children":51},"element","h2",{"id":50},"coding-practices",[52],{"type":53,"value":54},"text","Coding Practices",{"type":47,"tag":56,"props":57,"children":59},"h3",{"id":58},"code-organization",[60],{"type":53,"value":61},"Code Organization",{"type":47,"tag":63,"props":64,"children":65},"ul",{},[66,78,88,113],{"type":47,"tag":67,"props":68,"children":69},"li",{},[70,76],{"type":47,"tag":71,"props":72,"children":73},"strong",{},[74],{"type":53,"value":75},"Single responsibility",{"type":53,"value":77},": Each source file should have a clear, focused scope\u002Fpurpose",{"type":47,"tag":67,"props":79,"children":80},{},[81,86],{"type":47,"tag":71,"props":82,"children":83},{},[84],{"type":53,"value":85},"Split large files",{"type":53,"value":87},": Break files when they become large or handle too many concerns",{"type":47,"tag":67,"props":89,"children":90},{},[91,96,98,105,107],{"type":47,"tag":71,"props":92,"children":93},{},[94],{"type":53,"value":95},"Type separation",{"type":53,"value":97},": Always separate types and interfaces into ",{"type":47,"tag":99,"props":100,"children":102},"code",{"className":101},[],[103],{"type":53,"value":104},"types.ts",{"type":53,"value":106}," or ",{"type":47,"tag":99,"props":108,"children":110},{"className":109},[],[111],{"type":53,"value":112},"types\u002F*.ts",{"type":47,"tag":67,"props":114,"children":115},{},[116,121,123,129],{"type":47,"tag":71,"props":117,"children":118},{},[119],{"type":53,"value":120},"Constants extraction",{"type":53,"value":122},": Move constants to a dedicated ",{"type":47,"tag":99,"props":124,"children":126},{"className":125},[],[127],{"type":53,"value":128},"constants.ts",{"type":53,"value":130}," file",{"type":47,"tag":56,"props":132,"children":134},{"id":133},"runtime-environment",[135],{"type":53,"value":136},"Runtime Environment",{"type":47,"tag":63,"props":138,"children":139},{},[140,150],{"type":47,"tag":67,"props":141,"children":142},{},[143,148],{"type":47,"tag":71,"props":144,"children":145},{},[146],{"type":53,"value":147},"Prefer isomorphic code",{"type":53,"value":149},": Write runtime-agnostic code that works in Node, browser, and workers whenever possible",{"type":47,"tag":67,"props":151,"children":152},{},[153,158],{"type":47,"tag":71,"props":154,"children":155},{},[156],{"type":53,"value":157},"Clear runtime indicators",{"type":53,"value":159},": When code is environment-specific, add a comment at the top of the file:",{"type":47,"tag":161,"props":162,"children":167},"pre",{"className":163,"code":164,"language":165,"meta":166,"style":166},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F @env node\n\u002F\u002F @env browser\n","ts","",[168],{"type":47,"tag":99,"props":169,"children":170},{"__ignoreMap":166},[171,183],{"type":47,"tag":172,"props":173,"children":176},"span",{"class":174,"line":175},"line",1,[177],{"type":47,"tag":172,"props":178,"children":180},{"style":179},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[181],{"type":53,"value":182},"\u002F\u002F @env node\n",{"type":47,"tag":172,"props":184,"children":186},{"class":174,"line":185},2,[187],{"type":47,"tag":172,"props":188,"children":189},{"style":179},[190],{"type":53,"value":191},"\u002F\u002F @env browser\n",{"type":47,"tag":56,"props":193,"children":194},{"id":14},[195],{"type":53,"value":13},{"type":47,"tag":63,"props":197,"children":198},{},[199,209],{"type":47,"tag":67,"props":200,"children":201},{},[202,207],{"type":47,"tag":71,"props":203,"children":204},{},[205],{"type":53,"value":206},"Explicit return types",{"type":53,"value":208},": Declare return types explicitly when possible",{"type":47,"tag":67,"props":210,"children":211},{},[212,217,219,225,226,232],{"type":47,"tag":71,"props":213,"children":214},{},[215],{"type":53,"value":216},"Avoid complex inline types",{"type":53,"value":218},": Extract complex types into dedicated ",{"type":47,"tag":99,"props":220,"children":222},{"className":221},[],[223],{"type":53,"value":224},"type",{"type":53,"value":106},{"type":47,"tag":99,"props":227,"children":229},{"className":228},[],[230],{"type":53,"value":231},"interface",{"type":53,"value":233}," declarations",{"type":47,"tag":56,"props":235,"children":237},{"id":236},"comments",[238],{"type":53,"value":239},"Comments",{"type":47,"tag":63,"props":241,"children":242},{},[243,253],{"type":47,"tag":67,"props":244,"children":245},{},[246,251],{"type":47,"tag":71,"props":247,"children":248},{},[249],{"type":53,"value":250},"Avoid unnecessary comments",{"type":53,"value":252},": Code should be self-explanatory",{"type":47,"tag":67,"props":254,"children":255},{},[256,261],{"type":47,"tag":71,"props":257,"children":258},{},[259],{"type":53,"value":260},"Explain \"why\" not \"how\"",{"type":53,"value":262},": Comments should describe the reasoning or intent, not what the code does",{"type":47,"tag":56,"props":264,"children":266},{"id":265},"testing-vitest",[267],{"type":53,"value":268},"Testing (Vitest)",{"type":47,"tag":63,"props":270,"children":271},{},[272,293,322,334],{"type":47,"tag":67,"props":273,"children":274},{},[275,277,283,285,291],{"type":53,"value":276},"Test files: ",{"type":47,"tag":99,"props":278,"children":280},{"className":279},[],[281],{"type":53,"value":282},"foo.ts",{"type":53,"value":284}," → ",{"type":47,"tag":99,"props":286,"children":288},{"className":287},[],[289],{"type":53,"value":290},"foo.test.ts",{"type":53,"value":292}," (same directory)",{"type":47,"tag":67,"props":294,"children":295},{},[296,298,304,306,312,314,320],{"type":53,"value":297},"Use ",{"type":47,"tag":99,"props":299,"children":301},{"className":300},[],[302],{"type":53,"value":303},"describe",{"type":53,"value":305},"\u002F",{"type":47,"tag":99,"props":307,"children":309},{"className":308},[],[310],{"type":53,"value":311},"it",{"type":53,"value":313}," API (not ",{"type":47,"tag":99,"props":315,"children":317},{"className":316},[],[318],{"type":53,"value":319},"test",{"type":53,"value":321},")",{"type":47,"tag":67,"props":323,"children":324},{},[325,326,332],{"type":53,"value":297},{"type":47,"tag":99,"props":327,"children":329},{"className":328},[],[330],{"type":53,"value":331},"toMatchSnapshot",{"type":53,"value":333}," for complex outputs",{"type":47,"tag":67,"props":335,"children":336},{},[337,338,344],{"type":53,"value":297},{"type":47,"tag":99,"props":339,"children":341},{"className":340},[],[342],{"type":53,"value":343},"toMatchFileSnapshot",{"type":53,"value":345}," with explicit path for language-specific snapshots",{"type":47,"tag":347,"props":348,"children":349},"hr",{},[],{"type":47,"tag":48,"props":351,"children":353},{"id":352},"tooling-choices",[354],{"type":53,"value":355},"Tooling Choices",{"type":47,"tag":56,"props":357,"children":359},{"id":358},"antfuni-commands",[360],{"type":53,"value":361},"@antfu\u002Fni Commands",{"type":47,"tag":363,"props":364,"children":365},"table",{},[366,385],{"type":47,"tag":367,"props":368,"children":369},"thead",{},[370],{"type":47,"tag":371,"props":372,"children":373},"tr",{},[374,380],{"type":47,"tag":375,"props":376,"children":377},"th",{},[378],{"type":53,"value":379},"Command",{"type":47,"tag":375,"props":381,"children":382},{},[383],{"type":53,"value":384},"Description",{"type":47,"tag":386,"props":387,"children":388},"tbody",{},[389,407,432,449,466,483,507],{"type":47,"tag":371,"props":390,"children":391},{},[392,402],{"type":47,"tag":393,"props":394,"children":395},"td",{},[396],{"type":47,"tag":99,"props":397,"children":399},{"className":398},[],[400],{"type":53,"value":401},"ni",{"type":47,"tag":393,"props":403,"children":404},{},[405],{"type":53,"value":406},"Install dependencies",{"type":47,"tag":371,"props":408,"children":409},{},[410,427],{"type":47,"tag":393,"props":411,"children":412},{},[413,419,421],{"type":47,"tag":99,"props":414,"children":416},{"className":415},[],[417],{"type":53,"value":418},"ni \u003Cpkg>",{"type":53,"value":420}," \u002F ",{"type":47,"tag":99,"props":422,"children":424},{"className":423},[],[425],{"type":53,"value":426},"ni -D \u003Cpkg>",{"type":47,"tag":393,"props":428,"children":429},{},[430],{"type":53,"value":431},"Add dependency \u002F dev dependency",{"type":47,"tag":371,"props":433,"children":434},{},[435,444],{"type":47,"tag":393,"props":436,"children":437},{},[438],{"type":47,"tag":99,"props":439,"children":441},{"className":440},[],[442],{"type":53,"value":443},"nr \u003Cscript>",{"type":47,"tag":393,"props":445,"children":446},{},[447],{"type":53,"value":448},"Run script",{"type":47,"tag":371,"props":450,"children":451},{},[452,461],{"type":47,"tag":393,"props":453,"children":454},{},[455],{"type":47,"tag":99,"props":456,"children":458},{"className":457},[],[459],{"type":53,"value":460},"nu",{"type":47,"tag":393,"props":462,"children":463},{},[464],{"type":53,"value":465},"Upgrade dependencies",{"type":47,"tag":371,"props":467,"children":468},{},[469,478],{"type":47,"tag":393,"props":470,"children":471},{},[472],{"type":47,"tag":99,"props":473,"children":475},{"className":474},[],[476],{"type":53,"value":477},"nun \u003Cpkg>",{"type":47,"tag":393,"props":479,"children":480},{},[481],{"type":53,"value":482},"Uninstall dependency",{"type":47,"tag":371,"props":484,"children":485},{},[486,495],{"type":47,"tag":393,"props":487,"children":488},{},[489],{"type":47,"tag":99,"props":490,"children":492},{"className":491},[],[493],{"type":53,"value":494},"nci",{"type":47,"tag":393,"props":496,"children":497},{},[498,500,506],{"type":53,"value":499},"Clean install (",{"type":47,"tag":99,"props":501,"children":503},{"className":502},[],[504],{"type":53,"value":505},"pnpm i --frozen-lockfile",{"type":53,"value":321},{"type":47,"tag":371,"props":508,"children":509},{},[510,519],{"type":47,"tag":393,"props":511,"children":512},{},[513],{"type":47,"tag":99,"props":514,"children":516},{"className":515},[],[517],{"type":53,"value":518},"nlx \u003Cpkg>",{"type":47,"tag":393,"props":520,"children":521},{},[522,524,530],{"type":53,"value":523},"Execute package (",{"type":47,"tag":99,"props":525,"children":527},{"className":526},[],[528],{"type":53,"value":529},"npx",{"type":53,"value":321},{"type":47,"tag":56,"props":532,"children":534},{"id":533},"typescript-config",[535],{"type":53,"value":536},"TypeScript Config",{"type":47,"tag":161,"props":538,"children":542},{"className":539,"code":540,"language":541,"meta":166,"style":166},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"compilerOptions\": {\n    \"target\": \"ESNext\",\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"bundler\",\n    \"strict\": true,\n    \"esModuleInterop\": true,\n    \"skipLibCheck\": true,\n    \"resolveJsonModule\": true,\n    \"isolatedModules\": true,\n    \"noEmit\": true\n  }\n}\n","json",[543],{"type":47,"tag":99,"props":544,"children":545},{"__ignoreMap":166},[546,555,584,627,664,702,728,753,778,803,828,854,863],{"type":47,"tag":172,"props":547,"children":548},{"class":174,"line":175},[549],{"type":47,"tag":172,"props":550,"children":552},{"style":551},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[553],{"type":53,"value":554},"{\n",{"type":47,"tag":172,"props":556,"children":557},{"class":174,"line":185},[558,563,569,574,579],{"type":47,"tag":172,"props":559,"children":560},{"style":551},[561],{"type":53,"value":562},"  \"",{"type":47,"tag":172,"props":564,"children":566},{"style":565},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[567],{"type":53,"value":568},"compilerOptions",{"type":47,"tag":172,"props":570,"children":571},{"style":551},[572],{"type":53,"value":573},"\"",{"type":47,"tag":172,"props":575,"children":576},{"style":551},[577],{"type":53,"value":578},":",{"type":47,"tag":172,"props":580,"children":581},{"style":551},[582],{"type":53,"value":583}," {\n",{"type":47,"tag":172,"props":585,"children":587},{"class":174,"line":586},3,[588,593,599,603,607,612,618,622],{"type":47,"tag":172,"props":589,"children":590},{"style":551},[591],{"type":53,"value":592},"    \"",{"type":47,"tag":172,"props":594,"children":596},{"style":595},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[597],{"type":53,"value":598},"target",{"type":47,"tag":172,"props":600,"children":601},{"style":551},[602],{"type":53,"value":573},{"type":47,"tag":172,"props":604,"children":605},{"style":551},[606],{"type":53,"value":578},{"type":47,"tag":172,"props":608,"children":609},{"style":551},[610],{"type":53,"value":611}," \"",{"type":47,"tag":172,"props":613,"children":615},{"style":614},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[616],{"type":53,"value":617},"ESNext",{"type":47,"tag":172,"props":619,"children":620},{"style":551},[621],{"type":53,"value":573},{"type":47,"tag":172,"props":623,"children":624},{"style":551},[625],{"type":53,"value":626},",\n",{"type":47,"tag":172,"props":628,"children":630},{"class":174,"line":629},4,[631,635,640,644,648,652,656,660],{"type":47,"tag":172,"props":632,"children":633},{"style":551},[634],{"type":53,"value":592},{"type":47,"tag":172,"props":636,"children":637},{"style":595},[638],{"type":53,"value":639},"module",{"type":47,"tag":172,"props":641,"children":642},{"style":551},[643],{"type":53,"value":573},{"type":47,"tag":172,"props":645,"children":646},{"style":551},[647],{"type":53,"value":578},{"type":47,"tag":172,"props":649,"children":650},{"style":551},[651],{"type":53,"value":611},{"type":47,"tag":172,"props":653,"children":654},{"style":614},[655],{"type":53,"value":617},{"type":47,"tag":172,"props":657,"children":658},{"style":551},[659],{"type":53,"value":573},{"type":47,"tag":172,"props":661,"children":662},{"style":551},[663],{"type":53,"value":626},{"type":47,"tag":172,"props":665,"children":667},{"class":174,"line":666},5,[668,672,677,681,685,689,694,698],{"type":47,"tag":172,"props":669,"children":670},{"style":551},[671],{"type":53,"value":592},{"type":47,"tag":172,"props":673,"children":674},{"style":595},[675],{"type":53,"value":676},"moduleResolution",{"type":47,"tag":172,"props":678,"children":679},{"style":551},[680],{"type":53,"value":573},{"type":47,"tag":172,"props":682,"children":683},{"style":551},[684],{"type":53,"value":578},{"type":47,"tag":172,"props":686,"children":687},{"style":551},[688],{"type":53,"value":611},{"type":47,"tag":172,"props":690,"children":691},{"style":614},[692],{"type":53,"value":693},"bundler",{"type":47,"tag":172,"props":695,"children":696},{"style":551},[697],{"type":53,"value":573},{"type":47,"tag":172,"props":699,"children":700},{"style":551},[701],{"type":53,"value":626},{"type":47,"tag":172,"props":703,"children":705},{"class":174,"line":704},6,[706,710,715,719,723],{"type":47,"tag":172,"props":707,"children":708},{"style":551},[709],{"type":53,"value":592},{"type":47,"tag":172,"props":711,"children":712},{"style":595},[713],{"type":53,"value":714},"strict",{"type":47,"tag":172,"props":716,"children":717},{"style":551},[718],{"type":53,"value":573},{"type":47,"tag":172,"props":720,"children":721},{"style":551},[722],{"type":53,"value":578},{"type":47,"tag":172,"props":724,"children":725},{"style":551},[726],{"type":53,"value":727}," true,\n",{"type":47,"tag":172,"props":729,"children":731},{"class":174,"line":730},7,[732,736,741,745,749],{"type":47,"tag":172,"props":733,"children":734},{"style":551},[735],{"type":53,"value":592},{"type":47,"tag":172,"props":737,"children":738},{"style":595},[739],{"type":53,"value":740},"esModuleInterop",{"type":47,"tag":172,"props":742,"children":743},{"style":551},[744],{"type":53,"value":573},{"type":47,"tag":172,"props":746,"children":747},{"style":551},[748],{"type":53,"value":578},{"type":47,"tag":172,"props":750,"children":751},{"style":551},[752],{"type":53,"value":727},{"type":47,"tag":172,"props":754,"children":756},{"class":174,"line":755},8,[757,761,766,770,774],{"type":47,"tag":172,"props":758,"children":759},{"style":551},[760],{"type":53,"value":592},{"type":47,"tag":172,"props":762,"children":763},{"style":595},[764],{"type":53,"value":765},"skipLibCheck",{"type":47,"tag":172,"props":767,"children":768},{"style":551},[769],{"type":53,"value":573},{"type":47,"tag":172,"props":771,"children":772},{"style":551},[773],{"type":53,"value":578},{"type":47,"tag":172,"props":775,"children":776},{"style":551},[777],{"type":53,"value":727},{"type":47,"tag":172,"props":779,"children":781},{"class":174,"line":780},9,[782,786,791,795,799],{"type":47,"tag":172,"props":783,"children":784},{"style":551},[785],{"type":53,"value":592},{"type":47,"tag":172,"props":787,"children":788},{"style":595},[789],{"type":53,"value":790},"resolveJsonModule",{"type":47,"tag":172,"props":792,"children":793},{"style":551},[794],{"type":53,"value":573},{"type":47,"tag":172,"props":796,"children":797},{"style":551},[798],{"type":53,"value":578},{"type":47,"tag":172,"props":800,"children":801},{"style":551},[802],{"type":53,"value":727},{"type":47,"tag":172,"props":804,"children":806},{"class":174,"line":805},10,[807,811,816,820,824],{"type":47,"tag":172,"props":808,"children":809},{"style":551},[810],{"type":53,"value":592},{"type":47,"tag":172,"props":812,"children":813},{"style":595},[814],{"type":53,"value":815},"isolatedModules",{"type":47,"tag":172,"props":817,"children":818},{"style":551},[819],{"type":53,"value":573},{"type":47,"tag":172,"props":821,"children":822},{"style":551},[823],{"type":53,"value":578},{"type":47,"tag":172,"props":825,"children":826},{"style":551},[827],{"type":53,"value":727},{"type":47,"tag":172,"props":829,"children":831},{"class":174,"line":830},11,[832,836,841,845,849],{"type":47,"tag":172,"props":833,"children":834},{"style":551},[835],{"type":53,"value":592},{"type":47,"tag":172,"props":837,"children":838},{"style":595},[839],{"type":53,"value":840},"noEmit",{"type":47,"tag":172,"props":842,"children":843},{"style":551},[844],{"type":53,"value":573},{"type":47,"tag":172,"props":846,"children":847},{"style":551},[848],{"type":53,"value":578},{"type":47,"tag":172,"props":850,"children":851},{"style":551},[852],{"type":53,"value":853}," true\n",{"type":47,"tag":172,"props":855,"children":857},{"class":174,"line":856},12,[858],{"type":47,"tag":172,"props":859,"children":860},{"style":551},[861],{"type":53,"value":862},"  }\n",{"type":47,"tag":172,"props":864,"children":866},{"class":174,"line":865},13,[867],{"type":47,"tag":172,"props":868,"children":869},{"style":551},[870],{"type":53,"value":871},"}\n",{"type":47,"tag":56,"props":873,"children":875},{"id":874},"eslint-setup",[876],{"type":53,"value":877},"ESLint Setup",{"type":47,"tag":161,"props":879,"children":883},{"className":880,"code":881,"language":882,"meta":166,"style":166},"language-js shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F eslint.config.mjs\nimport antfu from '@antfu\u002Feslint-config'\n\nexport default antfu()\n","js",[884],{"type":47,"tag":99,"props":885,"children":886},{"__ignoreMap":166},[887,895,930,939],{"type":47,"tag":172,"props":888,"children":889},{"class":174,"line":175},[890],{"type":47,"tag":172,"props":891,"children":892},{"style":179},[893],{"type":53,"value":894},"\u002F\u002F eslint.config.mjs\n",{"type":47,"tag":172,"props":896,"children":897},{"class":174,"line":185},[898,904,910,915,920,925],{"type":47,"tag":172,"props":899,"children":901},{"style":900},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[902],{"type":53,"value":903},"import",{"type":47,"tag":172,"props":905,"children":907},{"style":906},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[908],{"type":53,"value":909}," antfu ",{"type":47,"tag":172,"props":911,"children":912},{"style":900},[913],{"type":53,"value":914},"from",{"type":47,"tag":172,"props":916,"children":917},{"style":551},[918],{"type":53,"value":919}," '",{"type":47,"tag":172,"props":921,"children":922},{"style":614},[923],{"type":53,"value":924},"@antfu\u002Feslint-config",{"type":47,"tag":172,"props":926,"children":927},{"style":551},[928],{"type":53,"value":929},"'\n",{"type":47,"tag":172,"props":931,"children":932},{"class":174,"line":586},[933],{"type":47,"tag":172,"props":934,"children":936},{"emptyLinePlaceholder":935},true,[937],{"type":53,"value":938},"\n",{"type":47,"tag":172,"props":940,"children":941},{"class":174,"line":629},[942,947,952,958],{"type":47,"tag":172,"props":943,"children":944},{"style":900},[945],{"type":53,"value":946},"export",{"type":47,"tag":172,"props":948,"children":949},{"style":900},[950],{"type":53,"value":951}," default",{"type":47,"tag":172,"props":953,"children":955},{"style":954},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[956],{"type":53,"value":957}," antfu",{"type":47,"tag":172,"props":959,"children":960},{"style":906},[961],{"type":53,"value":962},"()\n",{"type":47,"tag":964,"props":965,"children":966},"p",{},[967,969,975],{"type":53,"value":968},"When completing tasks, run ",{"type":47,"tag":99,"props":970,"children":972},{"className":971},[],[973],{"type":53,"value":974},"pnpm run lint --fix",{"type":53,"value":976}," to format the code and fix coding style.",{"type":47,"tag":964,"props":978,"children":979},{},[980,982],{"type":53,"value":981},"For detailed configuration options: ",{"type":47,"tag":983,"props":984,"children":986},"a",{"href":985},"references\u002Fantfu-eslint-config.md",[987],{"type":53,"value":988},"antfu-eslint-config",{"type":47,"tag":56,"props":990,"children":992},{"id":991},"git-hooks",[993],{"type":53,"value":994},"Git Hooks",{"type":47,"tag":161,"props":996,"children":998},{"className":539,"code":997,"language":541,"meta":166,"style":166},"{\n  \"simple-git-hooks\": {\n    \"pre-commit\": \"pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged\"\n  },\n  \"lint-staged\": { \"*\": \"eslint --fix\" },\n  \"scripts\": {\n    \"prepare\": \"npx simple-git-hooks\"\n  }\n}\n",[999],{"type":47,"tag":99,"props":1000,"children":1001},{"__ignoreMap":166},[1002,1009,1033,1067,1075,1135,1159,1192,1199],{"type":47,"tag":172,"props":1003,"children":1004},{"class":174,"line":175},[1005],{"type":47,"tag":172,"props":1006,"children":1007},{"style":551},[1008],{"type":53,"value":554},{"type":47,"tag":172,"props":1010,"children":1011},{"class":174,"line":185},[1012,1016,1021,1025,1029],{"type":47,"tag":172,"props":1013,"children":1014},{"style":551},[1015],{"type":53,"value":562},{"type":47,"tag":172,"props":1017,"children":1018},{"style":565},[1019],{"type":53,"value":1020},"simple-git-hooks",{"type":47,"tag":172,"props":1022,"children":1023},{"style":551},[1024],{"type":53,"value":573},{"type":47,"tag":172,"props":1026,"children":1027},{"style":551},[1028],{"type":53,"value":578},{"type":47,"tag":172,"props":1030,"children":1031},{"style":551},[1032],{"type":53,"value":583},{"type":47,"tag":172,"props":1034,"children":1035},{"class":174,"line":586},[1036,1040,1045,1049,1053,1057,1062],{"type":47,"tag":172,"props":1037,"children":1038},{"style":551},[1039],{"type":53,"value":592},{"type":47,"tag":172,"props":1041,"children":1042},{"style":595},[1043],{"type":53,"value":1044},"pre-commit",{"type":47,"tag":172,"props":1046,"children":1047},{"style":551},[1048],{"type":53,"value":573},{"type":47,"tag":172,"props":1050,"children":1051},{"style":551},[1052],{"type":53,"value":578},{"type":47,"tag":172,"props":1054,"children":1055},{"style":551},[1056],{"type":53,"value":611},{"type":47,"tag":172,"props":1058,"children":1059},{"style":614},[1060],{"type":53,"value":1061},"pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged",{"type":47,"tag":172,"props":1063,"children":1064},{"style":551},[1065],{"type":53,"value":1066},"\"\n",{"type":47,"tag":172,"props":1068,"children":1069},{"class":174,"line":629},[1070],{"type":47,"tag":172,"props":1071,"children":1072},{"style":551},[1073],{"type":53,"value":1074},"  },\n",{"type":47,"tag":172,"props":1076,"children":1077},{"class":174,"line":666},[1078,1082,1087,1091,1095,1100,1104,1109,1113,1117,1121,1126,1130],{"type":47,"tag":172,"props":1079,"children":1080},{"style":551},[1081],{"type":53,"value":562},{"type":47,"tag":172,"props":1083,"children":1084},{"style":565},[1085],{"type":53,"value":1086},"lint-staged",{"type":47,"tag":172,"props":1088,"children":1089},{"style":551},[1090],{"type":53,"value":573},{"type":47,"tag":172,"props":1092,"children":1093},{"style":551},[1094],{"type":53,"value":578},{"type":47,"tag":172,"props":1096,"children":1097},{"style":551},[1098],{"type":53,"value":1099}," {",{"type":47,"tag":172,"props":1101,"children":1102},{"style":551},[1103],{"type":53,"value":611},{"type":47,"tag":172,"props":1105,"children":1106},{"style":595},[1107],{"type":53,"value":1108},"*",{"type":47,"tag":172,"props":1110,"children":1111},{"style":551},[1112],{"type":53,"value":573},{"type":47,"tag":172,"props":1114,"children":1115},{"style":551},[1116],{"type":53,"value":578},{"type":47,"tag":172,"props":1118,"children":1119},{"style":551},[1120],{"type":53,"value":611},{"type":47,"tag":172,"props":1122,"children":1123},{"style":614},[1124],{"type":53,"value":1125},"eslint --fix",{"type":47,"tag":172,"props":1127,"children":1128},{"style":551},[1129],{"type":53,"value":573},{"type":47,"tag":172,"props":1131,"children":1132},{"style":551},[1133],{"type":53,"value":1134}," },\n",{"type":47,"tag":172,"props":1136,"children":1137},{"class":174,"line":704},[1138,1142,1147,1151,1155],{"type":47,"tag":172,"props":1139,"children":1140},{"style":551},[1141],{"type":53,"value":562},{"type":47,"tag":172,"props":1143,"children":1144},{"style":565},[1145],{"type":53,"value":1146},"scripts",{"type":47,"tag":172,"props":1148,"children":1149},{"style":551},[1150],{"type":53,"value":573},{"type":47,"tag":172,"props":1152,"children":1153},{"style":551},[1154],{"type":53,"value":578},{"type":47,"tag":172,"props":1156,"children":1157},{"style":551},[1158],{"type":53,"value":583},{"type":47,"tag":172,"props":1160,"children":1161},{"class":174,"line":730},[1162,1166,1171,1175,1179,1183,1188],{"type":47,"tag":172,"props":1163,"children":1164},{"style":551},[1165],{"type":53,"value":592},{"type":47,"tag":172,"props":1167,"children":1168},{"style":595},[1169],{"type":53,"value":1170},"prepare",{"type":47,"tag":172,"props":1172,"children":1173},{"style":551},[1174],{"type":53,"value":573},{"type":47,"tag":172,"props":1176,"children":1177},{"style":551},[1178],{"type":53,"value":578},{"type":47,"tag":172,"props":1180,"children":1181},{"style":551},[1182],{"type":53,"value":611},{"type":47,"tag":172,"props":1184,"children":1185},{"style":614},[1186],{"type":53,"value":1187},"npx simple-git-hooks",{"type":47,"tag":172,"props":1189,"children":1190},{"style":551},[1191],{"type":53,"value":1066},{"type":47,"tag":172,"props":1193,"children":1194},{"class":174,"line":755},[1195],{"type":47,"tag":172,"props":1196,"children":1197},{"style":551},[1198],{"type":53,"value":862},{"type":47,"tag":172,"props":1200,"children":1201},{"class":174,"line":780},[1202],{"type":47,"tag":172,"props":1203,"children":1204},{"style":551},[1205],{"type":53,"value":871},{"type":47,"tag":56,"props":1207,"children":1209},{"id":1208},"pnpm-catalogs",[1210],{"type":53,"value":1211},"pnpm Catalogs",{"type":47,"tag":964,"props":1213,"children":1214},{},[1215,1217,1223],{"type":53,"value":1216},"Use named catalogs in ",{"type":47,"tag":99,"props":1218,"children":1220},{"className":1219},[],[1221],{"type":53,"value":1222},"pnpm-workspace.yaml",{"type":53,"value":1224}," for version management:",{"type":47,"tag":363,"props":1226,"children":1227},{},[1228,1244],{"type":47,"tag":367,"props":1229,"children":1230},{},[1231],{"type":47,"tag":371,"props":1232,"children":1233},{},[1234,1239],{"type":47,"tag":375,"props":1235,"children":1236},{},[1237],{"type":53,"value":1238},"Catalog",{"type":47,"tag":375,"props":1240,"children":1241},{},[1242],{"type":53,"value":1243},"Purpose",{"type":47,"tag":386,"props":1245,"children":1246},{},[1247,1264,1281,1298],{"type":47,"tag":371,"props":1248,"children":1249},{},[1250,1259],{"type":47,"tag":393,"props":1251,"children":1252},{},[1253],{"type":47,"tag":99,"props":1254,"children":1256},{"className":1255},[],[1257],{"type":53,"value":1258},"prod",{"type":47,"tag":393,"props":1260,"children":1261},{},[1262],{"type":53,"value":1263},"Production dependencies",{"type":47,"tag":371,"props":1265,"children":1266},{},[1267,1276],{"type":47,"tag":393,"props":1268,"children":1269},{},[1270],{"type":47,"tag":99,"props":1271,"children":1273},{"className":1272},[],[1274],{"type":53,"value":1275},"inlined",{"type":47,"tag":393,"props":1277,"children":1278},{},[1279],{"type":53,"value":1280},"Bundler-inlined dependencies",{"type":47,"tag":371,"props":1282,"children":1283},{},[1284,1293],{"type":47,"tag":393,"props":1285,"children":1286},{},[1287],{"type":47,"tag":99,"props":1288,"children":1290},{"className":1289},[],[1291],{"type":53,"value":1292},"dev",{"type":47,"tag":393,"props":1294,"children":1295},{},[1296],{"type":53,"value":1297},"Dev tools (linter, bundler, testing)",{"type":47,"tag":371,"props":1299,"children":1300},{},[1301,1310],{"type":47,"tag":393,"props":1302,"children":1303},{},[1304],{"type":47,"tag":99,"props":1305,"children":1307},{"className":1306},[],[1308],{"type":53,"value":1309},"frontend",{"type":47,"tag":393,"props":1311,"children":1312},{},[1313],{"type":53,"value":1314},"Frontend libraries",{"type":47,"tag":964,"props":1316,"children":1317},{},[1318],{"type":53,"value":1319},"Avoid the default catalog. Catalog names can be adjusted per project needs.",{"type":47,"tag":347,"props":1321,"children":1322},{},[],{"type":47,"tag":48,"props":1324,"children":1326},{"id":1325},"references",[1327],{"type":53,"value":1328},"References",{"type":47,"tag":363,"props":1330,"children":1331},{},[1332,1352],{"type":47,"tag":367,"props":1333,"children":1334},{},[1335],{"type":47,"tag":371,"props":1336,"children":1337},{},[1338,1343,1347],{"type":47,"tag":375,"props":1339,"children":1340},{},[1341],{"type":53,"value":1342},"Topic",{"type":47,"tag":375,"props":1344,"children":1345},{},[1346],{"type":53,"value":384},{"type":47,"tag":375,"props":1348,"children":1349},{},[1350],{"type":53,"value":1351},"Reference",{"type":47,"tag":386,"props":1353,"children":1354},{},[1355,1375,1397,1419,1441],{"type":47,"tag":371,"props":1356,"children":1357},{},[1358,1363,1368],{"type":47,"tag":393,"props":1359,"children":1360},{},[1361],{"type":53,"value":1362},"ESLint Config",{"type":47,"tag":393,"props":1364,"children":1365},{},[1366],{"type":53,"value":1367},"Framework support, formatters, rule overrides, VS Code settings",{"type":47,"tag":393,"props":1369,"children":1370},{},[1371],{"type":47,"tag":983,"props":1372,"children":1373},{"href":985},[1374],{"type":53,"value":988},{"type":47,"tag":371,"props":1376,"children":1377},{},[1378,1383,1388],{"type":47,"tag":393,"props":1379,"children":1380},{},[1381],{"type":53,"value":1382},"Project Setup",{"type":47,"tag":393,"props":1384,"children":1385},{},[1386],{"type":53,"value":1387},".gitignore, GitHub Actions, VS Code extensions",{"type":47,"tag":393,"props":1389,"children":1390},{},[1391],{"type":47,"tag":983,"props":1392,"children":1394},{"href":1393},"references\u002Fsetting-up.md",[1395],{"type":53,"value":1396},"setting-up",{"type":47,"tag":371,"props":1398,"children":1399},{},[1400,1405,1410],{"type":47,"tag":393,"props":1401,"children":1402},{},[1403],{"type":53,"value":1404},"App Development",{"type":47,"tag":393,"props":1406,"children":1407},{},[1408],{"type":53,"value":1409},"Vue\u002FNuxt\u002FUnoCSS conventions and patterns",{"type":47,"tag":393,"props":1411,"children":1412},{},[1413],{"type":47,"tag":983,"props":1414,"children":1416},{"href":1415},"references\u002Fapp-development.md",[1417],{"type":53,"value":1418},"app-development",{"type":47,"tag":371,"props":1420,"children":1421},{},[1422,1427,1432],{"type":47,"tag":393,"props":1423,"children":1424},{},[1425],{"type":53,"value":1426},"Library Development",{"type":47,"tag":393,"props":1428,"children":1429},{},[1430],{"type":53,"value":1431},"tsdown bundling, pure ESM publishing",{"type":47,"tag":393,"props":1433,"children":1434},{},[1435],{"type":47,"tag":983,"props":1436,"children":1438},{"href":1437},"references\u002Flibrary-development.md",[1439],{"type":53,"value":1440},"library-development",{"type":47,"tag":371,"props":1442,"children":1443},{},[1444,1449,1454],{"type":47,"tag":393,"props":1445,"children":1446},{},[1447],{"type":53,"value":1448},"Monorepo",{"type":47,"tag":393,"props":1450,"children":1451},{},[1452],{"type":53,"value":1453},"pnpm workspaces, centralized alias, Turborepo",{"type":47,"tag":393,"props":1455,"children":1456},{},[1457],{"type":47,"tag":983,"props":1458,"children":1460},{"href":1459},"references\u002Fmonorepo.md",[1461],{"type":53,"value":1462},"monorepo",{"type":47,"tag":1464,"props":1465,"children":1466},"style",{},[1467],{"type":53,"value":1468},"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":1470,"total":1599},[1471,1487,1496,1505,1516,1526,1539,1548,1557,1567,1576,1589],{"slug":1472,"name":1472,"fn":1473,"description":1474,"org":1475,"tags":1476,"stars":1484,"repoUrl":1485,"updatedAt":1486},"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},[1477,1480,1483],{"name":1478,"slug":1479,"type":15},"Architecture","architecture",{"name":1481,"slug":1482,"type":15},"Configuration","configuration",{"name":23,"slug":24,"type":15},1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":1488,"name":1488,"fn":1489,"description":1490,"org":1491,"tags":1492,"stars":1484,"repoUrl":1485,"updatedAt":1495},"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},[1493,1494],{"name":1478,"slug":1479,"type":15},{"name":23,"slug":24,"type":15},"2026-07-17T06:04:48.066901",{"slug":1497,"name":1497,"fn":1498,"description":1499,"org":1500,"tags":1501,"stars":1484,"repoUrl":1485,"updatedAt":1504},"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},[1502,1503],{"name":1478,"slug":1479,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:45:21.757084",{"slug":1506,"name":1506,"fn":1507,"description":1508,"org":1509,"tags":1510,"stars":1484,"repoUrl":1485,"updatedAt":1515},"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},[1511,1512],{"name":1478,"slug":1479,"type":15},{"name":1513,"slug":1514,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":1517,"name":1517,"fn":1518,"description":1519,"org":1520,"tags":1521,"stars":1484,"repoUrl":1485,"updatedAt":1525},"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},[1522],{"name":1523,"slug":1524,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":1527,"name":1527,"fn":1528,"description":1529,"org":1530,"tags":1531,"stars":1484,"repoUrl":1485,"updatedAt":1538},"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},[1532,1535],{"name":1533,"slug":1534,"type":15},"Design","design",{"name":1536,"slug":1537,"type":15},"UI Components","ui-components","2026-07-23T05:41:56.638151",{"slug":1540,"name":1540,"fn":1541,"description":1542,"org":1543,"tags":1544,"stars":1484,"repoUrl":1485,"updatedAt":1547},"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},[1545,1546],{"name":23,"slug":24,"type":15},{"name":1536,"slug":1537,"type":15},"2026-07-23T05:41:49.666535",{"slug":1549,"name":1549,"fn":1550,"description":1551,"org":1552,"tags":1553,"stars":1484,"repoUrl":1485,"updatedAt":1556},"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},[1554,1555],{"name":1478,"slug":1479,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:44:59.507855",{"slug":1558,"name":1558,"fn":1559,"description":1560,"org":1561,"tags":1562,"stars":1484,"repoUrl":1485,"updatedAt":1566},"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},[1563,1564,1565],{"name":1478,"slug":1479,"type":15},{"name":1513,"slug":1514,"type":15},{"name":23,"slug":24,"type":15},"2026-07-17T06:06:58.042999",{"slug":1568,"name":1568,"fn":1569,"description":1570,"org":1571,"tags":1572,"stars":1484,"repoUrl":1485,"updatedAt":1575},"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},[1573,1574],{"name":1478,"slug":1479,"type":15},{"name":23,"slug":24,"type":15},"2026-07-23T05:41:48.692899",{"slug":1577,"name":1577,"fn":1578,"description":1579,"org":1580,"tags":1581,"stars":1484,"repoUrl":1485,"updatedAt":1588},"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},[1582,1585],{"name":1583,"slug":1584,"type":15},"Debugging","debugging",{"name":1586,"slug":1587,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":1590,"name":1590,"fn":1591,"description":1592,"org":1593,"tags":1594,"stars":1484,"repoUrl":1485,"updatedAt":1598},"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},[1595],{"name":1596,"slug":1597,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188,{"items":1601,"total":1709},[1602,1619,1626,1640,1655,1678,1695],{"slug":1603,"name":1603,"fn":1604,"description":1605,"org":1606,"tags":1607,"stars":25,"repoUrl":26,"updatedAt":1618},"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},[1608,1611,1614,1617],{"name":1609,"slug":1610,"type":15},"Creative","creative",{"name":1612,"slug":1613,"type":15},"Generative Art","generative-art",{"name":1615,"slug":1616,"type":15},"Graphics","graphics",{"name":17,"slug":18,"type":15},"2026-07-13T06:41:35.540127",{"slug":4,"name":4,"fn":5,"description":6,"org":1620,"tags":1621,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1622,1623,1624,1625],{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":1627,"name":1627,"fn":1628,"description":1629,"org":1630,"tags":1631,"stars":25,"repoUrl":26,"updatedAt":1639},"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},[1632,1635,1636],{"name":1633,"slug":1634,"type":15},"Branding","branding",{"name":1533,"slug":1534,"type":15},{"name":1637,"slug":1638,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":1641,"name":1641,"fn":1642,"description":1643,"org":1644,"tags":1645,"stars":25,"repoUrl":26,"updatedAt":1654},"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},[1646,1647,1648,1651],{"name":1609,"slug":1610,"type":15},{"name":1533,"slug":1534,"type":15},{"name":1649,"slug":1650,"type":15},"Images","images",{"name":1652,"slug":1653,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":1656,"name":1656,"fn":1657,"description":1658,"org":1659,"tags":1660,"stars":25,"repoUrl":26,"updatedAt":1677},"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},[1661,1664,1667,1670,1671,1674],{"name":1662,"slug":1663,"type":15},"CI\u002FCD","ci-cd",{"name":1665,"slug":1666,"type":15},"Containers","containers",{"name":1668,"slug":1669,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},{"name":1672,"slug":1673,"type":15},"Kotlin","kotlin",{"name":1675,"slug":1676,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":1679,"name":1679,"fn":1680,"description":1681,"org":1682,"tags":1683,"stars":25,"repoUrl":26,"updatedAt":1694},"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},[1684,1687,1690,1693],{"name":1685,"slug":1686,"type":15},"Cloudflare","cloudflare",{"name":1688,"slug":1689,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1691,"slug":1692,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1668,"slug":1669,"type":15},"2026-07-17T06:04:42.853896",{"slug":1696,"name":1696,"fn":1697,"description":1698,"org":1699,"tags":1700,"stars":25,"repoUrl":26,"updatedAt":1708},"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},[1701,1704,1707],{"name":1702,"slug":1703,"type":15},"Automation","automation",{"name":1705,"slug":1706,"type":15},"Desktop","desktop",{"name":1536,"slug":1537,"type":15},"2026-07-13T06:40:38.798626",128]