[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-wordpress-wp-block-development":3,"mdc--ylp6qx-key":37,"related-org-wordpress-wp-block-development":1103,"related-repo-wordpress-wp-block-development":1297},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"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},"wordpress","WordPress","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fwordpress.png",[12,16,19,20,23],{"name":13,"slug":14,"type":15},"PHP","php","tag",{"name":17,"slug":18,"type":15},"React","react",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"UI Components","ui-components",{"name":24,"slug":25,"type":15},"Frontend","frontend",1892,"https:\u002F\u002Fgithub.com\u002FWordPress\u002Fagent-skills","2026-04-06T18:58:24.172876",null,284,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"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-block-development","---\nname: wp-block-development\ndescription: \"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.\"\ncompatibility: \"Targets WordPress 7.0+ (PHP 7.4.0+). Filesystem-based agent with bash + node. Some workflows require WP-CLI.\"\n---\n\n# WP Block Development\n\n## When to use\n\nUse this skill for block work such as:\n\n- creating a new block, or updating an existing one\n- changing `block.json` (scripts\u002Fstyles\u002Fsupports\u002Fattributes\u002Frender\u002FviewScriptModule)\n- fixing “block invalid \u002F not saving \u002F attributes not persisting”\n- adding dynamic rendering (`render.php` \u002F `render_callback`)\n- block deprecations and migrations (`deprecated` versions)\n- build tooling for blocks (`@wordpress\u002Fscripts`, `@wordpress\u002Fcreate-block`, `wp-env`)\n\n## Inputs required\n\n- Repo root and target (plugin vs theme vs full site).\n- The block name\u002Fnamespace and where it lives (path to `block.json` if known).\n- Target WordPress version range (especially if using modules \u002F `viewScriptModule`).\n\n## Procedure\n\n### 0) Triage and locate blocks\n\n1. Run triage:\n   - `node skills\u002Fwp-project-triage\u002Fscripts\u002Fdetect_wp_project.mjs`\n2. List blocks (deterministic scan):\n   - `node skills\u002Fwp-block-development\u002Fscripts\u002Flist_blocks.mjs`\n3. Identify the block root (directory containing `block.json`) you’re changing.\n\nIf this repo is a full site (`wp-content\u002F` present), be explicit about *which* plugin\u002Ftheme contains the block.\n\n### 1) Create a new block (if needed)\n\nIf you are creating a new block, prefer scaffolding rather than hand-rolling structure:\n\n- Use `@wordpress\u002Fcreate-block` to scaffold a modern block\u002Fplugin setup.\n- If you need Interactivity API from day 1, use the interactive template.\n\nRead:\n- `references\u002Fcreating-new-blocks.md`\n\nAfter scaffolding:\n\n1. Re-run the block list script and confirm the new block root.\n2. Continue with the remaining steps (model choice, metadata, registration, serialization).\n\n### 2) Ensure apiVersion 3 (WordPress 6.9+)\n\nWordPress 6.9 enforces `apiVersion: 3` in the block.json schema. Blocks with apiVersion 2 or lower trigger console warnings when `SCRIPT_DEBUG` is enabled.\n\n**Why this matters:**\n- WordPress 7.0 will run the post editor in an iframe regardless of block apiVersion.\n- apiVersion 3 ensures your block works correctly inside the iframed editor (style isolation, viewport units, media queries).\n\n**Migration:** Changing from version 2 to 3 is usually as simple as updating the `apiVersion` field in `block.json`. However:\n- Test in a local environment with the iframe editor enabled.\n- Ensure any style handles are included in `block.json` (styles missing from the iframe won't apply).\n- Third-party scripts attached to a specific `window` may have scoping issues.\n\nRead:\n- `references\u002Fblock-json.md` (apiVersion and schema details)\n\n### 3) Pick the right block model\n\n- **Static block** (markup saved into post content): implement `save()`; keep attributes serialization stable.\n- **Dynamic block** (server-rendered): use `render` in `block.json` (or `render_callback` in PHP) and keep `save()` minimal or `null`.\n- **Interactive frontend behavior**:\n  - Prefer `viewScriptModule` for modern module-based view scripts where supported.\n  - If you're working primarily on `data-wp-*` directives or stores, also use `wp-interactivity-api`.\n\n### 4) Update `block.json` safely\n\nMake changes in the block’s `block.json`, then confirm registration matches metadata.\n\nFor field-by-field guidance, read:\n- `references\u002Fblock-json.md`\n\nCommon pitfalls:\n\n- changing `name` breaks compatibility (treat it as stable API)\n- changing saved markup without adding `deprecated` causes “Invalid block”\n- adding attributes without defining source\u002Fserialization correctly causes “attribute not saving”\n\n### 5) Register the block (server-side preferred)\n\nPrefer PHP registration using metadata, especially when:\n\n- you need dynamic rendering\n- you need translations (`wp_set_script_translations`)\n- you need conditional asset loading\n\nRead and apply:\n- `references\u002Fregistration.md`\n\n### 6) Implement edit\u002Fsave\u002Frender patterns\n\nFollow wrapper attribute best practices:\n\n- Editor: `useBlockProps()`\n- Static save: `useBlockProps.save()`\n- Dynamic render (PHP): `get_block_wrapper_attributes()`\n\nRead:\n- `references\u002Fsupports-and-wrappers.md`\n- `references\u002Fdynamic-rendering.md` (if dynamic)\n\n### 7) Inner blocks (block composition)\n\nIf your block is a “container” that nests other blocks, treat Inner Blocks as a first-class feature:\n\n- Use `useInnerBlocksProps()` to integrate inner blocks with wrapper props.\n- Keep migrations in mind if you change inner markup.\n\nRead:\n- `references\u002Finner-blocks.md`\n\n### 8) Attributes and serialization\n\nBefore changing attributes:\n\n- confirm where the attribute value lives (comment delimiter vs HTML vs context)\n- avoid the deprecated `meta` attribute source\n\nRead:\n- `references\u002Fattributes-and-serialization.md`\n\n### 9) Migrations and deprecations (avoid \"Invalid block\")\n\nIf you change saved markup or attributes:\n\n1. Add a `deprecated` entry (newest → oldest).\n2. Provide `save` for old versions and an optional `migrate` to normalize attributes.\n\nRead:\n- `references\u002Fdeprecations.md`\n\n### 10) Tooling and verification commands\n\nPrefer whatever the repo already uses:\n\n- `@wordpress\u002Fscripts` (common) → run existing npm scripts\n- `wp-env` (common) → use for local WP + E2E\n\nRead:\n- `references\u002Ftooling-and-testing.md`\n\n## Verification\n\n- Block appears in inserter and inserts successfully.\n- Saving + reloading does not create “Invalid block”.\n- Frontend output matches expectations (static: saved markup; dynamic: server output).\n- Assets load where expected (editor vs frontend).\n- Run the repo’s lint\u002Fbuild\u002Ftests that triage recommends.\n\n## Failure modes \u002F debugging\n\nIf something fails, start here:\n\n- `references\u002Fdebugging.md` (common failures + fastest checks)\n- `references\u002Fattributes-and-serialization.md` (attributes not saving)\n- `references\u002Fdeprecations.md` (invalid block after change)\n\n## Escalation\n\nIf you’re uncertain about upstream behavior\u002Fversion support, consult canonical docs first:\n\n- WordPress Developer Resources (Block Editor Handbook, Theme Handbook, Plugin Handbook)\n- Gutenberg repo docs for bleeding-edge behaviors\n",{"data":38,"body":40},{"name":4,"description":6,"compatibility":39},"Targets WordPress 7.0+ (PHP 7.4.0+). Filesystem-based agent with bash + node. Some workflows require WP-CLI.",{"type":41,"children":42},"root",[43,51,58,64,154,160,193,199,206,256,277,283,288,308,313,325,330,343,349,370,379,392,417,450,454,468,474,587,600,612,617,628,633,665,671,676,701,706,718,724,729,765,769,792,798,803,823,827,839,845,850,871,875,887,893,898,934,938,950,956,961,984,988,1000,1006,1034,1040,1045,1079,1085,1090],{"type":44,"tag":45,"props":46,"children":47},"element","h1",{"id":4},[48],{"type":49,"value":50},"text","WP Block Development",{"type":44,"tag":52,"props":53,"children":55},"h2",{"id":54},"when-to-use",[56],{"type":49,"value":57},"When to use",{"type":44,"tag":59,"props":60,"children":61},"p",{},[62],{"type":49,"value":63},"Use this skill for block work such as:",{"type":44,"tag":65,"props":66,"children":67},"ul",{},[68,74,88,93,114,127],{"type":44,"tag":69,"props":70,"children":71},"li",{},[72],{"type":49,"value":73},"creating a new block, or updating an existing one",{"type":44,"tag":69,"props":75,"children":76},{},[77,79,86],{"type":49,"value":78},"changing ",{"type":44,"tag":80,"props":81,"children":83},"code",{"className":82},[],[84],{"type":49,"value":85},"block.json",{"type":49,"value":87}," (scripts\u002Fstyles\u002Fsupports\u002Fattributes\u002Frender\u002FviewScriptModule)",{"type":44,"tag":69,"props":89,"children":90},{},[91],{"type":49,"value":92},"fixing “block invalid \u002F not saving \u002F attributes not persisting”",{"type":44,"tag":69,"props":94,"children":95},{},[96,98,104,106,112],{"type":49,"value":97},"adding dynamic rendering (",{"type":44,"tag":80,"props":99,"children":101},{"className":100},[],[102],{"type":49,"value":103},"render.php",{"type":49,"value":105}," \u002F ",{"type":44,"tag":80,"props":107,"children":109},{"className":108},[],[110],{"type":49,"value":111},"render_callback",{"type":49,"value":113},")",{"type":44,"tag":69,"props":115,"children":116},{},[117,119,125],{"type":49,"value":118},"block deprecations and migrations (",{"type":44,"tag":80,"props":120,"children":122},{"className":121},[],[123],{"type":49,"value":124},"deprecated",{"type":49,"value":126}," versions)",{"type":44,"tag":69,"props":128,"children":129},{},[130,132,138,140,146,147,153],{"type":49,"value":131},"build tooling for blocks (",{"type":44,"tag":80,"props":133,"children":135},{"className":134},[],[136],{"type":49,"value":137},"@wordpress\u002Fscripts",{"type":49,"value":139},", ",{"type":44,"tag":80,"props":141,"children":143},{"className":142},[],[144],{"type":49,"value":145},"@wordpress\u002Fcreate-block",{"type":49,"value":139},{"type":44,"tag":80,"props":148,"children":150},{"className":149},[],[151],{"type":49,"value":152},"wp-env",{"type":49,"value":113},{"type":44,"tag":52,"props":155,"children":157},{"id":156},"inputs-required",[158],{"type":49,"value":159},"Inputs required",{"type":44,"tag":65,"props":161,"children":162},{},[163,168,180],{"type":44,"tag":69,"props":164,"children":165},{},[166],{"type":49,"value":167},"Repo root and target (plugin vs theme vs full site).",{"type":44,"tag":69,"props":169,"children":170},{},[171,173,178],{"type":49,"value":172},"The block name\u002Fnamespace and where it lives (path to ",{"type":44,"tag":80,"props":174,"children":176},{"className":175},[],[177],{"type":49,"value":85},{"type":49,"value":179}," if known).",{"type":44,"tag":69,"props":181,"children":182},{},[183,185,191],{"type":49,"value":184},"Target WordPress version range (especially if using modules \u002F ",{"type":44,"tag":80,"props":186,"children":188},{"className":187},[],[189],{"type":49,"value":190},"viewScriptModule",{"type":49,"value":192},").",{"type":44,"tag":52,"props":194,"children":196},{"id":195},"procedure",[197],{"type":49,"value":198},"Procedure",{"type":44,"tag":200,"props":201,"children":203},"h3",{"id":202},"_0-triage-and-locate-blocks",[204],{"type":49,"value":205},"0) Triage and locate blocks",{"type":44,"tag":207,"props":208,"children":209},"ol",{},[210,227,244],{"type":44,"tag":69,"props":211,"children":212},{},[213,215],{"type":49,"value":214},"Run triage:\n",{"type":44,"tag":65,"props":216,"children":217},{},[218],{"type":44,"tag":69,"props":219,"children":220},{},[221],{"type":44,"tag":80,"props":222,"children":224},{"className":223},[],[225],{"type":49,"value":226},"node skills\u002Fwp-project-triage\u002Fscripts\u002Fdetect_wp_project.mjs",{"type":44,"tag":69,"props":228,"children":229},{},[230,232],{"type":49,"value":231},"List blocks (deterministic scan):\n",{"type":44,"tag":65,"props":233,"children":234},{},[235],{"type":44,"tag":69,"props":236,"children":237},{},[238],{"type":44,"tag":80,"props":239,"children":241},{"className":240},[],[242],{"type":49,"value":243},"node skills\u002Fwp-block-development\u002Fscripts\u002Flist_blocks.mjs",{"type":44,"tag":69,"props":245,"children":246},{},[247,249,254],{"type":49,"value":248},"Identify the block root (directory containing ",{"type":44,"tag":80,"props":250,"children":252},{"className":251},[],[253],{"type":49,"value":85},{"type":49,"value":255},") you’re changing.",{"type":44,"tag":59,"props":257,"children":258},{},[259,261,267,269,275],{"type":49,"value":260},"If this repo is a full site (",{"type":44,"tag":80,"props":262,"children":264},{"className":263},[],[265],{"type":49,"value":266},"wp-content\u002F",{"type":49,"value":268}," present), be explicit about ",{"type":44,"tag":270,"props":271,"children":272},"em",{},[273],{"type":49,"value":274},"which",{"type":49,"value":276}," plugin\u002Ftheme contains the block.",{"type":44,"tag":200,"props":278,"children":280},{"id":279},"_1-create-a-new-block-if-needed",[281],{"type":49,"value":282},"1) Create a new block (if needed)",{"type":44,"tag":59,"props":284,"children":285},{},[286],{"type":49,"value":287},"If you are creating a new block, prefer scaffolding rather than hand-rolling structure:",{"type":44,"tag":65,"props":289,"children":290},{},[291,303],{"type":44,"tag":69,"props":292,"children":293},{},[294,296,301],{"type":49,"value":295},"Use ",{"type":44,"tag":80,"props":297,"children":299},{"className":298},[],[300],{"type":49,"value":145},{"type":49,"value":302}," to scaffold a modern block\u002Fplugin setup.",{"type":44,"tag":69,"props":304,"children":305},{},[306],{"type":49,"value":307},"If you need Interactivity API from day 1, use the interactive template.",{"type":44,"tag":59,"props":309,"children":310},{},[311],{"type":49,"value":312},"Read:",{"type":44,"tag":65,"props":314,"children":315},{},[316],{"type":44,"tag":69,"props":317,"children":318},{},[319],{"type":44,"tag":80,"props":320,"children":322},{"className":321},[],[323],{"type":49,"value":324},"references\u002Fcreating-new-blocks.md",{"type":44,"tag":59,"props":326,"children":327},{},[328],{"type":49,"value":329},"After scaffolding:",{"type":44,"tag":207,"props":331,"children":332},{},[333,338],{"type":44,"tag":69,"props":334,"children":335},{},[336],{"type":49,"value":337},"Re-run the block list script and confirm the new block root.",{"type":44,"tag":69,"props":339,"children":340},{},[341],{"type":49,"value":342},"Continue with the remaining steps (model choice, metadata, registration, serialization).",{"type":44,"tag":200,"props":344,"children":346},{"id":345},"_2-ensure-apiversion-3-wordpress-69",[347],{"type":49,"value":348},"2) Ensure apiVersion 3 (WordPress 6.9+)",{"type":44,"tag":59,"props":350,"children":351},{},[352,354,360,362,368],{"type":49,"value":353},"WordPress 6.9 enforces ",{"type":44,"tag":80,"props":355,"children":357},{"className":356},[],[358],{"type":49,"value":359},"apiVersion: 3",{"type":49,"value":361}," in the block.json schema. Blocks with apiVersion 2 or lower trigger console warnings when ",{"type":44,"tag":80,"props":363,"children":365},{"className":364},[],[366],{"type":49,"value":367},"SCRIPT_DEBUG",{"type":49,"value":369}," is enabled.",{"type":44,"tag":59,"props":371,"children":372},{},[373],{"type":44,"tag":374,"props":375,"children":376},"strong",{},[377],{"type":49,"value":378},"Why this matters:",{"type":44,"tag":65,"props":380,"children":381},{},[382,387],{"type":44,"tag":69,"props":383,"children":384},{},[385],{"type":49,"value":386},"WordPress 7.0 will run the post editor in an iframe regardless of block apiVersion.",{"type":44,"tag":69,"props":388,"children":389},{},[390],{"type":49,"value":391},"apiVersion 3 ensures your block works correctly inside the iframed editor (style isolation, viewport units, media queries).",{"type":44,"tag":59,"props":393,"children":394},{},[395,400,402,408,410,415],{"type":44,"tag":374,"props":396,"children":397},{},[398],{"type":49,"value":399},"Migration:",{"type":49,"value":401}," Changing from version 2 to 3 is usually as simple as updating the ",{"type":44,"tag":80,"props":403,"children":405},{"className":404},[],[406],{"type":49,"value":407},"apiVersion",{"type":49,"value":409}," field in ",{"type":44,"tag":80,"props":411,"children":413},{"className":412},[],[414],{"type":49,"value":85},{"type":49,"value":416},". However:",{"type":44,"tag":65,"props":418,"children":419},{},[420,425,437],{"type":44,"tag":69,"props":421,"children":422},{},[423],{"type":49,"value":424},"Test in a local environment with the iframe editor enabled.",{"type":44,"tag":69,"props":426,"children":427},{},[428,430,435],{"type":49,"value":429},"Ensure any style handles are included in ",{"type":44,"tag":80,"props":431,"children":433},{"className":432},[],[434],{"type":49,"value":85},{"type":49,"value":436}," (styles missing from the iframe won't apply).",{"type":44,"tag":69,"props":438,"children":439},{},[440,442,448],{"type":49,"value":441},"Third-party scripts attached to a specific ",{"type":44,"tag":80,"props":443,"children":445},{"className":444},[],[446],{"type":49,"value":447},"window",{"type":49,"value":449}," may have scoping issues.",{"type":44,"tag":59,"props":451,"children":452},{},[453],{"type":49,"value":312},{"type":44,"tag":65,"props":455,"children":456},{},[457],{"type":44,"tag":69,"props":458,"children":459},{},[460,466],{"type":44,"tag":80,"props":461,"children":463},{"className":462},[],[464],{"type":49,"value":465},"references\u002Fblock-json.md",{"type":49,"value":467}," (apiVersion and schema details)",{"type":44,"tag":200,"props":469,"children":471},{"id":470},"_3-pick-the-right-block-model",[472],{"type":49,"value":473},"3) Pick the right block model",{"type":44,"tag":65,"props":475,"children":476},{},[477,495,542],{"type":44,"tag":69,"props":478,"children":479},{},[480,485,487,493],{"type":44,"tag":374,"props":481,"children":482},{},[483],{"type":49,"value":484},"Static block",{"type":49,"value":486}," (markup saved into post content): implement ",{"type":44,"tag":80,"props":488,"children":490},{"className":489},[],[491],{"type":49,"value":492},"save()",{"type":49,"value":494},"; keep attributes serialization stable.",{"type":44,"tag":69,"props":496,"children":497},{},[498,503,505,511,513,518,520,525,527,532,534,540],{"type":44,"tag":374,"props":499,"children":500},{},[501],{"type":49,"value":502},"Dynamic block",{"type":49,"value":504}," (server-rendered): use ",{"type":44,"tag":80,"props":506,"children":508},{"className":507},[],[509],{"type":49,"value":510},"render",{"type":49,"value":512}," in ",{"type":44,"tag":80,"props":514,"children":516},{"className":515},[],[517],{"type":49,"value":85},{"type":49,"value":519}," (or ",{"type":44,"tag":80,"props":521,"children":523},{"className":522},[],[524],{"type":49,"value":111},{"type":49,"value":526}," in PHP) and keep ",{"type":44,"tag":80,"props":528,"children":530},{"className":529},[],[531],{"type":49,"value":492},{"type":49,"value":533}," minimal or ",{"type":44,"tag":80,"props":535,"children":537},{"className":536},[],[538],{"type":49,"value":539},"null",{"type":49,"value":541},".",{"type":44,"tag":69,"props":543,"children":544},{},[545,550,552],{"type":44,"tag":374,"props":546,"children":547},{},[548],{"type":49,"value":549},"Interactive frontend behavior",{"type":49,"value":551},":\n",{"type":44,"tag":65,"props":553,"children":554},{},[555,567],{"type":44,"tag":69,"props":556,"children":557},{},[558,560,565],{"type":49,"value":559},"Prefer ",{"type":44,"tag":80,"props":561,"children":563},{"className":562},[],[564],{"type":49,"value":190},{"type":49,"value":566}," for modern module-based view scripts where supported.",{"type":44,"tag":69,"props":568,"children":569},{},[570,572,578,580,586],{"type":49,"value":571},"If you're working primarily on ",{"type":44,"tag":80,"props":573,"children":575},{"className":574},[],[576],{"type":49,"value":577},"data-wp-*",{"type":49,"value":579}," directives or stores, also use ",{"type":44,"tag":80,"props":581,"children":583},{"className":582},[],[584],{"type":49,"value":585},"wp-interactivity-api",{"type":49,"value":541},{"type":44,"tag":200,"props":588,"children":590},{"id":589},"_4-update-blockjson-safely",[591,593,598],{"type":49,"value":592},"4) Update ",{"type":44,"tag":80,"props":594,"children":596},{"className":595},[],[597],{"type":49,"value":85},{"type":49,"value":599}," safely",{"type":44,"tag":59,"props":601,"children":602},{},[603,605,610],{"type":49,"value":604},"Make changes in the block’s ",{"type":44,"tag":80,"props":606,"children":608},{"className":607},[],[609],{"type":49,"value":85},{"type":49,"value":611},", then confirm registration matches metadata.",{"type":44,"tag":59,"props":613,"children":614},{},[615],{"type":49,"value":616},"For field-by-field guidance, read:",{"type":44,"tag":65,"props":618,"children":619},{},[620],{"type":44,"tag":69,"props":621,"children":622},{},[623],{"type":44,"tag":80,"props":624,"children":626},{"className":625},[],[627],{"type":49,"value":465},{"type":44,"tag":59,"props":629,"children":630},{},[631],{"type":49,"value":632},"Common pitfalls:",{"type":44,"tag":65,"props":634,"children":635},{},[636,648,660],{"type":44,"tag":69,"props":637,"children":638},{},[639,640,646],{"type":49,"value":78},{"type":44,"tag":80,"props":641,"children":643},{"className":642},[],[644],{"type":49,"value":645},"name",{"type":49,"value":647}," breaks compatibility (treat it as stable API)",{"type":44,"tag":69,"props":649,"children":650},{},[651,653,658],{"type":49,"value":652},"changing saved markup without adding ",{"type":44,"tag":80,"props":654,"children":656},{"className":655},[],[657],{"type":49,"value":124},{"type":49,"value":659}," causes “Invalid block”",{"type":44,"tag":69,"props":661,"children":662},{},[663],{"type":49,"value":664},"adding attributes without defining source\u002Fserialization correctly causes “attribute not saving”",{"type":44,"tag":200,"props":666,"children":668},{"id":667},"_5-register-the-block-server-side-preferred",[669],{"type":49,"value":670},"5) Register the block (server-side preferred)",{"type":44,"tag":59,"props":672,"children":673},{},[674],{"type":49,"value":675},"Prefer PHP registration using metadata, especially when:",{"type":44,"tag":65,"props":677,"children":678},{},[679,684,696],{"type":44,"tag":69,"props":680,"children":681},{},[682],{"type":49,"value":683},"you need dynamic rendering",{"type":44,"tag":69,"props":685,"children":686},{},[687,689,695],{"type":49,"value":688},"you need translations (",{"type":44,"tag":80,"props":690,"children":692},{"className":691},[],[693],{"type":49,"value":694},"wp_set_script_translations",{"type":49,"value":113},{"type":44,"tag":69,"props":697,"children":698},{},[699],{"type":49,"value":700},"you need conditional asset loading",{"type":44,"tag":59,"props":702,"children":703},{},[704],{"type":49,"value":705},"Read and apply:",{"type":44,"tag":65,"props":707,"children":708},{},[709],{"type":44,"tag":69,"props":710,"children":711},{},[712],{"type":44,"tag":80,"props":713,"children":715},{"className":714},[],[716],{"type":49,"value":717},"references\u002Fregistration.md",{"type":44,"tag":200,"props":719,"children":721},{"id":720},"_6-implement-editsaverender-patterns",[722],{"type":49,"value":723},"6) Implement edit\u002Fsave\u002Frender patterns",{"type":44,"tag":59,"props":725,"children":726},{},[727],{"type":49,"value":728},"Follow wrapper attribute best practices:",{"type":44,"tag":65,"props":730,"children":731},{},[732,743,754],{"type":44,"tag":69,"props":733,"children":734},{},[735,737],{"type":49,"value":736},"Editor: ",{"type":44,"tag":80,"props":738,"children":740},{"className":739},[],[741],{"type":49,"value":742},"useBlockProps()",{"type":44,"tag":69,"props":744,"children":745},{},[746,748],{"type":49,"value":747},"Static save: ",{"type":44,"tag":80,"props":749,"children":751},{"className":750},[],[752],{"type":49,"value":753},"useBlockProps.save()",{"type":44,"tag":69,"props":755,"children":756},{},[757,759],{"type":49,"value":758},"Dynamic render (PHP): ",{"type":44,"tag":80,"props":760,"children":762},{"className":761},[],[763],{"type":49,"value":764},"get_block_wrapper_attributes()",{"type":44,"tag":59,"props":766,"children":767},{},[768],{"type":49,"value":312},{"type":44,"tag":65,"props":770,"children":771},{},[772,781],{"type":44,"tag":69,"props":773,"children":774},{},[775],{"type":44,"tag":80,"props":776,"children":778},{"className":777},[],[779],{"type":49,"value":780},"references\u002Fsupports-and-wrappers.md",{"type":44,"tag":69,"props":782,"children":783},{},[784,790],{"type":44,"tag":80,"props":785,"children":787},{"className":786},[],[788],{"type":49,"value":789},"references\u002Fdynamic-rendering.md",{"type":49,"value":791}," (if dynamic)",{"type":44,"tag":200,"props":793,"children":795},{"id":794},"_7-inner-blocks-block-composition",[796],{"type":49,"value":797},"7) Inner blocks (block composition)",{"type":44,"tag":59,"props":799,"children":800},{},[801],{"type":49,"value":802},"If your block is a “container” that nests other blocks, treat Inner Blocks as a first-class feature:",{"type":44,"tag":65,"props":804,"children":805},{},[806,818],{"type":44,"tag":69,"props":807,"children":808},{},[809,810,816],{"type":49,"value":295},{"type":44,"tag":80,"props":811,"children":813},{"className":812},[],[814],{"type":49,"value":815},"useInnerBlocksProps()",{"type":49,"value":817}," to integrate inner blocks with wrapper props.",{"type":44,"tag":69,"props":819,"children":820},{},[821],{"type":49,"value":822},"Keep migrations in mind if you change inner markup.",{"type":44,"tag":59,"props":824,"children":825},{},[826],{"type":49,"value":312},{"type":44,"tag":65,"props":828,"children":829},{},[830],{"type":44,"tag":69,"props":831,"children":832},{},[833],{"type":44,"tag":80,"props":834,"children":836},{"className":835},[],[837],{"type":49,"value":838},"references\u002Finner-blocks.md",{"type":44,"tag":200,"props":840,"children":842},{"id":841},"_8-attributes-and-serialization",[843],{"type":49,"value":844},"8) Attributes and serialization",{"type":44,"tag":59,"props":846,"children":847},{},[848],{"type":49,"value":849},"Before changing attributes:",{"type":44,"tag":65,"props":851,"children":852},{},[853,858],{"type":44,"tag":69,"props":854,"children":855},{},[856],{"type":49,"value":857},"confirm where the attribute value lives (comment delimiter vs HTML vs context)",{"type":44,"tag":69,"props":859,"children":860},{},[861,863,869],{"type":49,"value":862},"avoid the deprecated ",{"type":44,"tag":80,"props":864,"children":866},{"className":865},[],[867],{"type":49,"value":868},"meta",{"type":49,"value":870}," attribute source",{"type":44,"tag":59,"props":872,"children":873},{},[874],{"type":49,"value":312},{"type":44,"tag":65,"props":876,"children":877},{},[878],{"type":44,"tag":69,"props":879,"children":880},{},[881],{"type":44,"tag":80,"props":882,"children":884},{"className":883},[],[885],{"type":49,"value":886},"references\u002Fattributes-and-serialization.md",{"type":44,"tag":200,"props":888,"children":890},{"id":889},"_9-migrations-and-deprecations-avoid-invalid-block",[891],{"type":49,"value":892},"9) Migrations and deprecations (avoid \"Invalid block\")",{"type":44,"tag":59,"props":894,"children":895},{},[896],{"type":49,"value":897},"If you change saved markup or attributes:",{"type":44,"tag":207,"props":899,"children":900},{},[901,913],{"type":44,"tag":69,"props":902,"children":903},{},[904,906,911],{"type":49,"value":905},"Add a ",{"type":44,"tag":80,"props":907,"children":909},{"className":908},[],[910],{"type":49,"value":124},{"type":49,"value":912}," entry (newest → oldest).",{"type":44,"tag":69,"props":914,"children":915},{},[916,918,924,926,932],{"type":49,"value":917},"Provide ",{"type":44,"tag":80,"props":919,"children":921},{"className":920},[],[922],{"type":49,"value":923},"save",{"type":49,"value":925}," for old versions and an optional ",{"type":44,"tag":80,"props":927,"children":929},{"className":928},[],[930],{"type":49,"value":931},"migrate",{"type":49,"value":933}," to normalize attributes.",{"type":44,"tag":59,"props":935,"children":936},{},[937],{"type":49,"value":312},{"type":44,"tag":65,"props":939,"children":940},{},[941],{"type":44,"tag":69,"props":942,"children":943},{},[944],{"type":44,"tag":80,"props":945,"children":947},{"className":946},[],[948],{"type":49,"value":949},"references\u002Fdeprecations.md",{"type":44,"tag":200,"props":951,"children":953},{"id":952},"_10-tooling-and-verification-commands",[954],{"type":49,"value":955},"10) Tooling and verification commands",{"type":44,"tag":59,"props":957,"children":958},{},[959],{"type":49,"value":960},"Prefer whatever the repo already uses:",{"type":44,"tag":65,"props":962,"children":963},{},[964,974],{"type":44,"tag":69,"props":965,"children":966},{},[967,972],{"type":44,"tag":80,"props":968,"children":970},{"className":969},[],[971],{"type":49,"value":137},{"type":49,"value":973}," (common) → run existing npm scripts",{"type":44,"tag":69,"props":975,"children":976},{},[977,982],{"type":44,"tag":80,"props":978,"children":980},{"className":979},[],[981],{"type":49,"value":152},{"type":49,"value":983}," (common) → use for local WP + E2E",{"type":44,"tag":59,"props":985,"children":986},{},[987],{"type":49,"value":312},{"type":44,"tag":65,"props":989,"children":990},{},[991],{"type":44,"tag":69,"props":992,"children":993},{},[994],{"type":44,"tag":80,"props":995,"children":997},{"className":996},[],[998],{"type":49,"value":999},"references\u002Ftooling-and-testing.md",{"type":44,"tag":52,"props":1001,"children":1003},{"id":1002},"verification",[1004],{"type":49,"value":1005},"Verification",{"type":44,"tag":65,"props":1007,"children":1008},{},[1009,1014,1019,1024,1029],{"type":44,"tag":69,"props":1010,"children":1011},{},[1012],{"type":49,"value":1013},"Block appears in inserter and inserts successfully.",{"type":44,"tag":69,"props":1015,"children":1016},{},[1017],{"type":49,"value":1018},"Saving + reloading does not create “Invalid block”.",{"type":44,"tag":69,"props":1020,"children":1021},{},[1022],{"type":49,"value":1023},"Frontend output matches expectations (static: saved markup; dynamic: server output).",{"type":44,"tag":69,"props":1025,"children":1026},{},[1027],{"type":49,"value":1028},"Assets load where expected (editor vs frontend).",{"type":44,"tag":69,"props":1030,"children":1031},{},[1032],{"type":49,"value":1033},"Run the repo’s lint\u002Fbuild\u002Ftests that triage recommends.",{"type":44,"tag":52,"props":1035,"children":1037},{"id":1036},"failure-modes-debugging",[1038],{"type":49,"value":1039},"Failure modes \u002F debugging",{"type":44,"tag":59,"props":1041,"children":1042},{},[1043],{"type":49,"value":1044},"If something fails, start here:",{"type":44,"tag":65,"props":1046,"children":1047},{},[1048,1059,1069],{"type":44,"tag":69,"props":1049,"children":1050},{},[1051,1057],{"type":44,"tag":80,"props":1052,"children":1054},{"className":1053},[],[1055],{"type":49,"value":1056},"references\u002Fdebugging.md",{"type":49,"value":1058}," (common failures + fastest checks)",{"type":44,"tag":69,"props":1060,"children":1061},{},[1062,1067],{"type":44,"tag":80,"props":1063,"children":1065},{"className":1064},[],[1066],{"type":49,"value":886},{"type":49,"value":1068}," (attributes not saving)",{"type":44,"tag":69,"props":1070,"children":1071},{},[1072,1077],{"type":44,"tag":80,"props":1073,"children":1075},{"className":1074},[],[1076],{"type":49,"value":949},{"type":49,"value":1078}," (invalid block after change)",{"type":44,"tag":52,"props":1080,"children":1082},{"id":1081},"escalation",[1083],{"type":49,"value":1084},"Escalation",{"type":44,"tag":59,"props":1086,"children":1087},{},[1088],{"type":49,"value":1089},"If you’re uncertain about upstream behavior\u002Fversion support, consult canonical docs first:",{"type":44,"tag":65,"props":1091,"children":1092},{},[1093,1098],{"type":44,"tag":69,"props":1094,"children":1095},{},[1096],{"type":49,"value":1097},"WordPress Developer Resources (Block Editor Handbook, Theme Handbook, Plugin Handbook)",{"type":44,"tag":69,"props":1099,"children":1100},{},[1101],{"type":49,"value":1102},"Gutenberg repo docs for bleeding-edge behaviors",{"items":1104,"total":1296},[1105,1116,1133,1147,1176,1197,1205,1221,1233,1248,1268,1281],{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1109,"tags":1110,"stars":26,"repoUrl":27,"updatedAt":1115},"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},[1111,1112],{"name":9,"slug":8,"type":15},{"name":1113,"slug":1114,"type":15},"WordPress Playground","wordpress-playground","2026-07-27T06:08:32.306955",{"slug":1117,"name":1117,"fn":1118,"description":1119,"org":1120,"tags":1121,"stars":26,"repoUrl":27,"updatedAt":1132},"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},[1122,1125,1128,1129],{"name":1123,"slug":1124,"type":15},"Engineering","engineering",{"name":1126,"slug":1127,"type":15},"Triage","triage",{"name":9,"slug":8,"type":15},{"name":1130,"slug":1131,"type":15},"Workflow Automation","workflow-automation","2026-04-06T18:58:21.644368",{"slug":1134,"name":1134,"fn":1135,"description":1136,"org":1137,"tags":1138,"stars":26,"repoUrl":27,"updatedAt":1146},"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},[1139,1142,1145],{"name":1140,"slug":1141,"type":15},"Access Control","access-control",{"name":1143,"slug":1144,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:17.857773",{"slug":1148,"name":1148,"fn":1149,"description":1150,"org":1151,"tags":1152,"stars":26,"repoUrl":27,"updatedAt":1175},"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},[1153,1156,1159,1162,1165,1168,1171,1172],{"name":1154,"slug":1155,"type":15},"Abilities API","abilities-api",{"name":1157,"slug":1158,"type":15},"Audit","audit",{"name":1160,"slug":1161,"type":15},"Code Analysis","code-analysis",{"name":1163,"slug":1164,"type":15},"Documentation","documentation",{"name":1166,"slug":1167,"type":15},"Plugin Development","plugin-development",{"name":1169,"slug":1170,"type":15},"REST API","rest-api",{"name":9,"slug":8,"type":15},{"name":1173,"slug":1174,"type":15},"YAML","yaml","2026-05-28T06:48:49.361753",{"slug":1177,"name":1177,"fn":1178,"description":1179,"org":1180,"tags":1181,"stars":26,"repoUrl":27,"updatedAt":1196},"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},[1182,1183,1184,1185,1186,1189,1192,1195],{"name":1154,"slug":1155,"type":15},{"name":1160,"slug":1161,"type":15},{"name":1166,"slug":1167,"type":15},{"name":1169,"slug":1170,"type":15},{"name":1187,"slug":1188,"type":15},"Security","security",{"name":1190,"slug":1191,"type":15},"Testing","testing",{"name":1193,"slug":1194,"type":15},"Validation","validation",{"name":9,"slug":8,"type":15},"2026-05-28T06:48:50.590811",{"slug":4,"name":4,"fn":5,"description":6,"org":1198,"tags":1199,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1200,1201,1202,1203,1204],{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"slug":1206,"name":1206,"fn":1207,"description":1208,"org":1209,"tags":1210,"stars":26,"repoUrl":27,"updatedAt":1220},"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},[1211,1214,1215,1218,1219],{"name":1212,"slug":1213,"type":15},"Design","design",{"name":24,"slug":25,"type":15},{"name":1216,"slug":1217,"type":15},"Themes","themes",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},"2026-04-06T18:58:27.909889",{"slug":585,"name":585,"fn":1222,"description":1223,"org":1224,"tags":1225,"stars":26,"repoUrl":27,"updatedAt":1232},"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},[1226,1227,1228,1231],{"name":1143,"slug":1144,"type":15},{"name":24,"slug":25,"type":15},{"name":1229,"slug":1230,"type":15},"JavaScript","javascript",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:20.397676",{"slug":1234,"name":1234,"fn":1235,"description":1236,"org":1237,"tags":1238,"stars":26,"repoUrl":27,"updatedAt":1247},"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},[1239,1242,1243,1246],{"name":1240,"slug":1241,"type":15},"Block Editor","block-editor",{"name":1212,"slug":1213,"type":15},{"name":1244,"slug":1245,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-24T05:38:43.101238",{"slug":1249,"name":1249,"fn":1250,"description":1251,"org":1252,"tags":1253,"stars":26,"repoUrl":27,"updatedAt":1267},"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},[1254,1257,1260,1263,1266],{"name":1255,"slug":1256,"type":15},"Backend","backend",{"name":1258,"slug":1259,"type":15},"Database","database",{"name":1261,"slug":1262,"type":15},"Performance","performance",{"name":1264,"slug":1265,"type":15},"SQL","sql",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:22.909053",{"slug":1269,"name":1269,"fn":1270,"description":1271,"org":1272,"tags":1273,"stars":26,"repoUrl":27,"updatedAt":1280},"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},[1274,1275,1276,1279],{"name":1160,"slug":1161,"type":15},{"name":13,"slug":14,"type":15},{"name":1277,"slug":1278,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:15.318063",{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1285,"tags":1286,"stars":26,"repoUrl":27,"updatedAt":1295},"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},[1287,1290,1293,1294],{"name":1288,"slug":1289,"type":15},"Local Development","local-development",{"name":1291,"slug":1292,"type":15},"Sandboxing","sandboxing",{"name":9,"slug":8,"type":15},{"name":1113,"slug":1114,"type":15},"2026-07-27T06:08:31.31025",18,{"items":1298,"total":1296},[1299,1304,1311,1317,1328,1339,1347],{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1300,"tags":1301,"stars":26,"repoUrl":27,"updatedAt":1115},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1302,1303],{"name":9,"slug":8,"type":15},{"name":1113,"slug":1114,"type":15},{"slug":1117,"name":1117,"fn":1118,"description":1119,"org":1305,"tags":1306,"stars":26,"repoUrl":27,"updatedAt":1132},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1307,1308,1309,1310],{"name":1123,"slug":1124,"type":15},{"name":1126,"slug":1127,"type":15},{"name":9,"slug":8,"type":15},{"name":1130,"slug":1131,"type":15},{"slug":1134,"name":1134,"fn":1135,"description":1136,"org":1312,"tags":1313,"stars":26,"repoUrl":27,"updatedAt":1146},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1314,1315,1316],{"name":1140,"slug":1141,"type":15},{"name":1143,"slug":1144,"type":15},{"name":9,"slug":8,"type":15},{"slug":1148,"name":1148,"fn":1149,"description":1150,"org":1318,"tags":1319,"stars":26,"repoUrl":27,"updatedAt":1175},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1320,1321,1322,1323,1324,1325,1326,1327],{"name":1154,"slug":1155,"type":15},{"name":1157,"slug":1158,"type":15},{"name":1160,"slug":1161,"type":15},{"name":1163,"slug":1164,"type":15},{"name":1166,"slug":1167,"type":15},{"name":1169,"slug":1170,"type":15},{"name":9,"slug":8,"type":15},{"name":1173,"slug":1174,"type":15},{"slug":1177,"name":1177,"fn":1178,"description":1179,"org":1329,"tags":1330,"stars":26,"repoUrl":27,"updatedAt":1196},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1331,1332,1333,1334,1335,1336,1337,1338],{"name":1154,"slug":1155,"type":15},{"name":1160,"slug":1161,"type":15},{"name":1166,"slug":1167,"type":15},{"name":1169,"slug":1170,"type":15},{"name":1187,"slug":1188,"type":15},{"name":1190,"slug":1191,"type":15},{"name":1193,"slug":1194,"type":15},{"name":9,"slug":8,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1340,"tags":1341,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1342,1343,1344,1345,1346],{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"slug":1206,"name":1206,"fn":1207,"description":1208,"org":1348,"tags":1349,"stars":26,"repoUrl":27,"updatedAt":1220},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1350,1351,1352,1353,1354],{"name":1212,"slug":1213,"type":15},{"name":24,"slug":25,"type":15},{"name":1216,"slug":1217,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15}]