AI-powered WordPress content management framework with precision editing
Project description
PraisonAI WPcli
AI-powered WordPress CLI tool for content management with precision editing capabilities.
Features
๐ NEW in v1.0.13: Universal WP-CLI Access!
ALL 1000+ WP-CLI commands now supported via the generic wp() method!
from praisonaiwp import SSHManager, WPClient
ssh = SSHManager('example.com', 'username')
client = WPClient(ssh, '/var/www/html')
# Use ANY WP-CLI command!
client.wp('cache', 'flush')
client.wp('db', 'export', 'backup.sql')
client.wp('plugin', 'install', 'akismet')
posts = client.wp('post', 'list', status='publish', format='json')
See GENERIC_WP_METHOD.md for complete documentation.
Core Features
- ๐ Universal WP-CLI - Direct access to ALL WP-CLI commands via
wp()method - ๐ฏ Convenience Methods - 48 wrapper methods with IDE autocomplete for common operations
- โก Fast - Auto-parallel mode for bulk operations (10x faster)
- ๐ Safe - Auto-backup, preview mode, dry-run capabilities
- ๐ Multi-Server - Manage multiple WordPress installations
- ๐ Smart - Auto JSON parsing, underscore-to-hyphen conversion
All Supported Features
๐ Post Management (6 methods)
create_post()- Create posts with metadataupdate_post()- Update post fieldslist_posts()- List with WP_Query filtersget_post()- Get post detailsdelete_post()- Delete posts (trash/force)post_exists()- Check post existence
๐ท๏ธ Post Meta (4 methods)
get_post_meta()- Get meta valuesset_post_meta()- Add meta fieldsupdate_post_meta()- Update metadelete_post_meta()- Remove meta
๐ Category/Term Management (8 methods)
set_post_categories()- Set categoriesadd_post_category()- Add categoryremove_post_category()- Remove categorylist_categories()- List all categoriesget_post_categories()- Get post categoriescreate_term()- Create new termdelete_term()- Delete termupdate_term()- Update term
๐ฅ User Management (9 methods)
list_users()- List all usersget_user()- Get user detailscreate_user()- Create new userupdate_user()- Update user fieldsdelete_user()- Delete user (with reassign)get_user_meta()- Get user metaset_user_meta()- Set user metaupdate_user_meta()- Update user metadelete_user_meta()- Delete user meta
โ๏ธ Option Management (3 methods)
get_option()- Get option valueset_option()- Set option valuedelete_option()- Delete option
๐ Plugin Management (3 methods)
list_plugins()- List all pluginsactivate_plugin()- Activate plugindeactivate_plugin()- Deactivate plugin
๐จ Theme Management (2 methods)
list_themes()- List all themesactivate_theme()- Activate theme
๐ท Media Management (1 method)
import_media()- Import media with metadata
๐ฌ Comment Management (6 methods)
list_comments()- List commentsget_comment()- Get comment detailscreate_comment()- Create commentupdate_comment()- Update commentdelete_comment()- Delete commentapprove_comment()- Approve comment
๐๏ธ Cache Management (2 methods)
flush_cache()- Flush object cacheget_cache_type()- Get cache type
โฑ๏ธ Transient Management (3 methods)
get_transient()- Get transient valueset_transient()- Set transient with expirationdelete_transient()- Delete transient
๐งญ Menu Management (4 methods)
list_menus()- List navigation menuscreate_menu()- Create new menudelete_menu()- Delete menuadd_menu_item()- Add menu item
๐ Core Commands (2 methods)
get_core_version()- Get WordPress versioncore_is_installed()- Check installation
๐พ Database (2 methods)
db_query()- Execute SQL querysearch_replace()- Search and replace in database
๐ Plus UNLIMITED via wp() Method!
Use ANY WP-CLI command directly:
# Database operations
client.wp('db', 'export', 'backup.sql')
client.wp('db', 'import', 'backup.sql')
client.wp('db', 'optimize')
# Plugin operations
client.wp('plugin', 'install', 'akismet')
client.wp('plugin', 'update', '--all')
# Theme operations
client.wp('theme', 'install', 'twentytwentyfour')
# Cron management
client.wp('cron', 'event', 'list', format='json')
client.wp('cron', 'event', 'run', 'wp_version_check')
# Core management
client.wp('core', 'update')
client.wp('core', 'verify-checksums')
# Media operations
client.wp('media', 'regenerate', '--yes')
# Export/Import
client.wp('export', author='admin')
client.wp('import', 'content.xml')
# ANY WP-CLI command works!
Total: 48 convenience methods + 1000+ commands via wp() ๐
Previous Updates (v1.0.2)
- ๐ SSH Config Support - Use
~/.ssh/confighost aliases for simplified connection management - ๐ง WP-CLI Auto-Installer - One-command WP-CLI installation with automatic OS detection (Ubuntu, Debian, CentOS, RHEL, Fedora, Alpine, macOS)
- ๐ WordPress Auto-Detection - Automatically find WordPress installations on your server with multiple search strategies
- โก UV Package Manager - 10-100x faster dependency management with modern tooling
- ๐ก๏ธ Enhanced Error Handling - Helpful error messages with installation instructions and troubleshooting
- ๐ Installation Verification - Automatic checks for WP-CLI and WordPress validity on startup
Installation
Using uv (Recommended - 10x faster!)
# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | sh
# Clone and install
git clone https://github.com/MervinPraison/PraisonAI-WPcli.git
cd PraisonAI-WPcli
uv sync
# Run commands
uv run praisonaiwp init
Using pip
pip install praisonaiwp
# Or install from source
git clone https://github.com/MervinPraison/PraisonAI-WPcli.git
cd PraisonAI-WPcli
pip install -e .
Quick Start
1. Initialize Configuration
praisonaiwp init
๐ก Pro Tips:
- Use SSH config alias (e.g.,
wp-prod) - connection details loaded automatically! - Press Enter for WordPress path - auto-detection will find it for you
- PHP binary is auto-detected, or specify for Plesk:
/opt/plesk/php/8.3/bin/php
๐ SSH Config Support:
PraisonAIWP automatically reads from ~/.ssh/config. If you have multiple hosts configured:
# ~/.ssh/config
Host wp-prod
HostName production.example.com
User prod_user
IdentityFile ~/.ssh/id_prod
Host wp-staging
HostName staging.example.com
User staging_user
IdentityFile ~/.ssh/id_staging
Host wp-dev
HostName localhost
User dev_user
Port 2222
IdentityFile ~/.ssh/id_dev
Just enter the host alias (e.g., wp-prod, wp-staging, or wp-dev) when prompted for hostname, and PraisonAIWP will automatically load all connection details from your SSH config!
Choosing Between Multiple Configs:
-
Each host alias is independent
-
Use
--serverflag to specify which server to use:praisonaiwp create "Post" --server production praisonaiwp create "Post" --server staging
-
Configure multiple servers in
~/.praisonaiwp/config.yaml:servers: # Method 1: Using ssh_host (recommended) production: ssh_host: wp-prod # Reference SSH config host wp_path: /var/www/html wp_cli: /usr/local/bin/wp # Method 2: Direct specification (traditional) staging: hostname: staging.example.com username: staging_user key_file: ~/.ssh/id_staging port: 22 wp_path: /var/www/staging wp_cli: /usr/local/bin/wp # Method 3: Mix both (direct values override ssh_host) dev: ssh_host: wp-dev username: custom_user # Override SSH config username wp_path: /var/www/dev wp_cli: /usr/local/bin/wp
New in v1.0.5: Use
ssh_hostto reference SSH config hosts! Connection details (hostname, username, key_file, port) are automatically loaded from~/.ssh/config. You can also specify connection details directly (traditional method) or mix both approaches - direct values always take precedence.
This will prompt you for:
- Server hostname - Can be IP, hostname, or SSH config alias (e.g.,
wp-prod) - SSH username - Auto-loaded from SSH config if using alias
- SSH key path - Auto-loaded from SSH config if using alias
- WordPress path - Press Enter to auto-detect, or specify manually
- PHP binary - Auto-detected, or specify custom path
2. Auto-Install WP-CLI (Optional)
If WP-CLI is not installed on your server:
# Automatically detect OS and install WP-CLI
praisonaiwp install-wp-cli -y
# Install with dependencies (curl, php)
praisonaiwp install-wp-cli --install-deps -y
# Custom installation path
praisonaiwp install-wp-cli --install-path /usr/bin/wp
# For Plesk servers
praisonaiwp install-wp-cli --php-bin /opt/plesk/php/8.3/bin/php -y
Supported Operating Systems:
- โ Ubuntu (18.04, 20.04, 22.04, 24.04)
- โ Debian (9, 10, 11, 12)
- โ CentOS (7, 8, 9)
- โ RHEL (7, 8, 9)
- โ Fedora (35+)
- โ Alpine Linux
- โ macOS (with Homebrew)
What it does:
- Detects your server's operating system
- Downloads WP-CLI from official source
- Tests the download
- Makes it executable
- Installs to system path
- Verifies installation
- Updates your config automatically
3. Auto-Detect WordPress (Optional)
If you don't know your WordPress installation path:
# Find all WordPress installations
praisonaiwp find-wordpress
# Interactive selection from multiple installations
praisonaiwp find-wordpress --interactive
# Find and update config automatically
praisonaiwp find-wordpress --update-config
# Find on different server
praisonaiwp find-wordpress --server staging
Search Strategies:
- Searches for
wp-config.phpin common directories - Checks predefined paths (
/var/www/html,/var/www/vhosts/*/httpdocs, etc.) - Verifies each installation (wp-config, wp-content, wp-includes)
- Extracts WordPress version
- Interactive selection for multiple installations
Example Output:
โ Found 2 WordPress installation(s)
โโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ # โ Path โ Version โ Components โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 1 โ /var/www/html โ 6.4.2 โ config, content, includesโ
โ 2 โ /var/www/vhosts/example.com/httpdocsโ 6.3.1 โ config, content, includesโ
โโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโ
4. Create Posts
# Single post
praisonaiwp create "My Post Title" --content "Post content here"
# With author (NEW in v1.0.14)
praisonaiwp create "My Post" --content "Content" --author praison
praisonaiwp create "My Post" --content "Content" --author 1 # By user ID
# With categories
praisonaiwp create "My Post" --content "Hello" --category "Tech,AI"
# From file (auto-detects JSON/YAML/CSV)
praisonaiwp create posts.json
# Create 100 posts (automatically uses parallel mode!)
praisonaiwp create 100_posts.json
5. Update Posts
# Find and replace text
praisonaiwp update 123 "old text" "new text"
# Update specific line only
praisonaiwp update 123 "old text" "new text" --line 10
# Update 2nd occurrence only
praisonaiwp update 123 "old text" "new text" --nth 2
# Preview changes first
praisonaiwp update 123 "old text" "new text" --preview
# Update post fields directly (NEW in v1.0.14)
praisonaiwp update 123 --post-content "Full new content"
praisonaiwp update 123 --post-title "New Title"
praisonaiwp update 123 --post-status draft
# Update categories
praisonaiwp update 123 --category "Tech,AI"
6. Find Text
# Find in specific post
praisonaiwp find "search text" 123
# Find across all posts
praisonaiwp find "search text"
# Find in pages
praisonaiwp find "search text" --type page
7. List Posts
# List all posts
praisonaiwp list
# Search posts (NEW in v1.0.14)
praisonaiwp list --search "Pricing"
praisonaiwp list -s "keyword"
# List pages
praisonaiwp list --type page
# List drafts
praisonaiwp list --status draft
# Limit results
praisonaiwp list --limit 10
8. Manage Categories
# List all categories
praisonaiwp category list
# Search for categories
praisonaiwp category search "Technology"
# List categories for a specific post
praisonaiwp category list 123
# Set categories (replace all)
praisonaiwp category set 123 --category "Tech,AI"
# Add categories (append)
praisonaiwp category add 123 --category "Python"
# Remove categories
praisonaiwp category remove 123 --category "Uncategorized"
# Create post with categories
praisonaiwp create "My Post" --content "Hello" --category "Tech,AI"
# Update post categories
praisonaiwp update 123 --category "Tech,Python"
Complete CLI Reference
praisonaiwp create - Create Posts
All Options:
praisonaiwp create [TITLE_OR_FILE] [OPTIONS]
Options:
--content TEXT Post content
--status TEXT Post status (publish, draft, private)
--type TEXT Post type (post, page)
--category TEXT Comma-separated category names/slugs
--category-id TEXT Comma-separated category IDs
--author TEXT Post author (user ID or login)
--excerpt TEXT Post excerpt
--date TEXT Post date (YYYY-MM-DD HH:MM:SS)
--tags TEXT Comma-separated tag names or IDs
--meta TEXT Post meta in JSON format: {"key":"value"}
--comment-status TEXT Comment status (open, closed)
--server TEXT Server name from config
Examples:
# Basic post
praisonaiwp create "My Post" --content "Content here"
# With author and categories
praisonaiwp create "My Post" \
--content "Full content" \
--status publish \
--author praison \
--category "Tech,AI"
# With custom meta data (NEW in v1.0.15)
praisonaiwp create "My Post" \
--content "Content" \
--meta '{"custom_field":"value","price":"99.99"}'
# With excerpt and tags
praisonaiwp create "My Post" \
--content "Full content" \
--excerpt "Short summary" \
--tags "python,wordpress,automation"
# With custom date and comment status
praisonaiwp create "My Post" \
--content "Content" \
--date "2024-01-15 10:30:00" \
--comment-status closed
# All options combined
praisonaiwp create "My Post" \
--content "Full content" \
--status publish \
--type post \
--category "Tech,AI" \
--author praison \
--excerpt "Summary" \
--date "2024-01-15 10:00:00" \
--tags "python,ai" \
--meta '{"views":"0","featured":"yes"}' \
--comment-status open \
--server production
# From file
praisonaiwp create posts.json
praisonaiwp update - Update Posts
All Options:
praisonaiwp update POST_ID [FIND_TEXT] [REPLACE_TEXT] [OPTIONS]
Options:
--line INTEGER Update specific line number
--nth INTEGER Update nth occurrence
--preview Preview changes without applying
--category TEXT Comma-separated category names/slugs
--category-id TEXT Comma-separated category IDs
--post-content TEXT Replace entire post content
--post-title TEXT Update post title
--post-status TEXT Update post status (publish, draft, private)
--server TEXT Server name from config
Examples:
# Find and replace
praisonaiwp update 123 "old text" "new text"
# Update specific line
praisonaiwp update 123 "old" "new" --line 10
# Update nth occurrence
praisonaiwp update 123 "old" "new" --nth 2
# Preview first
praisonaiwp update 123 "old" "new" --preview
# Update post fields directly
praisonaiwp update 123 --post-content "New full content"
praisonaiwp update 123 --post-title "New Title"
praisonaiwp update 123 --post-status draft
# Update categories
praisonaiwp update 123 --category "Tech,AI"
praisonaiwp list - List Posts
All Options:
praisonaiwp list [OPTIONS]
Options:
--type TEXT Post type (post, page, all)
--status TEXT Post status (publish, draft, all)
--limit INTEGER Limit number of results
-s, --search TEXT Search posts by title/content
--server TEXT Server name from config
Examples:
# List all posts
praisonaiwp list
# Search (single word)
praisonaiwp list --search "Pricing"
praisonaiwp list -s "keyword"
# Search with spaces (use quotes)
praisonaiwp list --search "Test Post"
# List pages
praisonaiwp list --type page
# List drafts
praisonaiwp list --status draft
# Limit results
praisonaiwp list --limit 10
# Combine filters
praisonaiwp list --type post --status publish --limit 20
praisonaiwp find - Search Text
All Options:
praisonaiwp find PATTERN [POST_ID] [OPTIONS]
Options:
--type TEXT Post type to search
--server TEXT Server name from config
Examples:
# Find in specific post
praisonaiwp find "search text" 123
# Find across all posts
praisonaiwp find "search text"
# Find in pages
praisonaiwp find "search text" --type page
praisonaiwp category - Manage Categories
Subcommands:
list- List categories (all or for specific post)search- Search for categories by nameset- Set post categories (replace all existing)add- Add categories to post (append)remove- Remove categories from post
Examples:
# List all categories
praisonaiwp category list
# Search categories
praisonaiwp category search "Technology"
# List categories for a post
praisonaiwp category list 123
# Set categories (replace all)
praisonaiwp category set 123 --category "Tech,AI"
praisonaiwp category set 123 --category-id "1,2,3"
# Add categories (append)
praisonaiwp category add 123 --category "Python"
# Remove categories
praisonaiwp category remove 123 --category "Uncategorized"
Important Notes for AI Agents
โ ๏ธ Quoting Rules:
- Always quote arguments with spaces:
--search "multi word" - Single words don't need quotes:
--search keyword - Category names with commas:
--category "Tech,AI,Python"
โ Correct Usage:
praisonaiwp list --search "Test Post"
praisonaiwp create "My Title" --content "My content"
praisonaiwp update 123 --post-title "New Title"
โ Incorrect Usage:
praisonaiwp list --search Test Post # ERROR: Too many positional arguments
praisonaiwp create My Title --content My content # ERROR: Ambiguous
๐ง All Available Options Summary:
| Command | Key Options |
|---|---|
create |
--content, --status, --type, --category, --category-id, --author, --excerpt, --date, --tags, --meta, --comment-status, --server |
update |
--line, --nth, --preview, --category, --category-id, --post-content, --post-title, --post-status, --server |
list |
--type, --status, --limit, -s/--search, --server |
find |
--type, --server |
category |
Subcommands: list, search, set, add, remove with --category, --category-id |
File Formats
JSON Format
[
{
"title": "Post Title",
"content": "<p>Post content</p>",
"status": "publish",
"type": "post"
}
]
YAML Format
- title: Post Title
content: <p>Post content</p>
status: publish
type: post
CSV Format
title,content,status,type
"Post Title","<p>Post content</p>",publish,post
Configuration
Configuration is stored in ~/.praisonaiwp/config.yaml:
version: "1.0"
default_server: default
servers:
default:
hostname: example.com
username: user
key_file: ~/.ssh/id_ed25519
port: 22
wp_path: /var/www/html
php_bin: /opt/plesk/php/8.3/bin/php
wp_cli: /usr/local/bin/wp
settings:
auto_backup: true
parallel_threshold: 10
parallel_workers: 10
ssh_timeout: 30
log_level: INFO
Advanced Usage
Line-Specific Replacement
When the same text appears multiple times but you only want to replace it at a specific line:
# Replace only at line 10
praisonaiwp update 123 "Welcome" "My Website" --line 10
Occurrence-Specific Replacement
Replace only the 1st, 2nd, or nth occurrence:
# Replace only the 2nd occurrence
praisonaiwp update 123 "Welcome" "My Website" --nth 2
Bulk Operations
Create 100 posts in ~8 seconds (vs 50+ seconds sequential):
# Automatically uses parallel mode for files with >10 posts
praisonaiwp create 100_posts.json
Troubleshooting
SSH Connection Issues
# Test SSH connection manually
ssh -i ~/.ssh/id_ed25519 user@hostname
# Fix key permissions
chmod 600 ~/.ssh/id_ed25519
chmod 600 ~/.ssh/config
WP-CLI Not Found
# Install WP-CLI automatically
praisonaiwp install-wp-cli -y
# Or check WP-CLI path manually
ssh user@hostname "which wp"
PHP MySQL Extension Missing
# Use Plesk PHP binary (edit config.yaml)
php_bin: /opt/plesk/php/8.3/bin/php
WordPress Path Not Found
# Auto-detect WordPress installation
praisonaiwp find-wordpress --update-config
Documentation
- ARCHITECTURE.md - Technical architecture and design
- TESTING.md - Testing guide and best practices
- CHANGELOG.md - Version history and changes
Development
# Clone repository
git clone https://github.com/MervinPraison/PraisonAI-WPcli.git
cd PraisonAI-WPcli
# Install in development mode
pip install -e ".[dev]"
# Run tests
pytest
# Run with coverage
pytest --cov=praisonaiwp
# Format code
black praisonaiwp/
# Lint
flake8 praisonaiwp/
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT License - see LICENSE file for details.
Author
Praison
Links
- GitHub: https://github.com/MervinPraison/PraisonAI-WPcli
- Documentation: https://praisonaiwp.readthedocs.io
- PyPI: https://pypi.org/project/praisonaiwp
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file praisonaiwp-1.0.15.tar.gz.
File metadata
- Download URL: praisonaiwp-1.0.15.tar.gz
- Upload date:
- Size: 66.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91a4c89bdfc53bf4fb7bcac3ae1915db74958af630147839bb1bfa0e5239a609
|
|
| MD5 |
47142dffb18a96eb5979d83c21fa5fe6
|
|
| BLAKE2b-256 |
be8cf2acd4891909823f956eeab0ce65ce91874246a108c8277136b592cec04d
|
File details
Details for the file praisonaiwp-1.0.15-py3-none-any.whl.
File metadata
- Download URL: praisonaiwp-1.0.15-py3-none-any.whl
- Upload date:
- Size: 51.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aae1441fb4be0ba709e05d893f1f4df3dcb995d22d4da0a51b91e786b0e170ed
|
|
| MD5 |
3aa808078592b56116e90f4c66e09ac9
|
|
| BLAKE2b-256 |
dc2609e5990ad4ca7c50ce67f6d349ea4b80273dbbbf1d247a0d8c412397c77f
|