[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-wordpress-wp-interactivity-api":3,"mdc--czobng-key":34,"related-org-wordpress-wp-interactivity-api":1193,"related-repo-wordpress-wp-interactivity-api":1389},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"wp-interactivity-api","build interactive features with WordPress Interactivity API","Use when building or debugging WordPress Interactivity API features (data-wp-* directives, @wordpress\u002Finteractivity store\u002Fstate\u002Factions, block viewScriptModule integration, wp_interactivity_*()) including performance, hydration, and directive behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"wordpress","WordPress","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fwordpress.png",[12,16,17,20],{"name":13,"slug":14,"type":15},"JavaScript","javascript","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"API Development","api-development",{"name":21,"slug":22,"type":15},"Frontend","frontend",1892,"https:\u002F\u002Fgithub.com\u002FWordPress\u002Fagent-skills","2026-04-06T18:58:20.397676",null,284,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"Expert-level WordPress knowledge for AI coding assistants - blocks, themes, plugins, and best practices","https:\u002F\u002Fgithub.com\u002FWordPress\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fwp-interactivity-api","---\nname: wp-interactivity-api\ndescription: \"Use when building or debugging WordPress Interactivity API features (data-wp-* directives, @wordpress\u002Finteractivity store\u002Fstate\u002Factions, block viewScriptModule integration, wp_interactivity_*()) including performance, hydration, and directive behavior.\"\ncompatibility: \"Targets WordPress 7.0+ (PHP 7.4.0+). Filesystem-based agent with bash + node. Some workflows require WP-CLI.\"\n---\n\n# WP Interactivity API\n\n## When to use\n\nUse this skill when the user mentions:\n\n- Interactivity API, `@wordpress\u002Finteractivity`,\n- `data-wp-interactive`, `data-wp-on--*`, `data-wp-bind--*`, `data-wp-context`,\n- block `viewScriptModule` \u002F module-based view scripts,\n- hydration issues or “directives don’t fire”.\n\n## Inputs required\n\n- Repo root + triage output (`wp-project-triage`).\n- Which block\u002Ftheme\u002Fplugin surfaces are affected (frontend, editor, both).\n- Any constraints: WP version, whether modules are supported in the build.\n\n## Procedure\n\n### 1) Detect existing usage + integration style\n\nSearch for:\n\n- `data-wp-interactive`\n- `@wordpress\u002Finteractivity`\n- `viewScriptModule`\n\nDecide:\n\n- Is this a block providing interactivity via `block.json` view script module?\n- Is this theme-level interactivity?\n- Is this plugin-side “enhance existing markup” usage?\n\nIf you’re creating a new interactive block (not just debugging), prefer the official scaffold template:\n\n- `@wordpress\u002Fcreate-block-interactive-template` (via `@wordpress\u002Fcreate-block`)\n\n### 2) Identify the store(s)\n\nLocate store definitions and confirm:\n\n- state shape,\n- actions (mutations),\n- callbacks\u002Fevent handlers used by `data-wp-on--*`.\n\n### 3) Server-side rendering (best practice)\n\n**Pre-render HTML on the server** before outputting to ensure:\n\n- Correct initial state in the HTML before JavaScript loads (no layout shift).\n- SEO benefits and faster perceived load time.\n- Seamless hydration when the client-side JavaScript takes over.\n\n#### Enable server directive processing\n\nFor components using `block.json`, add `supports.interactivity`:\n\n```json\n{\n  \"supports\": {\n    \"interactivity\": true\n  }\n}\n```\n\nFor themes\u002Fplugins without `block.json`, use `wp_interactivity_process_directives()` to process directives.\n\n#### Initialize state\u002Fcontext in PHP\n\nUse `wp_interactivity_state()` to define initial global state:\n\n```php\nwp_interactivity_state( 'myPlugin', array(\n  'items'    => array( 'Apple', 'Banana', 'Cherry' ),\n  'hasItems' => true,\n));\n```\n\nFor local context, use `wp_interactivity_data_wp_context()`:\n\n```php\n\u003C?php\n$context = array( 'isOpen' => false );\n?>\n\u003Cdiv \u003C?php echo wp_interactivity_data_wp_context( $context ); ?>>\n  ...\n\u003C\u002Fdiv>\n```\n\n#### Define derived state in PHP\n\nWhen derived state affects initial HTML rendering, replicate the logic in PHP:\n\n```php\nwp_interactivity_state( 'myPlugin', array(\n  'items'    => array( 'Apple', 'Banana' ),\n  'hasItems' => function() {\n    $state = wp_interactivity_state();\n    return count( $state['items'] ) > 0;\n  }\n));\n```\n\nThis ensures directives like `data-wp-bind--hidden=\"!state.hasItems\"` render correctly on first load.\n\nFor detailed examples and patterns, see `references\u002Fserver-side-rendering.md`.\n\n### 4) Implement or change directives safely\n\nWhen touching markup directives:\n\n- keep directive usage minimal and scoped,\n- prefer stable data attributes that map clearly to store state,\n- ensure server-rendered markup + client hydration align.\n\n**WordPress 6.9 changes:**\n\n- **`data-wp-ignore` is deprecated** and will be removed in future versions. It broke context inheritance and caused issues with client-side navigation. Avoid using it.\n- **Unique directive IDs**: Multiple directives of the same type can now exist on one element using the `---` separator (e.g., `data-wp-on--click---plugin-a=\"...\"` and `data-wp-on--click---plugin-b=\"...\"`).\n- **New TypeScript types**: `AsyncAction\u003CReturnType>` and `TypeYield\u003CT>` help with async action typing.\n\nFor quick directive reminders, see `references\u002Fdirectives-quickref.md`.\n\n### 5) Build\u002Ftooling alignment\n\nVerify the repo supports the required module build path:\n\n- if it uses `@wordpress\u002Fscripts`, prefer its conventions.\n- if it uses custom bundling, confirm module output is supported.\n\n### 6) Debug common failure modes\n\nIf “nothing happens” on interaction:\n\n- confirm the `viewScriptModule` is enqueued\u002Floaded,\n- confirm the DOM element has `data-wp-interactive`,\n- confirm the store namespace matches the directive’s value,\n- confirm there are no JS errors before hydration.\n\nSee `references\u002Fdebugging.md`.\n\n## Verification\n\n- `wp-project-triage` indicates `signals.usesInteractivityApi: true` after your change (if applicable).\n- Manual smoke test: directive triggers and state updates as expected.\n- If tests exist: add\u002Fextend Playwright E2E around the interaction path.\n\n## Failure modes \u002F debugging\n\n- Directives present but inert:\n  - view script not loading, wrong module entrypoint, or missing `data-wp-interactive`.\n- Hydration mismatch \u002F flicker:\n  - server markup differs from client expectations; simplify or align initial state.\n  - derived state not defined in PHP: use `wp_interactivity_state()` with closures.\n- Initial content missing or wrong:\n  - `supports.interactivity` not set in `block.json` (for blocks).\n  - `wp_interactivity_process_directives()` not called (for themes\u002Fplugins).\n  - state\u002Fcontext not initialized in PHP before render.\n- Layout shift on load:\n  - derived state like `state.hasItems` missing on server, causing `hidden` attribute to be absent.\n- Performance regressions:\n  - overly broad interactive roots; scope interactivity to smaller subtrees.\n- Client-side navigation issues (WordPress 6.9):\n  - `getServerState()` and `getServerContext()` now reset between page transitions—ensure your code doesn't assume stale values persist.\n  - Router regions now support `attachTo` for rendering overlays (modals, pop-ups) dynamically.\n\n## Escalation\n\n- If repo build constraints are unclear, ask: \"Is this using `@wordpress\u002Fscripts` or a custom bundler (webpack\u002Fvite)?\"\n- Consult:\n  - `references\u002Fserver-side-rendering.md`\n  - `references\u002Fdirectives-quickref.md`\n  - `references\u002Fdebugging.md`\n",{"data":35,"body":37},{"name":4,"description":6,"compatibility":36},"Targets WordPress 7.0+ (PHP 7.4.0+). Filesystem-based agent with bash + node. Some workflows require WP-CLI.",{"type":38,"children":39},"root",[40,48,55,61,130,136,162,168,175,180,207,212,238,243,265,271,276,301,307,318,336,343,363,461,481,487,500,541,553,609,615,620,681,694,706,712,717,735,743,820,832,838,843,864,870,875,911,923,929,960,966,1134,1140,1187],{"type":41,"tag":42,"props":43,"children":44},"element","h1",{"id":4},[45],{"type":46,"value":47},"text","WP Interactivity API",{"type":41,"tag":49,"props":50,"children":52},"h2",{"id":51},"when-to-use",[53],{"type":46,"value":54},"When to use",{"type":41,"tag":56,"props":57,"children":58},"p",{},[59],{"type":46,"value":60},"Use this skill when the user mentions:",{"type":41,"tag":62,"props":63,"children":64},"ul",{},[65,80,112,125],{"type":41,"tag":66,"props":67,"children":68},"li",{},[69,71,78],{"type":46,"value":70},"Interactivity API, ",{"type":41,"tag":72,"props":73,"children":75},"code",{"className":74},[],[76],{"type":46,"value":77},"@wordpress\u002Finteractivity",{"type":46,"value":79},",",{"type":41,"tag":66,"props":81,"children":82},{},[83,89,91,97,98,104,105,111],{"type":41,"tag":72,"props":84,"children":86},{"className":85},[],[87],{"type":46,"value":88},"data-wp-interactive",{"type":46,"value":90},", ",{"type":41,"tag":72,"props":92,"children":94},{"className":93},[],[95],{"type":46,"value":96},"data-wp-on--*",{"type":46,"value":90},{"type":41,"tag":72,"props":99,"children":101},{"className":100},[],[102],{"type":46,"value":103},"data-wp-bind--*",{"type":46,"value":90},{"type":41,"tag":72,"props":106,"children":108},{"className":107},[],[109],{"type":46,"value":110},"data-wp-context",{"type":46,"value":79},{"type":41,"tag":66,"props":113,"children":114},{},[115,117,123],{"type":46,"value":116},"block ",{"type":41,"tag":72,"props":118,"children":120},{"className":119},[],[121],{"type":46,"value":122},"viewScriptModule",{"type":46,"value":124}," \u002F module-based view scripts,",{"type":41,"tag":66,"props":126,"children":127},{},[128],{"type":46,"value":129},"hydration issues or “directives don’t fire”.",{"type":41,"tag":49,"props":131,"children":133},{"id":132},"inputs-required",[134],{"type":46,"value":135},"Inputs required",{"type":41,"tag":62,"props":137,"children":138},{},[139,152,157],{"type":41,"tag":66,"props":140,"children":141},{},[142,144,150],{"type":46,"value":143},"Repo root + triage output (",{"type":41,"tag":72,"props":145,"children":147},{"className":146},[],[148],{"type":46,"value":149},"wp-project-triage",{"type":46,"value":151},").",{"type":41,"tag":66,"props":153,"children":154},{},[155],{"type":46,"value":156},"Which block\u002Ftheme\u002Fplugin surfaces are affected (frontend, editor, both).",{"type":41,"tag":66,"props":158,"children":159},{},[160],{"type":46,"value":161},"Any constraints: WP version, whether modules are supported in the build.",{"type":41,"tag":49,"props":163,"children":165},{"id":164},"procedure",[166],{"type":46,"value":167},"Procedure",{"type":41,"tag":169,"props":170,"children":172},"h3",{"id":171},"_1-detect-existing-usage-integration-style",[173],{"type":46,"value":174},"1) Detect existing usage + integration style",{"type":41,"tag":56,"props":176,"children":177},{},[178],{"type":46,"value":179},"Search for:",{"type":41,"tag":62,"props":181,"children":182},{},[183,191,199],{"type":41,"tag":66,"props":184,"children":185},{},[186],{"type":41,"tag":72,"props":187,"children":189},{"className":188},[],[190],{"type":46,"value":88},{"type":41,"tag":66,"props":192,"children":193},{},[194],{"type":41,"tag":72,"props":195,"children":197},{"className":196},[],[198],{"type":46,"value":77},{"type":41,"tag":66,"props":200,"children":201},{},[202],{"type":41,"tag":72,"props":203,"children":205},{"className":204},[],[206],{"type":46,"value":122},{"type":41,"tag":56,"props":208,"children":209},{},[210],{"type":46,"value":211},"Decide:",{"type":41,"tag":62,"props":213,"children":214},{},[215,228,233],{"type":41,"tag":66,"props":216,"children":217},{},[218,220,226],{"type":46,"value":219},"Is this a block providing interactivity via ",{"type":41,"tag":72,"props":221,"children":223},{"className":222},[],[224],{"type":46,"value":225},"block.json",{"type":46,"value":227}," view script module?",{"type":41,"tag":66,"props":229,"children":230},{},[231],{"type":46,"value":232},"Is this theme-level interactivity?",{"type":41,"tag":66,"props":234,"children":235},{},[236],{"type":46,"value":237},"Is this plugin-side “enhance existing markup” usage?",{"type":41,"tag":56,"props":239,"children":240},{},[241],{"type":46,"value":242},"If you’re creating a new interactive block (not just debugging), prefer the official scaffold template:",{"type":41,"tag":62,"props":244,"children":245},{},[246],{"type":41,"tag":66,"props":247,"children":248},{},[249,255,257,263],{"type":41,"tag":72,"props":250,"children":252},{"className":251},[],[253],{"type":46,"value":254},"@wordpress\u002Fcreate-block-interactive-template",{"type":46,"value":256}," (via ",{"type":41,"tag":72,"props":258,"children":260},{"className":259},[],[261],{"type":46,"value":262},"@wordpress\u002Fcreate-block",{"type":46,"value":264},")",{"type":41,"tag":169,"props":266,"children":268},{"id":267},"_2-identify-the-stores",[269],{"type":46,"value":270},"2) Identify the store(s)",{"type":41,"tag":56,"props":272,"children":273},{},[274],{"type":46,"value":275},"Locate store definitions and confirm:",{"type":41,"tag":62,"props":277,"children":278},{},[279,284,289],{"type":41,"tag":66,"props":280,"children":281},{},[282],{"type":46,"value":283},"state shape,",{"type":41,"tag":66,"props":285,"children":286},{},[287],{"type":46,"value":288},"actions (mutations),",{"type":41,"tag":66,"props":290,"children":291},{},[292,294,299],{"type":46,"value":293},"callbacks\u002Fevent handlers used by ",{"type":41,"tag":72,"props":295,"children":297},{"className":296},[],[298],{"type":46,"value":96},{"type":46,"value":300},".",{"type":41,"tag":169,"props":302,"children":304},{"id":303},"_3-server-side-rendering-best-practice",[305],{"type":46,"value":306},"3) Server-side rendering (best practice)",{"type":41,"tag":56,"props":308,"children":309},{},[310,316],{"type":41,"tag":311,"props":312,"children":313},"strong",{},[314],{"type":46,"value":315},"Pre-render HTML on the server",{"type":46,"value":317}," before outputting to ensure:",{"type":41,"tag":62,"props":319,"children":320},{},[321,326,331],{"type":41,"tag":66,"props":322,"children":323},{},[324],{"type":46,"value":325},"Correct initial state in the HTML before JavaScript loads (no layout shift).",{"type":41,"tag":66,"props":327,"children":328},{},[329],{"type":46,"value":330},"SEO benefits and faster perceived load time.",{"type":41,"tag":66,"props":332,"children":333},{},[334],{"type":46,"value":335},"Seamless hydration when the client-side JavaScript takes over.",{"type":41,"tag":337,"props":338,"children":340},"h4",{"id":339},"enable-server-directive-processing",[341],{"type":46,"value":342},"Enable server directive processing",{"type":41,"tag":56,"props":344,"children":345},{},[346,348,353,355,361],{"type":46,"value":347},"For components using ",{"type":41,"tag":72,"props":349,"children":351},{"className":350},[],[352],{"type":46,"value":225},{"type":46,"value":354},", add ",{"type":41,"tag":72,"props":356,"children":358},{"className":357},[],[359],{"type":46,"value":360},"supports.interactivity",{"type":46,"value":362},":",{"type":41,"tag":364,"props":365,"children":370},"pre",{"className":366,"code":367,"language":368,"meta":369,"style":369},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"supports\": {\n    \"interactivity\": true\n  }\n}\n","json","",[371],{"type":41,"tag":72,"props":372,"children":373},{"__ignoreMap":369},[374,386,415,443,452],{"type":41,"tag":375,"props":376,"children":379},"span",{"class":377,"line":378},"line",1,[380],{"type":41,"tag":375,"props":381,"children":383},{"style":382},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[384],{"type":46,"value":385},"{\n",{"type":41,"tag":375,"props":387,"children":389},{"class":377,"line":388},2,[390,395,401,406,410],{"type":41,"tag":375,"props":391,"children":392},{"style":382},[393],{"type":46,"value":394},"  \"",{"type":41,"tag":375,"props":396,"children":398},{"style":397},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[399],{"type":46,"value":400},"supports",{"type":41,"tag":375,"props":402,"children":403},{"style":382},[404],{"type":46,"value":405},"\"",{"type":41,"tag":375,"props":407,"children":408},{"style":382},[409],{"type":46,"value":362},{"type":41,"tag":375,"props":411,"children":412},{"style":382},[413],{"type":46,"value":414}," {\n",{"type":41,"tag":375,"props":416,"children":418},{"class":377,"line":417},3,[419,424,430,434,438],{"type":41,"tag":375,"props":420,"children":421},{"style":382},[422],{"type":46,"value":423},"    \"",{"type":41,"tag":375,"props":425,"children":427},{"style":426},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[428],{"type":46,"value":429},"interactivity",{"type":41,"tag":375,"props":431,"children":432},{"style":382},[433],{"type":46,"value":405},{"type":41,"tag":375,"props":435,"children":436},{"style":382},[437],{"type":46,"value":362},{"type":41,"tag":375,"props":439,"children":440},{"style":382},[441],{"type":46,"value":442}," true\n",{"type":41,"tag":375,"props":444,"children":446},{"class":377,"line":445},4,[447],{"type":41,"tag":375,"props":448,"children":449},{"style":382},[450],{"type":46,"value":451},"  }\n",{"type":41,"tag":375,"props":453,"children":455},{"class":377,"line":454},5,[456],{"type":41,"tag":375,"props":457,"children":458},{"style":382},[459],{"type":46,"value":460},"}\n",{"type":41,"tag":56,"props":462,"children":463},{},[464,466,471,473,479],{"type":46,"value":465},"For themes\u002Fplugins without ",{"type":41,"tag":72,"props":467,"children":469},{"className":468},[],[470],{"type":46,"value":225},{"type":46,"value":472},", use ",{"type":41,"tag":72,"props":474,"children":476},{"className":475},[],[477],{"type":46,"value":478},"wp_interactivity_process_directives()",{"type":46,"value":480}," to process directives.",{"type":41,"tag":337,"props":482,"children":484},{"id":483},"initialize-statecontext-in-php",[485],{"type":46,"value":486},"Initialize state\u002Fcontext in PHP",{"type":41,"tag":56,"props":488,"children":489},{},[490,492,498],{"type":46,"value":491},"Use ",{"type":41,"tag":72,"props":493,"children":495},{"className":494},[],[496],{"type":46,"value":497},"wp_interactivity_state()",{"type":46,"value":499}," to define initial global state:",{"type":41,"tag":364,"props":501,"children":505},{"className":502,"code":503,"language":504,"meta":369,"style":369},"language-php shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","wp_interactivity_state( 'myPlugin', array(\n  'items'    => array( 'Apple', 'Banana', 'Cherry' ),\n  'hasItems' => true,\n));\n","php",[506],{"type":41,"tag":72,"props":507,"children":508},{"__ignoreMap":369},[509,517,525,533],{"type":41,"tag":375,"props":510,"children":511},{"class":377,"line":378},[512],{"type":41,"tag":375,"props":513,"children":514},{},[515],{"type":46,"value":516},"wp_interactivity_state( 'myPlugin', array(\n",{"type":41,"tag":375,"props":518,"children":519},{"class":377,"line":388},[520],{"type":41,"tag":375,"props":521,"children":522},{},[523],{"type":46,"value":524},"  'items'    => array( 'Apple', 'Banana', 'Cherry' ),\n",{"type":41,"tag":375,"props":526,"children":527},{"class":377,"line":417},[528],{"type":41,"tag":375,"props":529,"children":530},{},[531],{"type":46,"value":532},"  'hasItems' => true,\n",{"type":41,"tag":375,"props":534,"children":535},{"class":377,"line":445},[536],{"type":41,"tag":375,"props":537,"children":538},{},[539],{"type":46,"value":540},"));\n",{"type":41,"tag":56,"props":542,"children":543},{},[544,546,552],{"type":46,"value":545},"For local context, use ",{"type":41,"tag":72,"props":547,"children":549},{"className":548},[],[550],{"type":46,"value":551},"wp_interactivity_data_wp_context()",{"type":46,"value":362},{"type":41,"tag":364,"props":554,"children":556},{"className":502,"code":555,"language":504,"meta":369,"style":369},"\u003C?php\n$context = array( 'isOpen' => false );\n?>\n\u003Cdiv \u003C?php echo wp_interactivity_data_wp_context( $context ); ?>>\n  ...\n\u003C\u002Fdiv>\n",[557],{"type":41,"tag":72,"props":558,"children":559},{"__ignoreMap":369},[560,568,576,584,592,600],{"type":41,"tag":375,"props":561,"children":562},{"class":377,"line":378},[563],{"type":41,"tag":375,"props":564,"children":565},{},[566],{"type":46,"value":567},"\u003C?php\n",{"type":41,"tag":375,"props":569,"children":570},{"class":377,"line":388},[571],{"type":41,"tag":375,"props":572,"children":573},{},[574],{"type":46,"value":575},"$context = array( 'isOpen' => false );\n",{"type":41,"tag":375,"props":577,"children":578},{"class":377,"line":417},[579],{"type":41,"tag":375,"props":580,"children":581},{},[582],{"type":46,"value":583},"?>\n",{"type":41,"tag":375,"props":585,"children":586},{"class":377,"line":445},[587],{"type":41,"tag":375,"props":588,"children":589},{},[590],{"type":46,"value":591},"\u003Cdiv \u003C?php echo wp_interactivity_data_wp_context( $context ); ?>>\n",{"type":41,"tag":375,"props":593,"children":594},{"class":377,"line":454},[595],{"type":41,"tag":375,"props":596,"children":597},{},[598],{"type":46,"value":599},"  ...\n",{"type":41,"tag":375,"props":601,"children":603},{"class":377,"line":602},6,[604],{"type":41,"tag":375,"props":605,"children":606},{},[607],{"type":46,"value":608},"\u003C\u002Fdiv>\n",{"type":41,"tag":337,"props":610,"children":612},{"id":611},"define-derived-state-in-php",[613],{"type":46,"value":614},"Define derived state in PHP",{"type":41,"tag":56,"props":616,"children":617},{},[618],{"type":46,"value":619},"When derived state affects initial HTML rendering, replicate the logic in PHP:",{"type":41,"tag":364,"props":621,"children":623},{"className":502,"code":622,"language":504,"meta":369,"style":369},"wp_interactivity_state( 'myPlugin', array(\n  'items'    => array( 'Apple', 'Banana' ),\n  'hasItems' => function() {\n    $state = wp_interactivity_state();\n    return count( $state['items'] ) > 0;\n  }\n));\n",[624],{"type":41,"tag":72,"props":625,"children":626},{"__ignoreMap":369},[627,634,642,650,658,666,673],{"type":41,"tag":375,"props":628,"children":629},{"class":377,"line":378},[630],{"type":41,"tag":375,"props":631,"children":632},{},[633],{"type":46,"value":516},{"type":41,"tag":375,"props":635,"children":636},{"class":377,"line":388},[637],{"type":41,"tag":375,"props":638,"children":639},{},[640],{"type":46,"value":641},"  'items'    => array( 'Apple', 'Banana' ),\n",{"type":41,"tag":375,"props":643,"children":644},{"class":377,"line":417},[645],{"type":41,"tag":375,"props":646,"children":647},{},[648],{"type":46,"value":649},"  'hasItems' => function() {\n",{"type":41,"tag":375,"props":651,"children":652},{"class":377,"line":445},[653],{"type":41,"tag":375,"props":654,"children":655},{},[656],{"type":46,"value":657},"    $state = wp_interactivity_state();\n",{"type":41,"tag":375,"props":659,"children":660},{"class":377,"line":454},[661],{"type":41,"tag":375,"props":662,"children":663},{},[664],{"type":46,"value":665},"    return count( $state['items'] ) > 0;\n",{"type":41,"tag":375,"props":667,"children":668},{"class":377,"line":602},[669],{"type":41,"tag":375,"props":670,"children":671},{},[672],{"type":46,"value":451},{"type":41,"tag":375,"props":674,"children":676},{"class":377,"line":675},7,[677],{"type":41,"tag":375,"props":678,"children":679},{},[680],{"type":46,"value":540},{"type":41,"tag":56,"props":682,"children":683},{},[684,686,692],{"type":46,"value":685},"This ensures directives like ",{"type":41,"tag":72,"props":687,"children":689},{"className":688},[],[690],{"type":46,"value":691},"data-wp-bind--hidden=\"!state.hasItems\"",{"type":46,"value":693}," render correctly on first load.",{"type":41,"tag":56,"props":695,"children":696},{},[697,699,705],{"type":46,"value":698},"For detailed examples and patterns, see ",{"type":41,"tag":72,"props":700,"children":702},{"className":701},[],[703],{"type":46,"value":704},"references\u002Fserver-side-rendering.md",{"type":46,"value":300},{"type":41,"tag":169,"props":707,"children":709},{"id":708},"_4-implement-or-change-directives-safely",[710],{"type":46,"value":711},"4) Implement or change directives safely",{"type":41,"tag":56,"props":713,"children":714},{},[715],{"type":46,"value":716},"When touching markup directives:",{"type":41,"tag":62,"props":718,"children":719},{},[720,725,730],{"type":41,"tag":66,"props":721,"children":722},{},[723],{"type":46,"value":724},"keep directive usage minimal and scoped,",{"type":41,"tag":66,"props":726,"children":727},{},[728],{"type":46,"value":729},"prefer stable data attributes that map clearly to store state,",{"type":41,"tag":66,"props":731,"children":732},{},[733],{"type":46,"value":734},"ensure server-rendered markup + client hydration align.",{"type":41,"tag":56,"props":736,"children":737},{},[738],{"type":41,"tag":311,"props":739,"children":740},{},[741],{"type":46,"value":742},"WordPress 6.9 changes:",{"type":41,"tag":62,"props":744,"children":745},{},[746,762,795],{"type":41,"tag":66,"props":747,"children":748},{},[749,760],{"type":41,"tag":311,"props":750,"children":751},{},[752,758],{"type":41,"tag":72,"props":753,"children":755},{"className":754},[],[756],{"type":46,"value":757},"data-wp-ignore",{"type":46,"value":759}," is deprecated",{"type":46,"value":761}," and will be removed in future versions. It broke context inheritance and caused issues with client-side navigation. Avoid using it.",{"type":41,"tag":66,"props":763,"children":764},{},[765,770,772,778,780,786,788,794],{"type":41,"tag":311,"props":766,"children":767},{},[768],{"type":46,"value":769},"Unique directive IDs",{"type":46,"value":771},": Multiple directives of the same type can now exist on one element using the ",{"type":41,"tag":72,"props":773,"children":775},{"className":774},[],[776],{"type":46,"value":777},"---",{"type":46,"value":779}," separator (e.g., ",{"type":41,"tag":72,"props":781,"children":783},{"className":782},[],[784],{"type":46,"value":785},"data-wp-on--click---plugin-a=\"...\"",{"type":46,"value":787}," and ",{"type":41,"tag":72,"props":789,"children":791},{"className":790},[],[792],{"type":46,"value":793},"data-wp-on--click---plugin-b=\"...\"",{"type":46,"value":151},{"type":41,"tag":66,"props":796,"children":797},{},[798,803,805,811,812,818],{"type":41,"tag":311,"props":799,"children":800},{},[801],{"type":46,"value":802},"New TypeScript types",{"type":46,"value":804},": ",{"type":41,"tag":72,"props":806,"children":808},{"className":807},[],[809],{"type":46,"value":810},"AsyncAction\u003CReturnType>",{"type":46,"value":787},{"type":41,"tag":72,"props":813,"children":815},{"className":814},[],[816],{"type":46,"value":817},"TypeYield\u003CT>",{"type":46,"value":819}," help with async action typing.",{"type":41,"tag":56,"props":821,"children":822},{},[823,825,831],{"type":46,"value":824},"For quick directive reminders, see ",{"type":41,"tag":72,"props":826,"children":828},{"className":827},[],[829],{"type":46,"value":830},"references\u002Fdirectives-quickref.md",{"type":46,"value":300},{"type":41,"tag":169,"props":833,"children":835},{"id":834},"_5-buildtooling-alignment",[836],{"type":46,"value":837},"5) Build\u002Ftooling alignment",{"type":41,"tag":56,"props":839,"children":840},{},[841],{"type":46,"value":842},"Verify the repo supports the required module build path:",{"type":41,"tag":62,"props":844,"children":845},{},[846,859],{"type":41,"tag":66,"props":847,"children":848},{},[849,851,857],{"type":46,"value":850},"if it uses ",{"type":41,"tag":72,"props":852,"children":854},{"className":853},[],[855],{"type":46,"value":856},"@wordpress\u002Fscripts",{"type":46,"value":858},", prefer its conventions.",{"type":41,"tag":66,"props":860,"children":861},{},[862],{"type":46,"value":863},"if it uses custom bundling, confirm module output is supported.",{"type":41,"tag":169,"props":865,"children":867},{"id":866},"_6-debug-common-failure-modes",[868],{"type":46,"value":869},"6) Debug common failure modes",{"type":41,"tag":56,"props":871,"children":872},{},[873],{"type":46,"value":874},"If “nothing happens” on interaction:",{"type":41,"tag":62,"props":876,"children":877},{},[878,890,901,906],{"type":41,"tag":66,"props":879,"children":880},{},[881,883,888],{"type":46,"value":882},"confirm the ",{"type":41,"tag":72,"props":884,"children":886},{"className":885},[],[887],{"type":46,"value":122},{"type":46,"value":889}," is enqueued\u002Floaded,",{"type":41,"tag":66,"props":891,"children":892},{},[893,895,900],{"type":46,"value":894},"confirm the DOM element has ",{"type":41,"tag":72,"props":896,"children":898},{"className":897},[],[899],{"type":46,"value":88},{"type":46,"value":79},{"type":41,"tag":66,"props":902,"children":903},{},[904],{"type":46,"value":905},"confirm the store namespace matches the directive’s value,",{"type":41,"tag":66,"props":907,"children":908},{},[909],{"type":46,"value":910},"confirm there are no JS errors before hydration.",{"type":41,"tag":56,"props":912,"children":913},{},[914,916,922],{"type":46,"value":915},"See ",{"type":41,"tag":72,"props":917,"children":919},{"className":918},[],[920],{"type":46,"value":921},"references\u002Fdebugging.md",{"type":46,"value":300},{"type":41,"tag":49,"props":924,"children":926},{"id":925},"verification",[927],{"type":46,"value":928},"Verification",{"type":41,"tag":62,"props":930,"children":931},{},[932,950,955],{"type":41,"tag":66,"props":933,"children":934},{},[935,940,942,948],{"type":41,"tag":72,"props":936,"children":938},{"className":937},[],[939],{"type":46,"value":149},{"type":46,"value":941}," indicates ",{"type":41,"tag":72,"props":943,"children":945},{"className":944},[],[946],{"type":46,"value":947},"signals.usesInteractivityApi: true",{"type":46,"value":949}," after your change (if applicable).",{"type":41,"tag":66,"props":951,"children":952},{},[953],{"type":46,"value":954},"Manual smoke test: directive triggers and state updates as expected.",{"type":41,"tag":66,"props":956,"children":957},{},[958],{"type":46,"value":959},"If tests exist: add\u002Fextend Playwright E2E around the interaction path.",{"type":41,"tag":49,"props":961,"children":963},{"id":962},"failure-modes-debugging",[964],{"type":46,"value":965},"Failure modes \u002F debugging",{"type":41,"tag":62,"props":967,"children":968},{},[969,988,1013,1053,1082,1095],{"type":41,"tag":66,"props":970,"children":971},{},[972,974],{"type":46,"value":973},"Directives present but inert:\n",{"type":41,"tag":62,"props":975,"children":976},{},[977],{"type":41,"tag":66,"props":978,"children":979},{},[980,982,987],{"type":46,"value":981},"view script not loading, wrong module entrypoint, or missing ",{"type":41,"tag":72,"props":983,"children":985},{"className":984},[],[986],{"type":46,"value":88},{"type":46,"value":300},{"type":41,"tag":66,"props":989,"children":990},{},[991,993],{"type":46,"value":992},"Hydration mismatch \u002F flicker:\n",{"type":41,"tag":62,"props":994,"children":995},{},[996,1001],{"type":41,"tag":66,"props":997,"children":998},{},[999],{"type":46,"value":1000},"server markup differs from client expectations; simplify or align initial state.",{"type":41,"tag":66,"props":1002,"children":1003},{},[1004,1006,1011],{"type":46,"value":1005},"derived state not defined in PHP: use ",{"type":41,"tag":72,"props":1007,"children":1009},{"className":1008},[],[1010],{"type":46,"value":497},{"type":46,"value":1012}," with closures.",{"type":41,"tag":66,"props":1014,"children":1015},{},[1016,1018],{"type":46,"value":1017},"Initial content missing or wrong:\n",{"type":41,"tag":62,"props":1019,"children":1020},{},[1021,1038,1048],{"type":41,"tag":66,"props":1022,"children":1023},{},[1024,1029,1031,1036],{"type":41,"tag":72,"props":1025,"children":1027},{"className":1026},[],[1028],{"type":46,"value":360},{"type":46,"value":1030}," not set in ",{"type":41,"tag":72,"props":1032,"children":1034},{"className":1033},[],[1035],{"type":46,"value":225},{"type":46,"value":1037}," (for blocks).",{"type":41,"tag":66,"props":1039,"children":1040},{},[1041,1046],{"type":41,"tag":72,"props":1042,"children":1044},{"className":1043},[],[1045],{"type":46,"value":478},{"type":46,"value":1047}," not called (for themes\u002Fplugins).",{"type":41,"tag":66,"props":1049,"children":1050},{},[1051],{"type":46,"value":1052},"state\u002Fcontext not initialized in PHP before render.",{"type":41,"tag":66,"props":1054,"children":1055},{},[1056,1058],{"type":46,"value":1057},"Layout shift on load:\n",{"type":41,"tag":62,"props":1059,"children":1060},{},[1061],{"type":41,"tag":66,"props":1062,"children":1063},{},[1064,1066,1072,1074,1080],{"type":46,"value":1065},"derived state like ",{"type":41,"tag":72,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":46,"value":1071},"state.hasItems",{"type":46,"value":1073}," missing on server, causing ",{"type":41,"tag":72,"props":1075,"children":1077},{"className":1076},[],[1078],{"type":46,"value":1079},"hidden",{"type":46,"value":1081}," attribute to be absent.",{"type":41,"tag":66,"props":1083,"children":1084},{},[1085,1087],{"type":46,"value":1086},"Performance regressions:\n",{"type":41,"tag":62,"props":1088,"children":1089},{},[1090],{"type":41,"tag":66,"props":1091,"children":1092},{},[1093],{"type":46,"value":1094},"overly broad interactive roots; scope interactivity to smaller subtrees.",{"type":41,"tag":66,"props":1096,"children":1097},{},[1098,1100],{"type":46,"value":1099},"Client-side navigation issues (WordPress 6.9):\n",{"type":41,"tag":62,"props":1101,"children":1102},{},[1103,1121],{"type":41,"tag":66,"props":1104,"children":1105},{},[1106,1112,1113,1119],{"type":41,"tag":72,"props":1107,"children":1109},{"className":1108},[],[1110],{"type":46,"value":1111},"getServerState()",{"type":46,"value":787},{"type":41,"tag":72,"props":1114,"children":1116},{"className":1115},[],[1117],{"type":46,"value":1118},"getServerContext()",{"type":46,"value":1120}," now reset between page transitions—ensure your code doesn't assume stale values persist.",{"type":41,"tag":66,"props":1122,"children":1123},{},[1124,1126,1132],{"type":46,"value":1125},"Router regions now support ",{"type":41,"tag":72,"props":1127,"children":1129},{"className":1128},[],[1130],{"type":46,"value":1131},"attachTo",{"type":46,"value":1133}," for rendering overlays (modals, pop-ups) dynamically.",{"type":41,"tag":49,"props":1135,"children":1137},{"id":1136},"escalation",[1138],{"type":46,"value":1139},"Escalation",{"type":41,"tag":62,"props":1141,"children":1142},{},[1143,1155],{"type":41,"tag":66,"props":1144,"children":1145},{},[1146,1148,1153],{"type":46,"value":1147},"If repo build constraints are unclear, ask: \"Is this using ",{"type":41,"tag":72,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":46,"value":856},{"type":46,"value":1154}," or a custom bundler (webpack\u002Fvite)?\"",{"type":41,"tag":66,"props":1156,"children":1157},{},[1158,1160],{"type":46,"value":1159},"Consult:\n",{"type":41,"tag":62,"props":1161,"children":1162},{},[1163,1171,1179],{"type":41,"tag":66,"props":1164,"children":1165},{},[1166],{"type":41,"tag":72,"props":1167,"children":1169},{"className":1168},[],[1170],{"type":46,"value":704},{"type":41,"tag":66,"props":1172,"children":1173},{},[1174],{"type":41,"tag":72,"props":1175,"children":1177},{"className":1176},[],[1178],{"type":46,"value":830},{"type":41,"tag":66,"props":1180,"children":1181},{},[1182],{"type":41,"tag":72,"props":1183,"children":1185},{"className":1184},[],[1186],{"type":46,"value":921},{"type":41,"tag":1188,"props":1189,"children":1190},"style",{},[1191],{"type":46,"value":1192},"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":1194,"total":1388},[1195,1206,1223,1235,1264,1285,1302,1318,1325,1340,1360,1373],{"slug":1196,"name":1196,"fn":1197,"description":1198,"org":1199,"tags":1200,"stars":23,"repoUrl":24,"updatedAt":1205},"blueprint","create WordPress Playground blueprint files","Use when the deliverable is WordPress Playground Blueprint JSON or a Blueprint bundle, including creating, editing, reviewing, validating schema keys, choosing steps\u002Fresources, and debugging Blueprint files. For only running or sharing a Playground environment, use wp-playground.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1201,1202],{"name":9,"slug":8,"type":15},{"name":1203,"slug":1204,"type":15},"WordPress Playground","wordpress-playground","2026-07-27T06:08:32.306955",{"slug":1207,"name":1207,"fn":1208,"description":1209,"org":1210,"tags":1211,"stars":23,"repoUrl":24,"updatedAt":1222},"wordpress-router","route WordPress codebase tasks","Use when the user asks about WordPress codebases (plugins, themes, block themes, Gutenberg blocks, WP core checkouts) and you need to quickly classify the repo and route to the correct workflow\u002Fskill (blocks, theme.json, REST API, WP-CLI, performance, security, testing, release packaging).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1212,1215,1218,1219],{"name":1213,"slug":1214,"type":15},"Engineering","engineering",{"name":1216,"slug":1217,"type":15},"Triage","triage",{"name":9,"slug":8,"type":15},{"name":1220,"slug":1221,"type":15},"Workflow Automation","workflow-automation","2026-04-06T18:58:21.644368",{"slug":1224,"name":1224,"fn":1225,"description":1226,"org":1227,"tags":1228,"stars":23,"repoUrl":24,"updatedAt":1234},"wp-abilities-api","manage WordPress Abilities API definitions","Use when working with the WordPress Abilities API (wp_register_ability, wp_register_ability_category, \u002Fwp-json\u002Fwp-abilities\u002Fv1\u002F*, @wordpress\u002Fabilities) including defining abilities, categories, meta, REST exposure, and permissions checks for clients.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1229,1232,1233],{"name":1230,"slug":1231,"type":15},"Access Control","access-control",{"name":18,"slug":19,"type":15},{"name":9,"slug":8,"type":15},"2026-04-06T18:58:17.857773",{"slug":1236,"name":1236,"fn":1237,"description":1238,"org":1239,"tags":1240,"stars":23,"repoUrl":24,"updatedAt":1263},"wp-abilities-audit","audit WordPress plugins for Abilities API registration","Audit a WordPress plugin's REST surface and produce a standardized audit document proposing Abilities API registrations. Produces a markdown doc with a YAML schema and prose sections that humans and agents can both consume when planning a registration rollout. Works on any WP plugin.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1241,1244,1247,1250,1253,1256,1259,1260],{"name":1242,"slug":1243,"type":15},"Abilities API","abilities-api",{"name":1245,"slug":1246,"type":15},"Audit","audit",{"name":1248,"slug":1249,"type":15},"Code Analysis","code-analysis",{"name":1251,"slug":1252,"type":15},"Documentation","documentation",{"name":1254,"slug":1255,"type":15},"Plugin Development","plugin-development",{"name":1257,"slug":1258,"type":15},"REST API","rest-api",{"name":9,"slug":8,"type":15},{"name":1261,"slug":1262,"type":15},"YAML","yaml","2026-05-28T06:48:49.361753",{"slug":1265,"name":1265,"fn":1266,"description":1267,"org":1268,"tags":1269,"stars":23,"repoUrl":24,"updatedAt":1284},"wp-abilities-verify","verify WordPress plugin Abilities API registrations","Verify a WordPress plugin's Abilities API registrations: enumerate abilities, check that callback behavior matches each annotation's claim (the adversarial readonly-but-writes detection), validate permissions and schemas, and validate audit documents produced by wp-abilities-audit.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1270,1271,1272,1273,1274,1277,1280,1283],{"name":1242,"slug":1243,"type":15},{"name":1248,"slug":1249,"type":15},{"name":1254,"slug":1255,"type":15},{"name":1257,"slug":1258,"type":15},{"name":1275,"slug":1276,"type":15},"Security","security",{"name":1278,"slug":1279,"type":15},"Testing","testing",{"name":1281,"slug":1282,"type":15},"Validation","validation",{"name":9,"slug":8,"type":15},"2026-05-28T06:48:50.590811",{"slug":1286,"name":1286,"fn":1287,"description":1288,"org":1289,"tags":1290,"stars":23,"repoUrl":24,"updatedAt":1301},"wp-block-development","develop WordPress Gutenberg blocks","Use when developing WordPress (Gutenberg) blocks: block.json metadata, register_block_type(_from_metadata), attributes\u002Fserialization, supports, dynamic rendering (render.php\u002Frender_callback), deprecations\u002Fmigrations, viewScript vs viewScriptModule, and @wordpress\u002Fscripts\u002F@wordpress\u002Fcreate-block build and test workflows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1291,1292,1294,1297,1300],{"name":21,"slug":22,"type":15},{"name":1293,"slug":504,"type":15},"PHP",{"name":1295,"slug":1296,"type":15},"React","react",{"name":1298,"slug":1299,"type":15},"UI Components","ui-components",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:24.172876",{"slug":1303,"name":1303,"fn":1304,"description":1305,"org":1306,"tags":1307,"stars":23,"repoUrl":24,"updatedAt":1317},"wp-block-themes","develop WordPress block themes","Use when developing WordPress block themes: theme.json (global settings\u002Fstyles), templates and template parts, patterns, style variations, and Site Editor troubleshooting (style hierarchy, overrides, caching).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1308,1311,1312,1315,1316],{"name":1309,"slug":1310,"type":15},"Design","design",{"name":21,"slug":22,"type":15},{"name":1313,"slug":1314,"type":15},"Themes","themes",{"name":1298,"slug":1299,"type":15},{"name":9,"slug":8,"type":15},"2026-04-06T18:58:27.909889",{"slug":4,"name":4,"fn":5,"description":6,"org":1319,"tags":1320,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1321,1322,1323,1324],{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"slug":1326,"name":1326,"fn":1327,"description":1328,"org":1329,"tags":1330,"stars":23,"repoUrl":24,"updatedAt":1339},"wp-patterns","generate WordPress block patterns","Generate technically correct, design-distinctive WordPress block patterns. Use when creating block patterns, starter page patterns, template patterns, template part patterns, or improving pattern design quality. Covers pattern registration (PHP headers, auto\u002Fmanual), block markup syntax, theme.json design tokens, categories, template types, accessibility, and i18n\u002Fescaping.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1331,1334,1335,1338],{"name":1332,"slug":1333,"type":15},"Block Editor","block-editor",{"name":1309,"slug":1310,"type":15},{"name":1336,"slug":1337,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-24T05:38:43.101238",{"slug":1341,"name":1341,"fn":1342,"description":1343,"org":1344,"tags":1345,"stars":23,"repoUrl":24,"updatedAt":1359},"wp-performance","investigate and improve WordPress performance","Use when investigating or improving WordPress performance (backend-only agent): profiling and measurement (WP-CLI profile\u002Fdoctor, Server-Timing, Query Monitor via REST headers), database\u002Fquery optimization, autoloaded options, object caching, cron, HTTP API calls, and safe verification.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1346,1349,1352,1355,1358],{"name":1347,"slug":1348,"type":15},"Backend","backend",{"name":1350,"slug":1351,"type":15},"Database","database",{"name":1353,"slug":1354,"type":15},"Performance","performance",{"name":1356,"slug":1357,"type":15},"SQL","sql",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:22.909053",{"slug":1361,"name":1361,"fn":1362,"description":1363,"org":1364,"tags":1365,"stars":23,"repoUrl":24,"updatedAt":1372},"wp-phpstan","run PHPStan static analysis on WordPress projects","Use when configuring, running, or fixing PHPStan static analysis in WordPress projects (plugins\u002Fthemes\u002Fsites): phpstan.neon setup, baselines, WordPress-specific typing, and handling third-party plugin classes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1366,1367,1368,1371],{"name":1248,"slug":1249,"type":15},{"name":1293,"slug":504,"type":15},{"name":1369,"slug":1370,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:15.318063",{"slug":1374,"name":1374,"fn":1375,"description":1376,"org":1377,"tags":1378,"stars":23,"repoUrl":24,"updatedAt":1387},"wp-playground","manage WordPress Playground instances","Use as the WordPress Playground routing wrapper for ambiguous Playground work, local CLI runs with @wp-playground\u002Fcli, playground.wordpress.net share links, browser previews, snapshots, mounts, version switching, and Xdebug. For Blueprint JSON authoring or review, use the blueprint skill directly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1379,1382,1385,1386],{"name":1380,"slug":1381,"type":15},"Local Development","local-development",{"name":1383,"slug":1384,"type":15},"Sandboxing","sandboxing",{"name":9,"slug":8,"type":15},{"name":1203,"slug":1204,"type":15},"2026-07-27T06:08:31.31025",18,{"items":1390,"total":1388},[1391,1396,1403,1409,1420,1431,1439],{"slug":1196,"name":1196,"fn":1197,"description":1198,"org":1392,"tags":1393,"stars":23,"repoUrl":24,"updatedAt":1205},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1394,1395],{"name":9,"slug":8,"type":15},{"name":1203,"slug":1204,"type":15},{"slug":1207,"name":1207,"fn":1208,"description":1209,"org":1397,"tags":1398,"stars":23,"repoUrl":24,"updatedAt":1222},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1399,1400,1401,1402],{"name":1213,"slug":1214,"type":15},{"name":1216,"slug":1217,"type":15},{"name":9,"slug":8,"type":15},{"name":1220,"slug":1221,"type":15},{"slug":1224,"name":1224,"fn":1225,"description":1226,"org":1404,"tags":1405,"stars":23,"repoUrl":24,"updatedAt":1234},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1406,1407,1408],{"name":1230,"slug":1231,"type":15},{"name":18,"slug":19,"type":15},{"name":9,"slug":8,"type":15},{"slug":1236,"name":1236,"fn":1237,"description":1238,"org":1410,"tags":1411,"stars":23,"repoUrl":24,"updatedAt":1263},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1412,1413,1414,1415,1416,1417,1418,1419],{"name":1242,"slug":1243,"type":15},{"name":1245,"slug":1246,"type":15},{"name":1248,"slug":1249,"type":15},{"name":1251,"slug":1252,"type":15},{"name":1254,"slug":1255,"type":15},{"name":1257,"slug":1258,"type":15},{"name":9,"slug":8,"type":15},{"name":1261,"slug":1262,"type":15},{"slug":1265,"name":1265,"fn":1266,"description":1267,"org":1421,"tags":1422,"stars":23,"repoUrl":24,"updatedAt":1284},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1423,1424,1425,1426,1427,1428,1429,1430],{"name":1242,"slug":1243,"type":15},{"name":1248,"slug":1249,"type":15},{"name":1254,"slug":1255,"type":15},{"name":1257,"slug":1258,"type":15},{"name":1275,"slug":1276,"type":15},{"name":1278,"slug":1279,"type":15},{"name":1281,"slug":1282,"type":15},{"name":9,"slug":8,"type":15},{"slug":1286,"name":1286,"fn":1287,"description":1288,"org":1432,"tags":1433,"stars":23,"repoUrl":24,"updatedAt":1301},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1434,1435,1436,1437,1438],{"name":21,"slug":22,"type":15},{"name":1293,"slug":504,"type":15},{"name":1295,"slug":1296,"type":15},{"name":1298,"slug":1299,"type":15},{"name":9,"slug":8,"type":15},{"slug":1303,"name":1303,"fn":1304,"description":1305,"org":1440,"tags":1441,"stars":23,"repoUrl":24,"updatedAt":1317},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1442,1443,1444,1445,1446],{"name":1309,"slug":1310,"type":15},{"name":21,"slug":22,"type":15},{"name":1313,"slug":1314,"type":15},{"name":1298,"slug":1299,"type":15},{"name":9,"slug":8,"type":15}]