[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-php-project-guide":3,"mdc-4tunio-key":33,"related-repo-jetbrains-php-project-guide":1172,"related-org-jetbrains-php-project-guide":1206},{"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},"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},"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},"Local Development","local-development",{"name":20,"slug":21,"type":15},"Engineering","engineering",30,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fphpstorm-claude-marketplace","2026-07-13T06:43:41.31459",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\u002Fphp-project-guide","---\nname: php-project-guide\ndescription: >-\n  Foundational PHP project knowledge for AI agents. Use when working on a PHP\n  project, setting up a PHP development environment, understanding PHP project\n  structure, following PHP coding standards, running PHP tests, using Composer,\n  or when guidance on PHP-specific tools and workflows in PhpStorm is needed.\n---\n\n# PHP Project Guide\n\nFoundational knowledge for working effectively on any PHP project in PhpStorm. Provides project detection, coding standards, testing patterns, framework guidance, and MCP tool usage.\n\n## Quick Start: First Interaction with a PHP Project\n\nRun these steps when encountering a new PHP project for the first time.\n\n### 1. Detect PHP environment\n\n```\nget_php_project_config()\n```\n\nReturns the configured PHP language level, interpreter details (name, path, local\u002Fremote), and runtime information (exact PHP version, loaded extensions, php.ini path, debuggers). Use this to understand the PHP environment before generating code.\n\n### 2. Identify dependencies and framework\n\n```\nget_composer_dependencies()\n```\n\nThis returns all installed packages with exact versions from `composer.lock`. Use it to determine:\n- **Framework**: `laravel\u002Fframework`, `symfony\u002Fframework-bundle`, or neither\n- **Test framework**: `phpunit\u002Fphpunit`, `pestphp\u002Fpest`, `codeception\u002Fcodeception`\n- **Static analysis**: `phpstan\u002Fphpstan`, `vimeo\u002Fpsalm`\n- **Code style**: `friendsofphp\u002Fphp-cs-fixer`, `squizlabs\u002Fphp_codesniffer`\n\nUse the optional `nameFilter` glob parameter to search for specific packages (e.g., `nameFilter: \"laravel\u002F*\"`).\n\n### 3. Route to framework-specific guidance\n\n| Dependency | Project Type | Reference |\n|------------|-------------|-----------|\n| `laravel\u002Fframework` | Laravel | See `references\u002Fframework-laravel.md` |\n| `symfony\u002Fframework-bundle` | Symfony | See `references\u002Fframework-symfony.md` |\n| Neither | Generic PHP | See `references\u002Fphp-standards.md` |\n\n## PhpStorm MCP Tools Quick Reference\n\n### Code Analysis\n\n| Tool | When to Use |\n|------|-------------|\n| `get_inspections` | After edits, for code review, to find problems with available quick fixes |\n| `apply_quick_fix` | To resolve inspection problems automatically |\n| `get_file_problems` | Quick error\u002Fwarning check on any file type (no quick fixes returned) |\n| `build_project` | Trigger project build and get compilation errors |\n\n### Code Search\n\n| Tool | When to Use |\n|------|-------------|\n| `search_structural` | To find code patterns semantically using SSR (requires `fileType: \"PHP\"`) |\n| `get_structural_patterns` | To discover predefined PHP search patterns by category |\n| `search_text` | Fast text substring search across project files |\n| `search_regex` | Regex search across project files with match coordinates |\n| `search_symbol` | Semantic symbol lookup (classes, methods, fields) |\n| `search_file` | Find files by glob pattern |\n| `find_files_by_name_keyword` | Fast file search by name substring (uses indexes) |\n| `find_files_by_glob` | Find files matching glob pattern recursively |\n\n### Code Intelligence\n\n| Tool | When to Use |\n|------|-------------|\n| `get_symbol_info` | Get Quick Documentation for a symbol at a specific position |\n| `rename_refactoring` | Safely rename a symbol across the entire project |\n| `get_php_project_config` | Get PHP language level, interpreter, extensions, runtime info |\n| `get_composer_dependencies` | Understand project dependencies, framework, and versions |\n\n### File Operations\n\n| Tool | When to Use |\n|------|-------------|\n| `read_file` | Read file with advanced modes (slice, lines, offsets, indentation) |\n| `get_file_text_by_path` | Read full file text by project-relative path |\n| `replace_text_in_file` | Targeted find-and-replace in files |\n| `create_new_file` | Create new files with content |\n| `reformat_file` | Apply IDE code formatting rules |\n\n### Execution\n\n| Tool | When to Use |\n|------|-------------|\n| `get_run_configurations` | List available run\u002Ftest configurations |\n| `execute_run_configuration` | Run a specific configuration and get results |\n| `execute_terminal_command` | Run shell commands in IDE terminal |\n\nSee `references\u002Fmcp-tools-reference.md` for detailed parameters and usage patterns.\n\n## Documentation Lookup\n\nWhen you need documentation beyond what these references provide:\n\n- **Context7 MCP**: Use `resolve-library-id` then `query-docs` for any PHP framework or library — returns up-to-date docs and code examples\n- **PHP official docs**: https:\u002F\u002Fwww.php.net\u002Fmanual\n- **PhpStorm help**: https:\u002F\u002Fwww.jetbrains.com\u002Fhelp\u002Fphpstorm\u002F\n- **phpstorm-stubs**: https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fphpstorm-stubs — PHP built-in function signatures and type info\n\n## Reference Documents\n\n| Reference | Content |\n|-----------|---------|\n| `references\u002Fproject-detection.md` | composer.json anatomy, PSR-4 autoloading, directory layouts |\n| `references\u002Fphp-standards.md` | PER\u002FPSR coding standards, PHP version features, anti-patterns |\n| `references\u002Ftesting-guide.md` | PHPUnit, Pest, running tests, common mistakes |\n| `references\u002Fframework-laravel.md` | Laravel directory structure, Eloquent, artisan, routes |\n| `references\u002Fframework-symfony.md` | Symfony directory structure, Doctrine, console, services |\n| `references\u002Fstatic-analysis.md` | PHPStan, Psalm, PHP CS Fixer, PHP CodeSniffer |\n| `references\u002Fcomposer-guide.md` | Composer commands, version constraints, autoloading |\n| `references\u002Fmcp-tools-reference.md` | Detailed PhpStorm MCP tool parameters and workflows |",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,46,52,59,64,71,84,89,95,104,117,222,243,249,358,364,370,460,466,630,636,724,730,835,841,912,924,930,935,1013,1019],{"type":39,"tag":40,"props":41,"children":42},"element","h1",{"id":4},[43],{"type":44,"value":45},"text","PHP Project Guide",{"type":39,"tag":47,"props":48,"children":49},"p",{},[50],{"type":44,"value":51},"Foundational knowledge for working effectively on any PHP project in PhpStorm. Provides project detection, coding standards, testing patterns, framework guidance, and MCP tool usage.",{"type":39,"tag":53,"props":54,"children":56},"h2",{"id":55},"quick-start-first-interaction-with-a-php-project",[57],{"type":44,"value":58},"Quick Start: First Interaction with a PHP Project",{"type":39,"tag":47,"props":60,"children":61},{},[62],{"type":44,"value":63},"Run these steps when encountering a new PHP project for the first time.",{"type":39,"tag":65,"props":66,"children":68},"h3",{"id":67},"_1-detect-php-environment",[69],{"type":44,"value":70},"1. Detect PHP environment",{"type":39,"tag":72,"props":73,"children":77},"pre",{"className":74,"code":76,"language":44},[75],"language-text","get_php_project_config()\n",[78],{"type":39,"tag":79,"props":80,"children":82},"code",{"__ignoreMap":81},"",[83],{"type":44,"value":76},{"type":39,"tag":47,"props":85,"children":86},{},[87],{"type":44,"value":88},"Returns the configured PHP language level, interpreter details (name, path, local\u002Fremote), and runtime information (exact PHP version, loaded extensions, php.ini path, debuggers). Use this to understand the PHP environment before generating code.",{"type":39,"tag":65,"props":90,"children":92},{"id":91},"_2-identify-dependencies-and-framework",[93],{"type":44,"value":94},"2. Identify dependencies and framework",{"type":39,"tag":72,"props":96,"children":99},{"className":97,"code":98,"language":44},[75],"get_composer_dependencies()\n",[100],{"type":39,"tag":79,"props":101,"children":102},{"__ignoreMap":81},[103],{"type":44,"value":98},{"type":39,"tag":47,"props":105,"children":106},{},[107,109,115],{"type":44,"value":108},"This returns all installed packages with exact versions from ",{"type":39,"tag":79,"props":110,"children":112},{"className":111},[],[113],{"type":44,"value":114},"composer.lock",{"type":44,"value":116},". Use it to determine:",{"type":39,"tag":118,"props":119,"children":120},"ul",{},[121,149,178,200],{"type":39,"tag":122,"props":123,"children":124},"li",{},[125,131,133,139,141,147],{"type":39,"tag":126,"props":127,"children":128},"strong",{},[129],{"type":44,"value":130},"Framework",{"type":44,"value":132},": ",{"type":39,"tag":79,"props":134,"children":136},{"className":135},[],[137],{"type":44,"value":138},"laravel\u002Fframework",{"type":44,"value":140},", ",{"type":39,"tag":79,"props":142,"children":144},{"className":143},[],[145],{"type":44,"value":146},"symfony\u002Fframework-bundle",{"type":44,"value":148},", or neither",{"type":39,"tag":122,"props":150,"children":151},{},[152,157,158,164,165,171,172],{"type":39,"tag":126,"props":153,"children":154},{},[155],{"type":44,"value":156},"Test framework",{"type":44,"value":132},{"type":39,"tag":79,"props":159,"children":161},{"className":160},[],[162],{"type":44,"value":163},"phpunit\u002Fphpunit",{"type":44,"value":140},{"type":39,"tag":79,"props":166,"children":168},{"className":167},[],[169],{"type":44,"value":170},"pestphp\u002Fpest",{"type":44,"value":140},{"type":39,"tag":79,"props":173,"children":175},{"className":174},[],[176],{"type":44,"value":177},"codeception\u002Fcodeception",{"type":39,"tag":122,"props":179,"children":180},{},[181,186,187,193,194],{"type":39,"tag":126,"props":182,"children":183},{},[184],{"type":44,"value":185},"Static analysis",{"type":44,"value":132},{"type":39,"tag":79,"props":188,"children":190},{"className":189},[],[191],{"type":44,"value":192},"phpstan\u002Fphpstan",{"type":44,"value":140},{"type":39,"tag":79,"props":195,"children":197},{"className":196},[],[198],{"type":44,"value":199},"vimeo\u002Fpsalm",{"type":39,"tag":122,"props":201,"children":202},{},[203,208,209,215,216],{"type":39,"tag":126,"props":204,"children":205},{},[206],{"type":44,"value":207},"Code style",{"type":44,"value":132},{"type":39,"tag":79,"props":210,"children":212},{"className":211},[],[213],{"type":44,"value":214},"friendsofphp\u002Fphp-cs-fixer",{"type":44,"value":140},{"type":39,"tag":79,"props":217,"children":219},{"className":218},[],[220],{"type":44,"value":221},"squizlabs\u002Fphp_codesniffer",{"type":39,"tag":47,"props":223,"children":224},{},[225,227,233,235,241],{"type":44,"value":226},"Use the optional ",{"type":39,"tag":79,"props":228,"children":230},{"className":229},[],[231],{"type":44,"value":232},"nameFilter",{"type":44,"value":234}," glob parameter to search for specific packages (e.g., ",{"type":39,"tag":79,"props":236,"children":238},{"className":237},[],[239],{"type":44,"value":240},"nameFilter: \"laravel\u002F*\"",{"type":44,"value":242},").",{"type":39,"tag":65,"props":244,"children":246},{"id":245},"_3-route-to-framework-specific-guidance",[247],{"type":44,"value":248},"3. Route to framework-specific guidance",{"type":39,"tag":250,"props":251,"children":252},"table",{},[253,277],{"type":39,"tag":254,"props":255,"children":256},"thead",{},[257],{"type":39,"tag":258,"props":259,"children":260},"tr",{},[261,267,272],{"type":39,"tag":262,"props":263,"children":264},"th",{},[265],{"type":44,"value":266},"Dependency",{"type":39,"tag":262,"props":268,"children":269},{},[270],{"type":44,"value":271},"Project Type",{"type":39,"tag":262,"props":273,"children":274},{},[275],{"type":44,"value":276},"Reference",{"type":39,"tag":278,"props":279,"children":280},"tbody",{},[281,309,335],{"type":39,"tag":258,"props":282,"children":283},{},[284,293,298],{"type":39,"tag":285,"props":286,"children":287},"td",{},[288],{"type":39,"tag":79,"props":289,"children":291},{"className":290},[],[292],{"type":44,"value":138},{"type":39,"tag":285,"props":294,"children":295},{},[296],{"type":44,"value":297},"Laravel",{"type":39,"tag":285,"props":299,"children":300},{},[301,303],{"type":44,"value":302},"See ",{"type":39,"tag":79,"props":304,"children":306},{"className":305},[],[307],{"type":44,"value":308},"references\u002Fframework-laravel.md",{"type":39,"tag":258,"props":310,"children":311},{},[312,320,325],{"type":39,"tag":285,"props":313,"children":314},{},[315],{"type":39,"tag":79,"props":316,"children":318},{"className":317},[],[319],{"type":44,"value":146},{"type":39,"tag":285,"props":321,"children":322},{},[323],{"type":44,"value":324},"Symfony",{"type":39,"tag":285,"props":326,"children":327},{},[328,329],{"type":44,"value":302},{"type":39,"tag":79,"props":330,"children":332},{"className":331},[],[333],{"type":44,"value":334},"references\u002Fframework-symfony.md",{"type":39,"tag":258,"props":336,"children":337},{},[338,343,348],{"type":39,"tag":285,"props":339,"children":340},{},[341],{"type":44,"value":342},"Neither",{"type":39,"tag":285,"props":344,"children":345},{},[346],{"type":44,"value":347},"Generic PHP",{"type":39,"tag":285,"props":349,"children":350},{},[351,352],{"type":44,"value":302},{"type":39,"tag":79,"props":353,"children":355},{"className":354},[],[356],{"type":44,"value":357},"references\u002Fphp-standards.md",{"type":39,"tag":53,"props":359,"children":361},{"id":360},"phpstorm-mcp-tools-quick-reference",[362],{"type":44,"value":363},"PhpStorm MCP Tools Quick Reference",{"type":39,"tag":65,"props":365,"children":367},{"id":366},"code-analysis",[368],{"type":44,"value":369},"Code Analysis",{"type":39,"tag":250,"props":371,"children":372},{},[373,389],{"type":39,"tag":254,"props":374,"children":375},{},[376],{"type":39,"tag":258,"props":377,"children":378},{},[379,384],{"type":39,"tag":262,"props":380,"children":381},{},[382],{"type":44,"value":383},"Tool",{"type":39,"tag":262,"props":385,"children":386},{},[387],{"type":44,"value":388},"When to Use",{"type":39,"tag":278,"props":390,"children":391},{},[392,409,426,443],{"type":39,"tag":258,"props":393,"children":394},{},[395,404],{"type":39,"tag":285,"props":396,"children":397},{},[398],{"type":39,"tag":79,"props":399,"children":401},{"className":400},[],[402],{"type":44,"value":403},"get_inspections",{"type":39,"tag":285,"props":405,"children":406},{},[407],{"type":44,"value":408},"After edits, for code review, to find problems with available quick fixes",{"type":39,"tag":258,"props":410,"children":411},{},[412,421],{"type":39,"tag":285,"props":413,"children":414},{},[415],{"type":39,"tag":79,"props":416,"children":418},{"className":417},[],[419],{"type":44,"value":420},"apply_quick_fix",{"type":39,"tag":285,"props":422,"children":423},{},[424],{"type":44,"value":425},"To resolve inspection problems automatically",{"type":39,"tag":258,"props":427,"children":428},{},[429,438],{"type":39,"tag":285,"props":430,"children":431},{},[432],{"type":39,"tag":79,"props":433,"children":435},{"className":434},[],[436],{"type":44,"value":437},"get_file_problems",{"type":39,"tag":285,"props":439,"children":440},{},[441],{"type":44,"value":442},"Quick error\u002Fwarning check on any file type (no quick fixes returned)",{"type":39,"tag":258,"props":444,"children":445},{},[446,455],{"type":39,"tag":285,"props":447,"children":448},{},[449],{"type":39,"tag":79,"props":450,"children":452},{"className":451},[],[453],{"type":44,"value":454},"build_project",{"type":39,"tag":285,"props":456,"children":457},{},[458],{"type":44,"value":459},"Trigger project build and get compilation errors",{"type":39,"tag":65,"props":461,"children":463},{"id":462},"code-search",[464],{"type":44,"value":465},"Code Search",{"type":39,"tag":250,"props":467,"children":468},{},[469,483],{"type":39,"tag":254,"props":470,"children":471},{},[472],{"type":39,"tag":258,"props":473,"children":474},{},[475,479],{"type":39,"tag":262,"props":476,"children":477},{},[478],{"type":44,"value":383},{"type":39,"tag":262,"props":480,"children":481},{},[482],{"type":44,"value":388},{"type":39,"tag":278,"props":484,"children":485},{},[486,511,528,545,562,579,596,613],{"type":39,"tag":258,"props":487,"children":488},{},[489,498],{"type":39,"tag":285,"props":490,"children":491},{},[492],{"type":39,"tag":79,"props":493,"children":495},{"className":494},[],[496],{"type":44,"value":497},"search_structural",{"type":39,"tag":285,"props":499,"children":500},{},[501,503,509],{"type":44,"value":502},"To find code patterns semantically using SSR (requires ",{"type":39,"tag":79,"props":504,"children":506},{"className":505},[],[507],{"type":44,"value":508},"fileType: \"PHP\"",{"type":44,"value":510},")",{"type":39,"tag":258,"props":512,"children":513},{},[514,523],{"type":39,"tag":285,"props":515,"children":516},{},[517],{"type":39,"tag":79,"props":518,"children":520},{"className":519},[],[521],{"type":44,"value":522},"get_structural_patterns",{"type":39,"tag":285,"props":524,"children":525},{},[526],{"type":44,"value":527},"To discover predefined PHP search patterns by category",{"type":39,"tag":258,"props":529,"children":530},{},[531,540],{"type":39,"tag":285,"props":532,"children":533},{},[534],{"type":39,"tag":79,"props":535,"children":537},{"className":536},[],[538],{"type":44,"value":539},"search_text",{"type":39,"tag":285,"props":541,"children":542},{},[543],{"type":44,"value":544},"Fast text substring search across project files",{"type":39,"tag":258,"props":546,"children":547},{},[548,557],{"type":39,"tag":285,"props":549,"children":550},{},[551],{"type":39,"tag":79,"props":552,"children":554},{"className":553},[],[555],{"type":44,"value":556},"search_regex",{"type":39,"tag":285,"props":558,"children":559},{},[560],{"type":44,"value":561},"Regex search across project files with match coordinates",{"type":39,"tag":258,"props":563,"children":564},{},[565,574],{"type":39,"tag":285,"props":566,"children":567},{},[568],{"type":39,"tag":79,"props":569,"children":571},{"className":570},[],[572],{"type":44,"value":573},"search_symbol",{"type":39,"tag":285,"props":575,"children":576},{},[577],{"type":44,"value":578},"Semantic symbol lookup (classes, methods, fields)",{"type":39,"tag":258,"props":580,"children":581},{},[582,591],{"type":39,"tag":285,"props":583,"children":584},{},[585],{"type":39,"tag":79,"props":586,"children":588},{"className":587},[],[589],{"type":44,"value":590},"search_file",{"type":39,"tag":285,"props":592,"children":593},{},[594],{"type":44,"value":595},"Find files by glob pattern",{"type":39,"tag":258,"props":597,"children":598},{},[599,608],{"type":39,"tag":285,"props":600,"children":601},{},[602],{"type":39,"tag":79,"props":603,"children":605},{"className":604},[],[606],{"type":44,"value":607},"find_files_by_name_keyword",{"type":39,"tag":285,"props":609,"children":610},{},[611],{"type":44,"value":612},"Fast file search by name substring (uses indexes)",{"type":39,"tag":258,"props":614,"children":615},{},[616,625],{"type":39,"tag":285,"props":617,"children":618},{},[619],{"type":39,"tag":79,"props":620,"children":622},{"className":621},[],[623],{"type":44,"value":624},"find_files_by_glob",{"type":39,"tag":285,"props":626,"children":627},{},[628],{"type":44,"value":629},"Find files matching glob pattern recursively",{"type":39,"tag":65,"props":631,"children":633},{"id":632},"code-intelligence",[634],{"type":44,"value":635},"Code Intelligence",{"type":39,"tag":250,"props":637,"children":638},{},[639,653],{"type":39,"tag":254,"props":640,"children":641},{},[642],{"type":39,"tag":258,"props":643,"children":644},{},[645,649],{"type":39,"tag":262,"props":646,"children":647},{},[648],{"type":44,"value":383},{"type":39,"tag":262,"props":650,"children":651},{},[652],{"type":44,"value":388},{"type":39,"tag":278,"props":654,"children":655},{},[656,673,690,707],{"type":39,"tag":258,"props":657,"children":658},{},[659,668],{"type":39,"tag":285,"props":660,"children":661},{},[662],{"type":39,"tag":79,"props":663,"children":665},{"className":664},[],[666],{"type":44,"value":667},"get_symbol_info",{"type":39,"tag":285,"props":669,"children":670},{},[671],{"type":44,"value":672},"Get Quick Documentation for a symbol at a specific position",{"type":39,"tag":258,"props":674,"children":675},{},[676,685],{"type":39,"tag":285,"props":677,"children":678},{},[679],{"type":39,"tag":79,"props":680,"children":682},{"className":681},[],[683],{"type":44,"value":684},"rename_refactoring",{"type":39,"tag":285,"props":686,"children":687},{},[688],{"type":44,"value":689},"Safely rename a symbol across the entire project",{"type":39,"tag":258,"props":691,"children":692},{},[693,702],{"type":39,"tag":285,"props":694,"children":695},{},[696],{"type":39,"tag":79,"props":697,"children":699},{"className":698},[],[700],{"type":44,"value":701},"get_php_project_config",{"type":39,"tag":285,"props":703,"children":704},{},[705],{"type":44,"value":706},"Get PHP language level, interpreter, extensions, runtime info",{"type":39,"tag":258,"props":708,"children":709},{},[710,719],{"type":39,"tag":285,"props":711,"children":712},{},[713],{"type":39,"tag":79,"props":714,"children":716},{"className":715},[],[717],{"type":44,"value":718},"get_composer_dependencies",{"type":39,"tag":285,"props":720,"children":721},{},[722],{"type":44,"value":723},"Understand project dependencies, framework, and versions",{"type":39,"tag":65,"props":725,"children":727},{"id":726},"file-operations",[728],{"type":44,"value":729},"File Operations",{"type":39,"tag":250,"props":731,"children":732},{},[733,747],{"type":39,"tag":254,"props":734,"children":735},{},[736],{"type":39,"tag":258,"props":737,"children":738},{},[739,743],{"type":39,"tag":262,"props":740,"children":741},{},[742],{"type":44,"value":383},{"type":39,"tag":262,"props":744,"children":745},{},[746],{"type":44,"value":388},{"type":39,"tag":278,"props":748,"children":749},{},[750,767,784,801,818],{"type":39,"tag":258,"props":751,"children":752},{},[753,762],{"type":39,"tag":285,"props":754,"children":755},{},[756],{"type":39,"tag":79,"props":757,"children":759},{"className":758},[],[760],{"type":44,"value":761},"read_file",{"type":39,"tag":285,"props":763,"children":764},{},[765],{"type":44,"value":766},"Read file with advanced modes (slice, lines, offsets, indentation)",{"type":39,"tag":258,"props":768,"children":769},{},[770,779],{"type":39,"tag":285,"props":771,"children":772},{},[773],{"type":39,"tag":79,"props":774,"children":776},{"className":775},[],[777],{"type":44,"value":778},"get_file_text_by_path",{"type":39,"tag":285,"props":780,"children":781},{},[782],{"type":44,"value":783},"Read full file text by project-relative path",{"type":39,"tag":258,"props":785,"children":786},{},[787,796],{"type":39,"tag":285,"props":788,"children":789},{},[790],{"type":39,"tag":79,"props":791,"children":793},{"className":792},[],[794],{"type":44,"value":795},"replace_text_in_file",{"type":39,"tag":285,"props":797,"children":798},{},[799],{"type":44,"value":800},"Targeted find-and-replace in files",{"type":39,"tag":258,"props":802,"children":803},{},[804,813],{"type":39,"tag":285,"props":805,"children":806},{},[807],{"type":39,"tag":79,"props":808,"children":810},{"className":809},[],[811],{"type":44,"value":812},"create_new_file",{"type":39,"tag":285,"props":814,"children":815},{},[816],{"type":44,"value":817},"Create new files with content",{"type":39,"tag":258,"props":819,"children":820},{},[821,830],{"type":39,"tag":285,"props":822,"children":823},{},[824],{"type":39,"tag":79,"props":825,"children":827},{"className":826},[],[828],{"type":44,"value":829},"reformat_file",{"type":39,"tag":285,"props":831,"children":832},{},[833],{"type":44,"value":834},"Apply IDE code formatting rules",{"type":39,"tag":65,"props":836,"children":838},{"id":837},"execution",[839],{"type":44,"value":840},"Execution",{"type":39,"tag":250,"props":842,"children":843},{},[844,858],{"type":39,"tag":254,"props":845,"children":846},{},[847],{"type":39,"tag":258,"props":848,"children":849},{},[850,854],{"type":39,"tag":262,"props":851,"children":852},{},[853],{"type":44,"value":383},{"type":39,"tag":262,"props":855,"children":856},{},[857],{"type":44,"value":388},{"type":39,"tag":278,"props":859,"children":860},{},[861,878,895],{"type":39,"tag":258,"props":862,"children":863},{},[864,873],{"type":39,"tag":285,"props":865,"children":866},{},[867],{"type":39,"tag":79,"props":868,"children":870},{"className":869},[],[871],{"type":44,"value":872},"get_run_configurations",{"type":39,"tag":285,"props":874,"children":875},{},[876],{"type":44,"value":877},"List available run\u002Ftest configurations",{"type":39,"tag":258,"props":879,"children":880},{},[881,890],{"type":39,"tag":285,"props":882,"children":883},{},[884],{"type":39,"tag":79,"props":885,"children":887},{"className":886},[],[888],{"type":44,"value":889},"execute_run_configuration",{"type":39,"tag":285,"props":891,"children":892},{},[893],{"type":44,"value":894},"Run a specific configuration and get results",{"type":39,"tag":258,"props":896,"children":897},{},[898,907],{"type":39,"tag":285,"props":899,"children":900},{},[901],{"type":39,"tag":79,"props":902,"children":904},{"className":903},[],[905],{"type":44,"value":906},"execute_terminal_command",{"type":39,"tag":285,"props":908,"children":909},{},[910],{"type":44,"value":911},"Run shell commands in IDE terminal",{"type":39,"tag":47,"props":913,"children":914},{},[915,916,922],{"type":44,"value":302},{"type":39,"tag":79,"props":917,"children":919},{"className":918},[],[920],{"type":44,"value":921},"references\u002Fmcp-tools-reference.md",{"type":44,"value":923}," for detailed parameters and usage patterns.",{"type":39,"tag":53,"props":925,"children":927},{"id":926},"documentation-lookup",[928],{"type":44,"value":929},"Documentation Lookup",{"type":39,"tag":47,"props":931,"children":932},{},[933],{"type":44,"value":934},"When you need documentation beyond what these references provide:",{"type":39,"tag":118,"props":936,"children":937},{},[938,964,981,996],{"type":39,"tag":122,"props":939,"children":940},{},[941,946,948,954,956,962],{"type":39,"tag":126,"props":942,"children":943},{},[944],{"type":44,"value":945},"Context7 MCP",{"type":44,"value":947},": Use ",{"type":39,"tag":79,"props":949,"children":951},{"className":950},[],[952],{"type":44,"value":953},"resolve-library-id",{"type":44,"value":955}," then ",{"type":39,"tag":79,"props":957,"children":959},{"className":958},[],[960],{"type":44,"value":961},"query-docs",{"type":44,"value":963}," for any PHP framework or library — returns up-to-date docs and code examples",{"type":39,"tag":122,"props":965,"children":966},{},[967,972,973],{"type":39,"tag":126,"props":968,"children":969},{},[970],{"type":44,"value":971},"PHP official docs",{"type":44,"value":132},{"type":39,"tag":974,"props":975,"children":979},"a",{"href":976,"rel":977},"https:\u002F\u002Fwww.php.net\u002Fmanual",[978],"nofollow",[980],{"type":44,"value":976},{"type":39,"tag":122,"props":982,"children":983},{},[984,989,990],{"type":39,"tag":126,"props":985,"children":986},{},[987],{"type":44,"value":988},"PhpStorm help",{"type":44,"value":132},{"type":39,"tag":974,"props":991,"children":994},{"href":992,"rel":993},"https:\u002F\u002Fwww.jetbrains.com\u002Fhelp\u002Fphpstorm\u002F",[978],[995],{"type":44,"value":992},{"type":39,"tag":122,"props":997,"children":998},{},[999,1004,1005,1011],{"type":39,"tag":126,"props":1000,"children":1001},{},[1002],{"type":44,"value":1003},"phpstorm-stubs",{"type":44,"value":132},{"type":39,"tag":974,"props":1006,"children":1009},{"href":1007,"rel":1008},"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fphpstorm-stubs",[978],[1010],{"type":44,"value":1007},{"type":44,"value":1012}," — PHP built-in function signatures and type info",{"type":39,"tag":53,"props":1014,"children":1016},{"id":1015},"reference-documents",[1017],{"type":44,"value":1018},"Reference Documents",{"type":39,"tag":250,"props":1020,"children":1021},{},[1022,1037],{"type":39,"tag":254,"props":1023,"children":1024},{},[1025],{"type":39,"tag":258,"props":1026,"children":1027},{},[1028,1032],{"type":39,"tag":262,"props":1029,"children":1030},{},[1031],{"type":44,"value":276},{"type":39,"tag":262,"props":1033,"children":1034},{},[1035],{"type":44,"value":1036},"Content",{"type":39,"tag":278,"props":1038,"children":1039},{},[1040,1057,1073,1090,1106,1122,1139,1156],{"type":39,"tag":258,"props":1041,"children":1042},{},[1043,1052],{"type":39,"tag":285,"props":1044,"children":1045},{},[1046],{"type":39,"tag":79,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":44,"value":1051},"references\u002Fproject-detection.md",{"type":39,"tag":285,"props":1053,"children":1054},{},[1055],{"type":44,"value":1056},"composer.json anatomy, PSR-4 autoloading, directory layouts",{"type":39,"tag":258,"props":1058,"children":1059},{},[1060,1068],{"type":39,"tag":285,"props":1061,"children":1062},{},[1063],{"type":39,"tag":79,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":44,"value":357},{"type":39,"tag":285,"props":1069,"children":1070},{},[1071],{"type":44,"value":1072},"PER\u002FPSR coding standards, PHP version features, anti-patterns",{"type":39,"tag":258,"props":1074,"children":1075},{},[1076,1085],{"type":39,"tag":285,"props":1077,"children":1078},{},[1079],{"type":39,"tag":79,"props":1080,"children":1082},{"className":1081},[],[1083],{"type":44,"value":1084},"references\u002Ftesting-guide.md",{"type":39,"tag":285,"props":1086,"children":1087},{},[1088],{"type":44,"value":1089},"PHPUnit, Pest, running tests, common mistakes",{"type":39,"tag":258,"props":1091,"children":1092},{},[1093,1101],{"type":39,"tag":285,"props":1094,"children":1095},{},[1096],{"type":39,"tag":79,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":44,"value":308},{"type":39,"tag":285,"props":1102,"children":1103},{},[1104],{"type":44,"value":1105},"Laravel directory structure, Eloquent, artisan, routes",{"type":39,"tag":258,"props":1107,"children":1108},{},[1109,1117],{"type":39,"tag":285,"props":1110,"children":1111},{},[1112],{"type":39,"tag":79,"props":1113,"children":1115},{"className":1114},[],[1116],{"type":44,"value":334},{"type":39,"tag":285,"props":1118,"children":1119},{},[1120],{"type":44,"value":1121},"Symfony directory structure, Doctrine, console, services",{"type":39,"tag":258,"props":1123,"children":1124},{},[1125,1134],{"type":39,"tag":285,"props":1126,"children":1127},{},[1128],{"type":39,"tag":79,"props":1129,"children":1131},{"className":1130},[],[1132],{"type":44,"value":1133},"references\u002Fstatic-analysis.md",{"type":39,"tag":285,"props":1135,"children":1136},{},[1137],{"type":44,"value":1138},"PHPStan, Psalm, PHP CS Fixer, PHP CodeSniffer",{"type":39,"tag":258,"props":1140,"children":1141},{},[1142,1151],{"type":39,"tag":285,"props":1143,"children":1144},{},[1145],{"type":39,"tag":79,"props":1146,"children":1148},{"className":1147},[],[1149],{"type":44,"value":1150},"references\u002Fcomposer-guide.md",{"type":39,"tag":285,"props":1152,"children":1153},{},[1154],{"type":44,"value":1155},"Composer commands, version constraints, autoloading",{"type":39,"tag":258,"props":1157,"children":1158},{},[1159,1167],{"type":39,"tag":285,"props":1160,"children":1161},{},[1162],{"type":39,"tag":79,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":44,"value":921},{"type":39,"tag":285,"props":1168,"children":1169},{},[1170],{"type":44,"value":1171},"Detailed PhpStorm MCP tool parameters and workflows",{"items":1173,"total":26},[1174,1188,1194],{"slug":1175,"name":1175,"fn":1176,"description":1177,"org":1178,"tags":1179,"stars":22,"repoUrl":23,"updatedAt":1187},"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},[1180,1183,1186],{"name":1181,"slug":1182,"type":15},"Code Review","code-review",{"name":1184,"slug":1185,"type":15},"Debugging","debugging",{"name":13,"slug":14,"type":15},"2026-07-13T06:43:39.97355",{"slug":4,"name":4,"fn":5,"description":6,"org":1189,"tags":1190,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1191,1192,1193],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":1195,"name":1195,"fn":1196,"description":1197,"org":1198,"tags":1199,"stars":22,"repoUrl":23,"updatedAt":1205},"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},[1200,1201,1204],{"name":1184,"slug":1185,"type":15},{"name":1202,"slug":1203,"type":15},"Migration","migration",{"name":13,"slug":14,"type":15},"2026-07-13T06:43:38.636035",{"items":1207,"total":1330},[1208,1224,1233,1242,1251,1261,1274,1283,1292,1302,1311,1320],{"slug":1209,"name":1209,"fn":1210,"description":1211,"org":1212,"tags":1213,"stars":1221,"repoUrl":1222,"updatedAt":1223},"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},[1214,1217,1220],{"name":1215,"slug":1216,"type":15},"Architecture","architecture",{"name":1218,"slug":1219,"type":15},"Configuration","configuration",{"name":20,"slug":21,"type":15},1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":1225,"name":1225,"fn":1226,"description":1227,"org":1228,"tags":1229,"stars":1221,"repoUrl":1222,"updatedAt":1232},"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},[1230,1231],{"name":1215,"slug":1216,"type":15},{"name":20,"slug":21,"type":15},"2026-07-17T06:04:48.066901",{"slug":1234,"name":1234,"fn":1235,"description":1236,"org":1237,"tags":1238,"stars":1221,"repoUrl":1222,"updatedAt":1241},"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},[1239,1240],{"name":1215,"slug":1216,"type":15},{"name":20,"slug":21,"type":15},"2026-07-13T06:45:21.757084",{"slug":1243,"name":1243,"fn":1244,"description":1245,"org":1246,"tags":1247,"stars":1221,"repoUrl":1222,"updatedAt":1250},"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},[1248,1249],{"name":1215,"slug":1216,"type":15},{"name":369,"slug":366,"type":15},"2026-07-23T05:41:33.639365",{"slug":1252,"name":1252,"fn":1253,"description":1254,"org":1255,"tags":1256,"stars":1221,"repoUrl":1222,"updatedAt":1260},"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},[1257],{"name":1258,"slug":1259,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":1262,"name":1262,"fn":1263,"description":1264,"org":1265,"tags":1266,"stars":1221,"repoUrl":1222,"updatedAt":1273},"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},[1267,1270],{"name":1268,"slug":1269,"type":15},"Design","design",{"name":1271,"slug":1272,"type":15},"UI Components","ui-components","2026-07-23T05:41:56.638151",{"slug":1275,"name":1275,"fn":1276,"description":1277,"org":1278,"tags":1279,"stars":1221,"repoUrl":1222,"updatedAt":1282},"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},[1280,1281],{"name":20,"slug":21,"type":15},{"name":1271,"slug":1272,"type":15},"2026-07-23T05:41:49.666535",{"slug":1284,"name":1284,"fn":1285,"description":1286,"org":1287,"tags":1288,"stars":1221,"repoUrl":1222,"updatedAt":1291},"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},[1289,1290],{"name":1215,"slug":1216,"type":15},{"name":20,"slug":21,"type":15},"2026-07-13T06:44:59.507855",{"slug":1293,"name":1293,"fn":1294,"description":1295,"org":1296,"tags":1297,"stars":1221,"repoUrl":1222,"updatedAt":1301},"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},[1298,1299,1300],{"name":1215,"slug":1216,"type":15},{"name":369,"slug":366,"type":15},{"name":20,"slug":21,"type":15},"2026-07-17T06:06:58.042999",{"slug":1303,"name":1303,"fn":1304,"description":1305,"org":1306,"tags":1307,"stars":1221,"repoUrl":1222,"updatedAt":1310},"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},[1308,1309],{"name":1215,"slug":1216,"type":15},{"name":20,"slug":21,"type":15},"2026-07-23T05:41:48.692899",{"slug":1312,"name":1312,"fn":1313,"description":1314,"org":1315,"tags":1316,"stars":1221,"repoUrl":1222,"updatedAt":1319},"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},[1317,1318],{"name":1184,"slug":1185,"type":15},{"name":1202,"slug":1203,"type":15},"2026-07-13T06:45:20.372122",{"slug":1321,"name":1321,"fn":1322,"description":1323,"org":1324,"tags":1325,"stars":1221,"repoUrl":1222,"updatedAt":1329},"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},[1326],{"name":1327,"slug":1328,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188]