wordpress-content
Audited by Runlayer on Feb 22, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: wordpress-content description: > Create and manage WordPress posts, pages, media, categories, and menus.
Malicious tool definition detected
Tool: references/rest-api-endpoints.md Description: # WordPress REST API Endpoints ## Authentication All write operations require authentication via Application Password: ```bash # Base64 encode credentials AUTH=$(echo -n "username:xxxx xxxx xxxx xxxx xxxx xxxx" | base64) # Use in requests curl -s https://example.com/wp-json/wp/v2/posts \ -H "Authorization: Basic $AUTH" \ -H "Content-Type: application/json" ``` ## Posts | Operation | Method | Endpoint | |-----------|--------|----------| | List p
Malicious tool definition detected
Tool: references/wp-cli-content.md Description: # WP-CLI Content Management Reference ## Posts ```bash # Create wp @site post create --post_type=post --post_title="Title" --post_content="<p>Content</p>" --post_status=draft # Create from file wp @site post create ./content.html --post_title="Title" --post_status=draft # Update wp @site post update {id} --post_title="New Title" --post_content="<p>Updated</p>" # List wp @site post list --post_type=post --posts_per_page=20 --fields=ID,post_title,pos