[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-wordpress-wp-abilities-api":3,"mdc-gr3721-key":31,"related-org-wordpress-wp-abilities-api":708,"related-repo-wordpress-wp-abilities-api":907},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"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},"wordpress","WordPress","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fwordpress.png",[12,14,17],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"API Development","api-development",{"name":18,"slug":19,"type":13},"Access Control","access-control",1892,"https:\u002F\u002Fgithub.com\u002FWordPress\u002Fagent-skills","2026-04-06T18:58:17.857773",null,284,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],"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-abilities-api","---\nname: wp-abilities-api\ndescription: \"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.\"\ncompatibility: \"Targets WordPress 7.0+ (PHP 7.4.0+). Filesystem-based agent with bash + node. Some workflows require WP-CLI.\"\n---\n\n# WP Abilities API\n\n## When to use\n\nUse this skill when the task involves:\n\n- registering abilities or ability categories in PHP,\n- exposing abilities to clients via REST (`wp-abilities\u002Fv1`),\n- consuming abilities in JS (notably `@wordpress\u002Fabilities`),\n- diagnosing “ability doesn’t show up” \u002F “client can’t see ability” \u002F “REST returns empty”.\n\n## Inputs required\n\n- Repo root (run `wp-project-triage` first if you haven’t).\n- Target WordPress version(s) and whether this is WP core or a plugin\u002Ftheme.\n- Where the change should live (plugin vs theme vs mu-plugin).\n\n## Procedure\n\nBefore deciding what to register, read `references\u002Fdomain-vs-projection.md` — abilities live at the domain capability layer; MCP \u002F Command Palette \u002F REST exposure is a projection. Registration shape and exposure shape are different decisions, and conflating them forces re-registration every time a consumer's constraints change.\n\n### 1) Confirm availability and version constraints\n\n- If this is WP core work, check `signals.isWpCoreCheckout` and `versions.wordpress.core`.\n- If the project targets WP \u003C 6.9, you may need the Abilities API plugin\u002Fpackage rather than relying on core.\n\n### 2) Find existing Abilities usage\n\nSearch for these in the repo:\n\n- `wp_register_ability(`\n- `wp_register_ability_category(`\n- `wp_abilities_api_init`\n- `wp_abilities_api_categories_init`\n- `wp-abilities\u002Fv1`\n- `@wordpress\u002Fabilities`\n\nIf none exist, decide whether you’re introducing Abilities API fresh (new registrations + client consumption) or only consuming.\n\n### 3) Register categories (optional)\n\nIf you need a logical grouping, register an ability category early (see `references\u002Fphp-registration.md`).\n\n### 4) Register abilities (PHP)\n\nFor grouping decisions (how many abilities to register, and where to put filters vs. new ability names), read `references\u002Fgrouping-heuristic.md` first — it keeps you from shipping one atomic ability per REST operation.\n\nTo avoid drift between the ability and the existing UI \u002F REST code path, see `references\u002Fshared-core-service.md` — abilities, REST handlers, CLI commands, and UI controllers should be thin adapters over a shared service. The reference also covers the metric trap (REST handlers that emit usage telemetry) and the `AGENTS.md` rule for keeping registrations in sync when underlying code paths change.\n\nFor shared helper patterns when multiple execute callbacks delegate to existing REST controllers, see `references\u002Fplugin-family-patterns.md` (identify the shared-API-client vs zero-arg-controllers shape) and `references\u002Fdelegate-helper-pattern.md` (one helper shape that works, and when not to use it).\n\nFor standardized `WP_Error` codes that let agents reason about retry vs. escalation, see `references\u002Ferror-code-vocabulary.md`.\n\nImplement the ability in PHP registration with:\n\n- stable `id` (namespaced),\n- `label`\u002F`description`,\n- `category`,\n- `meta`:\n  - add `readonly: true` when the ability is informational,\n  - set `show_in_rest: true` for abilities you want visible to clients.\n\nUse the documented init hooks for Abilities API registration so they load at the right time (see `references\u002Fphp-registration.md`).\n\n### 5) Confirm REST exposure\n\n- Verify the REST endpoints exist and return expected results (see `references\u002Frest-api.md`).\n- If the client still can’t see the ability, confirm `meta.show_in_rest` is enabled and you’re querying the right endpoint.\n\n### 6) Consume from JS (if needed)\n\n- Prefer `@wordpress\u002Fabilities` APIs for client-side access and checks.\n- Ensure build tooling includes the dependency and the project’s build pipeline bundles it.\n\n## Verification\n\n- `wp-project-triage` indicates `signals.usesAbilitiesApi: true` after your change (if applicable).\n- REST check (in a WP environment): endpoints under `wp-abilities\u002Fv1` return your ability and category when expected.\n- If the repo has tests, add\u002Fupdate coverage near:\n  - PHP: ability registration and meta exposure\n  - JS: ability consumption and UI gating\n\n## Failure modes \u002F debugging\n\n- Ability never appears:\n  - registration code not running (wrong hook \u002F file not loaded),\n  - missing `meta.show_in_rest`,\n  - incorrect category\u002FID mismatch.\n- REST shows ability but JS doesn’t:\n  - wrong REST base\u002Fnamespace,\n  - JS dependency not bundled,\n  - caching (object\u002Fpage caches) masking changes.\n- Execute callback returns unexpected errors or silently ignores input:\n  - `input_schema` defaults aren't being applied, pagination key drift between the ability and the backing, or `empty()`-based ID validation — see `references\u002Finput-schema-gotchas.md`.\n\n## Escalation\n\n- If you’re uncertain about version support, confirm target WP core versions and whether Abilities API is expected from core or as a plugin.\n- For canonical details, consult:\n  - `references\u002Frest-api.md`\n  - `references\u002Fphp-registration.md`\n",{"data":32,"body":34},{"name":4,"description":6,"compatibility":33},"Targets WordPress 7.0+ (PHP 7.4.0+). Filesystem-based agent with bash + node. Some workflows require WP-CLI.",{"type":35,"children":36},"root",[37,45,52,58,99,105,131,137,150,157,186,192,197,252,257,263,276,282,295,316,337,357,362,447,458,464,492,498,518,524,575,581,670,676],{"type":38,"tag":39,"props":40,"children":41},"element","h1",{"id":4},[42],{"type":43,"value":44},"text","WP Abilities API",{"type":38,"tag":46,"props":47,"children":49},"h2",{"id":48},"when-to-use",[50],{"type":43,"value":51},"When to use",{"type":38,"tag":53,"props":54,"children":55},"p",{},[56],{"type":43,"value":57},"Use this skill when the task involves:",{"type":38,"tag":59,"props":60,"children":61},"ul",{},[62,68,82,94],{"type":38,"tag":63,"props":64,"children":65},"li",{},[66],{"type":43,"value":67},"registering abilities or ability categories in PHP,",{"type":38,"tag":63,"props":69,"children":70},{},[71,73,80],{"type":43,"value":72},"exposing abilities to clients via REST (",{"type":38,"tag":74,"props":75,"children":77},"code",{"className":76},[],[78],{"type":43,"value":79},"wp-abilities\u002Fv1",{"type":43,"value":81},"),",{"type":38,"tag":63,"props":83,"children":84},{},[85,87,93],{"type":43,"value":86},"consuming abilities in JS (notably ",{"type":38,"tag":74,"props":88,"children":90},{"className":89},[],[91],{"type":43,"value":92},"@wordpress\u002Fabilities",{"type":43,"value":81},{"type":38,"tag":63,"props":95,"children":96},{},[97],{"type":43,"value":98},"diagnosing “ability doesn’t show up” \u002F “client can’t see ability” \u002F “REST returns empty”.",{"type":38,"tag":46,"props":100,"children":102},{"id":101},"inputs-required",[103],{"type":43,"value":104},"Inputs required",{"type":38,"tag":59,"props":106,"children":107},{},[108,121,126],{"type":38,"tag":63,"props":109,"children":110},{},[111,113,119],{"type":43,"value":112},"Repo root (run ",{"type":38,"tag":74,"props":114,"children":116},{"className":115},[],[117],{"type":43,"value":118},"wp-project-triage",{"type":43,"value":120}," first if you haven’t).",{"type":38,"tag":63,"props":122,"children":123},{},[124],{"type":43,"value":125},"Target WordPress version(s) and whether this is WP core or a plugin\u002Ftheme.",{"type":38,"tag":63,"props":127,"children":128},{},[129],{"type":43,"value":130},"Where the change should live (plugin vs theme vs mu-plugin).",{"type":38,"tag":46,"props":132,"children":134},{"id":133},"procedure",[135],{"type":43,"value":136},"Procedure",{"type":38,"tag":53,"props":138,"children":139},{},[140,142,148],{"type":43,"value":141},"Before deciding what to register, read ",{"type":38,"tag":74,"props":143,"children":145},{"className":144},[],[146],{"type":43,"value":147},"references\u002Fdomain-vs-projection.md",{"type":43,"value":149}," — abilities live at the domain capability layer; MCP \u002F Command Palette \u002F REST exposure is a projection. Registration shape and exposure shape are different decisions, and conflating them forces re-registration every time a consumer's constraints change.",{"type":38,"tag":151,"props":152,"children":154},"h3",{"id":153},"_1-confirm-availability-and-version-constraints",[155],{"type":43,"value":156},"1) Confirm availability and version constraints",{"type":38,"tag":59,"props":158,"children":159},{},[160,181],{"type":38,"tag":63,"props":161,"children":162},{},[163,165,171,173,179],{"type":43,"value":164},"If this is WP core work, check ",{"type":38,"tag":74,"props":166,"children":168},{"className":167},[],[169],{"type":43,"value":170},"signals.isWpCoreCheckout",{"type":43,"value":172}," and ",{"type":38,"tag":74,"props":174,"children":176},{"className":175},[],[177],{"type":43,"value":178},"versions.wordpress.core",{"type":43,"value":180},".",{"type":38,"tag":63,"props":182,"children":183},{},[184],{"type":43,"value":185},"If the project targets WP \u003C 6.9, you may need the Abilities API plugin\u002Fpackage rather than relying on core.",{"type":38,"tag":151,"props":187,"children":189},{"id":188},"_2-find-existing-abilities-usage",[190],{"type":43,"value":191},"2) Find existing Abilities usage",{"type":38,"tag":53,"props":193,"children":194},{},[195],{"type":43,"value":196},"Search for these in the repo:",{"type":38,"tag":59,"props":198,"children":199},{},[200,209,218,227,236,244],{"type":38,"tag":63,"props":201,"children":202},{},[203],{"type":38,"tag":74,"props":204,"children":206},{"className":205},[],[207],{"type":43,"value":208},"wp_register_ability(",{"type":38,"tag":63,"props":210,"children":211},{},[212],{"type":38,"tag":74,"props":213,"children":215},{"className":214},[],[216],{"type":43,"value":217},"wp_register_ability_category(",{"type":38,"tag":63,"props":219,"children":220},{},[221],{"type":38,"tag":74,"props":222,"children":224},{"className":223},[],[225],{"type":43,"value":226},"wp_abilities_api_init",{"type":38,"tag":63,"props":228,"children":229},{},[230],{"type":38,"tag":74,"props":231,"children":233},{"className":232},[],[234],{"type":43,"value":235},"wp_abilities_api_categories_init",{"type":38,"tag":63,"props":237,"children":238},{},[239],{"type":38,"tag":74,"props":240,"children":242},{"className":241},[],[243],{"type":43,"value":79},{"type":38,"tag":63,"props":245,"children":246},{},[247],{"type":38,"tag":74,"props":248,"children":250},{"className":249},[],[251],{"type":43,"value":92},{"type":38,"tag":53,"props":253,"children":254},{},[255],{"type":43,"value":256},"If none exist, decide whether you’re introducing Abilities API fresh (new registrations + client consumption) or only consuming.",{"type":38,"tag":151,"props":258,"children":260},{"id":259},"_3-register-categories-optional",[261],{"type":43,"value":262},"3) Register categories (optional)",{"type":38,"tag":53,"props":264,"children":265},{},[266,268,274],{"type":43,"value":267},"If you need a logical grouping, register an ability category early (see ",{"type":38,"tag":74,"props":269,"children":271},{"className":270},[],[272],{"type":43,"value":273},"references\u002Fphp-registration.md",{"type":43,"value":275},").",{"type":38,"tag":151,"props":277,"children":279},{"id":278},"_4-register-abilities-php",[280],{"type":43,"value":281},"4) Register abilities (PHP)",{"type":38,"tag":53,"props":283,"children":284},{},[285,287,293],{"type":43,"value":286},"For grouping decisions (how many abilities to register, and where to put filters vs. new ability names), read ",{"type":38,"tag":74,"props":288,"children":290},{"className":289},[],[291],{"type":43,"value":292},"references\u002Fgrouping-heuristic.md",{"type":43,"value":294}," first — it keeps you from shipping one atomic ability per REST operation.",{"type":38,"tag":53,"props":296,"children":297},{},[298,300,306,308,314],{"type":43,"value":299},"To avoid drift between the ability and the existing UI \u002F REST code path, see ",{"type":38,"tag":74,"props":301,"children":303},{"className":302},[],[304],{"type":43,"value":305},"references\u002Fshared-core-service.md",{"type":43,"value":307}," — abilities, REST handlers, CLI commands, and UI controllers should be thin adapters over a shared service. The reference also covers the metric trap (REST handlers that emit usage telemetry) and the ",{"type":38,"tag":74,"props":309,"children":311},{"className":310},[],[312],{"type":43,"value":313},"AGENTS.md",{"type":43,"value":315}," rule for keeping registrations in sync when underlying code paths change.",{"type":38,"tag":53,"props":317,"children":318},{},[319,321,327,329,335],{"type":43,"value":320},"For shared helper patterns when multiple execute callbacks delegate to existing REST controllers, see ",{"type":38,"tag":74,"props":322,"children":324},{"className":323},[],[325],{"type":43,"value":326},"references\u002Fplugin-family-patterns.md",{"type":43,"value":328}," (identify the shared-API-client vs zero-arg-controllers shape) and ",{"type":38,"tag":74,"props":330,"children":332},{"className":331},[],[333],{"type":43,"value":334},"references\u002Fdelegate-helper-pattern.md",{"type":43,"value":336}," (one helper shape that works, and when not to use it).",{"type":38,"tag":53,"props":338,"children":339},{},[340,342,348,350,356],{"type":43,"value":341},"For standardized ",{"type":38,"tag":74,"props":343,"children":345},{"className":344},[],[346],{"type":43,"value":347},"WP_Error",{"type":43,"value":349}," codes that let agents reason about retry vs. escalation, see ",{"type":38,"tag":74,"props":351,"children":353},{"className":352},[],[354],{"type":43,"value":355},"references\u002Ferror-code-vocabulary.md",{"type":43,"value":180},{"type":38,"tag":53,"props":358,"children":359},{},[360],{"type":43,"value":361},"Implement the ability in PHP registration with:",{"type":38,"tag":59,"props":363,"children":364},{},[365,378,397,407],{"type":38,"tag":63,"props":366,"children":367},{},[368,370,376],{"type":43,"value":369},"stable ",{"type":38,"tag":74,"props":371,"children":373},{"className":372},[],[374],{"type":43,"value":375},"id",{"type":43,"value":377}," (namespaced),",{"type":38,"tag":63,"props":379,"children":380},{},[381,387,389,395],{"type":38,"tag":74,"props":382,"children":384},{"className":383},[],[385],{"type":43,"value":386},"label",{"type":43,"value":388},"\u002F",{"type":38,"tag":74,"props":390,"children":392},{"className":391},[],[393],{"type":43,"value":394},"description",{"type":43,"value":396},",",{"type":38,"tag":63,"props":398,"children":399},{},[400,406],{"type":38,"tag":74,"props":401,"children":403},{"className":402},[],[404],{"type":43,"value":405},"category",{"type":43,"value":396},{"type":38,"tag":63,"props":408,"children":409},{},[410,416,418],{"type":38,"tag":74,"props":411,"children":413},{"className":412},[],[414],{"type":43,"value":415},"meta",{"type":43,"value":417},":\n",{"type":38,"tag":59,"props":419,"children":420},{},[421,434],{"type":38,"tag":63,"props":422,"children":423},{},[424,426,432],{"type":43,"value":425},"add ",{"type":38,"tag":74,"props":427,"children":429},{"className":428},[],[430],{"type":43,"value":431},"readonly: true",{"type":43,"value":433}," when the ability is informational,",{"type":38,"tag":63,"props":435,"children":436},{},[437,439,445],{"type":43,"value":438},"set ",{"type":38,"tag":74,"props":440,"children":442},{"className":441},[],[443],{"type":43,"value":444},"show_in_rest: true",{"type":43,"value":446}," for abilities you want visible to clients.",{"type":38,"tag":53,"props":448,"children":449},{},[450,452,457],{"type":43,"value":451},"Use the documented init hooks for Abilities API registration so they load at the right time (see ",{"type":38,"tag":74,"props":453,"children":455},{"className":454},[],[456],{"type":43,"value":273},{"type":43,"value":275},{"type":38,"tag":151,"props":459,"children":461},{"id":460},"_5-confirm-rest-exposure",[462],{"type":43,"value":463},"5) Confirm REST exposure",{"type":38,"tag":59,"props":465,"children":466},{},[467,479],{"type":38,"tag":63,"props":468,"children":469},{},[470,472,478],{"type":43,"value":471},"Verify the REST endpoints exist and return expected results (see ",{"type":38,"tag":74,"props":473,"children":475},{"className":474},[],[476],{"type":43,"value":477},"references\u002Frest-api.md",{"type":43,"value":275},{"type":38,"tag":63,"props":480,"children":481},{},[482,484,490],{"type":43,"value":483},"If the client still can’t see the ability, confirm ",{"type":38,"tag":74,"props":485,"children":487},{"className":486},[],[488],{"type":43,"value":489},"meta.show_in_rest",{"type":43,"value":491}," is enabled and you’re querying the right endpoint.",{"type":38,"tag":151,"props":493,"children":495},{"id":494},"_6-consume-from-js-if-needed",[496],{"type":43,"value":497},"6) Consume from JS (if needed)",{"type":38,"tag":59,"props":499,"children":500},{},[501,513],{"type":38,"tag":63,"props":502,"children":503},{},[504,506,511],{"type":43,"value":505},"Prefer ",{"type":38,"tag":74,"props":507,"children":509},{"className":508},[],[510],{"type":43,"value":92},{"type":43,"value":512}," APIs for client-side access and checks.",{"type":38,"tag":63,"props":514,"children":515},{},[516],{"type":43,"value":517},"Ensure build tooling includes the dependency and the project’s build pipeline bundles it.",{"type":38,"tag":46,"props":519,"children":521},{"id":520},"verification",[522],{"type":43,"value":523},"Verification",{"type":38,"tag":59,"props":525,"children":526},{},[527,545,557],{"type":38,"tag":63,"props":528,"children":529},{},[530,535,537,543],{"type":38,"tag":74,"props":531,"children":533},{"className":532},[],[534],{"type":43,"value":118},{"type":43,"value":536}," indicates ",{"type":38,"tag":74,"props":538,"children":540},{"className":539},[],[541],{"type":43,"value":542},"signals.usesAbilitiesApi: true",{"type":43,"value":544}," after your change (if applicable).",{"type":38,"tag":63,"props":546,"children":547},{},[548,550,555],{"type":43,"value":549},"REST check (in a WP environment): endpoints under ",{"type":38,"tag":74,"props":551,"children":553},{"className":552},[],[554],{"type":43,"value":79},{"type":43,"value":556}," return your ability and category when expected.",{"type":38,"tag":63,"props":558,"children":559},{},[560,562],{"type":43,"value":561},"If the repo has tests, add\u002Fupdate coverage near:\n",{"type":38,"tag":59,"props":563,"children":564},{},[565,570],{"type":38,"tag":63,"props":566,"children":567},{},[568],{"type":43,"value":569},"PHP: ability registration and meta exposure",{"type":38,"tag":63,"props":571,"children":572},{},[573],{"type":43,"value":574},"JS: ability consumption and UI gating",{"type":38,"tag":46,"props":576,"children":578},{"id":577},"failure-modes-debugging",[579],{"type":43,"value":580},"Failure modes \u002F debugging",{"type":38,"tag":59,"props":582,"children":583},{},[584,613,636],{"type":38,"tag":63,"props":585,"children":586},{},[587,589],{"type":43,"value":588},"Ability never appears:\n",{"type":38,"tag":59,"props":590,"children":591},{},[592,597,608],{"type":38,"tag":63,"props":593,"children":594},{},[595],{"type":43,"value":596},"registration code not running (wrong hook \u002F file not loaded),",{"type":38,"tag":63,"props":598,"children":599},{},[600,602,607],{"type":43,"value":601},"missing ",{"type":38,"tag":74,"props":603,"children":605},{"className":604},[],[606],{"type":43,"value":489},{"type":43,"value":396},{"type":38,"tag":63,"props":609,"children":610},{},[611],{"type":43,"value":612},"incorrect category\u002FID mismatch.",{"type":38,"tag":63,"props":614,"children":615},{},[616,618],{"type":43,"value":617},"REST shows ability but JS doesn’t:\n",{"type":38,"tag":59,"props":619,"children":620},{},[621,626,631],{"type":38,"tag":63,"props":622,"children":623},{},[624],{"type":43,"value":625},"wrong REST base\u002Fnamespace,",{"type":38,"tag":63,"props":627,"children":628},{},[629],{"type":43,"value":630},"JS dependency not bundled,",{"type":38,"tag":63,"props":632,"children":633},{},[634],{"type":43,"value":635},"caching (object\u002Fpage caches) masking changes.",{"type":38,"tag":63,"props":637,"children":638},{},[639,641],{"type":43,"value":640},"Execute callback returns unexpected errors or silently ignores input:\n",{"type":38,"tag":59,"props":642,"children":643},{},[644],{"type":38,"tag":63,"props":645,"children":646},{},[647,653,655,661,663,669],{"type":38,"tag":74,"props":648,"children":650},{"className":649},[],[651],{"type":43,"value":652},"input_schema",{"type":43,"value":654}," defaults aren't being applied, pagination key drift between the ability and the backing, or ",{"type":38,"tag":74,"props":656,"children":658},{"className":657},[],[659],{"type":43,"value":660},"empty()",{"type":43,"value":662},"-based ID validation — see ",{"type":38,"tag":74,"props":664,"children":666},{"className":665},[],[667],{"type":43,"value":668},"references\u002Finput-schema-gotchas.md",{"type":43,"value":180},{"type":38,"tag":46,"props":671,"children":673},{"id":672},"escalation",[674],{"type":43,"value":675},"Escalation",{"type":38,"tag":59,"props":677,"children":678},{},[679,684],{"type":38,"tag":63,"props":680,"children":681},{},[682],{"type":43,"value":683},"If you’re uncertain about version support, confirm target WP core versions and whether Abilities API is expected from core or as a plugin.",{"type":38,"tag":63,"props":685,"children":686},{},[687,689],{"type":43,"value":688},"For canonical details, consult:\n",{"type":38,"tag":59,"props":690,"children":691},{},[692,700],{"type":38,"tag":63,"props":693,"children":694},{},[695],{"type":38,"tag":74,"props":696,"children":698},{"className":697},[],[699],{"type":43,"value":477},{"type":38,"tag":63,"props":701,"children":702},{},[703],{"type":38,"tag":74,"props":704,"children":706},{"className":705},[],[707],{"type":43,"value":273},{"items":709,"total":906},[710,721,738,744,773,794,814,830,843,858,878,891],{"slug":711,"name":711,"fn":712,"description":713,"org":714,"tags":715,"stars":20,"repoUrl":21,"updatedAt":720},"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},[716,717],{"name":9,"slug":8,"type":13},{"name":718,"slug":719,"type":13},"WordPress Playground","wordpress-playground","2026-07-27T06:08:32.306955",{"slug":722,"name":722,"fn":723,"description":724,"org":725,"tags":726,"stars":20,"repoUrl":21,"updatedAt":737},"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},[727,730,733,734],{"name":728,"slug":729,"type":13},"Engineering","engineering",{"name":731,"slug":732,"type":13},"Triage","triage",{"name":9,"slug":8,"type":13},{"name":735,"slug":736,"type":13},"Workflow Automation","workflow-automation","2026-04-06T18:58:21.644368",{"slug":4,"name":4,"fn":5,"description":6,"org":739,"tags":740,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[741,742,743],{"name":18,"slug":19,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},{"slug":745,"name":745,"fn":746,"description":747,"org":748,"tags":749,"stars":20,"repoUrl":21,"updatedAt":772},"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},[750,753,756,759,762,765,768,769],{"name":751,"slug":752,"type":13},"Abilities API","abilities-api",{"name":754,"slug":755,"type":13},"Audit","audit",{"name":757,"slug":758,"type":13},"Code Analysis","code-analysis",{"name":760,"slug":761,"type":13},"Documentation","documentation",{"name":763,"slug":764,"type":13},"Plugin Development","plugin-development",{"name":766,"slug":767,"type":13},"REST API","rest-api",{"name":9,"slug":8,"type":13},{"name":770,"slug":771,"type":13},"YAML","yaml","2026-05-28T06:48:49.361753",{"slug":774,"name":774,"fn":775,"description":776,"org":777,"tags":778,"stars":20,"repoUrl":21,"updatedAt":793},"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},[779,780,781,782,783,786,789,792],{"name":751,"slug":752,"type":13},{"name":757,"slug":758,"type":13},{"name":763,"slug":764,"type":13},{"name":766,"slug":767,"type":13},{"name":784,"slug":785,"type":13},"Security","security",{"name":787,"slug":788,"type":13},"Testing","testing",{"name":790,"slug":791,"type":13},"Validation","validation",{"name":9,"slug":8,"type":13},"2026-05-28T06:48:50.590811",{"slug":795,"name":795,"fn":796,"description":797,"org":798,"tags":799,"stars":20,"repoUrl":21,"updatedAt":813},"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},[800,803,806,809,812],{"name":801,"slug":802,"type":13},"Frontend","frontend",{"name":804,"slug":805,"type":13},"PHP","php",{"name":807,"slug":808,"type":13},"React","react",{"name":810,"slug":811,"type":13},"UI Components","ui-components",{"name":9,"slug":8,"type":13},"2026-04-06T18:58:24.172876",{"slug":815,"name":815,"fn":816,"description":817,"org":818,"tags":819,"stars":20,"repoUrl":21,"updatedAt":829},"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},[820,823,824,827,828],{"name":821,"slug":822,"type":13},"Design","design",{"name":801,"slug":802,"type":13},{"name":825,"slug":826,"type":13},"Themes","themes",{"name":810,"slug":811,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:58:27.909889",{"slug":831,"name":831,"fn":832,"description":833,"org":834,"tags":835,"stars":20,"repoUrl":21,"updatedAt":842},"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},[836,837,838,841],{"name":15,"slug":16,"type":13},{"name":801,"slug":802,"type":13},{"name":839,"slug":840,"type":13},"JavaScript","javascript",{"name":9,"slug":8,"type":13},"2026-04-06T18:58:20.397676",{"slug":844,"name":844,"fn":845,"description":846,"org":847,"tags":848,"stars":20,"repoUrl":21,"updatedAt":857},"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},[849,852,853,856],{"name":850,"slug":851,"type":13},"Block Editor","block-editor",{"name":821,"slug":822,"type":13},{"name":854,"slug":855,"type":13},"Templates","templates",{"name":9,"slug":8,"type":13},"2026-07-24T05:38:43.101238",{"slug":859,"name":859,"fn":860,"description":861,"org":862,"tags":863,"stars":20,"repoUrl":21,"updatedAt":877},"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},[864,867,870,873,876],{"name":865,"slug":866,"type":13},"Backend","backend",{"name":868,"slug":869,"type":13},"Database","database",{"name":871,"slug":872,"type":13},"Performance","performance",{"name":874,"slug":875,"type":13},"SQL","sql",{"name":9,"slug":8,"type":13},"2026-04-06T18:58:22.909053",{"slug":879,"name":879,"fn":880,"description":881,"org":882,"tags":883,"stars":20,"repoUrl":21,"updatedAt":890},"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},[884,885,886,889],{"name":757,"slug":758,"type":13},{"name":804,"slug":805,"type":13},{"name":887,"slug":888,"type":13},"QA","qa",{"name":9,"slug":8,"type":13},"2026-04-06T18:58:15.318063",{"slug":892,"name":892,"fn":893,"description":894,"org":895,"tags":896,"stars":20,"repoUrl":21,"updatedAt":905},"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},[897,900,903,904],{"name":898,"slug":899,"type":13},"Local Development","local-development",{"name":901,"slug":902,"type":13},"Sandboxing","sandboxing",{"name":9,"slug":8,"type":13},{"name":718,"slug":719,"type":13},"2026-07-27T06:08:31.31025",18,{"items":908,"total":906},[909,914,921,927,938,949,957],{"slug":711,"name":711,"fn":712,"description":713,"org":910,"tags":911,"stars":20,"repoUrl":21,"updatedAt":720},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[912,913],{"name":9,"slug":8,"type":13},{"name":718,"slug":719,"type":13},{"slug":722,"name":722,"fn":723,"description":724,"org":915,"tags":916,"stars":20,"repoUrl":21,"updatedAt":737},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[917,918,919,920],{"name":728,"slug":729,"type":13},{"name":731,"slug":732,"type":13},{"name":9,"slug":8,"type":13},{"name":735,"slug":736,"type":13},{"slug":4,"name":4,"fn":5,"description":6,"org":922,"tags":923,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[924,925,926],{"name":18,"slug":19,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},{"slug":745,"name":745,"fn":746,"description":747,"org":928,"tags":929,"stars":20,"repoUrl":21,"updatedAt":772},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[930,931,932,933,934,935,936,937],{"name":751,"slug":752,"type":13},{"name":754,"slug":755,"type":13},{"name":757,"slug":758,"type":13},{"name":760,"slug":761,"type":13},{"name":763,"slug":764,"type":13},{"name":766,"slug":767,"type":13},{"name":9,"slug":8,"type":13},{"name":770,"slug":771,"type":13},{"slug":774,"name":774,"fn":775,"description":776,"org":939,"tags":940,"stars":20,"repoUrl":21,"updatedAt":793},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[941,942,943,944,945,946,947,948],{"name":751,"slug":752,"type":13},{"name":757,"slug":758,"type":13},{"name":763,"slug":764,"type":13},{"name":766,"slug":767,"type":13},{"name":784,"slug":785,"type":13},{"name":787,"slug":788,"type":13},{"name":790,"slug":791,"type":13},{"name":9,"slug":8,"type":13},{"slug":795,"name":795,"fn":796,"description":797,"org":950,"tags":951,"stars":20,"repoUrl":21,"updatedAt":813},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[952,953,954,955,956],{"name":801,"slug":802,"type":13},{"name":804,"slug":805,"type":13},{"name":807,"slug":808,"type":13},{"name":810,"slug":811,"type":13},{"name":9,"slug":8,"type":13},{"slug":815,"name":815,"fn":816,"description":817,"org":958,"tags":959,"stars":20,"repoUrl":21,"updatedAt":829},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[960,961,962,963,964],{"name":821,"slug":822,"type":13},{"name":801,"slug":802,"type":13},{"name":825,"slug":826,"type":13},{"name":810,"slug":811,"type":13},{"name":9,"slug":8,"type":13}]