[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-upgrade-php":3,"mdc-fwcp3w-key":33,"related-org-jetbrains-upgrade-php":1054,"related-repo-jetbrains-upgrade-php":1183},{"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},"upgrade-php","upgrade PHP versions and fix deprecations","PHP Upgrade Assistant. Use when upgrading PHP version, fixing deprecations for a target PHP version, or scanning for PHP compatibility issues.",{"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},"PHP","php","tag",{"name":17,"slug":18,"type":15},"Migration","migration",{"name":20,"slug":21,"type":15},"Debugging","debugging",30,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fphpstorm-claude-marketplace","2026-07-13T06:43:38.636035",null,3,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"PhpStorm plugin for Claude Code","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fphpstorm-claude-marketplace\u002Ftree\u002FHEAD\u002Fskills\u002Fupgrade-php","---\nname: upgrade-php\ndescription: \"PHP Upgrade Assistant. Use when upgrading PHP version, fixing deprecations for a target PHP version, or scanning for PHP compatibility issues.\"\n---\n\n# PHP Upgrade Assistant\n\nHelps upgrade a PHP project to a target PHP version by scanning for deprecations,\nreporting issues, applying automated fixes after confirmation, and verifying the result.\n\n## Activation and exit\n\n- **Enter** when the user asks to:\n  - Upgrade to a specific PHP version (e.g., \"upgrade to PHP 8.4\")\n  - Fix PHP deprecations or compatibility issues\n  - Scan for PHP version-related problems\n- **Exit** when all identified issues are resolved\u002Ftriaged, or the user cancels.\n\n## Phase 1: Pre-check\n\n### 1. Confirm target version\n\nAsk the user for the **target PHP version** if not already stated.\n\n### 2. Detect current PHP configuration\n\n```\nget_php_project_config()\n```\n\nThis returns the configured PHP language level, interpreter details (name, path, local\u002Fremote),\nand runtime information (exact version, loaded extensions, debuggers). Use it to determine the\ncurrent PHP version the project is targeting.\n\n### 3. Check Composer project\n\n```\nget_composer_dependencies()\n```\n\nIf no packages are returned, warn: *\"No composer.json found. Proceeding with code-only scan.\"*\n\n### 4. Confirm PHP version constraint\n\n```\nget_file_text_by_path(pathInProject: \"composer.json\")\n```\n\nLook for `\"require\": { \"php\": \"...\" }` and `config.platform.php`.\nReport to the user: **Current: PHP >=X.Y → Target: PHP Z.W**\n\n## Phase 2: Discovery (Scan)\n\nScan the project to build a complete issue inventory. **Do not fix anything yet.**\n\n### Step 1: Find PHP files\n\n```\nfind_files_by_glob(globPattern: \"**\u002F*.php\")\n```\n\nExclude `vendor\u002F` from scanning. For large projects (>200 files), scan `src\u002F`, `app\u002F` first, then `tests\u002F` separately.\n\n### Step 2: Run deprecation inspections on each file\n\n```\nget_inspections(\n  filePath: \"\u003Crelative-path>\",\n  minSeverity: \"WEAK_WARNING\"\n)\n```\n\nCommon deprecation-related problems will have descriptions mentioning:\n- Deprecated function\u002Fmethod usage\n- PHP version-specific language level issues\n- Deprecated string interpolation syntax (`${}`)\n- Deprecated partially-supported callables\n- Deprecated `implode()` argument order\n- Deprecated serializable usage\n- Deprecated cast expressions\n\n### Step 3: Supplementary structural search (optional)\n\nFor patterns inspections may miss, use structural search:\n\n```\n# Dynamic properties (deprecated in PHP 8.2)\nsearch_structural(\n  pattern: \"$obj$->$prop$ = $val$\",\n  fileType: \"PHP\",\n  maxResults: 50\n)\n```\n\n**Pattern syntax**: Use `$name$` for template variables (e.g., `$a$->$b$()` matches any method\ncall on any object). Use `$a${2,5}` for count constraints, `$a$+` for one-or-more, `$a$*` for\nzero-or-more.\n\n### Step 4: Build and present inventory\n\nCategorize all discovered issues:\n\n| Priority | Category                            | Count | Auto-fixable |\n|----------|-------------------------------------|-------|--------------|\n| **P0**   | Errors (breaking in target version) | N     | Y\u002FN          |\n| **P1**   | Deprecations (removed in target)    | N     | Y\u002FN          |\n| **P2**   | Deprecations (warned in target)     | N     | Y\u002FN          |\n\nPresent this table to the user. **Wait for explicit confirmation before proceeding to fixes.**\n\n## Phase 3: Fix\n\nApply fixes only after user confirmation. Process in priority order: P0 → P1 → P2.\n\n### Auto-fixes (quick fix available)\n\nFor each problem where `quickFixes` is non-empty:\n\n```\napply_quick_fix(\n  filePath: \"\u003Cpath>\",\n  line: \u003Cline>,\n  column: \u003Ccolumn>,\n  quickFixName: \"\u003CquickFixes[0].name>\"\n)\n```\n\n**Strategy:**\n\n1. Process one file at a time — apply all fixes for that file before moving on.\n2. After all fixes in a file, re-scan it to verify fixes took effect:\n   ```\n   get_inspections(filePath: \"\u003Cpath>\", minSeverity: \"WEAK_WARNING\")\n   ```\n3. If re-scan shows new issues, attempt to fix (max 3 iterations per file).\n\n### Manual fixes (no quick fix available)\n\nWhen `quickFixes` is empty:\n\n1. Read the problem `description` — it usually names the replacement.\n2. Read the file context with `get_file_text_by_path`.\n3. Apply the fix with `replace_text_in_file`.\n\nCommon manual fix patterns:\n\n| Deprecation                         | Before                       | After                         |\n|-------------------------------------|------------------------------|-------------------------------|\n| Implicitly nullable params (8.4)    | `function f(Type $p = null)` | `function f(?Type $p = null)` |\n| `${}` interpolation (8.2)           | `\"Hello ${name}\"`            | `\"Hello {$name}\"`             |\n| Partially-supported callables (8.2) | `$c = \"self::method\"`        | `$c = self::method(...)`      |\n\nIf no replacement is documented, add a `\u002F\u002F TODO: PHP \u003Ctarget> - \u003Cdescription>` comment\nand include in the \"Remaining\" report.\n\n### Update composer.json\n\nAfter code fixes, update the PHP version constraint:\n\n```\nreplace_text_in_file(\n  pathInProject: \"composer.json\",\n  oldText: \"\\\"php\\\": \\\">=8.1\\\"\",\n  newText: \"\\\"php\\\": \\\">=8.4\\\"\"\n)\n```\n\n**Do NOT run `composer update` automatically.** Advise the user to run it manually.\n\n## Phase 4: Verify\n\n### 1. Re-scan modified files\n\nRe-run `get_inspections` on all modified files with `minSeverity: \"WEAK_WARNING\"`.\nConfirm zero remaining deprecation issues.\n\n### 2. Suggest test run\n\nCheck for available test configurations:\n\n```\nget_run_configurations()\n```\n\nSuggest the user run their test suite. Do not execute tests automatically unless\nthe user explicitly asks.\n\n### 3. Final report\n\n```\nPHP Upgrade Summary: X.Y → Z.W\n────────────────────────────────\nFiles scanned:    N\nIssues found:     M\nAuto-fixed:       A\nManually fixed:   B\nRemaining:        C (needs manual review)\ncomposer.json:    Updated \u002F Not updated\n\nNext steps:\n1. Run `composer update` to validate dependency compatibility\n2. Run your test suite\n3. Review files listed under \"Remaining\"\n```\n\n## Edge cases\n\n| Case                           | Handling                                                      |\n|--------------------------------|---------------------------------------------------------------|\n| **No quick fix available**     | Apply manual fix or add TODO comment                          |\n| **Breaking changes (P0)**      | Fix these first — code will fail at runtime                   |\n| **Inspection timeout**         | Re-run with longer `timeout` or narrow to subdirectory        |\n| **Large project (>500 files)** | Scan in batches of 50; offer to scope to specific directories |\n| **Multiple composer.json**     | Ask user which sub-project to upgrade                         |\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,53,60,104,110,117,129,135,148,153,159,168,179,185,194,220,226,236,242,251,288,294,303,308,362,368,373,382,432,438,443,555,565,571,576,582,595,604,612,640,646,658,699,704,814,827,833,838,847,865,871,877,898,904,909,918,923,929,938,944],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"php-upgrade-assistant",[44],{"type":45,"value":46},"text","PHP Upgrade Assistant",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51],{"type":45,"value":52},"Helps upgrade a PHP project to a target PHP version by scanning for deprecations,\nreporting issues, applying automated fixes after confirmation, and verifying the result.",{"type":39,"tag":54,"props":55,"children":57},"h2",{"id":56},"activation-and-exit",[58],{"type":45,"value":59},"Activation and exit",{"type":39,"tag":61,"props":62,"children":63},"ul",{},[64,94],{"type":39,"tag":65,"props":66,"children":67},"li",{},[68,74,76],{"type":39,"tag":69,"props":70,"children":71},"strong",{},[72],{"type":45,"value":73},"Enter",{"type":45,"value":75}," when the user asks to:\n",{"type":39,"tag":61,"props":77,"children":78},{},[79,84,89],{"type":39,"tag":65,"props":80,"children":81},{},[82],{"type":45,"value":83},"Upgrade to a specific PHP version (e.g., \"upgrade to PHP 8.4\")",{"type":39,"tag":65,"props":85,"children":86},{},[87],{"type":45,"value":88},"Fix PHP deprecations or compatibility issues",{"type":39,"tag":65,"props":90,"children":91},{},[92],{"type":45,"value":93},"Scan for PHP version-related problems",{"type":39,"tag":65,"props":95,"children":96},{},[97,102],{"type":39,"tag":69,"props":98,"children":99},{},[100],{"type":45,"value":101},"Exit",{"type":45,"value":103}," when all identified issues are resolved\u002Ftriaged, or the user cancels.",{"type":39,"tag":54,"props":105,"children":107},{"id":106},"phase-1-pre-check",[108],{"type":45,"value":109},"Phase 1: Pre-check",{"type":39,"tag":111,"props":112,"children":114},"h3",{"id":113},"_1-confirm-target-version",[115],{"type":45,"value":116},"1. Confirm target version",{"type":39,"tag":48,"props":118,"children":119},{},[120,122,127],{"type":45,"value":121},"Ask the user for the ",{"type":39,"tag":69,"props":123,"children":124},{},[125],{"type":45,"value":126},"target PHP version",{"type":45,"value":128}," if not already stated.",{"type":39,"tag":111,"props":130,"children":132},{"id":131},"_2-detect-current-php-configuration",[133],{"type":45,"value":134},"2. Detect current PHP configuration",{"type":39,"tag":136,"props":137,"children":141},"pre",{"className":138,"code":140,"language":45},[139],"language-text","get_php_project_config()\n",[142],{"type":39,"tag":143,"props":144,"children":146},"code",{"__ignoreMap":145},"",[147],{"type":45,"value":140},{"type":39,"tag":48,"props":149,"children":150},{},[151],{"type":45,"value":152},"This returns the configured PHP language level, interpreter details (name, path, local\u002Fremote),\nand runtime information (exact version, loaded extensions, debuggers). Use it to determine the\ncurrent PHP version the project is targeting.",{"type":39,"tag":111,"props":154,"children":156},{"id":155},"_3-check-composer-project",[157],{"type":45,"value":158},"3. Check Composer project",{"type":39,"tag":136,"props":160,"children":163},{"className":161,"code":162,"language":45},[139],"get_composer_dependencies()\n",[164],{"type":39,"tag":143,"props":165,"children":166},{"__ignoreMap":145},[167],{"type":45,"value":162},{"type":39,"tag":48,"props":169,"children":170},{},[171,173],{"type":45,"value":172},"If no packages are returned, warn: ",{"type":39,"tag":174,"props":175,"children":176},"em",{},[177],{"type":45,"value":178},"\"No composer.json found. Proceeding with code-only scan.\"",{"type":39,"tag":111,"props":180,"children":182},{"id":181},"_4-confirm-php-version-constraint",[183],{"type":45,"value":184},"4. Confirm PHP version constraint",{"type":39,"tag":136,"props":186,"children":189},{"className":187,"code":188,"language":45},[139],"get_file_text_by_path(pathInProject: \"composer.json\")\n",[190],{"type":39,"tag":143,"props":191,"children":192},{"__ignoreMap":145},[193],{"type":45,"value":188},{"type":39,"tag":48,"props":195,"children":196},{},[197,199,205,207,213,215],{"type":45,"value":198},"Look for ",{"type":39,"tag":143,"props":200,"children":202},{"className":201},[],[203],{"type":45,"value":204},"\"require\": { \"php\": \"...\" }",{"type":45,"value":206}," and ",{"type":39,"tag":143,"props":208,"children":210},{"className":209},[],[211],{"type":45,"value":212},"config.platform.php",{"type":45,"value":214},".\nReport to the user: ",{"type":39,"tag":69,"props":216,"children":217},{},[218],{"type":45,"value":219},"Current: PHP >=X.Y → Target: PHP Z.W",{"type":39,"tag":54,"props":221,"children":223},{"id":222},"phase-2-discovery-scan",[224],{"type":45,"value":225},"Phase 2: Discovery (Scan)",{"type":39,"tag":48,"props":227,"children":228},{},[229,231],{"type":45,"value":230},"Scan the project to build a complete issue inventory. ",{"type":39,"tag":69,"props":232,"children":233},{},[234],{"type":45,"value":235},"Do not fix anything yet.",{"type":39,"tag":111,"props":237,"children":239},{"id":238},"step-1-find-php-files",[240],{"type":45,"value":241},"Step 1: Find PHP files",{"type":39,"tag":136,"props":243,"children":246},{"className":244,"code":245,"language":45},[139],"find_files_by_glob(globPattern: \"**\u002F*.php\")\n",[247],{"type":39,"tag":143,"props":248,"children":249},{"__ignoreMap":145},[250],{"type":45,"value":245},{"type":39,"tag":48,"props":252,"children":253},{},[254,256,262,264,270,272,278,280,286],{"type":45,"value":255},"Exclude ",{"type":39,"tag":143,"props":257,"children":259},{"className":258},[],[260],{"type":45,"value":261},"vendor\u002F",{"type":45,"value":263}," from scanning. For large projects (>200 files), scan ",{"type":39,"tag":143,"props":265,"children":267},{"className":266},[],[268],{"type":45,"value":269},"src\u002F",{"type":45,"value":271},", ",{"type":39,"tag":143,"props":273,"children":275},{"className":274},[],[276],{"type":45,"value":277},"app\u002F",{"type":45,"value":279}," first, then ",{"type":39,"tag":143,"props":281,"children":283},{"className":282},[],[284],{"type":45,"value":285},"tests\u002F",{"type":45,"value":287}," separately.",{"type":39,"tag":111,"props":289,"children":291},{"id":290},"step-2-run-deprecation-inspections-on-each-file",[292],{"type":45,"value":293},"Step 2: Run deprecation inspections on each file",{"type":39,"tag":136,"props":295,"children":298},{"className":296,"code":297,"language":45},[139],"get_inspections(\n  filePath: \"\u003Crelative-path>\",\n  minSeverity: \"WEAK_WARNING\"\n)\n",[299],{"type":39,"tag":143,"props":300,"children":301},{"__ignoreMap":145},[302],{"type":45,"value":297},{"type":39,"tag":48,"props":304,"children":305},{},[306],{"type":45,"value":307},"Common deprecation-related problems will have descriptions mentioning:",{"type":39,"tag":61,"props":309,"children":310},{},[311,316,321,334,339,352,357],{"type":39,"tag":65,"props":312,"children":313},{},[314],{"type":45,"value":315},"Deprecated function\u002Fmethod usage",{"type":39,"tag":65,"props":317,"children":318},{},[319],{"type":45,"value":320},"PHP version-specific language level issues",{"type":39,"tag":65,"props":322,"children":323},{},[324,326,332],{"type":45,"value":325},"Deprecated string interpolation syntax (",{"type":39,"tag":143,"props":327,"children":329},{"className":328},[],[330],{"type":45,"value":331},"${}",{"type":45,"value":333},")",{"type":39,"tag":65,"props":335,"children":336},{},[337],{"type":45,"value":338},"Deprecated partially-supported callables",{"type":39,"tag":65,"props":340,"children":341},{},[342,344,350],{"type":45,"value":343},"Deprecated ",{"type":39,"tag":143,"props":345,"children":347},{"className":346},[],[348],{"type":45,"value":349},"implode()",{"type":45,"value":351}," argument order",{"type":39,"tag":65,"props":353,"children":354},{},[355],{"type":45,"value":356},"Deprecated serializable usage",{"type":39,"tag":65,"props":358,"children":359},{},[360],{"type":45,"value":361},"Deprecated cast expressions",{"type":39,"tag":111,"props":363,"children":365},{"id":364},"step-3-supplementary-structural-search-optional",[366],{"type":45,"value":367},"Step 3: Supplementary structural search (optional)",{"type":39,"tag":48,"props":369,"children":370},{},[371],{"type":45,"value":372},"For patterns inspections may miss, use structural search:",{"type":39,"tag":136,"props":374,"children":377},{"className":375,"code":376,"language":45},[139],"# Dynamic properties (deprecated in PHP 8.2)\nsearch_structural(\n  pattern: \"$obj$->$prop$ = $val$\",\n  fileType: \"PHP\",\n  maxResults: 50\n)\n",[378],{"type":39,"tag":143,"props":379,"children":380},{"__ignoreMap":145},[381],{"type":45,"value":376},{"type":39,"tag":48,"props":383,"children":384},{},[385,390,392,398,400,406,408,414,416,422,424,430],{"type":39,"tag":69,"props":386,"children":387},{},[388],{"type":45,"value":389},"Pattern syntax",{"type":45,"value":391},": Use ",{"type":39,"tag":143,"props":393,"children":395},{"className":394},[],[396],{"type":45,"value":397},"$name$",{"type":45,"value":399}," for template variables (e.g., ",{"type":39,"tag":143,"props":401,"children":403},{"className":402},[],[404],{"type":45,"value":405},"$a$->$b$()",{"type":45,"value":407}," matches any method\ncall on any object). Use ",{"type":39,"tag":143,"props":409,"children":411},{"className":410},[],[412],{"type":45,"value":413},"$a${2,5}",{"type":45,"value":415}," for count constraints, ",{"type":39,"tag":143,"props":417,"children":419},{"className":418},[],[420],{"type":45,"value":421},"$a$+",{"type":45,"value":423}," for one-or-more, ",{"type":39,"tag":143,"props":425,"children":427},{"className":426},[],[428],{"type":45,"value":429},"$a$*",{"type":45,"value":431}," for\nzero-or-more.",{"type":39,"tag":111,"props":433,"children":435},{"id":434},"step-4-build-and-present-inventory",[436],{"type":45,"value":437},"Step 4: Build and present inventory",{"type":39,"tag":48,"props":439,"children":440},{},[441],{"type":45,"value":442},"Categorize all discovered issues:",{"type":39,"tag":444,"props":445,"children":446},"table",{},[447,476],{"type":39,"tag":448,"props":449,"children":450},"thead",{},[451],{"type":39,"tag":452,"props":453,"children":454},"tr",{},[455,461,466,471],{"type":39,"tag":456,"props":457,"children":458},"th",{},[459],{"type":45,"value":460},"Priority",{"type":39,"tag":456,"props":462,"children":463},{},[464],{"type":45,"value":465},"Category",{"type":39,"tag":456,"props":467,"children":468},{},[469],{"type":45,"value":470},"Count",{"type":39,"tag":456,"props":472,"children":473},{},[474],{"type":45,"value":475},"Auto-fixable",{"type":39,"tag":477,"props":478,"children":479},"tbody",{},[480,507,531],{"type":39,"tag":452,"props":481,"children":482},{},[483,492,497,502],{"type":39,"tag":484,"props":485,"children":486},"td",{},[487],{"type":39,"tag":69,"props":488,"children":489},{},[490],{"type":45,"value":491},"P0",{"type":39,"tag":484,"props":493,"children":494},{},[495],{"type":45,"value":496},"Errors (breaking in target version)",{"type":39,"tag":484,"props":498,"children":499},{},[500],{"type":45,"value":501},"N",{"type":39,"tag":484,"props":503,"children":504},{},[505],{"type":45,"value":506},"Y\u002FN",{"type":39,"tag":452,"props":508,"children":509},{},[510,518,523,527],{"type":39,"tag":484,"props":511,"children":512},{},[513],{"type":39,"tag":69,"props":514,"children":515},{},[516],{"type":45,"value":517},"P1",{"type":39,"tag":484,"props":519,"children":520},{},[521],{"type":45,"value":522},"Deprecations (removed in target)",{"type":39,"tag":484,"props":524,"children":525},{},[526],{"type":45,"value":501},{"type":39,"tag":484,"props":528,"children":529},{},[530],{"type":45,"value":506},{"type":39,"tag":452,"props":532,"children":533},{},[534,542,547,551],{"type":39,"tag":484,"props":535,"children":536},{},[537],{"type":39,"tag":69,"props":538,"children":539},{},[540],{"type":45,"value":541},"P2",{"type":39,"tag":484,"props":543,"children":544},{},[545],{"type":45,"value":546},"Deprecations (warned in target)",{"type":39,"tag":484,"props":548,"children":549},{},[550],{"type":45,"value":501},{"type":39,"tag":484,"props":552,"children":553},{},[554],{"type":45,"value":506},{"type":39,"tag":48,"props":556,"children":557},{},[558,560],{"type":45,"value":559},"Present this table to the user. ",{"type":39,"tag":69,"props":561,"children":562},{},[563],{"type":45,"value":564},"Wait for explicit confirmation before proceeding to fixes.",{"type":39,"tag":54,"props":566,"children":568},{"id":567},"phase-3-fix",[569],{"type":45,"value":570},"Phase 3: Fix",{"type":39,"tag":48,"props":572,"children":573},{},[574],{"type":45,"value":575},"Apply fixes only after user confirmation. Process in priority order: P0 → P1 → P2.",{"type":39,"tag":111,"props":577,"children":579},{"id":578},"auto-fixes-quick-fix-available",[580],{"type":45,"value":581},"Auto-fixes (quick fix available)",{"type":39,"tag":48,"props":583,"children":584},{},[585,587,593],{"type":45,"value":586},"For each problem where ",{"type":39,"tag":143,"props":588,"children":590},{"className":589},[],[591],{"type":45,"value":592},"quickFixes",{"type":45,"value":594}," is non-empty:",{"type":39,"tag":136,"props":596,"children":599},{"className":597,"code":598,"language":45},[139],"apply_quick_fix(\n  filePath: \"\u003Cpath>\",\n  line: \u003Cline>,\n  column: \u003Ccolumn>,\n  quickFixName: \"\u003CquickFixes[0].name>\"\n)\n",[600],{"type":39,"tag":143,"props":601,"children":602},{"__ignoreMap":145},[603],{"type":45,"value":598},{"type":39,"tag":48,"props":605,"children":606},{},[607],{"type":39,"tag":69,"props":608,"children":609},{},[610],{"type":45,"value":611},"Strategy:",{"type":39,"tag":613,"props":614,"children":615},"ol",{},[616,621,635],{"type":39,"tag":65,"props":617,"children":618},{},[619],{"type":45,"value":620},"Process one file at a time — apply all fixes for that file before moving on.",{"type":39,"tag":65,"props":622,"children":623},{},[624,626],{"type":45,"value":625},"After all fixes in a file, re-scan it to verify fixes took effect:\n",{"type":39,"tag":136,"props":627,"children":630},{"className":628,"code":629,"language":45},[139],"get_inspections(filePath: \"\u003Cpath>\", minSeverity: \"WEAK_WARNING\")\n",[631],{"type":39,"tag":143,"props":632,"children":633},{"__ignoreMap":145},[634],{"type":45,"value":629},{"type":39,"tag":65,"props":636,"children":637},{},[638],{"type":45,"value":639},"If re-scan shows new issues, attempt to fix (max 3 iterations per file).",{"type":39,"tag":111,"props":641,"children":643},{"id":642},"manual-fixes-no-quick-fix-available",[644],{"type":45,"value":645},"Manual fixes (no quick fix available)",{"type":39,"tag":48,"props":647,"children":648},{},[649,651,656],{"type":45,"value":650},"When ",{"type":39,"tag":143,"props":652,"children":654},{"className":653},[],[655],{"type":45,"value":592},{"type":45,"value":657}," is empty:",{"type":39,"tag":613,"props":659,"children":660},{},[661,674,687],{"type":39,"tag":65,"props":662,"children":663},{},[664,666,672],{"type":45,"value":665},"Read the problem ",{"type":39,"tag":143,"props":667,"children":669},{"className":668},[],[670],{"type":45,"value":671},"description",{"type":45,"value":673}," — it usually names the replacement.",{"type":39,"tag":65,"props":675,"children":676},{},[677,679,685],{"type":45,"value":678},"Read the file context with ",{"type":39,"tag":143,"props":680,"children":682},{"className":681},[],[683],{"type":45,"value":684},"get_file_text_by_path",{"type":45,"value":686},".",{"type":39,"tag":65,"props":688,"children":689},{},[690,692,698],{"type":45,"value":691},"Apply the fix with ",{"type":39,"tag":143,"props":693,"children":695},{"className":694},[],[696],{"type":45,"value":697},"replace_text_in_file",{"type":45,"value":686},{"type":39,"tag":48,"props":700,"children":701},{},[702],{"type":45,"value":703},"Common manual fix patterns:",{"type":39,"tag":444,"props":705,"children":706},{},[707,728],{"type":39,"tag":448,"props":708,"children":709},{},[710],{"type":39,"tag":452,"props":711,"children":712},{},[713,718,723],{"type":39,"tag":456,"props":714,"children":715},{},[716],{"type":45,"value":717},"Deprecation",{"type":39,"tag":456,"props":719,"children":720},{},[721],{"type":45,"value":722},"Before",{"type":39,"tag":456,"props":724,"children":725},{},[726],{"type":45,"value":727},"After",{"type":39,"tag":477,"props":729,"children":730},{},[731,757,788],{"type":39,"tag":452,"props":732,"children":733},{},[734,739,748],{"type":39,"tag":484,"props":735,"children":736},{},[737],{"type":45,"value":738},"Implicitly nullable params (8.4)",{"type":39,"tag":484,"props":740,"children":741},{},[742],{"type":39,"tag":143,"props":743,"children":745},{"className":744},[],[746],{"type":45,"value":747},"function f(Type $p = null)",{"type":39,"tag":484,"props":749,"children":750},{},[751],{"type":39,"tag":143,"props":752,"children":754},{"className":753},[],[755],{"type":45,"value":756},"function f(?Type $p = null)",{"type":39,"tag":452,"props":758,"children":759},{},[760,770,779],{"type":39,"tag":484,"props":761,"children":762},{},[763,768],{"type":39,"tag":143,"props":764,"children":766},{"className":765},[],[767],{"type":45,"value":331},{"type":45,"value":769}," interpolation (8.2)",{"type":39,"tag":484,"props":771,"children":772},{},[773],{"type":39,"tag":143,"props":774,"children":776},{"className":775},[],[777],{"type":45,"value":778},"\"Hello ${name}\"",{"type":39,"tag":484,"props":780,"children":781},{},[782],{"type":39,"tag":143,"props":783,"children":785},{"className":784},[],[786],{"type":45,"value":787},"\"Hello {$name}\"",{"type":39,"tag":452,"props":789,"children":790},{},[791,796,805],{"type":39,"tag":484,"props":792,"children":793},{},[794],{"type":45,"value":795},"Partially-supported callables (8.2)",{"type":39,"tag":484,"props":797,"children":798},{},[799],{"type":39,"tag":143,"props":800,"children":802},{"className":801},[],[803],{"type":45,"value":804},"$c = \"self::method\"",{"type":39,"tag":484,"props":806,"children":807},{},[808],{"type":39,"tag":143,"props":809,"children":811},{"className":810},[],[812],{"type":45,"value":813},"$c = self::method(...)",{"type":39,"tag":48,"props":815,"children":816},{},[817,819,825],{"type":45,"value":818},"If no replacement is documented, add a ",{"type":39,"tag":143,"props":820,"children":822},{"className":821},[],[823],{"type":45,"value":824},"\u002F\u002F TODO: PHP \u003Ctarget> - \u003Cdescription>",{"type":45,"value":826}," comment\nand include in the \"Remaining\" report.",{"type":39,"tag":111,"props":828,"children":830},{"id":829},"update-composerjson",[831],{"type":45,"value":832},"Update composer.json",{"type":39,"tag":48,"props":834,"children":835},{},[836],{"type":45,"value":837},"After code fixes, update the PHP version constraint:",{"type":39,"tag":136,"props":839,"children":842},{"className":840,"code":841,"language":45},[139],"replace_text_in_file(\n  pathInProject: \"composer.json\",\n  oldText: \"\\\"php\\\": \\\">=8.1\\\"\",\n  newText: \"\\\"php\\\": \\\">=8.4\\\"\"\n)\n",[843],{"type":39,"tag":143,"props":844,"children":845},{"__ignoreMap":145},[846],{"type":45,"value":841},{"type":39,"tag":48,"props":848,"children":849},{},[850,863],{"type":39,"tag":69,"props":851,"children":852},{},[853,855,861],{"type":45,"value":854},"Do NOT run ",{"type":39,"tag":143,"props":856,"children":858},{"className":857},[],[859],{"type":45,"value":860},"composer update",{"type":45,"value":862}," automatically.",{"type":45,"value":864}," Advise the user to run it manually.",{"type":39,"tag":54,"props":866,"children":868},{"id":867},"phase-4-verify",[869],{"type":45,"value":870},"Phase 4: Verify",{"type":39,"tag":111,"props":872,"children":874},{"id":873},"_1-re-scan-modified-files",[875],{"type":45,"value":876},"1. Re-scan modified files",{"type":39,"tag":48,"props":878,"children":879},{},[880,882,888,890,896],{"type":45,"value":881},"Re-run ",{"type":39,"tag":143,"props":883,"children":885},{"className":884},[],[886],{"type":45,"value":887},"get_inspections",{"type":45,"value":889}," on all modified files with ",{"type":39,"tag":143,"props":891,"children":893},{"className":892},[],[894],{"type":45,"value":895},"minSeverity: \"WEAK_WARNING\"",{"type":45,"value":897},".\nConfirm zero remaining deprecation issues.",{"type":39,"tag":111,"props":899,"children":901},{"id":900},"_2-suggest-test-run",[902],{"type":45,"value":903},"2. Suggest test run",{"type":39,"tag":48,"props":905,"children":906},{},[907],{"type":45,"value":908},"Check for available test configurations:",{"type":39,"tag":136,"props":910,"children":913},{"className":911,"code":912,"language":45},[139],"get_run_configurations()\n",[914],{"type":39,"tag":143,"props":915,"children":916},{"__ignoreMap":145},[917],{"type":45,"value":912},{"type":39,"tag":48,"props":919,"children":920},{},[921],{"type":45,"value":922},"Suggest the user run their test suite. Do not execute tests automatically unless\nthe user explicitly asks.",{"type":39,"tag":111,"props":924,"children":926},{"id":925},"_3-final-report",[927],{"type":45,"value":928},"3. Final report",{"type":39,"tag":136,"props":930,"children":933},{"className":931,"code":932,"language":45},[139],"PHP Upgrade Summary: X.Y → Z.W\n────────────────────────────────\nFiles scanned:    N\nIssues found:     M\nAuto-fixed:       A\nManually fixed:   B\nRemaining:        C (needs manual review)\ncomposer.json:    Updated \u002F Not updated\n\nNext steps:\n1. Run `composer update` to validate dependency compatibility\n2. Run your test suite\n3. Review files listed under \"Remaining\"\n",[934],{"type":39,"tag":143,"props":935,"children":936},{"__ignoreMap":145},[937],{"type":45,"value":932},{"type":39,"tag":54,"props":939,"children":941},{"id":940},"edge-cases",[942],{"type":45,"value":943},"Edge cases",{"type":39,"tag":444,"props":945,"children":946},{},[947,963],{"type":39,"tag":448,"props":948,"children":949},{},[950],{"type":39,"tag":452,"props":951,"children":952},{},[953,958],{"type":39,"tag":456,"props":954,"children":955},{},[956],{"type":45,"value":957},"Case",{"type":39,"tag":456,"props":959,"children":960},{},[961],{"type":45,"value":962},"Handling",{"type":39,"tag":477,"props":964,"children":965},{},[966,982,998,1022,1038],{"type":39,"tag":452,"props":967,"children":968},{},[969,977],{"type":39,"tag":484,"props":970,"children":971},{},[972],{"type":39,"tag":69,"props":973,"children":974},{},[975],{"type":45,"value":976},"No quick fix available",{"type":39,"tag":484,"props":978,"children":979},{},[980],{"type":45,"value":981},"Apply manual fix or add TODO comment",{"type":39,"tag":452,"props":983,"children":984},{},[985,993],{"type":39,"tag":484,"props":986,"children":987},{},[988],{"type":39,"tag":69,"props":989,"children":990},{},[991],{"type":45,"value":992},"Breaking changes (P0)",{"type":39,"tag":484,"props":994,"children":995},{},[996],{"type":45,"value":997},"Fix these first — code will fail at runtime",{"type":39,"tag":452,"props":999,"children":1000},{},[1001,1009],{"type":39,"tag":484,"props":1002,"children":1003},{},[1004],{"type":39,"tag":69,"props":1005,"children":1006},{},[1007],{"type":45,"value":1008},"Inspection timeout",{"type":39,"tag":484,"props":1010,"children":1011},{},[1012,1014,1020],{"type":45,"value":1013},"Re-run with longer ",{"type":39,"tag":143,"props":1015,"children":1017},{"className":1016},[],[1018],{"type":45,"value":1019},"timeout",{"type":45,"value":1021}," or narrow to subdirectory",{"type":39,"tag":452,"props":1023,"children":1024},{},[1025,1033],{"type":39,"tag":484,"props":1026,"children":1027},{},[1028],{"type":39,"tag":69,"props":1029,"children":1030},{},[1031],{"type":45,"value":1032},"Large project (>500 files)",{"type":39,"tag":484,"props":1034,"children":1035},{},[1036],{"type":45,"value":1037},"Scan in batches of 50; offer to scope to specific directories",{"type":39,"tag":452,"props":1039,"children":1040},{},[1041,1049],{"type":39,"tag":484,"props":1042,"children":1043},{},[1044],{"type":39,"tag":69,"props":1045,"children":1046},{},[1047],{"type":45,"value":1048},"Multiple composer.json",{"type":39,"tag":484,"props":1050,"children":1051},{},[1052],{"type":45,"value":1053},"Ask user which sub-project to upgrade",{"items":1055,"total":1182},[1056,1074,1083,1092,1103,1113,1126,1135,1144,1154,1163,1172],{"slug":1057,"name":1057,"fn":1058,"description":1059,"org":1060,"tags":1061,"stars":1071,"repoUrl":1072,"updatedAt":1073},"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},[1062,1065,1068],{"name":1063,"slug":1064,"type":15},"Architecture","architecture",{"name":1066,"slug":1067,"type":15},"Configuration","configuration",{"name":1069,"slug":1070,"type":15},"Engineering","engineering",1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":1075,"name":1075,"fn":1076,"description":1077,"org":1078,"tags":1079,"stars":1071,"repoUrl":1072,"updatedAt":1082},"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},[1080,1081],{"name":1063,"slug":1064,"type":15},{"name":1069,"slug":1070,"type":15},"2026-07-17T06:04:48.066901",{"slug":1084,"name":1084,"fn":1085,"description":1086,"org":1087,"tags":1088,"stars":1071,"repoUrl":1072,"updatedAt":1091},"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},[1089,1090],{"name":1063,"slug":1064,"type":15},{"name":1069,"slug":1070,"type":15},"2026-07-13T06:45:21.757084",{"slug":1093,"name":1093,"fn":1094,"description":1095,"org":1096,"tags":1097,"stars":1071,"repoUrl":1072,"updatedAt":1102},"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},[1098,1099],{"name":1063,"slug":1064,"type":15},{"name":1100,"slug":1101,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":1104,"name":1104,"fn":1105,"description":1106,"org":1107,"tags":1108,"stars":1071,"repoUrl":1072,"updatedAt":1112},"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},[1109],{"name":1110,"slug":1111,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":1114,"name":1114,"fn":1115,"description":1116,"org":1117,"tags":1118,"stars":1071,"repoUrl":1072,"updatedAt":1125},"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},[1119,1122],{"name":1120,"slug":1121,"type":15},"Design","design",{"name":1123,"slug":1124,"type":15},"UI Components","ui-components","2026-07-23T05:41:56.638151",{"slug":1127,"name":1127,"fn":1128,"description":1129,"org":1130,"tags":1131,"stars":1071,"repoUrl":1072,"updatedAt":1134},"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},[1132,1133],{"name":1069,"slug":1070,"type":15},{"name":1123,"slug":1124,"type":15},"2026-07-23T05:41:49.666535",{"slug":1136,"name":1136,"fn":1137,"description":1138,"org":1139,"tags":1140,"stars":1071,"repoUrl":1072,"updatedAt":1143},"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},[1141,1142],{"name":1063,"slug":1064,"type":15},{"name":1069,"slug":1070,"type":15},"2026-07-13T06:44:59.507855",{"slug":1145,"name":1145,"fn":1146,"description":1147,"org":1148,"tags":1149,"stars":1071,"repoUrl":1072,"updatedAt":1153},"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},[1150,1151,1152],{"name":1063,"slug":1064,"type":15},{"name":1100,"slug":1101,"type":15},{"name":1069,"slug":1070,"type":15},"2026-07-17T06:06:58.042999",{"slug":1155,"name":1155,"fn":1156,"description":1157,"org":1158,"tags":1159,"stars":1071,"repoUrl":1072,"updatedAt":1162},"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},[1160,1161],{"name":1063,"slug":1064,"type":15},{"name":1069,"slug":1070,"type":15},"2026-07-23T05:41:48.692899",{"slug":1164,"name":1164,"fn":1165,"description":1166,"org":1167,"tags":1168,"stars":1071,"repoUrl":1072,"updatedAt":1171},"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},[1169,1170],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},"2026-07-13T06:45:20.372122",{"slug":1173,"name":1173,"fn":1174,"description":1175,"org":1176,"tags":1177,"stars":1071,"repoUrl":1072,"updatedAt":1181},"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},[1178],{"name":1179,"slug":1180,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188,{"items":1184,"total":26},[1185,1197,1209],{"slug":1186,"name":1186,"fn":1187,"description":1188,"org":1189,"tags":1190,"stars":22,"repoUrl":23,"updatedAt":1196},"php-code-review","review PHP code quality","Review PHP code using PhpStorm inspections. Use when editing PHP files, reviewing code quality, fixing PHP issues, or when asked about PHP best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1191,1194,1195],{"name":1192,"slug":1193,"type":15},"Code Review","code-review",{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},"2026-07-13T06:43:39.97355",{"slug":1198,"name":1198,"fn":1199,"description":1200,"org":1201,"tags":1202,"stars":22,"repoUrl":23,"updatedAt":1208},"php-project-guide","manage PHP project development environments","Foundational PHP project knowledge for AI agents. Use when working on a PHP project, setting up a PHP development environment, understanding PHP project structure, following PHP coding standards, running PHP tests, using Composer, or when guidance on PHP-specific tools and workflows in PhpStorm is needed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1203,1204,1207],{"name":1069,"slug":1070,"type":15},{"name":1205,"slug":1206,"type":15},"Local Development","local-development",{"name":13,"slug":14,"type":15},"2026-07-13T06:43:41.31459",{"slug":4,"name":4,"fn":5,"description":6,"org":1210,"tags":1211,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1212,1213,1214],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15}]