[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-skillshare-update-docs":3,"mdc-udpjhm-key":33,"related-org-jetbrains-skillshare-update-docs":1070,"related-repo-jetbrains-skillshare-update-docs":1203},{"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-update-docs","sync website documentation with code changes","Update website docs to match recent code changes, cross-validating every flag against source. Use this skill whenever the user asks to: update documentation, sync docs with code, document a new flag or command, fix stale docs, or update the README. This skill covers all website\u002Fdocs\u002F categories (commands, reference, understand, how-to, troubleshooting, getting-started) plus the built-in skill description and README. If you just implemented a feature and need to update docs, this is the skill to use. Never manually edit website docs without cross-validating flags against Go source first.",{"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},"Maintenance","maintenance","tag",{"name":17,"slug":18,"type":15},"Documentation","documentation",{"name":20,"slug":21,"type":15},"Technical Writing","technical-writing",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-13T06:42:58.68537",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\u002Fupdate-docs","---\nname: skillshare-update-docs\ndescription: >-\n  Update website docs to match recent code changes, cross-validating every flag\n  against source. Use this skill whenever the user asks to: update documentation,\n  sync docs with code, document a new flag or command, fix stale docs, or update\n  the README. This skill covers all website\u002Fdocs\u002F categories (commands, reference,\n  understand, how-to, troubleshooting, getting-started) plus the built-in skill\n  description and README. If you just implemented a feature and need to update\n  docs, this is the skill to use. Never manually edit website docs without\n  cross-validating flags against Go source first.\nargument-hint: \"[command-name | commit-range]\"\ntargets: [claude, codex]\nmetadata:\n  short-description: \"Sync docs with code changes\"\n  author: Runkids\n  source: https:\u002F\u002Fgithub.com\u002Frunkids\u002Fskillshare\u002Ftree\u002Fmain\u002F.skillshare\u002Fskills\u002Fupdate-docs\n---\n\nSync website documentation with recent code changes. $ARGUMENTS specifies scope: a command name (e.g., `install`), commit range, or omit to auto-detect from `git diff HEAD~1`.\n\n**Scope**: This skill only updates `website\u002Fdocs\u002F`. It does NOT write Go code (use `implement-feature`) or CHANGELOG (use `changelog`).\n\n## Workflow\n\n### Step 1: Detect Changes\n\n```bash\n# Auto-detect recently changed code\ngit diff HEAD~1 --stat -- cmd\u002Fskillshare\u002F internal\u002F\n\n# Also check for structural changes that affect concept\u002Freference docs\ngit diff HEAD~1 --stat -- internal\u002Fconfig\u002Ftargets.yaml internal\u002Faudit\u002Frules.yaml\n```\n\nMap changed files to affected documentation using this guide:\n\n**Command docs** (`website\u002Fdocs\u002Freference\u002Fcommands\u002F`):\n- `cmd\u002Fskillshare\u002F\u003Ccmd>.go` → `website\u002Fdocs\u002Freference\u002Fcommands\u002F\u003Ccmd>.md`\n- Flag changes, new subcommands, output format changes\n\n**Concept docs** (`website\u002Fdocs\u002Funderstand\u002F`):\n- `internal\u002Faudit\u002F` → `understand\u002Faudit-engine.md`\n- `internal\u002Fsync\u002F` → `understand\u002Fsync-modes.md`, `understand\u002Fsource-and-targets.md`\n- `internal\u002Finstall\u002Ftracked.go` → `understand\u002Ftracked-repositories.md`\n- `internal\u002Fconfig\u002F` → `understand\u002Fdeclarative-manifest.md`\n- `.skillshare\u002F` project config changes → `understand\u002Fproject-skills.md`\n- `skills\u002Fskillshare\u002FSKILL.md` format → `understand\u002Fskill-format.md`\n\n**Reference docs** (`website\u002Fdocs\u002Freference\u002F`):\n- `internal\u002Fconfig\u002Ftargets.yaml` → `reference\u002Ftargets\u002F`\n- `internal\u002Faudit\u002Frules.yaml` → `reference\u002Fcommands\u002Faudit-rules.md`\n- `reference\u002Fappendix\u002F` for CLI quick-reference tables\n\n**How-to guides** (`website\u002Fdocs\u002Fhow-to\u002F`):\n- New workflow patterns → `how-to\u002Fdaily-tasks\u002F`, `how-to\u002Fadvanced\u002F`, `how-to\u002Frecipes\u002F`\n- Sharing\u002Forg features → `how-to\u002Fsharing\u002F`\n\n**Troubleshooting** (`website\u002Fdocs\u002Ftroubleshooting\u002F`):\n- New error messages → `troubleshooting\u002Fcommon-errors.md`\n- FAQ additions → `troubleshooting\u002Ffaq.md`\n\n**Getting started** (`website\u002Fdocs\u002Fgetting-started\u002F`):\n- Breaking changes to init\u002Finstall flow → `getting-started\u002Ffirst-sync.md`\n- Quick reference updates → `getting-started\u002Fquick-reference.md`\n\n**Learn** (`website\u002Fdocs\u002Flearn\u002F`):\n- New target integrations → `learn\u002Fwith-\u003Ctool>.md`\n\n### Step 2: Cross-Validate Flags\n\nFor each affected command:\n\n1. Read the Go source to extract actual flags and behavior:\n   ```bash\n   grep -n 'flag\\.\\|Usage\\|Args' cmd\u002Fskillshare\u002F\u003Ccmd>.go\n   ```\n\n2. Read the corresponding doc page:\n   ```\n   website\u002Fdocs\u002Fcommands\u002F\u003Ccmd>.md\n   ```\n\n3. Compare and fix:\n   - **New flags** in code → add to docs with usage example\n   - **Removed flags** from code → remove from docs\n   - **Changed behavior** → update description\n   - **Every `--flag` in docs** must have a matching `grep` hit in source\n\n### Step 3: Update Documentation\n\nApply changes following existing doc conventions:\n- Match heading structure of neighboring doc pages\n- Include CLI examples with expected output\n- Keep flag tables consistent in format\n\n### Step 4: Check Built-in Skill\n\nIf changes affect user-visible CLI behavior:\n\n1. Read `skills\u002Fskillshare\u002FSKILL.md`\n2. Check if the built-in skill description needs updating\n3. Verify description stays under 1024 characters (CodeX limit)\n\n### Step 5: Check README\n\nReview `README.md` for sections that may need updates:\n- Recent Updates callout\n- Why skillshare bullet points (5 selling points)\n- Highlights section (core feature examples)\n\n### Step 6: Build Verification\n\n```bash\ncd website && npm run build\n```\n\nConfirm no broken links or build errors.\n\n### Step 7: Report\n\nList all changes made with rationale:\n```\n== Documentation Updates ==\n\nModified:\n  website\u002Fdocs\u002Fcommands\u002Finstall.md\n    - Added --into flag documentation\n    - Updated install examples\n\n  skills\u002Fskillshare\u002FSKILL.md\n    - Added --into to feature list (desc: 987\u002F1024 chars)\n\nBuild: PASS (no broken links)\n```\n\n## Rules\n\n- **Source of truth is code** — docs must match what the code actually does\n- **Every flag claim must be verified** — grep source before writing docs\n- **No speculative docs** — never document planned but unimplemented features\n- **No code changes** — this skill only touches `website\u002Fdocs\u002F`, `skills\u002Fskillshare\u002FSKILL.md`, and `README.md`\n- **Preserve style** — match existing doc page structure and tone\n- **Built-in skill desc limit** — must stay under 1024 characters\n",{"data":34,"body":43},{"name":4,"description":6,"argument-hint":35,"targets":36,"metadata":39},"[command-name | commit-range]",[37,38],"claude","codex",{"short-description":40,"author":41,"source":42},"Sync docs with code changes","Runkids","https:\u002F\u002Fgithub.com\u002Frunkids\u002Fskillshare\u002Ftree\u002Fmain\u002F.skillshare\u002Fskills\u002Fupdate-docs",{"type":44,"children":45},"root",[46,71,106,113,120,237,242,260,287,303,412,428,474,490,529,545,570,586,611,627,641,647,652,805,811,816,834,840,845,868,874,887,905,911,952,957,963,968,977,983,1064],{"type":47,"tag":48,"props":49,"children":50},"element","p",{},[51,54,61,63,69],{"type":52,"value":53},"text","Sync website documentation with recent code changes. $ARGUMENTS specifies scope: a command name (e.g., ",{"type":47,"tag":55,"props":56,"children":58},"code",{"className":57},[],[59],{"type":52,"value":60},"install",{"type":52,"value":62},"), commit range, or omit to auto-detect from ",{"type":47,"tag":55,"props":64,"children":66},{"className":65},[],[67],{"type":52,"value":68},"git diff HEAD~1",{"type":52,"value":70},".",{"type":47,"tag":48,"props":72,"children":73},{},[74,80,82,88,90,96,98,104],{"type":47,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":52,"value":79},"Scope",{"type":52,"value":81},": This skill only updates ",{"type":47,"tag":55,"props":83,"children":85},{"className":84},[],[86],{"type":52,"value":87},"website\u002Fdocs\u002F",{"type":52,"value":89},". It does NOT write Go code (use ",{"type":47,"tag":55,"props":91,"children":93},{"className":92},[],[94],{"type":52,"value":95},"implement-feature",{"type":52,"value":97},") or CHANGELOG (use ",{"type":47,"tag":55,"props":99,"children":101},{"className":100},[],[102],{"type":52,"value":103},"changelog",{"type":52,"value":105},").",{"type":47,"tag":107,"props":108,"children":110},"h2",{"id":109},"workflow",[111],{"type":52,"value":112},"Workflow",{"type":47,"tag":114,"props":115,"children":117},"h3",{"id":116},"step-1-detect-changes",[118],{"type":52,"value":119},"Step 1: Detect Changes",{"type":47,"tag":121,"props":122,"children":127},"pre",{"className":123,"code":124,"language":125,"meta":126,"style":126},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Auto-detect recently changed code\ngit diff HEAD~1 --stat -- cmd\u002Fskillshare\u002F internal\u002F\n\n# Also check for structural changes that affect concept\u002Freference docs\ngit diff HEAD~1 --stat -- internal\u002Fconfig\u002Ftargets.yaml internal\u002Faudit\u002Frules.yaml\n","bash","",[128],{"type":47,"tag":55,"props":129,"children":130},{"__ignoreMap":126},[131,143,184,194,203],{"type":47,"tag":132,"props":133,"children":136},"span",{"class":134,"line":135},"line",1,[137],{"type":47,"tag":132,"props":138,"children":140},{"style":139},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[141],{"type":52,"value":142},"# Auto-detect recently changed code\n",{"type":47,"tag":132,"props":144,"children":146},{"class":134,"line":145},2,[147,153,159,164,169,174,179],{"type":47,"tag":132,"props":148,"children":150},{"style":149},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[151],{"type":52,"value":152},"git",{"type":47,"tag":132,"props":154,"children":156},{"style":155},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[157],{"type":52,"value":158}," diff",{"type":47,"tag":132,"props":160,"children":161},{"style":155},[162],{"type":52,"value":163}," HEAD~1",{"type":47,"tag":132,"props":165,"children":166},{"style":155},[167],{"type":52,"value":168}," --stat",{"type":47,"tag":132,"props":170,"children":171},{"style":155},[172],{"type":52,"value":173}," --",{"type":47,"tag":132,"props":175,"children":176},{"style":155},[177],{"type":52,"value":178}," cmd\u002Fskillshare\u002F",{"type":47,"tag":132,"props":180,"children":181},{"style":155},[182],{"type":52,"value":183}," internal\u002F\n",{"type":47,"tag":132,"props":185,"children":187},{"class":134,"line":186},3,[188],{"type":47,"tag":132,"props":189,"children":191},{"emptyLinePlaceholder":190},true,[192],{"type":52,"value":193},"\n",{"type":47,"tag":132,"props":195,"children":197},{"class":134,"line":196},4,[198],{"type":47,"tag":132,"props":199,"children":200},{"style":139},[201],{"type":52,"value":202},"# Also check for structural changes that affect concept\u002Freference docs\n",{"type":47,"tag":132,"props":204,"children":206},{"class":134,"line":205},5,[207,211,215,219,223,227,232],{"type":47,"tag":132,"props":208,"children":209},{"style":149},[210],{"type":52,"value":152},{"type":47,"tag":132,"props":212,"children":213},{"style":155},[214],{"type":52,"value":158},{"type":47,"tag":132,"props":216,"children":217},{"style":155},[218],{"type":52,"value":163},{"type":47,"tag":132,"props":220,"children":221},{"style":155},[222],{"type":52,"value":168},{"type":47,"tag":132,"props":224,"children":225},{"style":155},[226],{"type":52,"value":173},{"type":47,"tag":132,"props":228,"children":229},{"style":155},[230],{"type":52,"value":231}," internal\u002Fconfig\u002Ftargets.yaml",{"type":47,"tag":132,"props":233,"children":234},{"style":155},[235],{"type":52,"value":236}," internal\u002Faudit\u002Frules.yaml\n",{"type":47,"tag":48,"props":238,"children":239},{},[240],{"type":52,"value":241},"Map changed files to affected documentation using this guide:",{"type":47,"tag":48,"props":243,"children":244},{},[245,250,252,258],{"type":47,"tag":75,"props":246,"children":247},{},[248],{"type":52,"value":249},"Command docs",{"type":52,"value":251}," (",{"type":47,"tag":55,"props":253,"children":255},{"className":254},[],[256],{"type":52,"value":257},"website\u002Fdocs\u002Freference\u002Fcommands\u002F",{"type":52,"value":259},"):",{"type":47,"tag":261,"props":262,"children":263},"ul",{},[264,282],{"type":47,"tag":265,"props":266,"children":267},"li",{},[268,274,276],{"type":47,"tag":55,"props":269,"children":271},{"className":270},[],[272],{"type":52,"value":273},"cmd\u002Fskillshare\u002F\u003Ccmd>.go",{"type":52,"value":275}," → ",{"type":47,"tag":55,"props":277,"children":279},{"className":278},[],[280],{"type":52,"value":281},"website\u002Fdocs\u002Freference\u002Fcommands\u002F\u003Ccmd>.md",{"type":47,"tag":265,"props":283,"children":284},{},[285],{"type":52,"value":286},"Flag changes, new subcommands, output format changes",{"type":47,"tag":48,"props":288,"children":289},{},[290,295,296,302],{"type":47,"tag":75,"props":291,"children":292},{},[293],{"type":52,"value":294},"Concept docs",{"type":52,"value":251},{"type":47,"tag":55,"props":297,"children":299},{"className":298},[],[300],{"type":52,"value":301},"website\u002Fdocs\u002Funderstand\u002F",{"type":52,"value":259},{"type":47,"tag":261,"props":304,"children":305},{},[306,322,346,362,378,395],{"type":47,"tag":265,"props":307,"children":308},{},[309,315,316],{"type":47,"tag":55,"props":310,"children":312},{"className":311},[],[313],{"type":52,"value":314},"internal\u002Faudit\u002F",{"type":52,"value":275},{"type":47,"tag":55,"props":317,"children":319},{"className":318},[],[320],{"type":52,"value":321},"understand\u002Faudit-engine.md",{"type":47,"tag":265,"props":323,"children":324},{},[325,331,332,338,340],{"type":47,"tag":55,"props":326,"children":328},{"className":327},[],[329],{"type":52,"value":330},"internal\u002Fsync\u002F",{"type":52,"value":275},{"type":47,"tag":55,"props":333,"children":335},{"className":334},[],[336],{"type":52,"value":337},"understand\u002Fsync-modes.md",{"type":52,"value":339},", ",{"type":47,"tag":55,"props":341,"children":343},{"className":342},[],[344],{"type":52,"value":345},"understand\u002Fsource-and-targets.md",{"type":47,"tag":265,"props":347,"children":348},{},[349,355,356],{"type":47,"tag":55,"props":350,"children":352},{"className":351},[],[353],{"type":52,"value":354},"internal\u002Finstall\u002Ftracked.go",{"type":52,"value":275},{"type":47,"tag":55,"props":357,"children":359},{"className":358},[],[360],{"type":52,"value":361},"understand\u002Ftracked-repositories.md",{"type":47,"tag":265,"props":363,"children":364},{},[365,371,372],{"type":47,"tag":55,"props":366,"children":368},{"className":367},[],[369],{"type":52,"value":370},"internal\u002Fconfig\u002F",{"type":52,"value":275},{"type":47,"tag":55,"props":373,"children":375},{"className":374},[],[376],{"type":52,"value":377},"understand\u002Fdeclarative-manifest.md",{"type":47,"tag":265,"props":379,"children":380},{},[381,387,389],{"type":47,"tag":55,"props":382,"children":384},{"className":383},[],[385],{"type":52,"value":386},".skillshare\u002F",{"type":52,"value":388}," project config changes → ",{"type":47,"tag":55,"props":390,"children":392},{"className":391},[],[393],{"type":52,"value":394},"understand\u002Fproject-skills.md",{"type":47,"tag":265,"props":396,"children":397},{},[398,404,406],{"type":47,"tag":55,"props":399,"children":401},{"className":400},[],[402],{"type":52,"value":403},"skills\u002Fskillshare\u002FSKILL.md",{"type":52,"value":405}," format → ",{"type":47,"tag":55,"props":407,"children":409},{"className":408},[],[410],{"type":52,"value":411},"understand\u002Fskill-format.md",{"type":47,"tag":48,"props":413,"children":414},{},[415,420,421,427],{"type":47,"tag":75,"props":416,"children":417},{},[418],{"type":52,"value":419},"Reference docs",{"type":52,"value":251},{"type":47,"tag":55,"props":422,"children":424},{"className":423},[],[425],{"type":52,"value":426},"website\u002Fdocs\u002Freference\u002F",{"type":52,"value":259},{"type":47,"tag":261,"props":429,"children":430},{},[431,447,463],{"type":47,"tag":265,"props":432,"children":433},{},[434,440,441],{"type":47,"tag":55,"props":435,"children":437},{"className":436},[],[438],{"type":52,"value":439},"internal\u002Fconfig\u002Ftargets.yaml",{"type":52,"value":275},{"type":47,"tag":55,"props":442,"children":444},{"className":443},[],[445],{"type":52,"value":446},"reference\u002Ftargets\u002F",{"type":47,"tag":265,"props":448,"children":449},{},[450,456,457],{"type":47,"tag":55,"props":451,"children":453},{"className":452},[],[454],{"type":52,"value":455},"internal\u002Faudit\u002Frules.yaml",{"type":52,"value":275},{"type":47,"tag":55,"props":458,"children":460},{"className":459},[],[461],{"type":52,"value":462},"reference\u002Fcommands\u002Faudit-rules.md",{"type":47,"tag":265,"props":464,"children":465},{},[466,472],{"type":47,"tag":55,"props":467,"children":469},{"className":468},[],[470],{"type":52,"value":471},"reference\u002Fappendix\u002F",{"type":52,"value":473}," for CLI quick-reference tables",{"type":47,"tag":48,"props":475,"children":476},{},[477,482,483,489],{"type":47,"tag":75,"props":478,"children":479},{},[480],{"type":52,"value":481},"How-to guides",{"type":52,"value":251},{"type":47,"tag":55,"props":484,"children":486},{"className":485},[],[487],{"type":52,"value":488},"website\u002Fdocs\u002Fhow-to\u002F",{"type":52,"value":259},{"type":47,"tag":261,"props":491,"children":492},{},[493,518],{"type":47,"tag":265,"props":494,"children":495},{},[496,498,504,505,511,512],{"type":52,"value":497},"New workflow patterns → ",{"type":47,"tag":55,"props":499,"children":501},{"className":500},[],[502],{"type":52,"value":503},"how-to\u002Fdaily-tasks\u002F",{"type":52,"value":339},{"type":47,"tag":55,"props":506,"children":508},{"className":507},[],[509],{"type":52,"value":510},"how-to\u002Fadvanced\u002F",{"type":52,"value":339},{"type":47,"tag":55,"props":513,"children":515},{"className":514},[],[516],{"type":52,"value":517},"how-to\u002Frecipes\u002F",{"type":47,"tag":265,"props":519,"children":520},{},[521,523],{"type":52,"value":522},"Sharing\u002Forg features → ",{"type":47,"tag":55,"props":524,"children":526},{"className":525},[],[527],{"type":52,"value":528},"how-to\u002Fsharing\u002F",{"type":47,"tag":48,"props":530,"children":531},{},[532,537,538,544],{"type":47,"tag":75,"props":533,"children":534},{},[535],{"type":52,"value":536},"Troubleshooting",{"type":52,"value":251},{"type":47,"tag":55,"props":539,"children":541},{"className":540},[],[542],{"type":52,"value":543},"website\u002Fdocs\u002Ftroubleshooting\u002F",{"type":52,"value":259},{"type":47,"tag":261,"props":546,"children":547},{},[548,559],{"type":47,"tag":265,"props":549,"children":550},{},[551,553],{"type":52,"value":552},"New error messages → ",{"type":47,"tag":55,"props":554,"children":556},{"className":555},[],[557],{"type":52,"value":558},"troubleshooting\u002Fcommon-errors.md",{"type":47,"tag":265,"props":560,"children":561},{},[562,564],{"type":52,"value":563},"FAQ additions → ",{"type":47,"tag":55,"props":565,"children":567},{"className":566},[],[568],{"type":52,"value":569},"troubleshooting\u002Ffaq.md",{"type":47,"tag":48,"props":571,"children":572},{},[573,578,579,585],{"type":47,"tag":75,"props":574,"children":575},{},[576],{"type":52,"value":577},"Getting started",{"type":52,"value":251},{"type":47,"tag":55,"props":580,"children":582},{"className":581},[],[583],{"type":52,"value":584},"website\u002Fdocs\u002Fgetting-started\u002F",{"type":52,"value":259},{"type":47,"tag":261,"props":587,"children":588},{},[589,600],{"type":47,"tag":265,"props":590,"children":591},{},[592,594],{"type":52,"value":593},"Breaking changes to init\u002Finstall flow → ",{"type":47,"tag":55,"props":595,"children":597},{"className":596},[],[598],{"type":52,"value":599},"getting-started\u002Ffirst-sync.md",{"type":47,"tag":265,"props":601,"children":602},{},[603,605],{"type":52,"value":604},"Quick reference updates → ",{"type":47,"tag":55,"props":606,"children":608},{"className":607},[],[609],{"type":52,"value":610},"getting-started\u002Fquick-reference.md",{"type":47,"tag":48,"props":612,"children":613},{},[614,619,620,626],{"type":47,"tag":75,"props":615,"children":616},{},[617],{"type":52,"value":618},"Learn",{"type":52,"value":251},{"type":47,"tag":55,"props":621,"children":623},{"className":622},[],[624],{"type":52,"value":625},"website\u002Fdocs\u002Flearn\u002F",{"type":52,"value":259},{"type":47,"tag":261,"props":628,"children":629},{},[630],{"type":47,"tag":265,"props":631,"children":632},{},[633,635],{"type":52,"value":634},"New target integrations → ",{"type":47,"tag":55,"props":636,"children":638},{"className":637},[],[639],{"type":52,"value":640},"learn\u002Fwith-\u003Ctool>.md",{"type":47,"tag":114,"props":642,"children":644},{"id":643},"step-2-cross-validate-flags",[645],{"type":52,"value":646},"Step 2: Cross-Validate Flags",{"type":47,"tag":48,"props":648,"children":649},{},[650],{"type":52,"value":651},"For each affected command:",{"type":47,"tag":653,"props":654,"children":655},"ol",{},[656,727,742],{"type":47,"tag":265,"props":657,"children":658},{},[659,661],{"type":52,"value":660},"Read the Go source to extract actual flags and behavior:",{"type":47,"tag":121,"props":662,"children":664},{"className":123,"code":663,"language":125,"meta":126,"style":126},"grep -n 'flag\\.\\|Usage\\|Args' cmd\u002Fskillshare\u002F\u003Ccmd>.go\n",[665],{"type":47,"tag":55,"props":666,"children":667},{"__ignoreMap":126},[668],{"type":47,"tag":132,"props":669,"children":670},{"class":134,"line":135},[671,676,681,687,692,697,701,706,711,717,722],{"type":47,"tag":132,"props":672,"children":673},{"style":149},[674],{"type":52,"value":675},"grep",{"type":47,"tag":132,"props":677,"children":678},{"style":155},[679],{"type":52,"value":680}," -n",{"type":47,"tag":132,"props":682,"children":684},{"style":683},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[685],{"type":52,"value":686}," '",{"type":47,"tag":132,"props":688,"children":689},{"style":155},[690],{"type":52,"value":691},"flag\\.\\|Usage\\|Args",{"type":47,"tag":132,"props":693,"children":694},{"style":683},[695],{"type":52,"value":696},"'",{"type":47,"tag":132,"props":698,"children":699},{"style":155},[700],{"type":52,"value":178},{"type":47,"tag":132,"props":702,"children":703},{"style":683},[704],{"type":52,"value":705},"\u003C",{"type":47,"tag":132,"props":707,"children":708},{"style":155},[709],{"type":52,"value":710},"cm",{"type":47,"tag":132,"props":712,"children":714},{"style":713},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[715],{"type":52,"value":716},"d",{"type":47,"tag":132,"props":718,"children":719},{"style":683},[720],{"type":52,"value":721},">",{"type":47,"tag":132,"props":723,"children":724},{"style":155},[725],{"type":52,"value":726},".go\n",{"type":47,"tag":265,"props":728,"children":729},{},[730,732],{"type":52,"value":731},"Read the corresponding doc page:",{"type":47,"tag":121,"props":733,"children":737},{"className":734,"code":736,"language":52},[735],"language-text","website\u002Fdocs\u002Fcommands\u002F\u003Ccmd>.md\n",[738],{"type":47,"tag":55,"props":739,"children":740},{"__ignoreMap":126},[741],{"type":52,"value":736},{"type":47,"tag":265,"props":743,"children":744},{},[745,747],{"type":52,"value":746},"Compare and fix:",{"type":47,"tag":261,"props":748,"children":749},{},[750,760,770,780],{"type":47,"tag":265,"props":751,"children":752},{},[753,758],{"type":47,"tag":75,"props":754,"children":755},{},[756],{"type":52,"value":757},"New flags",{"type":52,"value":759}," in code → add to docs with usage example",{"type":47,"tag":265,"props":761,"children":762},{},[763,768],{"type":47,"tag":75,"props":764,"children":765},{},[766],{"type":52,"value":767},"Removed flags",{"type":52,"value":769}," from code → remove from docs",{"type":47,"tag":265,"props":771,"children":772},{},[773,778],{"type":47,"tag":75,"props":774,"children":775},{},[776],{"type":52,"value":777},"Changed behavior",{"type":52,"value":779}," → update description",{"type":47,"tag":265,"props":781,"children":782},{},[783,796,798,803],{"type":47,"tag":75,"props":784,"children":785},{},[786,788,794],{"type":52,"value":787},"Every ",{"type":47,"tag":55,"props":789,"children":791},{"className":790},[],[792],{"type":52,"value":793},"--flag",{"type":52,"value":795}," in docs",{"type":52,"value":797}," must have a matching ",{"type":47,"tag":55,"props":799,"children":801},{"className":800},[],[802],{"type":52,"value":675},{"type":52,"value":804}," hit in source",{"type":47,"tag":114,"props":806,"children":808},{"id":807},"step-3-update-documentation",[809],{"type":52,"value":810},"Step 3: Update Documentation",{"type":47,"tag":48,"props":812,"children":813},{},[814],{"type":52,"value":815},"Apply changes following existing doc conventions:",{"type":47,"tag":261,"props":817,"children":818},{},[819,824,829],{"type":47,"tag":265,"props":820,"children":821},{},[822],{"type":52,"value":823},"Match heading structure of neighboring doc pages",{"type":47,"tag":265,"props":825,"children":826},{},[827],{"type":52,"value":828},"Include CLI examples with expected output",{"type":47,"tag":265,"props":830,"children":831},{},[832],{"type":52,"value":833},"Keep flag tables consistent in format",{"type":47,"tag":114,"props":835,"children":837},{"id":836},"step-4-check-built-in-skill",[838],{"type":52,"value":839},"Step 4: Check Built-in Skill",{"type":47,"tag":48,"props":841,"children":842},{},[843],{"type":52,"value":844},"If changes affect user-visible CLI behavior:",{"type":47,"tag":653,"props":846,"children":847},{},[848,858,863],{"type":47,"tag":265,"props":849,"children":850},{},[851,853],{"type":52,"value":852},"Read ",{"type":47,"tag":55,"props":854,"children":856},{"className":855},[],[857],{"type":52,"value":403},{"type":47,"tag":265,"props":859,"children":860},{},[861],{"type":52,"value":862},"Check if the built-in skill description needs updating",{"type":47,"tag":265,"props":864,"children":865},{},[866],{"type":52,"value":867},"Verify description stays under 1024 characters (CodeX limit)",{"type":47,"tag":114,"props":869,"children":871},{"id":870},"step-5-check-readme",[872],{"type":52,"value":873},"Step 5: Check README",{"type":47,"tag":48,"props":875,"children":876},{},[877,879,885],{"type":52,"value":878},"Review ",{"type":47,"tag":55,"props":880,"children":882},{"className":881},[],[883],{"type":52,"value":884},"README.md",{"type":52,"value":886}," for sections that may need updates:",{"type":47,"tag":261,"props":888,"children":889},{},[890,895,900],{"type":47,"tag":265,"props":891,"children":892},{},[893],{"type":52,"value":894},"Recent Updates callout",{"type":47,"tag":265,"props":896,"children":897},{},[898],{"type":52,"value":899},"Why skillshare bullet points (5 selling points)",{"type":47,"tag":265,"props":901,"children":902},{},[903],{"type":52,"value":904},"Highlights section (core feature examples)",{"type":47,"tag":114,"props":906,"children":908},{"id":907},"step-6-build-verification",[909],{"type":52,"value":910},"Step 6: Build Verification",{"type":47,"tag":121,"props":912,"children":914},{"className":123,"code":913,"language":125,"meta":126,"style":126},"cd website && npm run build\n",[915],{"type":47,"tag":55,"props":916,"children":917},{"__ignoreMap":126},[918],{"type":47,"tag":132,"props":919,"children":920},{"class":134,"line":135},[921,927,932,937,942,947],{"type":47,"tag":132,"props":922,"children":924},{"style":923},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[925],{"type":52,"value":926},"cd",{"type":47,"tag":132,"props":928,"children":929},{"style":155},[930],{"type":52,"value":931}," website",{"type":47,"tag":132,"props":933,"children":934},{"style":683},[935],{"type":52,"value":936}," &&",{"type":47,"tag":132,"props":938,"children":939},{"style":149},[940],{"type":52,"value":941}," npm",{"type":47,"tag":132,"props":943,"children":944},{"style":155},[945],{"type":52,"value":946}," run",{"type":47,"tag":132,"props":948,"children":949},{"style":155},[950],{"type":52,"value":951}," build\n",{"type":47,"tag":48,"props":953,"children":954},{},[955],{"type":52,"value":956},"Confirm no broken links or build errors.",{"type":47,"tag":114,"props":958,"children":960},{"id":959},"step-7-report",[961],{"type":52,"value":962},"Step 7: Report",{"type":47,"tag":48,"props":964,"children":965},{},[966],{"type":52,"value":967},"List all changes made with rationale:",{"type":47,"tag":121,"props":969,"children":972},{"className":970,"code":971,"language":52},[735],"== Documentation Updates ==\n\nModified:\n  website\u002Fdocs\u002Fcommands\u002Finstall.md\n    - Added --into flag documentation\n    - Updated install examples\n\n  skills\u002Fskillshare\u002FSKILL.md\n    - Added --into to feature list (desc: 987\u002F1024 chars)\n\nBuild: PASS (no broken links)\n",[973],{"type":47,"tag":55,"props":974,"children":975},{"__ignoreMap":126},[976],{"type":52,"value":971},{"type":47,"tag":107,"props":978,"children":980},{"id":979},"rules",[981],{"type":52,"value":982},"Rules",{"type":47,"tag":261,"props":984,"children":985},{},[986,996,1006,1016,1044,1054],{"type":47,"tag":265,"props":987,"children":988},{},[989,994],{"type":47,"tag":75,"props":990,"children":991},{},[992],{"type":52,"value":993},"Source of truth is code",{"type":52,"value":995}," — docs must match what the code actually does",{"type":47,"tag":265,"props":997,"children":998},{},[999,1004],{"type":47,"tag":75,"props":1000,"children":1001},{},[1002],{"type":52,"value":1003},"Every flag claim must be verified",{"type":52,"value":1005}," — grep source before writing docs",{"type":47,"tag":265,"props":1007,"children":1008},{},[1009,1014],{"type":47,"tag":75,"props":1010,"children":1011},{},[1012],{"type":52,"value":1013},"No speculative docs",{"type":52,"value":1015}," — never document planned but unimplemented features",{"type":47,"tag":265,"props":1017,"children":1018},{},[1019,1024,1026,1031,1032,1037,1039],{"type":47,"tag":75,"props":1020,"children":1021},{},[1022],{"type":52,"value":1023},"No code changes",{"type":52,"value":1025}," — this skill only touches ",{"type":47,"tag":55,"props":1027,"children":1029},{"className":1028},[],[1030],{"type":52,"value":87},{"type":52,"value":339},{"type":47,"tag":55,"props":1033,"children":1035},{"className":1034},[],[1036],{"type":52,"value":403},{"type":52,"value":1038},", and ",{"type":47,"tag":55,"props":1040,"children":1042},{"className":1041},[],[1043],{"type":52,"value":884},{"type":47,"tag":265,"props":1045,"children":1046},{},[1047,1052],{"type":47,"tag":75,"props":1048,"children":1049},{},[1050],{"type":52,"value":1051},"Preserve style",{"type":52,"value":1053}," — match existing doc page structure and tone",{"type":47,"tag":265,"props":1055,"children":1056},{},[1057,1062],{"type":47,"tag":75,"props":1058,"children":1059},{},[1060],{"type":52,"value":1061},"Built-in skill desc limit",{"type":52,"value":1063}," — must stay under 1024 characters",{"type":47,"tag":1065,"props":1066,"children":1067},"style",{},[1068],{"type":52,"value":1069},"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":1071,"total":1202},[1072,1090,1099,1108,1119,1129,1142,1151,1160,1170,1179,1192],{"slug":1073,"name":1073,"fn":1074,"description":1075,"org":1076,"tags":1077,"stars":1087,"repoUrl":1088,"updatedAt":1089},"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},[1078,1081,1084],{"name":1079,"slug":1080,"type":15},"Architecture","architecture",{"name":1082,"slug":1083,"type":15},"Configuration","configuration",{"name":1085,"slug":1086,"type":15},"Engineering","engineering",1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":1091,"name":1091,"fn":1092,"description":1093,"org":1094,"tags":1095,"stars":1087,"repoUrl":1088,"updatedAt":1098},"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},[1096,1097],{"name":1079,"slug":1080,"type":15},{"name":1085,"slug":1086,"type":15},"2026-07-17T06:04:48.066901",{"slug":1100,"name":1100,"fn":1101,"description":1102,"org":1103,"tags":1104,"stars":1087,"repoUrl":1088,"updatedAt":1107},"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},[1105,1106],{"name":1079,"slug":1080,"type":15},{"name":1085,"slug":1086,"type":15},"2026-07-13T06:45:21.757084",{"slug":1109,"name":1109,"fn":1110,"description":1111,"org":1112,"tags":1113,"stars":1087,"repoUrl":1088,"updatedAt":1118},"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},[1114,1115],{"name":1079,"slug":1080,"type":15},{"name":1116,"slug":1117,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":1120,"name":1120,"fn":1121,"description":1122,"org":1123,"tags":1124,"stars":1087,"repoUrl":1088,"updatedAt":1128},"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},[1125],{"name":1126,"slug":1127,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":1130,"name":1130,"fn":1131,"description":1132,"org":1133,"tags":1134,"stars":1087,"repoUrl":1088,"updatedAt":1141},"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},[1135,1138],{"name":1136,"slug":1137,"type":15},"Design","design",{"name":1139,"slug":1140,"type":15},"UI Components","ui-components","2026-07-23T05:41:56.638151",{"slug":1143,"name":1143,"fn":1144,"description":1145,"org":1146,"tags":1147,"stars":1087,"repoUrl":1088,"updatedAt":1150},"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},[1148,1149],{"name":1085,"slug":1086,"type":15},{"name":1139,"slug":1140,"type":15},"2026-07-23T05:41:49.666535",{"slug":1152,"name":1152,"fn":1153,"description":1154,"org":1155,"tags":1156,"stars":1087,"repoUrl":1088,"updatedAt":1159},"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},[1157,1158],{"name":1079,"slug":1080,"type":15},{"name":1085,"slug":1086,"type":15},"2026-07-13T06:44:59.507855",{"slug":1161,"name":1161,"fn":1162,"description":1163,"org":1164,"tags":1165,"stars":1087,"repoUrl":1088,"updatedAt":1169},"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},[1166,1167,1168],{"name":1079,"slug":1080,"type":15},{"name":1116,"slug":1117,"type":15},{"name":1085,"slug":1086,"type":15},"2026-07-17T06:06:58.042999",{"slug":1171,"name":1171,"fn":1172,"description":1173,"org":1174,"tags":1175,"stars":1087,"repoUrl":1088,"updatedAt":1178},"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},[1176,1177],{"name":1079,"slug":1080,"type":15},{"name":1085,"slug":1086,"type":15},"2026-07-23T05:41:48.692899",{"slug":1180,"name":1180,"fn":1181,"description":1182,"org":1183,"tags":1184,"stars":1087,"repoUrl":1088,"updatedAt":1191},"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},[1185,1188],{"name":1186,"slug":1187,"type":15},"Debugging","debugging",{"name":1189,"slug":1190,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":1193,"name":1193,"fn":1194,"description":1195,"org":1196,"tags":1197,"stars":1087,"repoUrl":1088,"updatedAt":1201},"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},[1198],{"name":1199,"slug":1200,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188,{"items":1204,"total":1322},[1205,1224,1239,1253,1268,1291,1308],{"slug":1206,"name":1206,"fn":1207,"description":1208,"org":1209,"tags":1210,"stars":22,"repoUrl":23,"updatedAt":1223},"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},[1211,1214,1217,1220],{"name":1212,"slug":1213,"type":15},"Creative","creative",{"name":1215,"slug":1216,"type":15},"Generative Art","generative-art",{"name":1218,"slug":1219,"type":15},"Graphics","graphics",{"name":1221,"slug":1222,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":1225,"name":1225,"fn":1226,"description":1227,"org":1228,"tags":1229,"stars":22,"repoUrl":23,"updatedAt":1238},"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},[1230,1233,1234,1235],{"name":1231,"slug":1232,"type":15},"Best Practices","best-practices",{"name":1085,"slug":1086,"type":15},{"name":1221,"slug":1222,"type":15},{"name":1236,"slug":1237,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":1240,"name":1240,"fn":1241,"description":1242,"org":1243,"tags":1244,"stars":22,"repoUrl":23,"updatedAt":1252},"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},[1245,1248,1249],{"name":1246,"slug":1247,"type":15},"Branding","branding",{"name":1136,"slug":1137,"type":15},{"name":1250,"slug":1251,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":1254,"name":1254,"fn":1255,"description":1256,"org":1257,"tags":1258,"stars":22,"repoUrl":23,"updatedAt":1267},"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},[1259,1260,1261,1264],{"name":1212,"slug":1213,"type":15},{"name":1136,"slug":1137,"type":15},{"name":1262,"slug":1263,"type":15},"Images","images",{"name":1265,"slug":1266,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":1269,"name":1269,"fn":1270,"description":1271,"org":1272,"tags":1273,"stars":22,"repoUrl":23,"updatedAt":1290},"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},[1274,1277,1280,1283,1284,1287],{"name":1275,"slug":1276,"type":15},"CI\u002FCD","ci-cd",{"name":1278,"slug":1279,"type":15},"Containers","containers",{"name":1281,"slug":1282,"type":15},"Deployment","deployment",{"name":1085,"slug":1086,"type":15},{"name":1285,"slug":1286,"type":15},"Kotlin","kotlin",{"name":1288,"slug":1289,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":1292,"name":1292,"fn":1293,"description":1294,"org":1295,"tags":1296,"stars":22,"repoUrl":23,"updatedAt":1307},"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},[1297,1300,1303,1306],{"name":1298,"slug":1299,"type":15},"Cloudflare","cloudflare",{"name":1301,"slug":1302,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1304,"slug":1305,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1281,"slug":1282,"type":15},"2026-07-17T06:04:42.853896",{"slug":1309,"name":1309,"fn":1310,"description":1311,"org":1312,"tags":1313,"stars":22,"repoUrl":23,"updatedAt":1321},"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},[1314,1317,1320],{"name":1315,"slug":1316,"type":15},"Automation","automation",{"name":1318,"slug":1319,"type":15},"Desktop","desktop",{"name":1139,"slug":1140,"type":15},"2026-07-13T06:40:38.798626",128]