WordPress-focused AI agent starter kit for GitHub Copilot, Claude, and other LLM coding agents. Includes instructions, specialized WordPress skills, and workflow automation aligned with industry standards.
Maintained by Kyle Brodeur.
Run the interactive setup wizard:
npx wp-agent-kit setup
# or
pnpm dlx wp-agent-kit setupThis will:
- Detect your WordPress project type
- Install
AGENTS.mdand skills into your project - Configure for your tech stack
Download a bundle from the latest release:
wordpress-agent-kit-github.tar.gz- For GitHub Copilotwordpress-agent-kit-claude.tar.gz- For Claudewordpress-agent-kit-agent.tar.gz- For generic.agentworkflowswordpress-agent-kit-cursor.tar.gz- For Cursor IDE
Extract into your WordPress project root:
cd /path/to/your-wordpress-project
tar -xzf wordpress-agent-kit-github.tar.gzThis interactive setup helps you:
- Automatically detect your project type and technologies.
- Customize
AGENTS.mdfor your tech stack. - Configure workflow instructions.
- Set up prompt templates.
Use the --reset flag if you need to re-run the setup on an existing project:
pnpm setup -- /path/to/your-wp-project --resetThe setup will analyze your project first and either:
- Auto-configure if confident.
- Pre-fill smart defaults if partially detected.
- Ask questions if detection is unclear.
- WordPress plugin/theme developers who want AI agents to understand WordPress conventions (hooks, sanitization, Settings API, block registration, etc.).
- Teams adopting GitHub Copilot or Claude for WordPress codebases.
- Anyone building custom WordPress workflows who needs agents to follow WordPress Coding Standards, security best practices, and core APIs.
- Agent Skills: WordPress-specific knowledge modules (blocks, Interactivity API, REST API, WP-CLI, performance, security, theme.json, Playground, PHPStan, etc.).
- Instructions & Workflows: Pre-built guidance for common WordPress dev cycles.
- AGENTS.md: Single-file agent onboarding that loads skills on demand.
- Sync Scripts: Pull latest skills from official WordPress/agent-skills repository.
This project uses a TypeScript-based CLI for all operations.
pnpm buildpnpm sync:skills # Sync latest WordPress skills first
pnpm build:bundlesThis generates four platform-specific bundles in dist/bundles/:
wordpress-agent-kit-github.tar.gzwordpress-agent-kit-claude.tar.gzwordpress-agent-kit-agent.tar.gzwordpress-agent-kit-cursor.tar.gz
pnpm testQuick method: Run the interactive setup.
Manual method: Edit files directly:
- Edit
AGENTS.mdto match your project's tech stack and conventions. - Run WordPress project triage (via
wp-project-triageskill) to generate tailored instructions. - Update
.github/instructions/wordpress-workflow.instructions.mdwith your workflow. - Keep prompts in
.github/prompts/accurate for your plugin/theme.
- AGENTS.md - The agent configuration standard.
- AgentSkills.io - The open directory of agent skills.