Public AI agent skills for WordPress development workflows.
| Skill | Purpose |
|---|---|
wp-cli-local |
Run WP-CLI commands against Local by Flywheel sites on macOS. |
prepare-wordpress |
Scaffold or update a WordPress project with dev tooling, coding standards, testing, and i18n support. |
wp-bump |
Bump a WordPress plugin version and update related release metadata. |
Install a skill globally with npx skills add:
npx skills add soderlind/skills --skill wp-cli-local -g
npx skills add soderlind/skills --skill prepare-wordpress -g
npx skills add soderlind/skills --skill wp-bump -gInstall all detected agent integrations without prompts:
npx skills add soderlind/skills --skill wp-cli-local -g --all
npx skills add soderlind/skills --skill prepare-wordpress -g --all
npx skills add soderlind/skills --skill wp-bump -g --allPreview the skills available from this repository:
npx skills add soderlind/skills --listList installed skills:
npx skills list -gUpdate a skill:
npx skills update wp-cli-local -g
npx skills update prepare-wordpress -g
npx skills update wp-bump -gRemove a skill:
npx skills remove wp-cli-local -g
npx skills remove prepare-wordpress -g
npx skills remove wp-bump -gAfter installation, ask your AI agent for the workflow you want. The matching skill should be selected automatically.
Example prompts:
Run wp-cli on my Local site and list plugins.
Prepare this project for WordPress plugin development.
Bump this WordPress plugin to 1.2.3.Use this when working with WordPress sites in Local by Flywheel.
Prerequisites:
- macOS
- Local by Flywheel installed
- WP-CLI installed and available in
PATH - The target Local site is running
The skill always routes WP-CLI through its bundled wrapper:
bash skills/wp-cli-local/scripts/wp --listUse this to set up or refresh a WordPress project with common development tooling.
Prerequisites:
- Node.js 18+
- Composer 2+
- PHP 8.3+
- git
- WP-CLI for i18n commands
Preview the setup plan before changing a project:
node skills/prepare-wordpress/scripts/plan_setup.mjs --dry-runApply selected safe setup phases:
node skills/prepare-wordpress/scripts/plan_setup.mjs --apply --only=init,composer,configUse this for WordPress plugin releases. It updates existing version fields, changelog entries, build outputs, and test checks according to the target project.
Example prompt:
Run wp-bump for version 1.2.3.The skill does not create commits, tags, or releases unless you explicitly ask your agent to do so.
Each skill lives in its own folder under skills/:
skills/
prepare-wordpress/
SKILL.md
references/
scripts/
wp-bump/
SKILL.md
wp-cli-local/
SKILL.md
scripts/wp-cli-local: MIT, as published in the original source repository.prepare-wordpress: GPL-2.0-or-later, as published in the original source repository.wp-bump: GPL-2.0-or-later, distributed withprepare-wordpressin the original source repository.