From wordpress
Registers WordPress abilities and categories in PHP, exposes via REST API (/wp-abilities/v1), consumes in JS (@wordpress/abilities), and troubleshoots visibility/permissions issues.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wordpress:wp-abilities-apiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the task involves:
Use this skill when the task involves:
wp-abilities/v1),@wordpress/abilities),wp-project-triage first if you haven’t).signals.isWpCoreCheckout and versions.wordpress.core.Search for these in the repo:
wp_register_ability(wp_register_ability_category(wp_abilities_api_initwp_abilities_api_categories_initwp-abilities/v1@wordpress/abilitiesIf none exist, decide whether you’re introducing Abilities API fresh (new registrations + client consumption) or only consuming.
If you need a logical grouping, register an ability category early (see references/php-registration.md).
Implement the ability in PHP registration with:
id (namespaced),label/description,category,meta:
readonly: true when the ability is informational,show_in_rest: true for abilities you want visible to clients.Use the documented init hooks for Abilities API registration so they load at the right time (see references/php-registration.md).
references/rest-api.md).meta.show_in_rest is enabled and you’re querying the right endpoint.@wordpress/abilities APIs for client-side access and checks.wp-project-triage indicates signals.usesAbilitiesApi: true after your change (if applicable).wp-abilities/v1 return your ability and category when expected.meta.show_in_rest,references/rest-api.mdreferences/php-registration.mdnpx claudepluginhub pleaseai/claude-code-plugins --plugin wordpressCreates custom MCP Abilities for WordPress, defining PHP classes with JSON schemas and execute() methods that are auto-discovered and callable via Claude's execute-ability tool.
Guides WordPress plugin development: architecture, hooks, admin interfaces, REST API, security practices, and WP 7.0 features like Real-Time Collaboration, AI Connectors, Abilities API. Use for custom plugins and extensions.
Develops WordPress plugins with structure patterns, hooks, security (nonces, sanitization, prepared $wpdb queries), REST API, custom post types, and Settings API.