[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-wordpress-wp-plugin-development":3,"mdc-5ur8vf-key":34,"related-repo-wordpress-wp-plugin-development":618,"related-org-wordpress-wp-plugin-development":745},{"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-plugin-development","develop WordPress plugins","Use when developing WordPress plugins: architecture and hooks, activation\u002Fdeactivation\u002Funinstall, admin UI and Settings API, data storage, cron\u002Ftasks, security (nonces\u002Fcapabilities\u002Fsanitization\u002Fescaping), and release packaging.",{"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,22],{"name":13,"slug":14,"type":15},"Security","security","tag",{"name":17,"slug":18,"type":15},"PHP","php",{"name":20,"slug":21,"type":15},"Backend","backend",{"name":9,"slug":8,"type":15},1892,"https:\u002F\u002Fgithub.com\u002FWordPress\u002Fagent-skills","2026-04-06T18:58:26.670551",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-plugin-development","---\nname: wp-plugin-development\ndescription: \"Use when developing WordPress plugins: architecture and hooks, activation\u002Fdeactivation\u002Funinstall, admin UI and Settings API, data storage, cron\u002Ftasks, security (nonces\u002Fcapabilities\u002Fsanitization\u002Fescaping), and release packaging.\"\ncompatibility: \"Targets WordPress 7.0+ (PHP 7.4.0+). Filesystem-based agent with bash + node. Some workflows require WP-CLI.\"\n---\n\n# WP Plugin Development\n\n## When to use\n\nUse this skill for plugin work such as:\n\n- creating or refactoring plugin structure (bootstrap, includes, namespaces\u002Fclasses)\n- adding hooks\u002Factions\u002Ffilters\n- activation\u002Fdeactivation\u002Funinstall behavior and migrations\n- adding settings pages \u002F options \u002F admin UI (Settings API)\n- security fixes (nonces, capabilities, sanitization\u002Fescaping, SQL safety)\n- packaging a release (build artifacts, readme, assets)\n\n## Inputs required\n\n- Repo root + target plugin(s) (path to plugin main file if known).\n- Where this plugin runs: single site vs multisite; WP.com conventions if applicable.\n- Target WordPress + PHP versions (affects available APIs and placeholder support in `$wpdb->prepare()`).\n\n## Procedure\n\n### 0) Triage and locate plugin entrypoints\n\n1. Run triage:\n   - `node skills\u002Fwp-project-triage\u002Fscripts\u002Fdetect_wp_project.mjs`\n2. Detect plugin headers (deterministic scan):\n   - `node skills\u002Fwp-plugin-development\u002Fscripts\u002Fdetect_plugins.mjs`\n\nIf this is a full site repo, pick the specific plugin under `wp-content\u002Fplugins\u002F` or `mu-plugins\u002F` before changing code.\n\n### 1) Follow a predictable architecture\n\nGuidelines:\n\n- Keep a single bootstrap (main plugin file with header).\n- Avoid heavy side effects at file load time; load on hooks.\n- Prefer a dedicated loader\u002Fclass to register hooks.\n- Keep admin-only code behind `is_admin()` (or admin hooks) to reduce frontend overhead.\n\nSee:\n- `references\u002Fstructure.md`\n\n### 2) Hooks and lifecycle (activation\u002Fdeactivation\u002Funinstall)\n\nActivation hooks are fragile; follow guardrails:\n\n- register activation\u002Fdeactivation hooks at top-level, not inside other hooks\n- flush rewrite rules only when needed and only after registering CPTs\u002Frules\n- uninstall should be explicit and safe (`uninstall.php` or `register_uninstall_hook`)\n\nSee:\n- `references\u002Flifecycle.md`\n\n### 3) Settings and admin UI (Settings API)\n\nPrefer Settings API for options:\n\n- `register_setting()`, `add_settings_section()`, `add_settings_field()`\n- sanitize via `sanitize_callback`\n\nSee:\n- `references\u002Fsettings-api.md`\n\n### 4) Security baseline (always)\n\nBefore shipping:\n\n- Validate\u002Fsanitize input early; escape output late.\n- Use nonces to prevent CSRF *and* capability checks for authorization.\n- Avoid directly trusting `$_POST` \u002F `$_GET`; use `wp_unslash()` and specific keys.\n- Use `$wpdb->prepare()` for SQL; avoid building SQL with string concatenation.\n\nSee:\n- `references\u002Fsecurity.md`\n\n### 5) Data storage, cron, migrations (if needed)\n\n- Prefer options for small config; custom tables only if necessary.\n- For cron tasks, ensure idempotency and provide manual run paths (WP-CLI or admin).\n- For schema changes, write upgrade routines and store schema version.\n\nSee:\n- `references\u002Fdata-and-cron.md`\n\n## Verification\n\n- Plugin activates with no fatals\u002Fnotices.\n- Settings save and read correctly (capability + nonce enforced).\n- Uninstall removes intended data (and nothing else).\n- Run repo lint\u002Ftests (PHPUnit\u002FPHPCS if present) and any JS build steps if the plugin ships assets.\n\n## Failure modes \u002F debugging\n\n- Activation hook not firing:\n  - hook registered incorrectly (not in main file scope), wrong main file path, or plugin is network-activated\n- Settings not saving:\n  - settings not registered, wrong option group, missing capability, nonce failure\n- Security regressions:\n  - nonce present but missing capability checks; or sanitized input not escaped on output\n\nSee:\n- `references\u002Fdebugging.md`\n\n## Escalation\n\nFor canonical detail, consult the Plugin Handbook and security guidelines before inventing patterns.\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,96,102,129,135,142,180,201,207,212,243,248,260,266,271,304,308,320,326,331,369,373,385,391,396,458,462,474,480,498,502,514,520,543,549,591,595,607,613],{"type":41,"tag":42,"props":43,"children":44},"element","h1",{"id":4},[45],{"type":46,"value":47},"text","WP Plugin Development",{"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 for plugin work such as:",{"type":41,"tag":62,"props":63,"children":64},"ul",{},[65,71,76,81,86,91],{"type":41,"tag":66,"props":67,"children":68},"li",{},[69],{"type":46,"value":70},"creating or refactoring plugin structure (bootstrap, includes, namespaces\u002Fclasses)",{"type":41,"tag":66,"props":72,"children":73},{},[74],{"type":46,"value":75},"adding hooks\u002Factions\u002Ffilters",{"type":41,"tag":66,"props":77,"children":78},{},[79],{"type":46,"value":80},"activation\u002Fdeactivation\u002Funinstall behavior and migrations",{"type":41,"tag":66,"props":82,"children":83},{},[84],{"type":46,"value":85},"adding settings pages \u002F options \u002F admin UI (Settings API)",{"type":41,"tag":66,"props":87,"children":88},{},[89],{"type":46,"value":90},"security fixes (nonces, capabilities, sanitization\u002Fescaping, SQL safety)",{"type":41,"tag":66,"props":92,"children":93},{},[94],{"type":46,"value":95},"packaging a release (build artifacts, readme, assets)",{"type":41,"tag":49,"props":97,"children":99},{"id":98},"inputs-required",[100],{"type":46,"value":101},"Inputs required",{"type":41,"tag":62,"props":103,"children":104},{},[105,110,115],{"type":41,"tag":66,"props":106,"children":107},{},[108],{"type":46,"value":109},"Repo root + target plugin(s) (path to plugin main file if known).",{"type":41,"tag":66,"props":111,"children":112},{},[113],{"type":46,"value":114},"Where this plugin runs: single site vs multisite; WP.com conventions if applicable.",{"type":41,"tag":66,"props":116,"children":117},{},[118,120,127],{"type":46,"value":119},"Target WordPress + PHP versions (affects available APIs and placeholder support in ",{"type":41,"tag":121,"props":122,"children":124},"code",{"className":123},[],[125],{"type":46,"value":126},"$wpdb->prepare()",{"type":46,"value":128},").",{"type":41,"tag":49,"props":130,"children":132},{"id":131},"procedure",[133],{"type":46,"value":134},"Procedure",{"type":41,"tag":136,"props":137,"children":139},"h3",{"id":138},"_0-triage-and-locate-plugin-entrypoints",[140],{"type":46,"value":141},"0) Triage and locate plugin entrypoints",{"type":41,"tag":143,"props":144,"children":145},"ol",{},[146,163],{"type":41,"tag":66,"props":147,"children":148},{},[149,151],{"type":46,"value":150},"Run triage:\n",{"type":41,"tag":62,"props":152,"children":153},{},[154],{"type":41,"tag":66,"props":155,"children":156},{},[157],{"type":41,"tag":121,"props":158,"children":160},{"className":159},[],[161],{"type":46,"value":162},"node skills\u002Fwp-project-triage\u002Fscripts\u002Fdetect_wp_project.mjs",{"type":41,"tag":66,"props":164,"children":165},{},[166,168],{"type":46,"value":167},"Detect plugin headers (deterministic scan):\n",{"type":41,"tag":62,"props":169,"children":170},{},[171],{"type":41,"tag":66,"props":172,"children":173},{},[174],{"type":41,"tag":121,"props":175,"children":177},{"className":176},[],[178],{"type":46,"value":179},"node skills\u002Fwp-plugin-development\u002Fscripts\u002Fdetect_plugins.mjs",{"type":41,"tag":56,"props":181,"children":182},{},[183,185,191,193,199],{"type":46,"value":184},"If this is a full site repo, pick the specific plugin under ",{"type":41,"tag":121,"props":186,"children":188},{"className":187},[],[189],{"type":46,"value":190},"wp-content\u002Fplugins\u002F",{"type":46,"value":192}," or ",{"type":41,"tag":121,"props":194,"children":196},{"className":195},[],[197],{"type":46,"value":198},"mu-plugins\u002F",{"type":46,"value":200}," before changing code.",{"type":41,"tag":136,"props":202,"children":204},{"id":203},"_1-follow-a-predictable-architecture",[205],{"type":46,"value":206},"1) Follow a predictable architecture",{"type":41,"tag":56,"props":208,"children":209},{},[210],{"type":46,"value":211},"Guidelines:",{"type":41,"tag":62,"props":213,"children":214},{},[215,220,225,230],{"type":41,"tag":66,"props":216,"children":217},{},[218],{"type":46,"value":219},"Keep a single bootstrap (main plugin file with header).",{"type":41,"tag":66,"props":221,"children":222},{},[223],{"type":46,"value":224},"Avoid heavy side effects at file load time; load on hooks.",{"type":41,"tag":66,"props":226,"children":227},{},[228],{"type":46,"value":229},"Prefer a dedicated loader\u002Fclass to register hooks.",{"type":41,"tag":66,"props":231,"children":232},{},[233,235,241],{"type":46,"value":234},"Keep admin-only code behind ",{"type":41,"tag":121,"props":236,"children":238},{"className":237},[],[239],{"type":46,"value":240},"is_admin()",{"type":46,"value":242}," (or admin hooks) to reduce frontend overhead.",{"type":41,"tag":56,"props":244,"children":245},{},[246],{"type":46,"value":247},"See:",{"type":41,"tag":62,"props":249,"children":250},{},[251],{"type":41,"tag":66,"props":252,"children":253},{},[254],{"type":41,"tag":121,"props":255,"children":257},{"className":256},[],[258],{"type":46,"value":259},"references\u002Fstructure.md",{"type":41,"tag":136,"props":261,"children":263},{"id":262},"_2-hooks-and-lifecycle-activationdeactivationuninstall",[264],{"type":46,"value":265},"2) Hooks and lifecycle (activation\u002Fdeactivation\u002Funinstall)",{"type":41,"tag":56,"props":267,"children":268},{},[269],{"type":46,"value":270},"Activation hooks are fragile; follow guardrails:",{"type":41,"tag":62,"props":272,"children":273},{},[274,279,284],{"type":41,"tag":66,"props":275,"children":276},{},[277],{"type":46,"value":278},"register activation\u002Fdeactivation hooks at top-level, not inside other hooks",{"type":41,"tag":66,"props":280,"children":281},{},[282],{"type":46,"value":283},"flush rewrite rules only when needed and only after registering CPTs\u002Frules",{"type":41,"tag":66,"props":285,"children":286},{},[287,289,295,296,302],{"type":46,"value":288},"uninstall should be explicit and safe (",{"type":41,"tag":121,"props":290,"children":292},{"className":291},[],[293],{"type":46,"value":294},"uninstall.php",{"type":46,"value":192},{"type":41,"tag":121,"props":297,"children":299},{"className":298},[],[300],{"type":46,"value":301},"register_uninstall_hook",{"type":46,"value":303},")",{"type":41,"tag":56,"props":305,"children":306},{},[307],{"type":46,"value":247},{"type":41,"tag":62,"props":309,"children":310},{},[311],{"type":41,"tag":66,"props":312,"children":313},{},[314],{"type":41,"tag":121,"props":315,"children":317},{"className":316},[],[318],{"type":46,"value":319},"references\u002Flifecycle.md",{"type":41,"tag":136,"props":321,"children":323},{"id":322},"_3-settings-and-admin-ui-settings-api",[324],{"type":46,"value":325},"3) Settings and admin UI (Settings API)",{"type":41,"tag":56,"props":327,"children":328},{},[329],{"type":46,"value":330},"Prefer Settings API for options:",{"type":41,"tag":62,"props":332,"children":333},{},[334,358],{"type":41,"tag":66,"props":335,"children":336},{},[337,343,345,351,352],{"type":41,"tag":121,"props":338,"children":340},{"className":339},[],[341],{"type":46,"value":342},"register_setting()",{"type":46,"value":344},", ",{"type":41,"tag":121,"props":346,"children":348},{"className":347},[],[349],{"type":46,"value":350},"add_settings_section()",{"type":46,"value":344},{"type":41,"tag":121,"props":353,"children":355},{"className":354},[],[356],{"type":46,"value":357},"add_settings_field()",{"type":41,"tag":66,"props":359,"children":360},{},[361,363],{"type":46,"value":362},"sanitize via ",{"type":41,"tag":121,"props":364,"children":366},{"className":365},[],[367],{"type":46,"value":368},"sanitize_callback",{"type":41,"tag":56,"props":370,"children":371},{},[372],{"type":46,"value":247},{"type":41,"tag":62,"props":374,"children":375},{},[376],{"type":41,"tag":66,"props":377,"children":378},{},[379],{"type":41,"tag":121,"props":380,"children":382},{"className":381},[],[383],{"type":46,"value":384},"references\u002Fsettings-api.md",{"type":41,"tag":136,"props":386,"children":388},{"id":387},"_4-security-baseline-always",[389],{"type":46,"value":390},"4) Security baseline (always)",{"type":41,"tag":56,"props":392,"children":393},{},[394],{"type":46,"value":395},"Before shipping:",{"type":41,"tag":62,"props":397,"children":398},{},[399,404,417,446],{"type":41,"tag":66,"props":400,"children":401},{},[402],{"type":46,"value":403},"Validate\u002Fsanitize input early; escape output late.",{"type":41,"tag":66,"props":405,"children":406},{},[407,409,415],{"type":46,"value":408},"Use nonces to prevent CSRF ",{"type":41,"tag":410,"props":411,"children":412},"em",{},[413],{"type":46,"value":414},"and",{"type":46,"value":416}," capability checks for authorization.",{"type":41,"tag":66,"props":418,"children":419},{},[420,422,428,430,436,438,444],{"type":46,"value":421},"Avoid directly trusting ",{"type":41,"tag":121,"props":423,"children":425},{"className":424},[],[426],{"type":46,"value":427},"$_POST",{"type":46,"value":429}," \u002F ",{"type":41,"tag":121,"props":431,"children":433},{"className":432},[],[434],{"type":46,"value":435},"$_GET",{"type":46,"value":437},"; use ",{"type":41,"tag":121,"props":439,"children":441},{"className":440},[],[442],{"type":46,"value":443},"wp_unslash()",{"type":46,"value":445}," and specific keys.",{"type":41,"tag":66,"props":447,"children":448},{},[449,451,456],{"type":46,"value":450},"Use ",{"type":41,"tag":121,"props":452,"children":454},{"className":453},[],[455],{"type":46,"value":126},{"type":46,"value":457}," for SQL; avoid building SQL with string concatenation.",{"type":41,"tag":56,"props":459,"children":460},{},[461],{"type":46,"value":247},{"type":41,"tag":62,"props":463,"children":464},{},[465],{"type":41,"tag":66,"props":466,"children":467},{},[468],{"type":41,"tag":121,"props":469,"children":471},{"className":470},[],[472],{"type":46,"value":473},"references\u002Fsecurity.md",{"type":41,"tag":136,"props":475,"children":477},{"id":476},"_5-data-storage-cron-migrations-if-needed",[478],{"type":46,"value":479},"5) Data storage, cron, migrations (if needed)",{"type":41,"tag":62,"props":481,"children":482},{},[483,488,493],{"type":41,"tag":66,"props":484,"children":485},{},[486],{"type":46,"value":487},"Prefer options for small config; custom tables only if necessary.",{"type":41,"tag":66,"props":489,"children":490},{},[491],{"type":46,"value":492},"For cron tasks, ensure idempotency and provide manual run paths (WP-CLI or admin).",{"type":41,"tag":66,"props":494,"children":495},{},[496],{"type":46,"value":497},"For schema changes, write upgrade routines and store schema version.",{"type":41,"tag":56,"props":499,"children":500},{},[501],{"type":46,"value":247},{"type":41,"tag":62,"props":503,"children":504},{},[505],{"type":41,"tag":66,"props":506,"children":507},{},[508],{"type":41,"tag":121,"props":509,"children":511},{"className":510},[],[512],{"type":46,"value":513},"references\u002Fdata-and-cron.md",{"type":41,"tag":49,"props":515,"children":517},{"id":516},"verification",[518],{"type":46,"value":519},"Verification",{"type":41,"tag":62,"props":521,"children":522},{},[523,528,533,538],{"type":41,"tag":66,"props":524,"children":525},{},[526],{"type":46,"value":527},"Plugin activates with no fatals\u002Fnotices.",{"type":41,"tag":66,"props":529,"children":530},{},[531],{"type":46,"value":532},"Settings save and read correctly (capability + nonce enforced).",{"type":41,"tag":66,"props":534,"children":535},{},[536],{"type":46,"value":537},"Uninstall removes intended data (and nothing else).",{"type":41,"tag":66,"props":539,"children":540},{},[541],{"type":46,"value":542},"Run repo lint\u002Ftests (PHPUnit\u002FPHPCS if present) and any JS build steps if the plugin ships assets.",{"type":41,"tag":49,"props":544,"children":546},{"id":545},"failure-modes-debugging",[547],{"type":46,"value":548},"Failure modes \u002F debugging",{"type":41,"tag":62,"props":550,"children":551},{},[552,565,578],{"type":41,"tag":66,"props":553,"children":554},{},[555,557],{"type":46,"value":556},"Activation hook not firing:\n",{"type":41,"tag":62,"props":558,"children":559},{},[560],{"type":41,"tag":66,"props":561,"children":562},{},[563],{"type":46,"value":564},"hook registered incorrectly (not in main file scope), wrong main file path, or plugin is network-activated",{"type":41,"tag":66,"props":566,"children":567},{},[568,570],{"type":46,"value":569},"Settings not saving:\n",{"type":41,"tag":62,"props":571,"children":572},{},[573],{"type":41,"tag":66,"props":574,"children":575},{},[576],{"type":46,"value":577},"settings not registered, wrong option group, missing capability, nonce failure",{"type":41,"tag":66,"props":579,"children":580},{},[581,583],{"type":46,"value":582},"Security regressions:\n",{"type":41,"tag":62,"props":584,"children":585},{},[586],{"type":41,"tag":66,"props":587,"children":588},{},[589],{"type":46,"value":590},"nonce present but missing capability checks; or sanitized input not escaped on output",{"type":41,"tag":56,"props":592,"children":593},{},[594],{"type":46,"value":247},{"type":41,"tag":62,"props":596,"children":597},{},[598],{"type":41,"tag":66,"props":599,"children":600},{},[601],{"type":41,"tag":121,"props":602,"children":604},{"className":603},[],[605],{"type":46,"value":606},"references\u002Fdebugging.md",{"type":41,"tag":49,"props":608,"children":610},{"id":609},"escalation",[611],{"type":46,"value":612},"Escalation",{"type":41,"tag":56,"props":614,"children":615},{},[616],{"type":46,"value":617},"For canonical detail, consult the Plugin Handbook and security guidelines before inventing patterns.",{"items":619,"total":744},[620,631,648,662,691,710,728],{"slug":621,"name":621,"fn":622,"description":623,"org":624,"tags":625,"stars":23,"repoUrl":24,"updatedAt":630},"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},[626,627],{"name":9,"slug":8,"type":15},{"name":628,"slug":629,"type":15},"WordPress Playground","wordpress-playground","2026-07-27T06:08:32.306955",{"slug":632,"name":632,"fn":633,"description":634,"org":635,"tags":636,"stars":23,"repoUrl":24,"updatedAt":647},"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},[637,640,643,644],{"name":638,"slug":639,"type":15},"Engineering","engineering",{"name":641,"slug":642,"type":15},"Triage","triage",{"name":9,"slug":8,"type":15},{"name":645,"slug":646,"type":15},"Workflow Automation","workflow-automation","2026-04-06T18:58:21.644368",{"slug":649,"name":649,"fn":650,"description":651,"org":652,"tags":653,"stars":23,"repoUrl":24,"updatedAt":661},"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},[654,657,660],{"name":655,"slug":656,"type":15},"Access Control","access-control",{"name":658,"slug":659,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:17.857773",{"slug":663,"name":663,"fn":664,"description":665,"org":666,"tags":667,"stars":23,"repoUrl":24,"updatedAt":690},"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},[668,671,674,677,680,683,686,687],{"name":669,"slug":670,"type":15},"Abilities API","abilities-api",{"name":672,"slug":673,"type":15},"Audit","audit",{"name":675,"slug":676,"type":15},"Code Analysis","code-analysis",{"name":678,"slug":679,"type":15},"Documentation","documentation",{"name":681,"slug":682,"type":15},"Plugin Development","plugin-development",{"name":684,"slug":685,"type":15},"REST API","rest-api",{"name":9,"slug":8,"type":15},{"name":688,"slug":689,"type":15},"YAML","yaml","2026-05-28T06:48:49.361753",{"slug":692,"name":692,"fn":693,"description":694,"org":695,"tags":696,"stars":23,"repoUrl":24,"updatedAt":709},"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},[697,698,699,700,701,702,705,708],{"name":669,"slug":670,"type":15},{"name":675,"slug":676,"type":15},{"name":681,"slug":682,"type":15},{"name":684,"slug":685,"type":15},{"name":13,"slug":14,"type":15},{"name":703,"slug":704,"type":15},"Testing","testing",{"name":706,"slug":707,"type":15},"Validation","validation",{"name":9,"slug":8,"type":15},"2026-05-28T06:48:50.590811",{"slug":711,"name":711,"fn":712,"description":713,"org":714,"tags":715,"stars":23,"repoUrl":24,"updatedAt":727},"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},[716,719,720,723,726],{"name":717,"slug":718,"type":15},"Frontend","frontend",{"name":17,"slug":18,"type":15},{"name":721,"slug":722,"type":15},"React","react",{"name":724,"slug":725,"type":15},"UI Components","ui-components",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:24.172876",{"slug":729,"name":729,"fn":730,"description":731,"org":732,"tags":733,"stars":23,"repoUrl":24,"updatedAt":743},"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},[734,737,738,741,742],{"name":735,"slug":736,"type":15},"Design","design",{"name":717,"slug":718,"type":15},{"name":739,"slug":740,"type":15},"Themes","themes",{"name":724,"slug":725,"type":15},{"name":9,"slug":8,"type":15},"2026-04-06T18:58:27.909889",18,{"items":746,"total":744},[747,752,759,765,776,787,795,803,816,831,849,862],{"slug":621,"name":621,"fn":622,"description":623,"org":748,"tags":749,"stars":23,"repoUrl":24,"updatedAt":630},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[750,751],{"name":9,"slug":8,"type":15},{"name":628,"slug":629,"type":15},{"slug":632,"name":632,"fn":633,"description":634,"org":753,"tags":754,"stars":23,"repoUrl":24,"updatedAt":647},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[755,756,757,758],{"name":638,"slug":639,"type":15},{"name":641,"slug":642,"type":15},{"name":9,"slug":8,"type":15},{"name":645,"slug":646,"type":15},{"slug":649,"name":649,"fn":650,"description":651,"org":760,"tags":761,"stars":23,"repoUrl":24,"updatedAt":661},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[762,763,764],{"name":655,"slug":656,"type":15},{"name":658,"slug":659,"type":15},{"name":9,"slug":8,"type":15},{"slug":663,"name":663,"fn":664,"description":665,"org":766,"tags":767,"stars":23,"repoUrl":24,"updatedAt":690},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[768,769,770,771,772,773,774,775],{"name":669,"slug":670,"type":15},{"name":672,"slug":673,"type":15},{"name":675,"slug":676,"type":15},{"name":678,"slug":679,"type":15},{"name":681,"slug":682,"type":15},{"name":684,"slug":685,"type":15},{"name":9,"slug":8,"type":15},{"name":688,"slug":689,"type":15},{"slug":692,"name":692,"fn":693,"description":694,"org":777,"tags":778,"stars":23,"repoUrl":24,"updatedAt":709},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[779,780,781,782,783,784,785,786],{"name":669,"slug":670,"type":15},{"name":675,"slug":676,"type":15},{"name":681,"slug":682,"type":15},{"name":684,"slug":685,"type":15},{"name":13,"slug":14,"type":15},{"name":703,"slug":704,"type":15},{"name":706,"slug":707,"type":15},{"name":9,"slug":8,"type":15},{"slug":711,"name":711,"fn":712,"description":713,"org":788,"tags":789,"stars":23,"repoUrl":24,"updatedAt":727},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[790,791,792,793,794],{"name":717,"slug":718,"type":15},{"name":17,"slug":18,"type":15},{"name":721,"slug":722,"type":15},{"name":724,"slug":725,"type":15},{"name":9,"slug":8,"type":15},{"slug":729,"name":729,"fn":730,"description":731,"org":796,"tags":797,"stars":23,"repoUrl":24,"updatedAt":743},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[798,799,800,801,802],{"name":735,"slug":736,"type":15},{"name":717,"slug":718,"type":15},{"name":739,"slug":740,"type":15},{"name":724,"slug":725,"type":15},{"name":9,"slug":8,"type":15},{"slug":804,"name":804,"fn":805,"description":806,"org":807,"tags":808,"stars":23,"repoUrl":24,"updatedAt":815},"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},[809,810,811,814],{"name":658,"slug":659,"type":15},{"name":717,"slug":718,"type":15},{"name":812,"slug":813,"type":15},"JavaScript","javascript",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:20.397676",{"slug":817,"name":817,"fn":818,"description":819,"org":820,"tags":821,"stars":23,"repoUrl":24,"updatedAt":830},"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},[822,825,826,829],{"name":823,"slug":824,"type":15},"Block Editor","block-editor",{"name":735,"slug":736,"type":15},{"name":827,"slug":828,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-24T05:38:43.101238",{"slug":832,"name":832,"fn":833,"description":834,"org":835,"tags":836,"stars":23,"repoUrl":24,"updatedAt":848},"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},[837,838,841,844,847],{"name":20,"slug":21,"type":15},{"name":839,"slug":840,"type":15},"Database","database",{"name":842,"slug":843,"type":15},"Performance","performance",{"name":845,"slug":846,"type":15},"SQL","sql",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:22.909053",{"slug":850,"name":850,"fn":851,"description":852,"org":853,"tags":854,"stars":23,"repoUrl":24,"updatedAt":861},"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},[855,856,857,860],{"name":675,"slug":676,"type":15},{"name":17,"slug":18,"type":15},{"name":858,"slug":859,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-04-06T18:58:15.318063",{"slug":863,"name":863,"fn":864,"description":865,"org":866,"tags":867,"stars":23,"repoUrl":24,"updatedAt":876},"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},[868,871,874,875],{"name":869,"slug":870,"type":15},"Local Development","local-development",{"name":872,"slug":873,"type":15},"Sandboxing","sandboxing",{"name":9,"slug":8,"type":15},{"name":628,"slug":629,"type":15},"2026-07-27T06:08:31.31025"]