Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Specialized workflow for creating WordPress plugins with proper architecture, hooks system, admin interfaces, REST API endpoints, and security practices. Now includes WordPress 7.0 features for modern plugin development.
WordPress 7.0 Plugin Development
Key Features for Plugin Developers
Real-Time Collaboration (RTC) Compatibility
Yjs-based CRDT for simultaneous editing
Custom transport via sync.providers filter
Requirement: Register post meta with show_in_rest => true
AI Connector Integration
Provider-agnostic AI via wp_ai_client_prompt()
Settings > Connectors admin screen
Works with OpenAI, Claude, Gemini, Ollama
Abilities API
Declare plugin capabilities for AI agents
REST API: /wp-json/abilities/v1/manifest
MCP adapter support
DataViews & DataForm
Modern admin interfaces
Replaces WP_List_Table patterns
Built-in validation
PHP-Only Blocks
Register blocks without JavaScript
Auto-generated Inspector controls
When to Use This Workflow
Use this workflow when:
Creating custom WordPress plugins
Extending WordPress functionality
Building admin interfaces
Adding REST API endpoints
Integrating third-party services
Implementing WordPress 7.0 AI/Collaboration features
Workflow Phases
Phase 1: Plugin Setup
Skills to Invoke
app-builder - Project scaffolding
backend-dev-guidelines - Backend patterns
Actions
Create plugin directory structure
Set up main plugin file with header
Implement activation/deactivation hooks
Set up autoloading
Configure text domain
WordPress 7.0 Plugin Header
/*
Plugin Name: My Plugin
Plugin URI: https://example.com/my-plugin
Description: A WordPress 7.0 compatible plugin with AI and RTC support
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Author: Developer Name
License: GPL2+
*/
Copy-Paste Prompts
Use @app-builder to scaffold a new WordPress plugin
Phase 2: Plugin Architecture
Skills to Invoke
backend-dev-guidelines - Architecture patterns
Actions
Design plugin class structure
Implement singleton pattern
Create loader class
Set up dependency injection
Configure plugin lifecycle
WordPress 7.0 Architecture Considerations
Prepare for iframed editor compatibility
Design for collaboration-aware data flows
Consider Abilities API for AI integration
Copy-Paste Prompts
Use @backend-dev-guidelines to design plugin architecture